

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

:root {

  --ivory:      #F2EEE5;
  --ivory-2:    #EAE5D8;
  --ivory-deep: #E2DCCB;
  --ink:        #14130F;
  --ink-soft:   #35332B;
  --muted:      #6C6759;
  --faint:      #9A9483;
  --line:       rgba(20,19,15,0.14);
  --line-soft:  rgba(20,19,15,0.08);

  --accent:     #B5542B;

  --world-bg:   var(--ivory);
  --world-ink:  var(--ink);
  --world-accent: var(--accent);

  --nav-h: 76px;
  --pad-x: clamp(20px, 5vw, 72px);
  --maxw: 1360px;

  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Manrope', system-ui, -apple-system, sans-serif;
  --pixel: 'VT323', monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll { overflow: hidden; }

::selection { background: var(--accent); color: var(--ivory); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ivory-2); }
::-webkit-scrollbar-thumb { background: rgba(20,19,15,0.25); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow .dot { color: var(--world-accent); }

.serif { font-family: var(--serif); font-weight: 400; }
.italic { font-style: italic; }

.mono-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.display {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: clamp(40px, 8vw, 118px);
}
.display .ser {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
              border-color 0.4s var(--ease), color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
  color: var(--ink);
}
.nav.scrolled {
  background: color-mix(in srgb, var(--ivory) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line-soft);
}

.nav.on-dark { color: var(--ivory); }
.nav.on-dark.scrolled {
  background: color-mix(in srgb, #14130F 55%, transparent);
  border-bottom-color: rgba(255,255,255,0.12);
}

.nav-inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; line-height: 1.05; }
.brand-logo { height: 42px; width: auto; display: block; }
.brand-logo-light { display: none; }
.nav.on-dark .brand-logo-dark { display: none; }
.nav.on-dark .brand-logo-light { display: block; }
.footer-logo { height: 62px; width: auto; display: block; }
.brand-main {
  font-size: 15px; font-weight: 800; letter-spacing: 0.02em;
}
.brand-sub {
  font-size: 9px; font-weight: 600; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--muted);
  transition: color 0.4s var(--ease);
}
.nav.on-dark .brand-sub { color: rgba(255,255,255,0.55); }

.nav-links { display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); }
.nav-links a {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em;
  position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: currentColor; transition: width 0.35s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  border: 1px solid currentColor; border-radius: 100px;
  padding: 9px 20px !important;
  opacity: 0.9; transition: opacity 0.25s, background 0.25s, color 0.25s;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--ink); color: var(--ivory); opacity: 1; }
.nav.on-dark .nav-cta:hover { background: var(--ivory); color: var(--ink); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-burger span {
  width: 26px; height: 2px; background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.asset {
  position: relative;
  width: 100%;
  background:
    repeating-linear-gradient(-45deg,
      transparent 0 21px,
      color-mix(in srgb, var(--world-ink) 9%, transparent) 21px 22px),
    color-mix(in srgb, var(--world-ink) 11%, var(--world-bg));
  border: 1px solid color-mix(in srgb, var(--world-ink) 26%, transparent);
  border-radius: 3px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--world-ink);
}
.asset::after {
  content: ''; position: absolute; inset: 10px; border: 1px solid
    color-mix(in srgb, var(--world-ink) 10%, transparent);
  pointer-events: none;
}
.asset-inner {
  position: relative; z-index: 1; text-align: center;
  padding: 24px; max-width: 90%;
}
.asset-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--world-bg);
  background: color-mix(in srgb, var(--world-accent) 88%, var(--world-ink));
  padding: 4px 10px; border-radius: 2px;
  margin-bottom: 16px;
}
.asset-title {
  display: block;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.2;
  color: color-mix(in srgb, var(--world-ink) 88%, var(--world-bg));
}
.asset-sub {
  display: block; margin-top: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--world-ink) 48%, var(--world-bg));
}

