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

:root {
  --bg:        #080f1c;
  --primary:   #0a3144;
  --accent:    #e8e0d0;
  --highlight: #c4a882;
  --text:      #f0ece4;
  --fd: 'Space Grotesk', sans-serif;
  --fb: 'Inter', sans-serif;
  --fm: 'Space Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: clip; /* clip (not hidden) so it doesn't become a scroll container that breaks position:sticky */
  cursor: none;
}

@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  #cursor, #cursor-ring { display: none; }
}


#cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, opacity .2s;
  will-change: transform;
}
#cursor-ring {
  position: fixed; width: 38px; height: 38px;
  border: 1px solid rgba(232,224,208,.35); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s, border-color .3s;
  will-change: transform;
}
#cursor.on  { width: 6px; height: 6px; opacity: .5; }
#cursor-ring.on { width: 54px; height: 54px; border-color: var(--highlight); }

/* Soft ambient light that follows the cursor over the dark sections.
   Single moderate layer, only repaints while the pointer moves. */
#cursor-light {
  position: fixed; top: 0; left: 0; width: 520px; height: 520px;
  margin: -260px 0 0 -260px; border-radius: 50%;
  z-index: 60; pointer-events: none;
  background: radial-gradient(circle, rgba(196,168,130,.10), rgba(42,164,207,.05) 42%, transparent 70%);
  mix-blend-mode: screen; opacity: 0;
  transition: opacity .6s ease; will-change: transform;
}
#cursor-light.on { opacity: 1; }
@media (hover: none), (pointer: coarse) { #cursor-light { display: none; } }


/* ----------  Cinematic intro — theater-curtain reveal  ---------- */
#preloader { position: fixed; inset: 0; z-index: 10000; overflow: hidden; pointer-events: none; }
.pl-panel {
  position: absolute; left: 0; width: 100%; height: 50.4%;   /* slight overlap = no seam gap */
  background: var(--bg); z-index: 1; will-change: transform;
}
.pl-top { top: 0; } .pl-bottom { bottom: 0; }
.pl-seam {
  position: absolute; left: 0; top: 50%; width: 100%; height: 1px; z-index: 3;
  transform: translateY(-.5px) scaleX(0); transform-origin: 50% 50%; opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(196,168,130,.85) 38%, rgba(196,168,130,.85) 62%, transparent);
  box-shadow: 0 0 22px rgba(196,168,130,.5);
}
.pl-content {
  /* 3-zone grid: logo above, COUNTER dead-centre, bar below */
  position: absolute; inset: 0; z-index: 2;
  display: grid; grid-template-rows: 1fr auto 1fr;
  justify-items: center; align-items: center;
}
#pre-logo {
  align-self: end; margin-bottom: clamp(24px, 5vh, 56px);
  width: clamp(170px, 26vw, 300px); height: auto;
  filter: brightness(0) invert(1) brightness(.95) sepia(.08);
  clip-path: inset(0 100% 0 0);          /* JS wipes it in left→right */
}
.pl-meta {
  align-self: center;                    /* the counter row sits at screen centre */
  display: flex; align-items: center; justify-content: center;
  gap: clamp(16px, 3vw, 36px); width: min(640px, 88vw);
}
.pl-label {
  flex: 1 1 0;                           /* equal sides → number perfectly centred */
  font-family: var(--fm); font-size: .56rem; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(232,224,208,.42); white-space: nowrap;
}
.pl-label:first-child { text-align: right; }
.pl-label:last-child  { text-align: left; }
#pre-counter {
  flex: 0 0 auto;
  font-family: var(--fd); font-weight: 700; line-height: 1;
  font-size: clamp(2.6rem, 8vw, 5.4rem); letter-spacing: -.05em;
  color: var(--accent); font-variant-numeric: tabular-nums;
}
.pre-bar {
  align-self: start; margin-top: clamp(24px, 5vh, 56px);
  width: clamp(180px, 28vw, 340px); height: 1px; background: rgba(232,224,208,.12); overflow: hidden;
}
#pre-bar-fill { height: 100%; width: 0; background: var(--highlight); }


nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 6vw; display: flex; align-items: center;
  justify-content: space-between;
}
.nav-logo { width: 150px; filter: brightness(0) invert(1) brightness(0.95) sepia(0.08); opacity: 0; }
.nav-links { display: flex; gap: 32px; list-style: none; opacity: 0; }
.nav-links a {
  color: rgba(240,236,228,.7); text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .7rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--highlight); }
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  z-index: 201;
  position: relative;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--accent);
  transition: transform .3s ease, opacity .2s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}
