/* ============================================================
   SUBACHI SHRI — Cinematic Heritage Variant B
   A film about South Asian gold.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink: #0a0a0a;
  --ink-2: #141414;
  --ink-3: #1d1d1d;
  --gold: #b08840;
  --gold-soft: #c9a766;
  --gold-bright: #d9b06b;
  --ivory: #f5ede0;
  --ivory-dim: rgba(245, 237, 224, 0.7);
  --ivory-faint: rgba(245, 237, 224, 0.45);
  --ember: #a8201a;
  --ember-bright: #c8312a;

  --display: 'Cormorant Garamond', 'Times New Roman', serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'Menlo', monospace;

  --ease-cine: cubic-bezier(0.65, 0.05, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --gutter: clamp(20px, 5vw, 80px);
  --maxw: 1400px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--ivory);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

/* ---------- Film grain (fixed) ---------- */
body::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.07;
  mix-blend-mode: overlay;
}

/* ---------- Ember vignette ---------- */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 50;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.45) 95%);
  mix-blend-mode: multiply;
}

/* ---------- Typography ---------- */
.display, h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ivory);
}
.display-italic { font-style: italic; }

.mono {
  font-family: var(--mono);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
}
.mono-ivory { color: var(--ivory-dim); }
.mono-ember { color: var(--ember-bright); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--gutter);
  transition: background 0.4s var(--ease-cine), backdrop-filter 0.4s var(--ease-cine), border-color 0.4s var(--ease-cine);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: rgba(176, 136, 64, 0.18);
}
.nav__brand {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ivory);
  letter-spacing: 0.01em;
}
.nav__brand span { color: var(--gold); }
.nav__links {
  display: flex; gap: clamp(16px, 2.4vw, 36px);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav__links a {
  color: var(--ivory-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease-cine);
  min-height: 44px; display: inline-flex; align-items: center;
}
.nav__links a:hover, .nav__links a.active { color: var(--gold); }
.nav__links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 1px; background: var(--gold);
}
.nav__cta {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 12px 18px;
  border-radius: 999px;
  transition: background 0.3s var(--ease-cine), color 0.3s var(--ease-cine);
  min-height: 44px; display: inline-flex; align-items: center;
}
.nav__cta:hover { background: var(--gold-bright); color: var(--ink); }
.nav__burger { display: none; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__burger {
    display: flex; flex-direction: column; gap: 4px;
    width: 28px; height: 28px; align-items: center; justify-content: center;
  }
  .nav__burger span { width: 22px; height: 1.5px; background: var(--ivory); transition: all 0.3s; }
  .nav__burger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
}

.mobile-menu {
  position: fixed; inset: 0; background: var(--ink); z-index: 99;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  font-family: var(--display); font-style: italic; font-size: 2rem;
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease-cine);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { color: var(--ivory); transition: color 0.3s; min-height: 44px; }
.mobile-menu a:hover { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ivory);
  border: 1px solid rgba(176, 136, 64, 0.5);
  padding: 14px 24px; border-radius: 999px;
  transition: all 0.4s var(--ease-cine);
  min-height: 44px;
}
.btn:hover { border-color: var(--gold); background: rgba(176, 136, 64, 0.08); }
.btn--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.btn--ember { background: var(--ember); color: var(--ivory); border-color: var(--ember); }
.btn--ember:hover { background: var(--ember-bright); border-color: var(--ember-bright); }

