/* ============================================================
   PLATONIA — coming soon
   Faithful static recreation of the Wix "Coming Soon" landing
   page: same layout, palette, copy and interactions. Wix ads
   and attribution removed; licensed fonts replaced with free
   equivalents (Benzin → Space Grotesk, Neue Haas Unica → Inter).
   ============================================================ */

:root {
  --base: #30453C;          /* wst-base-1   */
  --shade-1: #455850;       /* wst-shade-1  */
  --shade-2: #6E7D77;       /* wst-shade-2  */
  --shade-3: #B7BEBB;       /* placeholder  */
  --ink: #5F5147;           /* wst-accent-4 (menu link color) */
  --white: #FFFFFF;
  --accent: #FFAD14;        /* wst-accent-1 */
  --accent-dark: #E89C00;
  --black: #000000;

  --font-display: 'Space Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --header-h: 64px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { height: 100%; }
body { min-height: 100%; }

body {
  font-family: var(--font-body);
  background: var(--base);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ============ Header ============ */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.4vw;
  pointer-events: none;
}

/* Project title centered in the page header */
.header-title {
  pointer-events: auto;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
}

.menu-toggle {
  pointer-events: auto;
  background: none;
  border: 0;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 2.4vw;
  top: 50%;
  transform: translateY(-50%);
}

.menu-icon {
  display: block;
  width: 26px;
  height: 18px;
  position: relative;
}

.menu-icon .bar {
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.menu-icon .bar-1 { top: 0; }
.menu-icon .bar-2 { top: 8px; }
.menu-icon .bar-3 { top: 16px; }

.menu-toggle:hover .bar { background: var(--accent); }

.menu-toggle.open .bar-1 { top: 8px; transform: rotate(45deg); }
.menu-toggle.open .bar-2 { opacity: 0; }
.menu-toggle.open .bar-3 { top: 8px; transform: rotate(-45deg); }

/* ============ Side menu (right white panel) ============ */

.side-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 90;
  width: min(33vw, 634px);
  background: var(--white);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.18);
  padding: 140px 60px;
  opacity: 0;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1),
              opacity 0.4s ease,
              visibility 0.4s ease;
}

.side-menu.open {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.side-link {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.side-link:hover, .side-link.is-current { color: var(--accent-dark); }

/* ============ Hero ============ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Subtle darkening over the background video (homepage) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(48, 69, 60, 0.22) 0%, rgba(48, 69, 60, 0.34) 60%, rgba(21, 33, 28, 0.55) 100%);
  pointer-events: none;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 0 2% 3vw;
}

/* Hero title — mirrors Wix heading-1 (Benzin) scale, flush at the very top.
   line-height 0.85 makes glyphs overflow the box by ~0.216*font-size;
   padding-top compensates so the visual text starts ~30px from the top
   (matching the original) without clipping. */
.hero-top {
  margin-left: 1.92%;
  padding-top: calc(30px + 2.9vw);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 13.5vw;
  line-height: 0.85;
  letter-spacing: 0em;
  color: var(--white);
}

/* Bottom row: 3 columns (copy | form | links) — mirrors the original grid */
.hero-bottom {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}

/* Left column */
.hero-copy {
  margin-left: 7.41%;
  width: 46.88%;
}

.launching {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.9rem, 1.64vw, 2rem);
  line-height: 1.2;
  letter-spacing: 0em;
  color: var(--white);
  margin-bottom: 2.4vw;
}

.come-visit {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.9rem, 1.64vw, 2rem);
  line-height: 1.2;
  color: var(--white);
}

/* Center column — form */
.hero-form {
  margin-left: 3.68%;
  width: 92.6%;
}

#subscribe-form .form-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 21px;
  line-height: 26px;
  color: var(--white);
  margin-bottom: 1.1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.field label {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

.req { color: var(--accent); }

.field input {
  width: 100%;
  background: transparent;
  border: 1px solid var(--white);
  border-radius: 7px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field input::placeholder { color: var(--shade-3); }

.field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 173, 20, 0.18);
}

