/* ============================================================
   OVA — Dark Luxury Editorial
   Fonts: League Spartan (geometric) — one family, display / UI / body
   Motion: GSAP 3 + ScrollTrigger | Scroll: Lenis
   ============================================================ */

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  /* Neutral greyscale palette */
  --bg:          #0A0A0A;
  --bg-1:        #0F0F0F;
  --bg-2:        #151515;
  --bg-3:        #1C1C1C;
  --bg-4:        #242424;

  /* Light (hero / travel contrast) */
  --light:       #F2F2F2;
  --light-2:     #E6E6E6;

  /* Type */
  --cream:       #ECECEC;
  --cream-soft:  rgba(236,236,236,0.74);
  --cream-faint: rgba(236,236,236,0.46);

  /* Accent — neutral light grey (was gold) */
  --gold:        #BFBFBF;
  --gold-dim:    rgba(191,191,191,0.6);
  --gold-soft:   rgba(191,191,191,0.14);
  --gold-faint:  rgba(191,191,191,0.06);

  /* Rules */
  --line:        rgba(236,236,236,0.06);
  --line-gold:   rgba(191,191,191,0.2);

  --font-display: "League Spartan", "Helvetica Neue", Arial, sans-serif;
  --font-ui:      "League Spartan", "Helvetica Neue", Arial, sans-serif;
  --font-body:    "League Spartan", "Helvetica Neue", Arial, sans-serif;

  --r-2xl: 32px;
  --r-xl:  24px;
  --r-lg:  16px;
  --r-sm:  8px;

  --ease-out:  cubic-bezier(0.16,1,0.3,1);
  --ease-expo: cubic-bezier(0.19,1,0.22,1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: auto; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.62;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 52px; }

/* ── Noise ───────────────────────────────────────────────── */
.noise-svg {
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none; opacity: 0.032;
  width: 100vw; height: 100vh;
}

/* ── Custom cursor ───────────────────────────────────────── */
.cursor-dot {
  position: fixed; z-index: 9997; pointer-events: none;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%,-50%);
  will-change: transform;
  transition: width .2s var(--ease-out), height .2s var(--ease-out), background .2s;
}
.cursor-ring {
  position: fixed; z-index: 9996; pointer-events: none;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(191,191,191,0.28);
  transform: translate(-50%,-50%);
  will-change: transform;
  transition: width .3s var(--ease-out), height .3s var(--ease-out), border-color .3s;
}
body.cursor-hover .cursor-dot  { width: 12px; height: 12px; }
body.cursor-hover .cursor-ring { width: 56px; height: 56px; border-color: rgba(191,191,191,0.16); }
@media (hover:none) { .cursor-dot, .cursor-ring { display:none; } body, button { cursor: auto; } }

/* ── Page progress bar ───────────────────────────────────── */
.page-progress {
  position: fixed; right: 28px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 88px;
  background: rgba(191,191,191,0.08);
  z-index: 998;
  opacity: 0; transition: opacity .5s;
}
.page-progress.is-visible { opacity: 1; }
.page-progress-fill {
  position: absolute; top: 0; left: 0; right: 0;
  height: 0%; background: var(--gold);
}

/* ── Loader ──────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.loader-wordmark {
  display: flex;
}
.loader-wordmark img {
  width: 150px; height: auto; display: block;
  opacity: 0; transform: translateY(18px);
}
.loader-line {
  width: 220px; height: 1px;
  background: rgba(236,236,236,0.06); overflow: hidden;
}
.loader-line-fill { height: 100%; width: 0; background: var(--gold); }
.loader-tagline {
  font-family: var(--font-ui); font-size: 0.65rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--cream-faint); opacity: 0;
}

/* ── Type scale ──────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; }
h1 { font-size: clamp(3.75rem, 9vw, 9rem); line-height: 0.89; letter-spacing: -0.04em; }
h2.section-title {
  font-size: clamp(3.2rem, 7vw, 7.5rem);
  line-height: 0.92; letter-spacing: -0.035em;
}
h3 { font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.4; font-weight: 400; }

.section-eyebrow {
  font-family: var(--font-ui); font-size: 0.65rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 24px;
}
.section-lede {
  font-size: 1.05rem; color: var(--cream-soft); max-width: 44ch;
  margin-top: 28px; line-height: 1.78; font-weight: 400;
}

/* ── Split chars ─────────────────────────────────────────── */
.split-word {
  display: inline-block; overflow: hidden;
  vertical-align: bottom; padding: 0.15em 0; margin: -0.15em 0;
}
.split-char { display: inline-block; will-change: transform, opacity; }
.line-clip   { display: block; overflow: hidden; padding-bottom: 0.07em; }