.nav-mobile-close {
  position: absolute;
  top: 22px;
  right: 5vw;
  background: none;
  border: none;
  color: rgba(240,236,228,.5);
  cursor: none;
  padding: 6px;
  transition: color .2s;
}
.nav-mobile-close:hover { color: var(--accent); }

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.nav-mobile a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 10vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--highlight); }

@media (max-width: 680px) {
  nav { padding: 18px 5vw; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}
@media (min-width: 681px) {
  .nav-mobile { display: none; }
}


#hero {
  position: relative; height: 100vh; overflow: hidden;
  background: var(--bg);          /* flat, no gradients */
}

/* accessible, crawlable <h1> without painting a duplicate */
.hero-seo {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* Brand logo watermark behind the figure — tinted a faint brand blue.
   Uses the SVG as a mask so we can recolour it freely. */
.hero-bgword {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -44%);
  z-index: 1; margin: 0; pointer-events: none; user-select: none;
  width: 200vw; height: 185vh;
  -webkit-mask: url("IMG/GRMPS_LOGO.svg") center / contain no-repeat;
          mask: url("IMG/GRMPS_LOGO.svg") center / contain no-repeat;
  background-color: rgba(42, 164, 207, .11);   /* faint brand blue */
  opacity: 0;            /* revealed by JS */
}

#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 2; pointer-events: none; will-change: transform;
}

/* ----------  Editorial side labels (scattered, mixed type)  ---------- */
.hero-lead { position: absolute; z-index: 4; opacity: 0; }
.lead-tl { left: clamp(20px, 7vw, 110px); top: clamp(120px, 18vh, 185px); }
.lead-bl { left: clamp(20px, 7vw, 110px); bottom: clamp(38px, 7vh, 72px); }
.lead-br {
  right: clamp(20px, 7vw, 110px); bottom: clamp(38px, 7vh, 72px);
  text-align: right; max-width: 260px;
}
.lead-rv {
  right: clamp(12px, 4vw, 38px); top: 50%; margin: 0;
  transform: translateY(-50%) rotate(90deg); transform-origin: right center;
}

.t-eyebrow {
  font-family: var(--fd); font-size: clamp(.66rem,.85vw,.78rem);
  letter-spacing: .3em; text-transform: uppercase; color: var(--accent);
}
.t-mono {
  font-family: var(--fm); font-size: .62rem; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(240,236,228,.42); margin-top: 7px;
}
.t-name {
  font-family: var(--fd); font-weight: 600; font-size: 1.05rem;
  letter-spacing: -.01em; color: var(--accent);
}
.t-tag {
  font-family: 'Inter', sans-serif; font-size: .9rem; line-height: 1.55;
  color: rgba(240,236,228,.6); margin-bottom: 14px;
}
.hero-link {
  display: inline-block;
  font-family: var(--fd); font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--highlight); text-decoration: none;
  border-bottom: 1px solid rgba(196,168,130,.4); padding-bottom: 3px;
  transition: color .25s, border-color .25s; cursor: none;
}
.hero-link:hover { color: var(--accent); border-color: var(--accent); }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%;
  transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint span {
  font-family: var(--fm); font-size: .54rem; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(240,236,228,.4);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(196,168,130,.7), transparent);
  animation: spulse 2s ease-in-out infinite;
}
@keyframes spulse { 0%,100%{opacity:.3; transform:scaleY(.8)} 50%{opacity:1; transform:scaleY(1)} }

@media (max-width: 680px) {
  .lead-rv { display: none; }
  .lead-br { max-width: 200px; }
  .hero-bgword { transform: translate(-50%, -50%); }
}


/* ----------  HERO STORY BEATS  —  text that flies in over the figure
   while it animates on scroll (driven entirely by JS / hero progress)  ---------- */