/* Checkbox */
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.3rem;
  cursor: pointer;
  user-select: none;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.checkmark {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 1px solid var(--white);
  border-radius: 3px;
  background: transparent;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.checkmark::after {
  content: '';
  position: absolute;
  left: 5px; top: 1px;
  width: 5px; height: 10px;
  border: solid var(--base);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s ease;
}

.checkbox:hover .checkmark { border-color: var(--accent); }

.checkbox input:checked + .checkmark {
  background: var(--accent);
  border-color: var(--accent);
}

.checkbox input:checked + .checkmark::after { transform: rotate(45deg) scale(1); }

.checkbox input:focus-visible + .checkmark {
  box-shadow: 0 0 0 3px rgba(255, 173, 20, 0.18);
}

.checkbox-label {
  font-size: 15px;
  line-height: 1.4;
  color: var(--white);
}

/* Submit — TRANSPARENT with white outline (as on the original) */
.submit-btn {
  display: inline-block;
  min-width: 176px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 400;
  padding: 11px 16px;
  transition: background 0.25s ease, color 0.25s ease;
}

.submit-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.submit-btn:active { transform: translateY(1px); }
.submit-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.form-error {
  margin-top: 0.9rem;
  font-size: 14px;
  color: #FFC4C4;
}

/* Success */
.form-success p {
  font-size: 18px;
  color: var(--white);
}

/* Right column — links panel */
.hero-links {
  margin-left: 15%;
}

.links-grid {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 3.2vw;
  row-gap: 36px;
  justify-content: start;
}

.link-item:nth-child(5) { grid-column: 1; grid-row: 3; }
.link-item:nth-child(6) { grid-column: 1; grid-row: 4; }

.link-item {
  font-family: var(--font-body);
  /* Fluid: 24px at 1920 (matches Wix), scales down with viewport */
  font-size: clamp(0.875rem, 1.25vw, 1.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 3px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.link-item:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ============ Footer ============ */

.site-footer {
  background: #0a0a0a;
  min-height: 80px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 1.2rem 2.4vw;
}

.footer-inner p {
  font-family: var(--font-body);
  font-size: 21px;
  line-height: 1.4;
  color: var(--white);
}

/* ============ Scroll hint ============ */

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  opacity: 0.6;
  animation: scrollHintPulse 2.5s ease-in-out infinite;
}

@keyframes scrollHintPulse {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.7; transform: translateX(-50%) translateY(6px); }
}

/* ============ Header scroll adaptation ============ */

.site-header.scrolled-dark {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-header.scrolled-light {
  background: rgba(245, 240, 235, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-header.scrolled-light .header-title {
  color: #0a0a0a;
}

.site-header.scrolled-light .menu-icon .bar {
  background: #0a0a0a;
}

/* ============ Reduced motion ============ */

@media (prefers-reduced-motion: reduce) {
  .side-menu { transition: none; }
}

/* ============================================================
   SCROLL SECTIONS — PLATONIA
   A numbered series of artifacts: full-bleed photographs,
   film grain, violent scribbles against orderly type.
   ============================================================ */

/* --- Shared --- */
.scroll-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.art-figure {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  object-fit: contain;
}
.figure-shadow {
  right: 2%;
  top: 6%;
  height: 84vh;
  z-index: 2;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.16,1,0.3,1) 0.2s;
}
.figure-shadow.revealed { opacity: 1; }
.figure-vinyl {
  left: 62%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 92vh;
  opacity: 0.88;
  z-index: 2;
}

/* Nº 02 text wall — dense type as material */
.text-wall {
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: 7rem 3vw 5rem;
  columns: 4;
  column-gap: 1.8rem;
  column-rule: 1px solid rgba(10,10,10,0.12);
  overflow: hidden;
  font-family: var(--font-body);
  font-size: clamp(9px, 0.78vw, 12px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.62);
}
.text-wall p { margin: 0; }
.text-wall-fade-b {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 22%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(245,240,235,0) 0%, #f5f0eb 92%);
  pointer-events: none;
}
.text-wall-fade-r {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 9%;
  z-index: 1;
  background: linear-gradient(270deg, #f5f0eb 0%, rgba(245,240,235,0) 100%);
  pointer-events: none;
}

.section-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(10,10,10,0.28) 100%);
}
.section-vignette.dark {
  background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.3) 40%, rgba(10,10,10,0.85) 100%);
}

/* Section number label — small, quiet, archival */
.section-label {
  position: absolute;
  top: 5.5rem;
  left: 4vw;
  z-index: 5;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #0a0a0a;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.section-label.on-dark { color: #f5f0eb; }

/* Reveal base — components define their own transforms */
[data-reveal] { opacity: 0; }
[data-reveal].revealed { opacity: 1; }

/* Scribbles — hand-drawn violence against the grid */
.scribble {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease 0.35s;
}
.scribble.revealed { opacity: 1; }
.scribble-collapse {
  position: absolute;
  right: -4%;
  top: 0;
  width: 65.8%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%);
}
.scribble-collapse.revealed { opacity: 0.62; }
.scribble-now { inset: 0; width: 100%; height: 100%; }
.scribble-now.revealed { opacity: 0.9; }
.scribble-foam { left: -6%; bottom: -8%; width: 55%; height: 60%; }
.scribble-foam.revealed { opacity: 0.4; }
.scribble-nofuture { inset: 0; width: 100%; height: 100%; z-index: 1; }
.scribble-nofuture.revealed { opacity: 0.42; }