/* ── Gold divider ────────────────────────────────────────── */
.gold-rule {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--gold-dim), transparent 70%);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 34px; border-radius: 999px;
  font-family: var(--font-ui); font-weight: 400; font-size: 0.83rem;
  letter-spacing: 0.05em;
}
.btn-primary { background: var(--gold); color: var(--bg); }
.btn-outline {
  border: 1px solid var(--line-gold); color: var(--cream);
}
.btn-dark { background: var(--cream); color: var(--bg); }
.mag-btn { display: inline-flex; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav-wrap {
  position: fixed; top: 22px; left: 0; right: 0; z-index: 1000;
  display: flex; flex-direction: column; align-items: center; pointer-events: none;
  transition: transform .45s var(--ease-out), opacity .35s var(--ease-out);
}
.nav-wrap.is-hidden {
  transform: translateY(-160%);
  opacity: 0;
  pointer-events: none;
}
.nav-pill {
  pointer-events: auto;
  width: min(1000px, calc(100% - 40px));
  display: flex; flex-direction: column;
  padding: 12px 12px 12px 22px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(11,11,11,0.75);
  border: 1px solid var(--line);
  box-shadow: 0 8px 48px rgba(0,0,0,0.6), 0 1px 0 rgba(191,191,191,0.06) inset;
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  transition: padding .4s var(--ease-out), background .4s;
  opacity: 0;
}
.nav-pill.is-scrolled {
  padding: 8px 8px 8px 18px;
  background: rgba(8,8,8,0.92);
}
.nav-bar {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px;
}
.nav-brand {
  grid-column: 1; justify-self: start;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-weight: 400;
  letter-spacing: 0.12em; font-size: 0.88rem; color: var(--cream);
}
.nav-brand img { height: 18px; width: auto; opacity: 0.85; }
.nav-links { grid-column: 2; justify-self: center; display: flex; gap: 32px; margin: 0; }
.nav-links a {
  font-size: 0.82rem; color: var(--cream-soft);
  transition: color .2s; letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  grid-column: 3; justify-self: end;
  background: var(--gold); color: var(--bg);
  padding: 12px 24px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 400; font-family: var(--font-ui);
  white-space: nowrap; letter-spacing: 0.05em;
}
.nav-burger {
  grid-column: 3; justify-self: end;
  display: none; width: 40px; height: 40px; border-radius: 50%;
  border: none; background: rgba(236,236,236,0.05);
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-burger span {
  display: block; width: 18px; height: 1.5px; border-radius: 2px;
  background: var(--cream); transform-origin: center;
  transition: transform .22s var(--ease-out), opacity .22s;
}
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }
.nav-sheet {
  pointer-events: auto; display: none; flex-direction: column;
  padding: 0 6px; max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease-out);
}
.nav-sheet.is-open { max-height: 320px; padding-top: 4px; }
.nav-sheet a {
  padding: 15px 18px; border-radius: var(--r-sm);
  font-size: 0.9rem; color: var(--cream-soft); transition: color .2s, background .2s;
}
.nav-sheet a:hover { background: var(--gold-faint); color: var(--cream); }
.nav-sheet-cta {
  background: var(--gold-soft); color: var(--gold);
  text-align: center; margin-top: 4px;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero-scroll { position: relative; height: 420vh; }
.hero-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  background: linear-gradient(155deg, #E8E8E8 0%, #EDEDED 50%, #F3F3F3 100%);
}
#ovaCanvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

/* headline */
.hero-headline {
  position: absolute; bottom: 22vh; left: 56px; z-index: 2; max-width: 82vw;
}
.hero-headline h1 { line-height: 0.89; }
.line-clip { display: block; overflow: hidden; padding-bottom: 0.07em; }
.h1-line { display: block; color: #0C0C0C; }
.h1-line--accent { color: #0C0C0C; }

/* bottom bar */
.hero-bottombar {
  position: absolute; bottom: 48px; left: 0; right: 0; z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 56px;
}
.hero-sub {
  font-size: 0.86rem; color: rgba(12,12,12,0.44);
  line-height: 1.7; white-space: nowrap;
  font-family: var(--font-ui); letter-spacing: 0.02em;
}
.hero-scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-cue-line {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(12,12,12,0.5), transparent);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}
.scroll-cue-label {
  font-family: var(--font-ui); font-size: 0.6rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: rgba(12,12,12,0.35);
}
@keyframes scroll-pulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* piece labels */
.piece-labels { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.piece-label {
  position: absolute; left: var(--x); top: var(--y);
  transform: translate(0,-50%);
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-ui); font-size: 0.72rem;
  padding: 6px 15px 6px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.76);
  backdrop-filter: blur(16px); color: #0C0C0C;
  opacity: 0; white-space: nowrap;
  transition: opacity .2s linear; letter-spacing: 0.04em;
}
.piece-label .dot { width: 5px; height: 5px; border-radius: 50%; background: #0C0C0C; flex-shrink: 0; }

/* ── Marquee ─────────────────────────────────────────────── */
.marquee-section {
  background: var(--bg-1);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0; overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex; align-items: center;
  font-family: var(--font-ui); font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream-faint); will-change: transform;
}
.marquee-track span   { padding: 0 20px; }
.marquee-track .msep  { color: var(--gold-dim); padding: 0 4px; }

/* ── Sections ────────────────────────────────────────────── */
.section { padding: 160px 0; background: var(--bg); }
.section-alt { background: var(--bg-1); }
.section-header { margin-bottom: 72px; }

/* ── Philosophy strip ────────────────────────────────────── */
.philosophy-strip {
  background: var(--bg-1);
  border-bottom: 1px solid var(--line);
  padding: 100px 0;
}
.philo-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.philo-item { padding: 0 56px; text-align: center; }
.philo-item + .philo-item { border-left: 1px solid var(--line); }
.philo-num {
  font-family: var(--font-ui); font-size: 0.64rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 20px;
}
.philo-item h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--cream);
  margin-bottom: 16px; font-weight: 400; letter-spacing: -0.01em;
}
.philo-item p { font-size: 0.9rem; color: var(--cream-soft); line-height: 1.78; font-weight: 400; }