/* ---------- PRESS PLAY pill ---------- */
.press-play {
  position: fixed; top: 84px; left: var(--gutter); z-index: 90;
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(10, 10, 10, 0.7); backdrop-filter: blur(10px);
  border: 1px solid var(--gold); border-radius: 999px;
  padding: 10px 18px 10px 14px;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ivory);
  transition: all 0.4s var(--ease-cine);
  opacity: 0; transform: translateY(-8px);
  pointer-events: none;
}
.press-play.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.press-play:hover { background: var(--gold); color: var(--ink); }
.press-play__dot {
  width: 8px; height: 8px; background: var(--ember-bright); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(168, 32, 26, 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(168, 32, 26, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(168, 32, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(168, 32, 26, 0); }
}

/* ---------- Hero (index) ---------- */
.hero {
  position: relative; min-height: 100svh; width: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; isolation: isolate;
  padding: 0 var(--gutter);
}
.hero__bg {
  position: absolute; inset: -4%; z-index: -2;
  background-size: cover; background-position: center;
  animation: kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  0% { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1.5%); }
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.2) 35%, rgba(10,10,10,0.65) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(10,10,10,0.6) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 1100px;
  padding: 100px 0 60px;
}
.hero__credits {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.42em;
  text-transform: uppercase; color: var(--gold);
  font-variant-caps: all-small-caps;
  margin-bottom: 60px;
  opacity: 0; animation: fadein 1.4s 0.3s var(--ease-out) forwards;
}
.hero__chapter {
  margin-bottom: 28px;
  opacity: 0; animation: rise 1.2s 0.7s var(--ease-out) forwards;
}
.hero__title {
  font-family: var(--display); font-style: italic;
  font-size: clamp(4.5rem, 16vw, 18rem);
  line-height: 0.9; color: var(--ivory);
  margin: 0 0 36px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  opacity: 0; animation: rise 1.6s 1s var(--ease-out) forwards;
}
.hero__title span { color: var(--gold); font-style: normal; }
.hero__tag {
  font-family: var(--body); font-weight: 400;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: rgba(245, 237, 224, 0.7);
  max-width: 580px; margin: 0 auto 18px;
  letter-spacing: 0.01em;
  opacity: 0; animation: rise 1.4s 1.4s var(--ease-out) forwards;
}
.hero__sub {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: rgba(245, 237, 224, 0.55);
  max-width: 520px; margin: 0 auto 42px;
  line-height: 1.5;
  opacity: 0; animation: rise 1.4s 1.55s var(--ease-out) forwards;
}
.hero__scroll {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; flex-direction: column; align-items: center; gap: 14px;
  opacity: 0; animation: rise 1.4s 1.8s var(--ease-out) forwards;
}
.hero__scroll::after {
  content: ''; width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold), transparent);
  animation: line 2.4s ease-in-out infinite;
}
@keyframes line { 0%, 100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.4); opacity: 0.5; } }
@keyframes rise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Chapter cards ---------- */
.chapter {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 0;
}
.chapter__rule {
  width: 60px; height: 1px; background: var(--gold); opacity: 0.7;
}
.chapter__label {
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
}
.chapter__title {
  font-family: var(--display); font-style: italic;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--ivory); line-height: 1.05;
  text-align: center;
}

.chapter-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 100px 20px;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  text-align: center;
}
.chapter-card .chapter__title { color: var(--ivory); }

/* ---------- Act sections (index) ---------- */
.act {
  position: relative; min-height: 100svh; width: 100%;
  overflow: hidden; isolation: isolate;
  display: flex; align-items: flex-end;
}
.act__bg {
  position: absolute; inset: -3%; z-index: -2;
  background-size: cover; background-position: center;
  transition: transform 1.6s var(--ease-cine);
  will-change: transform;
}
.act.is-visible .act__bg { transform: scale(1.06); }
.act__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.1) 30%, rgba(10,10,10,0.85) 100%);
}
.act__inner {
  position: relative; z-index: 1;
  padding: 80px var(--gutter);
  max-width: var(--maxw);
  width: 100%;
}
.act__chapter { margin-bottom: 22px; }
.act__chapter .chapter__label { color: var(--gold-bright); }
.act__title {
  font-family: var(--display); font-style: italic;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  color: var(--ivory); line-height: 1; max-width: 18ch;
  margin-bottom: 18px;
}
.act__dek {
  font-family: var(--body); font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--ivory-dim); max-width: 52ch; line-height: 1.5;
  margin-bottom: 32px;
}
.act__link {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  padding: 10px 0;
  border-bottom: 1px solid rgba(176, 136, 64, 0.4);
  transition: all 0.4s var(--ease-cine);
  min-height: 44px;
}
.act__link:hover { color: var(--gold-bright); border-color: var(--gold-bright); gap: 20px; }
.act__link span:last-child { font-size: 1.1em; transition: transform 0.4s var(--ease-cine); }
.act__link:hover span:last-child { transform: translateX(4px); }

/* ---------- Page header (non-home) ---------- */
.page-head {
  position: relative; min-height: 70vh; width: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; isolation: isolate;
  padding: 120px var(--gutter) 60px;
  text-align: center;
}
.page-head__bg {
  position: absolute; inset: -3%; z-index: -2;
  background-size: cover; background-position: center;
}
.page-head__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.8) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(10,10,10,0.6) 100%);
}
.page-head__inner { position: relative; z-index: 1; max-width: 900px; }
.page-head__chapter { margin-bottom: 24px; }
.page-head__title {
  font-family: var(--display); font-style: italic;
  font-size: clamp(3.5rem, 9vw, 8rem);
  color: var(--ivory); line-height: 0.95;
  margin-bottom: 24px;
}
.page-head__dek {
  font-family: var(--body); font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--ivory-dim); max-width: 56ch; margin: 0 auto;
  line-height: 1.55;
}