.hero-stories { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.hero-story {
  position: absolute; top: 50%;
  width: min(34vw, 380px);
  opacity: 0; will-change: transform, opacity;
}
.hero-story.from-left  { left: 7vw;  text-align: left; }
.hero-story.from-right { right: 7vw; text-align: right; }
.hs-tag {
  display: block; font-family: 'Space Grotesk', sans-serif;
  font-size: .66rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--highlight); margin-bottom: 16px;
}
.hs-num {
  display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 2.4rem; line-height: 1; letter-spacing: -.03em; margin-bottom: 12px;
  color: transparent; -webkit-text-stroke: 1px rgba(196,168,130,.6);
}
.hs-h {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem,3vw,2.7rem); font-weight: 700;
  line-height: 1.05; letter-spacing: -.03em; color: var(--accent);
  margin-bottom: 18px; text-shadow: 0 2px 40px rgba(4,8,16,.8);
}
.hero-story p {
  font-size: clamp(.9rem,1.05vw,1rem); line-height: 1.75; color: rgba(240,236,228,.66);
  text-shadow: 0 2px 30px rgba(4,8,16,.9);
}

@media (max-width: 760px) {
  .hero-story {
    left: 50%; right: auto; width: min(86vw, 460px); text-align: center;
    top: auto; bottom: 13vh;
  }
  .hero-story.from-left, .hero-story.from-right { text-align: center; }
  .hs-num { margin-left: auto; margin-right: auto; }
}


#collection { padding: clamp(90px, 14vh, 150px) 8vw; }

.col-head { max-width: 1300px; margin: 0 auto 56px; }
.section-tag {
  display: block; font-family: var(--fm);
  font-size: .66rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--highlight); margin-bottom: 16px;
}
.section-title {
  font-family: var(--fd); font-size: clamp(2.2rem,5.5vw,4rem); font-weight: 700;
  letter-spacing: -.03em; line-height: 1; color: var(--accent); margin-bottom: 20px;
}
.col-sub { max-width: 440px; font-size: .96rem; line-height: 1.7; color: rgba(240,236,228,.5); }

.col-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px, 2vw, 26px);
  max-width: 1300px; margin: 0 auto;
}

/* ----------  Editorial product card  ---------- */
.card {
  position: relative; cursor: none; border-radius: 18px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  border: 1px solid rgba(232,224,208,.08);
  transition: border-color .5s var(--ease-out), box-shadow .5s var(--ease-out);
  opacity: 0; transform: translateY(44px);          /* JS reveal */
}
.card:hover { border-color: rgba(196,168,130,.34); box-shadow: 0 34px 70px rgba(0,0,0,.5); }

.cc-index {
  position: absolute; top: 16px; left: 22px; z-index: 3;
  font-family: var(--fd); font-weight: 700; font-size: 1.7rem; letter-spacing: -.02em;
  color: transparent; -webkit-text-stroke: 1px rgba(232,224,208,.22);
}
.cc-dot {
  position: absolute; top: 25px; right: 24px; z-index: 3;
  width: 8px; height: 8px; border-radius: 50%;
  background: #58c98a; box-shadow: 0 0 0 4px rgba(88,201,138,.16);
}
.cc-badge {
  position: absolute; top: 18px; right: 18px; z-index: 3;
  font-family: var(--fm); font-size: .52rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(240,236,228,.62); padding: 6px 11px; border-radius: 40px;
  border: 1px solid rgba(232,224,208,.16); background: rgba(8,15,28,.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}

.cc-stage { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.cc-img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: filter .5s var(--ease-out);   /* transform is GSAP-driven (scroll parallax) */
  will-change: transform;
}

/* Coming-soon teasers: dimmed photo + a colourway tint overlay. */
.is-soon .cc-img { filter: brightness(.5) saturate(.7); }
.cc-stage::after { content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0; }
.cw-midnight .cc-stage::after { opacity: 1; background: linear-gradient(180deg, rgba(26,52,110,.42), rgba(8,15,28,.5)); }
.cw-dusk .cc-stage::after     { opacity: 1; background: linear-gradient(180deg, rgba(98,62,26,.38), rgba(8,15,28,.5)); }

.cc-info { padding: 22px 22px 24px; border-top: 1px solid rgba(232,224,208,.07); }
.cc-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 9px; }
.cc-name { font-family: var(--fd); font-weight: 600; font-size: 1.3rem; letter-spacing: -.01em; color: var(--accent); }
.cc-price { font-family: var(--fm); font-size: .92rem; color: var(--highlight); }
.cc-meta {
  font-family: var(--fm); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(240,236,228,.4); margin-bottom: 20px;
}
.cc-meta em { font-style: normal; color: #6fcf97; }
.cc-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fd); font-size: .68rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
  background: none; border: none; padding: 0; cursor: none;
  transition: color .25s var(--ease-out);
}
.cc-arr { transition: transform .3s var(--ease-out); }
.card:hover .cc-cta { color: var(--highlight); }
.card:hover .cc-arr { transform: translateX(5px); }