/* ── Bento cards ─────────────────────────────────────────── */
.bento { display: grid; gap: 18px; }
.bento-3 { grid-template-columns: repeat(3, 1fr); }
.bento-card {
  position: relative; border-radius: var(--r-2xl);
  overflow: hidden; background: var(--bg-2);
  border: 1px solid var(--line);
  min-height: 480px;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
}
.bento-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0; transition: opacity .5s; z-index: 3;
}
.bento-card:hover::before { opacity: 1; }

.card-img-wrap { overflow: hidden; flex-shrink: 0; }
.card-img-wrap img {
  width: 100%; height: 290px; object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.bento-card:hover .card-img-wrap img { transform: scale(1.05); }
.bento-text {
  padding: 32px 34px 40px; text-align: center;
  flex: 1; display: flex; flex-direction: column; justify-content: flex-start;
}
.card-num {
  font-family: var(--font-ui); font-size: 0.62rem; letter-spacing: 0.18em;
  color: var(--gold); font-weight: 400; display: block; margin-bottom: 14px;
  text-transform: uppercase;
}
.bento-text h3 { color: var(--cream); margin-bottom: 12px; }
.bento-text p { color: var(--cream-soft); font-size: 0.9rem; line-height: 1.72; font-weight: 400; min-height: 7.5em; }

/* ── Quote ───────────────────────────────────────────────── */
.quote-section {
  background: var(--bg-2); padding: 140px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote-inner { position: relative; }
.quote-gold-line {
  width: 52px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 52px;
}
.big-quote p {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: 1.15; letter-spacing: -0.025em;
  color: var(--cream); max-width: 20ch;
}
.big-quote cite {
  display: block; margin-top: 36px;
  font-family: var(--font-ui); font-size: 0.7rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  font-style: normal;
}

/* ── Materials ───────────────────────────────────────────── */
.materials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.material-card {
  border-radius: var(--r-2xl); overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.material-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 56px rgba(0,0,0,0.5);
}
.material-img-wrap { overflow: hidden; flex-shrink: 0; }
.material-img-wrap img {
  width: 100%; height: 340px; object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.material-card:hover .material-img-wrap img { transform: scale(1.04); }
/* spacing set in rem so the title→body→specs rhythm is identical on mobile and desktop */
.material-body { padding: 2.5rem 2.5rem 3rem; display: flex; flex-direction: column; align-items: stretch; text-align: left; flex: 1; }
.material-num {
  font-family: var(--font-ui); font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 1rem;
}
.material-body h3 {
  font-size: 1.35rem; color: var(--cream); margin-bottom: 1rem; font-weight: 400;
}
.material-body > p {
  font-size: 0.9rem; color: var(--cream-soft); line-height: 1.76; font-weight: 400;
  margin-bottom: 2.25rem; min-height: 4em;
}
.material-specs { border-top: 1px solid var(--line); margin-top: auto; align-self: stretch; text-align: left; }
.mspec {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 0.95rem 0; border-bottom: 1px solid var(--line);
}
.mspec span:first-child {
  font-family: var(--font-ui); font-size: 0.65rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-faint);
  white-space: nowrap;
}
.mspec span:last-child {
  font-family: var(--font-ui); font-size: 0.85rem;
  color: var(--cream); font-weight: 400;
  white-space: nowrap; text-align: right;
}

/* ── Inside OVA ──────────────────────────────────────────── */
.section-inside { background: var(--bg-1); overflow: hidden; position: relative; }
.inside-bg-num {
  position: absolute; right: -0.06em; top: 50%; transform: translateY(-50%);
  font-family: var(--font-ui); font-weight: 400;
  font-size: clamp(14rem, 30vw, 26rem); line-height: 1; letter-spacing: -0.04em;
  color: rgba(236,236,236,0.018);
  pointer-events: none; user-select: none;
}
.piece-ticker {
  border-bottom: 1px solid var(--line); padding: 18px 0;
  overflow: hidden; white-space: nowrap; margin-bottom: 90px;
}
.piece-ticker-track {
  display: inline-flex; align-items: center;
  font-family: var(--font-ui); font-size: 0.64rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream-faint); will-change: transform;
}
.piece-ticker-track span { padding: 0 18px; }
.piece-ticker-track .ptick-sep { color: var(--gold-dim); padding: 0 4px; }

.bento-pieces { grid-template-columns: repeat(3, 1fr); }
.piece-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  background: var(--bg-3); border: 1px solid var(--line);
  aspect-ratio: 1/1;
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.piece-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 56px rgba(0,0,0,0.55);
}
.piece-card.span-wide {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 8;
}
.piece-img-wrap { width: 100%; height: 100%; overflow: hidden; }
.piece-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .85s var(--ease-out);
}
.piece-card:hover .piece-img-wrap img { transform: scale(1.07); }
.piece-tag {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--font-ui); font-size: 0.66rem; font-weight: 400;
  padding: 7px 15px; border-radius: 999px; letter-spacing: 0.06em;
  background: rgba(10,10,10,0.7); border: 1px solid rgba(236,236,236,0.1);
  backdrop-filter: blur(14px); color: var(--cream);
}