/* ---------- Marquee strip ---------- */
.strip {
  display: flex; gap: 60px; padding: 24px var(--gutter);
  background: var(--ink-2); border-top: 1px solid rgba(176, 136, 64, 0.18);
  border-bottom: 1px solid rgba(176, 136, 64, 0.18);
  overflow: hidden;
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-soft);
  white-space: nowrap;
}
.strip span { display: inline-flex; align-items: center; gap: 60px; }

/* ---------- Reel cards (collections) ---------- */
.reel {
  position: relative; min-height: 100vh; width: 100%;
  overflow: hidden; isolation: isolate;
  display: flex; align-items: center;
  background: var(--ink);
}
.reel--split { display: grid; grid-template-columns: 70% 30%; align-items: stretch; }
.reel__media {
  position: relative; overflow: hidden; min-height: 70vh;
}
.reel__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05); transition: transform 2.4s var(--ease-cine);
}
.reel.is-visible .reel__media img { transform: scale(1.15); }
.reel__media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(10,10,10,0.5) 100%);
}
.reel__caption {
  position: absolute; left: var(--gutter); bottom: 60px;
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ivory);
  z-index: 2;
}
.reel__text {
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center; gap: 22px;
  background: var(--ink-2);
}
.reel__text .chapter__label { color: var(--gold); }
.reel__title {
  font-family: var(--display); font-style: italic;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  color: var(--ivory); line-height: 1; max-width: 14ch;
}
.reel__dek {
  color: var(--ivory-dim); line-height: 1.6; max-width: 38ch;
}
.reel__link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  align-self: flex-start;
  padding: 12px 0;
  min-height: 44px;
  border-bottom: 1px solid rgba(176, 136, 64, 0.4);
  transition: all 0.4s var(--ease-cine);
}
.reel__link:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

@media (max-width: 880px) {
  .reel--split { grid-template-columns: 1fr; }
  .reel__media { min-height: 60vh; }
  .reel__text { padding: 60px var(--gutter); }
}

/* ---------- Photo essay (bridal) ---------- */
.essay {
  display: flex; flex-direction: column; gap: 0;
}
.essay__frame {
  position: relative; width: 100%; overflow: hidden; isolation: isolate;
  background: var(--ink-2);
}
.essay__frame img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  animation: kenburns-slow 24s ease-in-out infinite alternate;
}
.essay__frame--fast img { animation-duration: 14s; }
.essay__frame--reverse img { animation-direction: alternate-reverse; }
.essay__frame--tall { aspect-ratio: 3 / 4; }
.essay__frame--wide { aspect-ratio: 16 / 9; }
.essay__frame--cinema { aspect-ratio: 21 / 9; }
.essay__caption {
  position: absolute; left: var(--gutter); bottom: 40px;
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
  color: var(--ivory);
  max-width: 32ch; line-height: 1.2;
  z-index: 2;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.essay__caption-num {
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 8px;
  font-style: normal;
}
.essay__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.65) 100%);
}
@keyframes kenburns-slow {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -1.5%); }
}

.essay__quote {
  background: var(--ink);
  padding: 140px var(--gutter);
  text-align: center;
}
.essay__quote .mono { color: var(--gold); margin-bottom: 30px; }
.essay__quote blockquote {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.8rem, 3.6vw, 3.4rem);
  color: var(--ivory); line-height: 1.25;
  max-width: 24ch; margin: 0 auto;
}
.essay__quote cite {
  display: block; margin-top: 36px;
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-style: normal;
}

.credits-block {
  background: var(--ink-2);
  padding: 120px var(--gutter);
  text-align: center;
  border-top: 1px solid rgba(176, 136, 64, 0.2);
  border-bottom: 1px solid rgba(176, 136, 64, 0.2);
}
.credits-block__title {
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
}
.credits-block__line {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  color: var(--ivory); line-height: 1.5;
  max-width: 30ch; margin: 0 auto;
}
.credits-block__small {
  display: block; margin-top: 20px;
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ivory-dim);
  font-style: normal;
}