/* Cards slide in from the right into the natural grid; clip the off-screen ones. */
.col-rail { position: relative; overflow-x: clip; }
.col-hint { display: none; }

@media (max-width: 920px) { .col-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) {
  .col-grid { grid-template-columns: 1fr; max-width: 420px; }
  #collection { padding: 80px 6vw; }
}


/* ==========  FILM — cinematic pinned reveal (framed clip opens to full-bleed)  ========== */
#film { position: relative; z-index: 1; height: 100vh; overflow: hidden; background: var(--bg); }
/* .film-media scales up from a rounded centred card to full-bleed on scroll (JS-driven) */
.film-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; will-change: transform, border-radius; backface-visibility: hidden; }
.film-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; will-change: transform; }
.film-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(0deg, rgba(4,8,14,.82) 0%, rgba(4,8,14,.2) 42%, transparent 60%),
    linear-gradient(90deg, rgba(4,8,14,.5), transparent 55%);
}
.film-ui { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.film-ui .film-sound { pointer-events: auto; }
.film-eyebrow {
  position: absolute; top: clamp(96px, 13vh, 132px); left: 8vw; overflow: hidden;
  font-family: var(--fm); font-size: .62rem; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(240,236,228,.6);
}
.film-eyebrow > span { display: inline-block; will-change: transform; }
.film-h {
  position: absolute; left: 8vw; bottom: clamp(80px, 13vh, 132px); margin: 0;
  font-family: var(--fd); font-weight: 700; font-size: clamp(2.2rem, 5.4vw, 4.6rem);
  line-height: .98; letter-spacing: -.03em; color: #fff; text-shadow: 0 2px 40px rgba(0,0,0,.5);
}
.film-line { display: block; overflow: hidden; padding-bottom: .06em; }
.film-line > span { display: block; will-change: transform; }
.film-sound {
  position: absolute; right: 8vw; bottom: clamp(80px, 13vh, 132px);
  display: inline-flex; align-items: center; gap: 11px; cursor: none;
  background: rgba(8,15,28,.5); border: 1px solid rgba(232,224,208,.18);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-radius: 50px;
  padding: 11px 18px; color: var(--accent);
  font-family: var(--fm); font-size: .56rem; letter-spacing: .18em; text-transform: uppercase;
  transition: border-color .3s, background .3s;
}
.film-sound:hover { border-color: rgba(196,168,130,.55); background: rgba(8,15,28,.72); }
.film-sound-ico {
  width: 7px; height: 7px; border-radius: 50%; background: rgba(240,236,228,.3);
  transition: background .3s, box-shadow .3s;
}
.film-sound.on .film-sound-ico { background: var(--highlight); box-shadow: 0 0 0 4px rgba(196,168,130,.16); }
@media (max-width: 700px) { .film-sound { display: none; } }
@media (prefers-reduced-motion: reduce) { #film { height: 74vh; } }


/* ==========  LIFESTYLE — cinematic "in context" pinned sequence  ========== */
#lifestyle { position: relative; z-index: 1; height: 100vh; overflow: hidden; background: #05080e; }
.lf-stack { position: absolute; inset: 0; }
/* Each frame is revealed with a clean clip-path wipe (no cross-fade ghosting). */
.lf-frame { position: absolute; inset: 0; margin: 0; clip-path: inset(0 0 100% 0); will-change: clip-path; }
.lf-frame:first-child { clip-path: inset(0 0 0% 0); }
.lf-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.08); will-change: transform;
}
.lf-frame:first-child img { transform: scale(1); }