.asset > img, .asset > video {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.asset.has-media { background: color-mix(in srgb, var(--world-ink) 12%, var(--world-bg)); }
.asset.has-media::after { display: none; }

.asset[data-ratio="16/9"] { aspect-ratio: 16/9; }
.asset[data-ratio="4/5"]  { aspect-ratio: 4/5; }
.asset[data-ratio="3/4"]  { aspect-ratio: 3/4; }
.asset[data-ratio="1/1"]  { aspect-ratio: 1/1; }
.asset[data-ratio="21/9"] { aspect-ratio: 21/9; }
.asset[data-ratio="3/2"]  { aspect-ratio: 3/2; }

.media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 3px;
  background: color-mix(in srgb, var(--world-ink) 10%, var(--world-bg));
}
.media img, .media video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.media[data-ratio="16/9"] { aspect-ratio: 16/9; }
.media[data-ratio="4/5"]  { aspect-ratio: 4/5; }
.media[data-ratio="3/4"]  { aspect-ratio: 3/4; }
.media[data-ratio="1/1"]  { aspect-ratio: 1/1; }
.media[data-ratio="21/9"] { aspect-ratio: 21/9; }
.media[data-ratio="3/2"]  { aspect-ratio: 3/2; }
.media[data-ratio="16/10"]{ aspect-ratio: 16/10; }

.media .media-badge {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; background: rgba(0,0,0,0.45); backdrop-filter: blur(4px);
  padding: 4px 9px; border-radius: 100px; pointer-events: none;
}

.reveal { opacity: 0; transform: translateY(34px); transition:
  opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: var(--nav-h);
  position: relative;
}
.hero-inner { padding-top: clamp(20px, 6vh, 60px); padding-bottom: 40px; }
.hero-eyebrow { margin-bottom: clamp(28px, 6vh, 52px); display: flex; gap: 14px; align-items: center; }
.hero-eyebrow .line { height: 1px; width: 52px; background: var(--line); }