/* ---------- About page ---------- */
.story {
  max-width: 760px; margin: 0 auto;
  padding: 100px var(--gutter);
}
.story p {
  font-family: var(--body); font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.7; color: var(--ivory-dim);
  margin-bottom: 28px;
}
.story p:first-of-type::first-letter {
  font-family: var(--display); font-style: italic;
  font-size: 4em; float: left; line-height: 0.9;
  padding: 8px 16px 0 0; color: var(--gold);
}
.story p strong { color: var(--ivory); font-weight: 500; }

.big-quote {
  position: relative;
  padding: 120px var(--gutter);
  text-align: center;
  background: var(--ink-2);
  border-top: 1px solid rgba(176, 136, 64, 0.18);
  border-bottom: 1px solid rgba(176, 136, 64, 0.18);
}
.big-quote__mark {
  font-family: var(--display); font-style: italic;
  font-size: 8rem; line-height: 0.5;
  color: var(--gold); display: block; margin-bottom: 20px;
  opacity: 0.6;
}
.big-quote blockquote {
  font-family: var(--display); font-style: italic;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  color: var(--ivory); line-height: 1.2;
  max-width: 20ch; margin: 0 auto;
}

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(176, 136, 64, 0.2);
  border-bottom: 1px solid rgba(176, 136, 64, 0.2);
  background: var(--ink);
}
.stat {
  padding: 80px 30px;
  text-align: center;
  border-right: 1px solid rgba(176, 136, 64, 0.12);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--display); font-style: italic;
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--gold); line-height: 1; margin-bottom: 14px;
}
.stat__num--small { font-size: clamp(2.6rem, 5vw, 4.5rem); }
.stat__label {
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ivory-dim);
}
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(176, 136, 64, 0.12); }
}

/* ---------- Journal ---------- */
.journal-list { padding: 100px var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.reel-card {
  position: relative; display: grid; grid-template-columns: 1.2fr 1fr;
  min-height: 80vh; margin-bottom: 80px;
  border: 1px solid rgba(176, 136, 64, 0.15);
  background: var(--ink-2);
  overflow: hidden;
  transition: border-color 0.4s var(--ease-cine);
}
.reel-card:hover { border-color: var(--gold); }
.reel-card:nth-child(even) { grid-template-columns: 1fr 1.2fr; }
.reel-card:nth-child(even) .reel-card__media { order: 2; }
.reel-card__media { position: relative; overflow: hidden; }
.reel-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05); transition: transform 1.6s var(--ease-cine);
}
.reel-card:hover .reel-card__media img { transform: scale(1.12); }
.reel-card__body {
  padding: 60px 50px;
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
}
.reel-card__meta {
  display: flex; gap: 16px; align-items: center;
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.reel-card__meta span:first-child { color: var(--ember-bright); }
.reel-card__meta span:not(:first-child)::before {
  content: '·'; margin-right: 16px; color: var(--ivory-faint);
}
.reel-card__title {
  font-family: var(--display); font-style: italic;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  color: var(--ivory); line-height: 1.05;
}
.reel-card__dek {
  color: var(--ivory-dim); line-height: 1.6; max-width: 40ch;
}
.reel-card__link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  padding: 12px 0; align-self: flex-start;
  min-height: 44px;
  border-bottom: 1px solid rgba(176, 136, 64, 0.4);
  transition: all 0.4s var(--ease-cine);
}
.reel-card__link:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

@media (max-width: 880px) {
  .reel-card, .reel-card:nth-child(even) { grid-template-columns: 1fr; }
  .reel-card:nth-child(even) .reel-card__media { order: 0; }
  .reel-card__media { min-height: 50vh; }
  .reel-card__body { padding: 40px var(--gutter); }
}

/* ---------- Contact ---------- */
.credits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; max-width: var(--maxw); margin: 0 auto;
  padding: 100px var(--gutter) 60px;
  border-bottom: 1px solid rgba(176, 136, 64, 0.15);
}
.credits-col {
  padding: 0 40px;
  border-right: 1px solid rgba(176, 136, 64, 0.12);
}
.credits-col:last-child { border-right: 0; }
.credits-col__role {
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.credits-col__value {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: var(--ivory); line-height: 1.3;
}
.credits-col__value a { color: var(--ivory); transition: color 0.3s; border-bottom: 1px solid transparent; }
.credits-col__value a:hover { color: var(--gold); border-color: var(--gold); }
.credits-col__small {
  display: block; margin-top: 12px;
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ivory-faint);
  font-style: normal;
}
@media (max-width: 720px) {
  .credits-grid { grid-template-columns: 1fr; }
  .credits-col { border-right: 0; border-bottom: 1px solid rgba(176, 136, 64, 0.12); padding: 40px 0; }
  .credits-col:last-child { border-bottom: 0; }
}