/* ── Film ────────────────────────────────────────────────── */
.film-section {
  position: relative;
  background: #000;
  overflow: hidden;
  line-height: 0;               /* kill inline-descender gap under the frame */
}
.film-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;         /* section is exactly the video — no letterbox */
}
.film-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
}

/* ── Travel ──────────────────────────────────────────────── */
.travel-section { background: var(--light); padding: 160px 0; }
.travel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.travel-col { display: flex; flex-direction: column; }
.travel-copy .section-eyebrow { color: rgba(12,12,12,0.4); }
.travel-copy .section-title { color: #0C0C0C; font-size: clamp(2.6rem, 5.5vw, 5.5rem); }
.travel-copy .section-lede { color: rgba(12,12,12,0.55); }
.travel-specs {
  margin-top: 40px; border-top: 1px solid rgba(12,12,12,0.08);
  padding-top: 32px; display: flex; flex-direction: column;
}
.spec-item {
  display: flex; align-items: baseline; gap: 20px;
  padding: 14px 0; border-bottom: 1px solid rgba(12,12,12,0.07);
}
.spec-label {
  font-family: var(--font-ui); font-size: 0.64rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(12,12,12,0.35); min-width: 82px;
}
.spec-val { font-size: 0.88rem; color: rgba(12,12,12,0.65); }
.travel-image-frame { position: relative; }
.travel-image {
  border-radius: var(--r-2xl); overflow: hidden;
  background: var(--light-2); border: 1px solid rgba(12,12,12,0.07);
  box-shadow: 0 40px 96px rgba(0,0,0,0.12);
}
.travel-image img { height: 560px; object-fit: cover; width: 100%; transition: transform .9s var(--ease-out); }
.travel-image:hover img { transform: scale(1.03); }
.travel-tag {
  position: absolute; top: 24px; right: 24px;
  padding: 9px 18px; border-radius: 999px;
  font-family: var(--font-ui); font-size: 0.66rem; letter-spacing: 0.1em;
  color: rgba(12,12,12,0.55); text-transform: uppercase;
  background: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
}

/* ── Designer ────────────────────────────────────────────── */
.designer-section { background: var(--bg-1); padding: 160px 0; }
.designer-grid { display: grid; grid-template-columns: 280px 1fr; gap: 96px; align-items: center; }
.designer-left { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.designer-avatar {
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--bg-3); border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--line), inset 0 0 48px rgba(191,191,191,0.05);
}
.designer-avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(1);
}
.designer-right .section-lede { max-width: 50ch; }
.designer-accolade {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 36px;
  font-family: var(--font-ui); font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  padding: 13px 22px; border-radius: 999px;
  background: var(--gold-faint); border: 1px solid var(--line-gold);
}