.hero h1 {
  font-weight: 700; letter-spacing: -0.025em; line-height: 0.98;
  font-size: clamp(46px, 9.5vw, 150px);
  max-width: 15ch;
}
.hero h1 .ser {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  letter-spacing: 0; color: var(--accent);
}
.hero-sub {
  margin-top: clamp(28px, 5vh, 46px);
  max-width: 46ch;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--ink-soft);
  line-height: 1.55;
}
.hero-foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap;
  margin-top: clamp(40px, 8vh, 88px);
}
.hero-meta { display: flex; flex-direction: column; gap: 4px; }
.hero-meta strong { font-weight: 700; font-size: 14px; }
.scroll-cue { display: flex; align-items: center; gap: 12px; color: var(--muted); }
.scroll-cue .bar {
  width: 1px; height: 40px; background: linear-gradient(var(--muted), transparent);
  transform-origin: top; animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue { 0%,100%{transform:scaleY(1);opacity:.9} 50%{transform:scaleY(.5);opacity:.3} }

.expand {
  position: relative;
  height: 320vh;
  background: var(--ivory);
}
.expand-sticky {
  position: sticky; top: 0;
  height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.expand-frame {
  position: relative;
  width: 42%;
  aspect-ratio: 16/10;
  transform-origin: center center;
  will-change: transform;
}
.expand-frame .asset,
.expand-frame .media { height: 100%; border-radius: 4px; box-shadow: 0 40px 90px rgba(0,0,0,0.35); }
.expand-world {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; text-align: center; color: #F4E2BC;
  opacity: 0; pointer-events: none;
  padding: var(--pad-x);
}
.expand-world .eyebrow { color: rgba(244,226,188,0.7); }
.expand-world .eyebrow .dot { color: #E7B44B; }
.expand-world h2 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(40px, 8vw, 104px); line-height: 1;
  color: #F6E7C4;
}
.expand-tint {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse 90% 90% at 50% 45%,
    rgba(20,12,4,0.15), rgba(12,8,2,0.82));
  opacity: 0; pointer-events: none;
}
.expand-caption {
  position: absolute; left: var(--pad-x); bottom: 10vh; z-index: 4;
  max-width: 30ch;
}
.expand-caption .num { font-family: var(--serif); font-size: 20px; color: var(--muted); }

.section { padding: clamp(90px, 15vh, 190px) 0; }
.section-tight { padding: clamp(64px, 10vh, 130px) 0; }

.stmt {
  font-weight: 600; letter-spacing: -0.02em; line-height: 1.12;
  font-size: clamp(28px, 4.4vw, 60px);
  max-width: 18ch;
}
.stmt .ser { font-family: var(--serif); font-weight: 400; font-style: italic; color: var(--accent); letter-spacing: 0; }
.stmt-grid { display: grid; grid-template-columns: 1fr; gap: clamp(40px, 8vw, 100px); }
@media (min-width: 900px) { .stmt-grid { grid-template-columns: 1.4fr 1fr; align-items: end; } }
.stmt-side { color: var(--muted); font-size: 16px; max-width: 40ch; }
.stmt-side p + p { margin-top: 1em; }

.spectrum { position: relative; background: var(--ivory-2); }
.spectrum-head { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: clamp(30px, 6vh, 60px); }
.spectrum-list { position: relative; z-index: 2; border-top: 1px solid var(--line); }
.spectrum-row {
  display: flex; align-items: baseline; gap: 20px;
  padding: clamp(14px, 2.4vh, 26px) 0;
  border-bottom: 1px solid var(--line);
  cursor: default;
  transition: padding-left 0.4s var(--ease), color 0.35s var(--ease);
  color: var(--ink);
}
.spectrum-row .idx { font-size: 12px; color: var(--muted); font-weight: 600; width: 3ch; flex-shrink: 0; }
.spectrum-row .cat {
  font-weight: 700; letter-spacing: -0.02em; line-height: 1;
  font-size: clamp(30px, 6.5vw, 88px);
  white-space: nowrap;
  transition: color 0.35s var(--ease);
}
.spectrum-row .tag {
  margin-left: auto; font-size: 12px; color: var(--muted); font-weight: 600;
  letter-spacing: 0.04em; opacity: 0; transform: translateX(-8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
@media (hover: hover) and (min-width: 900px) {
  .spectrum-list:hover .spectrum-row { color: var(--faint); }
  .spectrum-row:hover { padding-left: 22px; color: var(--ink) !important; }
  .spectrum-row:hover .tag { opacity: 1; transform: none; }
}

.spectrum-preview {
  position: fixed; z-index: 3; width: 300px; aspect-ratio: 4/5;
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  box-shadow: 0 30px 70px rgba(0,0,0,0.32);
  border-radius: 4px; overflow: hidden;
  background: var(--ink);
}
.spectrum-preview.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.spectrum-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spectrum-preview-cap {
  position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 1;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em; color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.spectrum-preview::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 42%);
}

.row-thumb { display: none; }
@media (max-width: 899px) {
  .spectrum-preview { display: none; }
  .spectrum-row {
    display: grid;
    grid-template-columns: 68px 1fr;
    grid-template-rows: auto auto;
    column-gap: 18px; row-gap: 4px;
    align-items: center;
    padding: 18px 0;
  }
  .row-thumb {
    display: block; grid-column: 1; grid-row: 1 / span 2;
    width: 68px; height: 86px; object-fit: cover;
    border-radius: 3px; background: var(--ivory-deep);
  }
  .spectrum-row .idx { display: none; }
  .spectrum-row .cat {
    grid-column: 2; grid-row: 1; align-self: end;
    font-size: clamp(23px, 6.6vw, 40px); line-height: 1.02;
    white-space: normal;
  }
  .spectrum-row .tag {
    grid-column: 2; grid-row: 2; align-self: start;
    opacity: 1; transform: none; margin: 0; font-size: 12px;
  }
}

.work-head { margin-bottom: clamp(40px, 8vh, 90px); }

.project {
  --world-bg: var(--ivory);
  --world-ink: var(--ink);
  --world-accent: var(--accent);
  background: var(--world-bg);
  color: var(--world-ink);
  padding: clamp(72px, 13vh, 150px) 0;
  position: relative;
  overflow: hidden;
}
.project.dark { color: var(--world-ink); }
.project-inner {
  display: grid; grid-template-columns: 1fr; gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 900px) {
  .project-inner { grid-template-columns: 1fr 1fr; }
  .project.flip .project-media { order: 2; }
}
.project-media .asset,
.project-media .media { box-shadow: 0 40px 90px rgba(0,0,0,0.28); }
.project-index {
  font-family: var(--serif); font-size: 18px;
  color: color-mix(in srgb, var(--world-ink) 55%, var(--world-bg));
  margin-bottom: 20px;
}
.project-cat {
  font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--world-accent); margin-bottom: 18px;
}
.project-name {
  font-weight: 700; letter-spacing: -0.02em; line-height: 0.98;
  font-size: clamp(40px, 6vw, 82px); margin-bottom: 22px;
}
.project-name .ser { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; }
.project-desc {
  font-size: 17px; line-height: 1.6; max-width: 42ch;
  color: color-mix(in srgb, var(--world-ink) 82%, var(--world-bg));
  margin-bottom: 30px;
}
.project-facts { display: flex; flex-wrap: wrap; gap: 14px 32px; margin-bottom: 34px; }
.fact { display: flex; flex-direction: column; gap: 3px; }
.fact .k {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: color-mix(in srgb, var(--world-ink) 45%, var(--world-bg));
}
.fact .v { font-size: 14px; font-weight: 600; }
.project-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  border-bottom: 1px solid currentColor; padding-bottom: 4px;
  color: var(--world-accent);
  transition: gap 0.3s var(--ease);
}
.project-link:hover { gap: 18px; }
.project-link .verify {
  color: color-mix(in srgb, var(--world-ink) 45%, var(--world-bg));
  border: 0; font-weight: 600; letter-spacing: 0.1em; font-size: 11px;
}