.lf-scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(0deg, rgba(4,8,14,.85) 0%, rgba(4,8,14,.28) 40%, transparent 64%),
    linear-gradient(90deg, rgba(4,8,14,.55), transparent 55%);
}
.lf-ui { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.lf-eyebrow {
  position: absolute; top: clamp(96px, 13vh, 132px); left: 8vw;
  font-family: var(--fm); font-size: .62rem; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(240,236,228,.6);
}
.lf-cap {
  position: absolute; left: 8vw; bottom: clamp(78px, 13vh, 132px);
  width: min(680px, 84vw); opacity: 0; transform: translateY(30px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.lf-cap.on { opacity: 1; transform: none; }
.lf-sub {
  display: block; font-family: var(--fm); font-size: .6rem; letter-spacing: .24em;
  text-transform: uppercase; color: var(--highlight); margin-bottom: 14px;
}
.lf-title {
  display: block; font-family: var(--fd); font-weight: 700;
  font-size: clamp(2.2rem, 5.4vw, 4.6rem); line-height: .96; letter-spacing: -.03em;
  color: #fff; text-shadow: 0 2px 40px rgba(0,0,0,.5);
}
.lf-count {
  position: absolute; right: 8vw; bottom: clamp(78px, 13vh, 132px);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--fm); font-size: .68rem; letter-spacing: .1em; color: rgba(240,236,228,.55);
}
.lf-count i { display: block; width: 46px; height: 1px; background: rgba(232,224,208,.25); }
#lf-cur { color: var(--accent); font-size: .95rem; }

@media (max-width: 700px) {
  .lf-count { display: none; }
  .lf-title { font-size: clamp(2rem, 8vw, 3rem); }
}
@media (prefers-reduced-motion: reduce) {
  #lifestyle { height: auto; }
  .lf-stack { position: static; }
  .lf-frame { position: relative; clip-path: none !important; height: 68vh; }
  .lf-frame img { transform: none !important; }
  .lf-scrim, .lf-ui { display: none; }
}


/* ----------  MANIFESTO — brand statement + kinetic marquee  ---------- */
#manifesto {
  position: relative; z-index: 1; background: var(--bg);
  padding: clamp(110px, 18vh, 200px) 0 0; overflow: hidden; text-align: center;
}
.mf-inner { max-width: 880px; margin: 0 auto; padding: 0 8vw clamp(80px, 13vh, 150px); }
.mf-eyebrow {
  display: block; font-family: var(--fm); font-size: .66rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--highlight); margin-bottom: 26px;
}
.mf-statement {
  font-family: var(--fd); font-weight: 700;
  font-size: clamp(2.3rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -.03em;
  color: var(--accent); margin-bottom: 26px;
}
.mf-statement em { font-style: normal; color: var(--highlight); }
.mf-sub {
  max-width: 520px; margin: 0 auto 38px;
  font-size: 1rem; line-height: 1.75; color: rgba(240,236,228,.52);
}
.mf-cta {
  display: inline-flex; align-items: center; gap: 9px; cursor: none;
  font-family: var(--fd); font-size: .7rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--highlight); text-decoration: none;
  border: 1px solid rgba(196,168,130,.4); border-radius: 50px; padding: 14px 28px;
  transition: background .3s var(--ease-out), color .3s, border-color .3s;
}
.mf-cta:hover { background: var(--highlight); color: var(--bg); border-color: var(--highlight); }
.mf-cta:hover .cc-arr { transform: translateX(4px); }

.mf-marquee {
  position: relative; width: 100%; overflow: hidden;
  border-top: 1px solid rgba(232,224,208,.08);
  border-bottom: 1px solid rgba(232,224,208,.08);
  padding: clamp(22px, 3.4vh, 40px) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.mf-track {
  display: inline-flex; align-items: center; white-space: nowrap;
  will-change: transform; animation: mfscroll 34s linear infinite;
}
.mf-track span {
  font-family: var(--fd); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.7rem, 4.4vw, 3.6rem); letter-spacing: -.02em;
  color: transparent; -webkit-text-stroke: 1px rgba(232,224,208,.3);
  padding: 0 .35em;
}
.mf-track i {
  font-style: normal; color: var(--highlight);
  font-size: clamp(.8rem, 1.6vw, 1.3rem); padding: 0 .15em;
}
@keyframes mfscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mf-marquee:hover .mf-track { animation-play-state: paused; }


#stats {
  padding: 100px 8vw;
  border-top: 1px solid rgba(232,224,208,.07);
  border-bottom: 1px solid rgba(232,224,208,.07);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 40px; max-width: 1040px; margin: 0 auto; text-align: center;
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem,7vw,5.5rem); font-weight: 700;
  letter-spacing: -.04em; color: var(--accent); line-height: 1;
  margin-bottom: 10px;
}
.stat-lbl {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .66rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(240,236,228,.35);
}
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2,1fr); gap: 44px 24px; max-width: 460px; } }
@media (max-width: 380px) { .stats-grid { grid-template-columns: 1fr; } }