.letter {
  max-width: 720px; margin: 0 auto;
  padding: 100px var(--gutter) 140px;
}
.letter__head { text-align: center; margin-bottom: 60px; }
.letter__intro {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--ivory); line-height: 1.6;
  max-width: 48ch; margin: 28px auto 0;
}
.form {
  display: flex; flex-direction: column; gap: 28px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field label {
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
}
.field input, .field textarea, .field select {
  font-family: var(--display); font-style: italic;
  font-size: 1.2rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(176, 136, 64, 0.4);
  color: var(--ivory);
  padding: 14px 0;
  min-height: 44px;
  transition: border-color 0.3s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--ember);
  box-shadow: 0 1px 0 var(--ember);
}
.field textarea {
  resize: vertical; min-height: 180px;
  font-family: var(--body); font-style: normal; font-size: 1rem;
  line-height: 1.6;
  color: var(--ivory-dim);
  background: var(--ink-2);
  border: 1px solid rgba(176, 136, 64, 0.25);
  padding: 16px;
}
.field select option { background: var(--ink); }
.form__submit {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--ivory);
  background: var(--ember); border: 1px solid var(--ember);
  padding: 16px 32px; border-radius: 999px;
  align-self: flex-start;
  transition: all 0.4s var(--ease-cine);
  min-height: 44px;
}
.form__submit:hover { background: var(--ember-bright); border-color: var(--ember-bright); transform: translateY(-2px); }
@media (max-width: 720px) {
  .form__row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(176, 136, 64, 0.2);
  padding: 80px var(--gutter) 40px;
}
.footer__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(176, 136, 64, 0.12);
}
.footer__brand {
  font-family: var(--display); font-style: italic;
  font-size: 2rem; color: var(--ivory); margin-bottom: 14px;
}
.footer__brand span { color: var(--gold); font-style: normal; }
.footer__tagline {
  font-family: var(--body); font-size: 0.95rem; color: var(--ivory-dim);
  max-width: 32ch; line-height: 1.6;
}
.footer__col h4 {
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
  font-weight: 400;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 12px; }
.footer__col a {
  color: var(--ivory-dim); font-size: 0.95rem;
  transition: color 0.3s; min-height: 44px; display: inline-flex; align-items: center;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 40px; flex-wrap: wrap; gap: 20px;
}
.footer__bottom p {
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory-faint);
}
.footer__ig {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold); font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  min-height: 44px;
  transition: color 0.3s;
}
.footer__ig:hover { color: var(--gold-bright); }
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal--gold { color: var(--gold); }

/* ---------- A11y ---------- */
:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 4px;
  border-radius: 2px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__bg, .essay__frame img { animation: none; }
}

/* ---------- Selection ---------- */
::selection { background: var(--gold); color: var(--ink); }
::-moz-selection { background: var(--gold); color: var(--ink); }

/* ----- Scroll progress bar (premium touch) ----- */
.scroll-progress {
  background: var(--gold, #b08840);
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  z-index: 9999;
  pointer-events: none;
  transition: width 80ms linear;
}

/* ----- Brand logo (in nav) ----- */
.brand-logo {
  height: 52px;
  width: auto;
  max-width: 180px;
  display: block;
}
.nav__brand .brand-logo,
.brand .brand-logo {
  display: block;
}

/* ----- Real product section (about page) ----- */
.real-product-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(184, 149, 42, 0.04) 50%, transparent);
  border-top: 1px solid rgba(184, 149, 42, 0.2);
  border-bottom: 1px solid rgba(184, 149, 42, 0.2);
}
.real-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.real-product__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 1px solid rgba(184, 149, 42, 0.3);
  background: #faf6ee;
}
.real-product__caption {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.real-product__caption .mono {
  color: #b8952a;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.real-product__quote {
  font-family: var(--font-display, Georgia, serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.3;
  color: var(--ink, #1a1a1a);
}
.real-product__cta {
  display: inline-block;
  font-family: var(--font-mono, monospace);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold, #b8952a);
  border-bottom: 1px solid var(--gold, #b8952a);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: all 200ms;
}
.real-product__cta:hover {
  color: var(--ink, #1a1a1a);
  border-color: var(--ink, #1a1a1a);
}
@media (max-width: 720px) {
  .real-product {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