.w-classical { --world-bg:#140F07; --world-ink:#F4E2BC; --world-accent:#E7B44B; }
.w-holi      { --world-bg:#F4EFE6; --world-ink:#20161C; --world-accent:#E8477F; }
.w-amiphoria { --world-bg:#0E0A1E; --world-ink:#E7E0FF; --world-accent:#9B6BFF; }
.w-loveexe   { --world-bg:#0A0A0B; --world-ink:#F2F2F2; --world-accent:#FF3EA5; }
.w-sundowner { --world-bg:#1B0F12; --world-ink:#FFE7D6; --world-accent:#FF7A45; }
.w-sunburn   { --world-bg:#06283B; --world-ink:#E3F5FF; --world-accent:#25C2E6; }

.w-holi { background:
  radial-gradient(circle at 82% 18%, rgba(232,71,127,0.16), transparent 40%),
  radial-gradient(circle at 12% 88%, rgba(80,150,235,0.16), transparent 42%),
  radial-gradient(circle at 60% 60%, rgba(240,150,40,0.12), transparent 45%),
  var(--world-bg); }

.w-amiphoria { background:
  radial-gradient(circle at 78% 24%, rgba(120,90,255,0.28), transparent 46%),
  radial-gradient(circle at 20% 82%, rgba(50,120,255,0.22), transparent 48%),
  var(--world-bg); }

.w-sundowner { background:
  linear-gradient(180deg, #351417 0%, #1B0F12 60%),
  var(--world-bg); }

.w-sunburn { background:
  radial-gradient(circle at 80% 16%, rgba(60,196,230,0.24), transparent 46%),
  radial-gradient(circle at 14% 86%, rgba(18,110,175,0.30), transparent 48%),
  var(--world-bg); }

.w-loveexe .project-name .ser { font-family: var(--pixel); font-style: normal; font-size: 0.82em; letter-spacing: 0.02em; }

.who { background: var(--ivory); text-align: left; }
.who h2 {
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.02;
  font-size: clamp(36px, 6.5vw, 96px); max-width: 16ch;
}
.who h2 .ser { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent); letter-spacing: 0; }
.who-body { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: clamp(36px, 6vh, 64px); max-width: 60ch; color: var(--ink-soft); }
@media (min-width: 760px) { .who-body { grid-template-columns: 1fr 1fr; gap: 44px; } }

.expertise { background: var(--ink); color: var(--ivory); }
.expertise .eyebrow { color: rgba(242,238,229,0.55); }
.expertise .eyebrow .dot { color: var(--accent); }
.exp-head { margin-bottom: clamp(40px, 7vh, 80px); }
.exp-head h2 { font-weight: 700; letter-spacing: -0.02em; font-size: clamp(30px, 4.5vw, 60px); line-height: 1.05; max-width: 20ch; }
.exp-head h2 .ser { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent); }
.exp-list { border-top: 1px solid rgba(242,238,229,0.16); }
.exp-row {
  display: flex; align-items: center; gap: 20px;
  padding: clamp(18px, 3vh, 34px) 0;
  border-bottom: 1px solid rgba(242,238,229,0.16);
  color: rgba(242,238,229,0.62);
  transition: color 0.35s var(--ease), padding-left 0.4s var(--ease);
}
.exp-row .num { font-size: 12px; font-weight: 600; width: 4ch; flex-shrink: 0; color: rgba(242,238,229,0.4); }
.exp-row .name {
  font-weight: 700; letter-spacing: -0.015em; line-height: 1.05;
  font-size: clamp(22px, 3.4vw, 44px);
}
.exp-row .arrow { margin-left: auto; opacity: 0; transform: translateX(-10px); transition: opacity 0.35s, transform 0.35s var(--ease); }
@media (hover: hover) and (min-width: 900px) {
  .exp-row:hover { color: var(--ivory); padding-left: 20px; }
  .exp-row:hover .arrow { opacity: 1; transform: none; color: var(--accent); }
}
@media (max-width: 899px) { .exp-row { color: rgba(242,238,229,0.85); } }

.behind { background: var(--ivory-2); }
.behind-grid { display: grid; grid-template-columns: 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
@media (min-width: 960px) { .behind-grid { grid-template-columns: 1.1fr 1fr; } }
.behind h2 {
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.02;
  font-size: clamp(32px, 5vw, 72px); max-width: 14ch; margin-bottom: 26px;
}
.behind h2 .ser { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent); }
.behind p { color: var(--ink-soft); max-width: 46ch; margin-bottom: 16px; }
.behind-media { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.behind-media .asset:first-child { grid-column: 1 / -1; }

.index-list { border-top: 1px solid var(--line); }
.index-row {
  display: grid; grid-template-columns: 3ch 1fr auto; gap: 16px 24px;
  align-items: center;
  padding: clamp(16px, 2.6vh, 28px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease);
}
.index-row:hover { padding-left: 16px; }
.index-row .ix { font-size: 12px; color: var(--muted); font-weight: 600; }
.index-row .ti { font-size: clamp(19px, 2.4vw, 30px); font-weight: 700; letter-spacing: -0.01em; }
.index-row .ti .ser { font-family: var(--serif); font-style: italic; font-weight: 400; }
.index-row .me { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; text-align: right; }
.index-row.live .ti::after {
  content: 'Live'; font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
  border: 1px solid var(--accent); border-radius: 100px; padding: 2px 8px;
  margin-left: 12px; vertical-align: middle;
}

.partners { background: var(--ivory); text-align: center; }
.partners h2 { font-size: clamp(14px, 1.6vw, 18px); font-weight: 600; letter-spacing: 0.04em; color: var(--muted); max-width: 46ch; margin: 0 auto clamp(36px,6vh,60px); }
.partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .partner-grid { grid-template-columns: repeat(3, 1fr); } }
.partner-cell {
  aspect-ratio: 16/7; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--faint); font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; text-align: center; padding: 18px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.partner-cell img {
  max-width: 76%; max-height: 62%; width: auto; height: auto; object-fit: contain;
  filter: grayscale(1); opacity: 0.62;
  transition: filter 0.35s var(--ease), opacity 0.35s var(--ease);
}
.partner-cell:hover { border-color: rgba(20,19,15,0.28); background: rgba(20,19,15,0.02); }
.partner-cell:hover img { filter: grayscale(0); opacity: 1; }
.partner-cell.has-logo-pending { color: var(--faint); font-style: normal; }
.partners-note { margin-top: 28px; font-size: 12px; color: var(--faint); }

.closing {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--ivory);
  padding: clamp(100px, 20vh, 220px) 0;
}
.closing-media { position: absolute; inset: 0; opacity: 0.22; }
.closing-media .asset { height: 100%; border: 0; border-radius: 0; }
.closing-inner { position: relative; z-index: 2; text-align: center; }
.closing h2 {
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.0;
  font-size: clamp(38px, 8vw, 120px); max-width: 16ch; margin: 0 auto;
}
.closing h2 .ser { font-family: var(--serif); font-style: italic; font-weight: 400; color: #E7B44B; letter-spacing: 0; }
.closing-cta {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: clamp(36px, 6vh, 56px);
  background: var(--ivory); color: var(--ink);
  font-size: 14px; font-weight: 700; letter-spacing: 0.03em;
  padding: 18px 34px; border-radius: 100px;
  transition: gap 0.3s var(--ease), transform 0.3s var(--ease);
}
.closing-cta:hover { gap: 20px; transform: translateY(-2px); }

.footer { background: #0C0B08; color: rgba(242,238,229,0.7); padding: clamp(60px, 10vh, 110px) 0 40px; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 44px; }
@media (min-width: 820px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand-main { color: var(--ivory); font-size: 20px; }
.footer-brand .brand-sub { color: rgba(242,238,229,0.5); font-size: 10px; }
.footer-brand p { margin-top: 18px; max-width: 34ch; font-size: 14px; color: rgba(242,238,229,0.55); }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(242,238,229,0.4); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; margin-bottom: 10px; color: rgba(242,238,229,0.72); transition: color 0.25s; }
.footer-col a:hover { color: var(--ivory); }
.footer-col .social-link {
  display: inline-flex; align-items: center; gap: 11px; margin-top: 4px;
}
.social-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid rgba(242,238,229,0.24); border-radius: 50%;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.social-ic svg { width: 19px; height: 19px; display: block; }
.social-link:hover .social-ic { color: var(--ink); border-color: var(--ivory); background: var(--ivory); }
.footer-bottom {
  margin-top: clamp(50px, 8vh, 90px); padding-top: 26px;
  border-top: 1px solid rgba(242,238,229,0.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(242,238,229,0.42);
}

@media (max-width: 860px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 8px; padding: 0 var(--pad-x);
    background: var(--ivory);
    transform: translateX(100%); transition: transform 0.5s var(--ease);
  }
  .nav.menu-open .nav-links { transform: none; }
  .nav.menu-open { color: var(--ink) !important; }
  .nav-links a { font-size: clamp(30px, 8vw, 52px); font-weight: 700; letter-spacing: -0.02em; padding: 8px 0; }
  .nav-links a::after { display: none; }
  .nav-cta { border: 0; padding: 8px 0 !important; color: var(--accent); }
  .nav-cta:hover { background: none; color: var(--accent); }
}

@media (max-width: 899px) {
  .expand { height: auto; }
  .expand-sticky { position: static; height: auto; padding: clamp(64px,10vh,120px) 0; }
  .expand-frame { width: 100%; }
  .expand-frame .asset { aspect-ratio: 16/10; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .expand { height: auto; }
  .expand-sticky { position: static; height: auto; padding: 120px 0; }
  .expand-frame { width: 100%; }
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px;
}
.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 999;
  background: var(--ink); color: var(--ivory); padding: 10px 16px; border-radius: 4px;
}
.skip-link:focus { left: 8px; }