/* ── Stats ───────────────────────────────────────────────── */
.stats-row {
  background: var(--bg);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 96px 0;
}
.stats-inner { display: flex; align-items: center; justify-content: center; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 0 72px; }
.stat-num {
  font-family: var(--font-display); font-size: clamp(3.2rem, 5.8vw, 6rem);
  font-weight: 400; letter-spacing: -0.04em; color: var(--cream); line-height: 1;
  font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1;
}
.stat-rule { width: 1px; height: 88px; background: var(--line); flex-shrink: 0; }
.stat-label {
  font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream-faint); font-family: var(--font-ui);
}

/* ── CTA ─────────────────────────────────────────────────── */
.cta-band {
  background: var(--bg-2); padding: 180px 0; text-align: center;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(191,191,191,0.055) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; }
.cta-award {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 20px; border-radius: 999px; margin-bottom: 32px;
  font-family: var(--font-ui); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--line-gold); background: var(--gold-faint);
}
.cta-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(4rem, 10vw, 10.5rem);
  line-height: 0.91; letter-spacing: -0.04em; color: var(--cream);
  margin-bottom: 32px;
}
.cta-sub {
  color: var(--cream-soft); max-width: none; margin-bottom: 52px;
  font-size: 1.05rem; line-height: 1.76; font-weight: 400;
}
.cta-sub-break, .accolade-break, .title-break { display: none; }
.cta-btn { margin-top: 4px; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-1); border-top: 1px solid var(--line);
  border-radius: 32px 32px 0 0; margin-top: -1px;
  position: relative; overflow: hidden; padding-top: 88px;
}
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
  align-items: start;
  padding-bottom: 56px; border-bottom: 1px solid var(--line);
}
.footer-logo { width: 74px; height: auto; opacity: 0.6; margin-bottom: 18px; }
.footer-col h4 {
  font-family: var(--font-ui); font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--cream-faint); margin-bottom: 12px;
}
.footer-col p { color: var(--cream-soft); font-size: 0.85rem; line-height: 1.7; font-weight: 400; }
.footer-brand p { color: var(--cream-faint); }
.footer-col a { color: inherit; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-social {
  list-style: none; display: flex; flex-direction: column; gap: 9px;
  font-size: 0.85rem;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between;
  padding-top: 24px; padding-bottom: 24px;
  font-size: 0.75rem; color: var(--cream-faint);
}

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(191,191,191,0.18); border-radius: 999px; }