/* ----------  STUDIO QUOTE — signed brand statement  ---------- */
.studio-quote {
  padding: clamp(100px,17vh,200px) 8vw; position: relative; z-index: 1;
  background: var(--bg); border-top: 1px solid rgba(232,224,208,.07);
}
.sq-wrap { max-width: 920px; margin: 0 auto; text-align: center; }
.sq-mark {
  display: block; font-family: var(--fd); font-weight: 700; line-height: .7;
  font-size: clamp(6rem,15vw,12rem); color: rgba(196,168,130,.16); margin-bottom: -.06em; user-select: none;
}
.sq-text {
  font-family: var(--fd); font-weight: 600; margin: 0 0 42px;
  font-size: clamp(1.6rem,3.6vw,3rem); line-height: 1.24; letter-spacing: -.02em; color: var(--accent);
}
.sq-text em { font-style: normal; color: var(--highlight); }
.sq-by { display: inline-flex; align-items: center; gap: 16px; }
.sq-by::before { content: ''; width: 34px; height: 1px; background: rgba(196,168,130,.5); }
.sq-logo { width: 56px; opacity: .55; filter: brightness(0) invert(1) brightness(.9) sepia(.08); }
.sq-by span {
  font-family: var(--fm); font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(240,236,228,.45);
}


#contact {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 120px 8vw;
}
.contact-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 580px;
}
.contact-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem,6.5vw,5.2rem); font-weight: 700;
  letter-spacing: -.04em; color: var(--accent);
  line-height: .96; margin-bottom: 18px;
}
.contact-sub {
  font-size: .98rem; color: rgba(240,236,228,.48);
  line-height: 1.65; margin-bottom: 44px;
}
.wl-form {
  display: flex; max-width: 460px; margin: 0 auto;
  border: 1px solid rgba(232,224,208,.18); border-radius: 50px;
  overflow: hidden; background: rgba(8,15,28,.75);
  backdrop-filter: blur(12px);
}
.wl-form input {
  flex: 1; background: transparent; border: none; outline: none;
  padding: 15px 22px; font-family: 'Inter', sans-serif;
  font-size: .95rem; color: var(--text); min-width: 0;
}
.wl-form input::placeholder { color: rgba(240,236,228,.28); }
.wl-form button {
  background: var(--highlight); border: none;
  padding: 15px 26px; font-family: 'Space Grotesk', sans-serif;
  font-size: .7rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--bg); cursor: none;
  white-space: nowrap; transition: background .25s;
}
.wl-form button:hover { background: var(--accent); }
#form-ok {
  display: none; margin-top: 22px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .95rem; letter-spacing: .1em; color: var(--highlight);
}


footer {
  padding: 60px 8vw 44px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
  border-top: 1px solid rgba(232,224,208,.07);
}
.ft-logo { width: 130px; filter: brightness(0) invert(1) brightness(0.95) sepia(0.08); opacity: .5; }
.ft-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .62rem; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(240,236,228,.25); text-align: center;
}
.ft-right { text-align: right; }
.ft-links { display: flex; gap: 22px; justify-content: flex-end; list-style: none; margin-bottom: 10px; }
.ft-links a {
  font-family: 'Space Grotesk', sans-serif; font-size: .68rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(240,236,228,.35); text-decoration: none; transition: color .2s;
}
.ft-links a:hover { color: var(--highlight); }
.ft-copy { font-size: .72rem; color: rgba(240,236,228,.18); }
@media (max-width: 680px) {
  footer { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .ft-right { text-align: center; }
  .ft-links { justify-content: center; }
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .scroll-line { animation: none; }

  /* No scroll-pin: the figure stays sticky and the story beats simply
     stack as readable, scrollable text below it. */
  #hero { height: auto; min-height: 100vh; display: block; overflow: visible; }
  #hero-canvas { position: sticky; top: 0; height: 100vh; }
  .hero-bgword, .lead-bl, .lead-br, .lead-rv, .scroll-hint { display: none; }
  .hero-stories {
    position: relative; inset: auto; z-index: 5;
    display: grid; gap: 64px; padding: 0 8vw 90px; margin-top: -26vh;
  }
  .hero-story {
    position: relative; top: auto; left: auto; right: auto;
    width: min(560px, 92vw); margin: 0 auto; text-align: center;
    opacity: 1 !important; transform: none !important;
  }
  .hero-story.from-left, .hero-story.from-right { text-align: center; }
  .hs-num { margin-left: auto; margin-right: auto; }
}