/* --- Nº 01 COLLAPSE: the word collapsing into the photograph --- */
.section-collapse { background: #f5f0eb; }

.collapse-word {
  position: absolute;
  left: 3.5vw;
  bottom: 7vh;
  z-index: 3;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(88px, 15vw, 300px);
  line-height: 0.82;
  letter-spacing: -0.01em;
  color: #0a0a0a;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(140px);
  transition: opacity 1s cubic-bezier(0.16,1,0.3,1) 0.15s,
              transform 1.1s cubic-bezier(0.16,1,0.3,1) 0.15s;
}
.collapse-word.revealed { transform: translateY(0); }
.collapse-word .cw { display: inline-block; }
.cw-1 { transform: rotate(-7deg) translateY(0.02em); }
.cw-2 { transform: rotate(4deg)  translateY(0.06em); }
.cw-3 { transform: rotate(-3deg) translateY(0.10em); }
.cw-4 { transform: rotate(6deg)  translateY(0.04em); }
.cw-5 { transform: rotate(-5deg) translateY(0.16em); }
.cw-6 { transform: rotate(9deg)  translateY(0.30em); } /* the falling letter */
.cw-7 { transform: rotate(-4deg) translateY(0.12em); }
.cw-8 { transform: rotate(2deg)  translateY(0.20em); }

.collapse-sub {
  position: absolute;
  left: 4vw;
  bottom: 4vh;
  z-index: 3;
  font-family: var(--font-body);
  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.75);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1s cubic-bezier(0.16,1,0.3,1) 0.5s, transform 1s cubic-bezier(0.16,1,0.3,1) 0.5s;
}
.collapse-sub.revealed { transform: translateY(0); }

/* --- Nº 02 NOW: black band slashing the text wall --- */
.section-now { background: #f5f0eb; }

.now-band {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: #0a0a0a;
  padding: 5.5vh 4vw 6vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.16,1,0.3,1) 0.1s;
}
.now-band.revealed { transform: translateY(-50%); }
.now-band .section-label { position: static; margin-bottom: 1.4vh; color: rgba(245,240,235,0.7); }
.now-fade-top {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 13vh;
  z-index: 2;
  transform: translateY(-50%);
  margin-top: -16vh;
  background: linear-gradient(180deg, rgba(245,240,235,0) 0%, #f5f0eb 100%);
  pointer-events: none;
}
.now-fade-bottom {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 13vh;
  z-index: 2;
  transform: translateY(-50%);
  margin-top: 16vh;
  background: linear-gradient(180deg, #f5f0eb 0%, rgba(245,240,235,0) 100%);
  pointer-events: none;
}

.now-word {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(120px, 19vw, 320px);
  line-height: 0.85;
  letter-spacing: -0.01em;
  color: #f5f0eb;
}

.now-tag {
  margin-top: 1.6vh;
  font-family: var(--font-body);
  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.6);
}

/* --- Divider: credits insert (SIDE A / SIDE B) --- */
.credits-band {
  position: relative;
  min-height: 34vh;
  padding: 6vh 0;
  overflow: hidden;
  background: #0a0a0a;
}
.credits-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.credits-col p {
  font-family: var(--font-body);
  font-size: clamp(10px, 0.85vw, 13px);
  font-weight: 400;
  line-height: 2.1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.66);
}
.credits-col p.credits-head {
  color: #f5f0eb;
  letter-spacing: 0.44em;
  margin-bottom: 1.1rem;
}
.scribble-credits {
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.scribble-credits.revealed { opacity: 0.35; }

/* --- Nº 03 FOAM: poster pinned on paper --- */
.section-foam {
  background: #f5f0eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.constellation-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease 0.3s;
}
.constellation-bg.revealed { opacity: 0.7; }

.foam-layout {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 4vw 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2vh;
}
.section-foam .section-label { position: static; align-self: flex-start; }

.foam-poster {
  position: relative;
  margin: 0;
  width: min(560px, 84vw);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(10,10,10,0.25);
  background: #fff;
  line-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.1s cubic-bezier(0.16,1,0.3,1) 0.15s,
              transform 1.1s cubic-bezier(0.16,1,0.3,1) 0.15s;
}
.foam-poster.revealed { transform: translateY(0); }

.poster-top {
  height: 44%;
  overflow: hidden;
}
.poster-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.poster-bottom {
  position: relative;
  height: 56%;
  background: #0a0a0a;
  overflow: hidden;
}
.poster-hand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  height: 96%;
  width: auto;
  display: block;
}
.poster-letter {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 4.2vw, 72px);
  line-height: 1;
  color: #f5f0eb;
  z-index: 2;
}
.pl-f { top: 3%;  left: 4%; }
.pl-o { top: 3%;  right: 4%; }
.pl-a { bottom: 3%; left: 4%; }
.pl-m { bottom: 3%; right: 4%; }