/* ── Focus ───────────────────────────────────────────────── */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px;
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .split-char { transform: none !important; opacity: 1 !important; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1080px) {
  .philo-grid { grid-template-columns: 1fr; gap: 0; }
  .philo-item { padding: 44px 0; }
  .philo-item + .philo-item { border-left: none; border-top: 1px solid var(--line); }
  .philo-item:first-child { padding-top: 0; }
  .materials-grid { grid-template-columns: 1fr; }
  .material-body > p { min-height: 0; }
  .designer-grid { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .designer-left { flex-direction: row; justify-content: center; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px 48px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .nav-pill .nav-links, .nav-pill .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-sheet  { display: flex; }
  .nav-pill { width: 85vw; border-radius: 24px; padding: 10px 10px 10px 20px; }
  .nav-pill.is-scrolled { padding: 8px 8px 8px 16px; }
  .bento-3 { grid-template-columns: 1fr; }
  .bento-text p { min-height: 0; }
  .bento-pieces { grid-template-columns: repeat(2, 1fr); }
  .piece-card.span-wide { grid-column: 1 / -1; aspect-ratio: 16/7; }
  /* mobile order: heading → image → description */
  .travel-grid { display: flex; flex-direction: column; gap: 32px; }
  .travel-col { display: contents; }
  .travel-head { order: 1; }
  .travel-image-frame { order: 2; }
  .travel-body { order: 3; }
  .travel-image img { height: 420px; }
  .stats-inner { flex-wrap: wrap; gap: 44px; justify-content: center; }
  .stat-rule { display: none; }
  .stat-item { padding: 0 44px; }
  .page-progress { display: none; }
  .hero-headline { left: 36px; bottom: 18vh; }
  .hero-bottombar { padding: 0 36px; }
  .hero-scroll { height: 320vh; }

  /* keep the vertical rhythm consistent with .section on tablet */
  .section { padding: 120px 0; }
  .quote-section,
  .travel-section,
  .designer-section { padding: 120px 0; }
  .philosophy-strip { padding: 80px 0; }
  .stats-row { padding: 80px 0; }
  .cta-band { padding: 128px 0; }
  .section-header { margin-bottom: 56px; }
  .piece-ticker { margin-bottom: 60px; }
}

@media (max-width: 600px) {
  .container { padding: 0 24px; }
  .section,
  .travel-section,
  .designer-section { padding: 88px 0; }
  .quote-section { padding: 80px 0; }
  .philosophy-strip,
  .stats-row { padding: 60px 0; }
  .cta-band { padding: 96px 0; }
  .section-header { margin-bottom: 40px; }
  /* film reads as the last block of the "Inside OVA" section: framed like the
     cards above it and sitting the same distance below them as they are apart */
  .section-inside { padding-bottom: 18px; }
  .film-section { background: var(--bg-1); padding: 0 24px 24px; line-height: normal; }
  .travel-section { padding-top: 44px; }
  .film-frame {
    border-radius: var(--r-xl); overflow: hidden;
    background: var(--bg-3); border: 1px solid var(--line);
  }
  .film-frame iframe { border-radius: inherit; }
  .cta-sub-break, .accolade-break, .title-break { display: inline; }
  .designer-accolade { border-radius: 18px; text-align: center; }
  .footer { padding-top: 56px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; padding-bottom: 40px; text-align: center; }
  .footer-logo { margin-left: auto; margin-right: auto; }
  .footer-social { align-items: center; }
  .footer-bottom-inner {
    flex-direction: column; align-items: center; text-align: center; gap: 10px;
    padding-top: 20px; padding-bottom: 20px;
  }
  .piece-ticker { margin-bottom: 44px; }
  h1 { font-size: clamp(3rem, 13vw, 4.5rem); }
  h2.section-title { font-size: clamp(2.4rem, 9.5vw, 3.6rem); }
  .loader-wordmark img { width: 104px; }
  .hero-bottombar { flex-direction: column; align-items: flex-start; gap: 14px; bottom: 28px; padding: 0 24px; }
  .hero-scroll-cue { display: none; }
  .hero-headline { left: 24px; bottom: 27vh; max-width: 94vw; }
  .cta-title { font-size: clamp(3.2rem, 15vw, 6rem); }
  .philo-item { padding: 36px 0; }
  .big-quote p { font-size: clamp(1.6rem, 7.5vw, 2.6rem); }
  .stats-inner { flex-direction: column; gap: 48px; }
  .designer-right .section-lede { max-width: 100%; }
  .nav-wrap { top: 14px; }
  .bento-pieces { grid-template-columns: 1fr; }
  .piece-card.span-wide { aspect-ratio: 4/3; }
}