.poster-sticker {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: #0a0a0a;
  color: #f5f0eb;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 7px 12px 7px 14px;
  line-height: 1;
}

.foam-quote {
  max-width: 660px;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(12px, 1.05vw, 16px);
  font-weight: 400;
  line-height: 2.1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.85);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.1s cubic-bezier(0.16,1,0.3,1) 0.35s, transform 1.1s cubic-bezier(0.16,1,0.3,1) 0.35s;
}
.foam-quote.revealed { transform: translateY(0); }

/* --- Nº 04 NO FUTURE: the record going under --- */
.section-nofuture { background: #0a0a0a; }

.nofuture-word {
  position: absolute;
  left: 6vw;
  top: 50%;
  z-index: 3;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(90px, 14vw, 240px);
  line-height: 0.86;
  letter-spacing: -0.005em;
  color: #f5f0eb;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.1s cubic-bezier(0.16,1,0.3,1) 0.1s,
              transform 1.2s cubic-bezier(0.16,1,0.3,1) 0.1s;
}
.nofuture-word.revealed { transform: translateY(-50%); }

.nofuture-lines {
  position: absolute;
  left: 6vw;
  bottom: 12vh;
  z-index: 3;
  font-family: var(--font-body);
  font-size: clamp(11px, 0.95vw, 15px);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  line-height: 2.2;
  color: rgba(245,240,235,0.72);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.1s cubic-bezier(0.16,1,0.3,1) 0.4s, transform 1.1s cubic-bezier(0.16,1,0.3,1) 0.4s;
}
.nofuture-lines.revealed { transform: translateY(0); }

/* --- Film grain: the whole page is one strip of developed film --- */
.film-grain {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  background-image: url('../assets/grain.png');
  background-repeat: repeat;
}
.film-grain.grain-multiply { mix-blend-mode: multiply; opacity: 0.16; }
.film-grain.grain-screen   { mix-blend-mode: screen;   opacity: 0.12; }

/* --- Responsive --- */
@media screen and (max-width: 767px) {
  .section-label { top: 5rem; left: 6vw; font-size: 11px; letter-spacing: 0.34em; }
  .collapse-word { font-size: clamp(64px, 19vw, 140px); left: 6vw; bottom: 10vh; }
  .figure-shadow { left: 50%; right: auto; top: 6%; height: 54vh; transform: translateX(-50%); }
  .figure-vinyl { left: 62%; top: 42%; height: 60vh; }
  .collapse-sub { left: 6vw; letter-spacing: 0.34em; }
  .now-word { font-size: clamp(80px, 22vw, 160px); }
  .now-band { padding: 4vh 4vw 4.5vh; }
  .credits-band { height: 26vh; }
  .foam-layout { padding: 6rem 1.5rem 4rem; gap: 2.4vh; }
  .foam-poster { width: min(360px, 86vw); }
  .poster-letter { font-size: 34px; }
  .credits-inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .nofuture-word { left: 8vw; font-size: clamp(64px, 18vw, 130px); }
  .nofuture-lines { left: 8vw; bottom: 10vh; letter-spacing: 0.3em; }
  .scribble-collapse { width: 90%; }
}

/* ============ Responsive ============ */

@media screen and (max-width: 1023px) {
  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-copy {
    margin-left: 7.41%;
    width: auto;
  }

  .hero-form { width: 92.6%; max-width: 520px; margin-left: 7.41%; }
  .hero-links { margin-left: 7.41%; }

  .links-grid {
    column-gap: 2.5rem;
    row-gap: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .side-menu { width: 100%; }

  .hero-content { padding: 0 4% 4.5vw; }

  .hero-title { font-size: 15vw; }
  .hero-top { padding-top: calc(30px + 3.24vw); }
  .header-title { font-size: 16px; }

  .hero-copy { margin-left: 1.92%; }
  .hero-form { width: 100%; margin-left: 1.92%; }
  .hero-links { margin-left: 1.92%; }

  .launching { font-size: 16px; }
  .come-visit { font-size: 16px; }
  .link-item { font-size: 16px; }
}

/* ============ Reduced motion ============ */

@media (prefers-reduced-motion: reduce) {
  .side-menu { transition: none; }
}
