/* =========================================================
   SILVER SAIL ENTERTAINMENT
   Vanilla CSS — one stylesheet for all pages.
   Aesthetic: A24 / Neon / Bosque Ranch — dark, cinematic,
   metallic silver identity + a single warm Texas gold.
   ========================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* Core palette */
  --ink:        #0a0a0b;   /* deepest black (page) */
  --ink-2:      #0e0e10;   /* section alt */
  --surface:    #141417;   /* cards */
  --surface-2:  #1b1b1f;   /* raised cards */
  --line:       #26262b;   /* hairlines */
  --line-soft:  #1d1d21;

  /* Type */
  --bone:       #f4f4f3;   /* primary text */
  --ash:        #9a9aa1;   /* muted text */
  --ash-dim:    #6a6a72;   /* faint labels */

  /* Accents */
  --silver:     #cfd3d8;   /* metallic silver */
  --silver-hi:  #ffffff;
  --silver-lo:  #8a8e95;
  --gold:       #cfd3d8;   /* accent — switched from warm gold to silver */
  --gold-hi:    #ffffff;
  --gold-deep:  #8a8e95;

  /* Metallic gradients */
  --grad-silver: linear-gradient(180deg, #ffffff 0%, #d6dade 38%, #9aa0a8 62%, #c3c8ce 100%);
  --grad-gold:   linear-gradient(180deg, #ffffff 0%, #d6dade 38%, #9aa0a8 62%, #c3c8ce 100%);

  /* Layout */
  --maxw: 1320px;
  --gut: clamp(1.25rem, 4vw, 4rem);
  --radius: 4px;
  --sidebar-w: 268px;

  /* Type families — display is now Archivo (Expanded), all-caps; body Inter */
  --serif: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

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

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .hero-bg img { animation: none !important; transform: scale(1.05); }
}
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--ink); }

/* Fine grain texture overlay (cinematic) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif); font-weight: 700; line-height: 1.06;
  letter-spacing: 0.015em; text-transform: uppercase;
  font-stretch: 125%; font-variation-settings: "wdth" 125;
}
.display {
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  font-weight: 800;
  letter-spacing: 0.005em;
  line-height: 1.02;
  font-stretch: 125%;
  font-variation-settings: "wdth" 125;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.silver-text {
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede { font-size: clamp(1.05rem, 1.8vw, 1.35rem); color: var(--ash); line-height: 1.65; max-width: 60ch; }

/* ---------- LAYOUT ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: clamp(2.75rem, 6vw, 5.5rem); }
.section.tight { padding-block: clamp(3rem, 7vw, 5rem); }
.section.alt { background: var(--ink-2); }
.divider { height: 1px; background: var(--line-soft); border: 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.05rem 1.9rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  will-change: transform;
}
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn-primary { background: var(--bone); color: var(--ink); }
.btn-primary:hover { background: var(--gold-hi); }
.btn-gold { background: var(--bone); color: var(--ink); }
.btn-gold:hover { background: #ffffff; transform: translateY(-2px); box-shadow: 0 10px 30px -12px rgba(255,255,255,0.35); }
.btn-ghost { border-color: var(--line); color: var(--bone); background: transparent; }
.btn-ghost:hover { border-color: var(--silver); background: rgba(255,255,255,0.04); }

/* ---------- UTILITY BAR ---------- */
.utility {
  background: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash-dim);
}
.utility-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.55rem var(--gut);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.utility a:hover { color: var(--silver); }
.utility .dot { color: var(--gold); }
@media (max-width: 720px) { .utility-inner .u-hide { display: none; } }

/* ---------- TOP NAV (transparent over hero, solid on scroll) ---------- */
.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease), backdrop-filter 0.45s var(--ease);
}
.topnav.scrolled {
  background: rgba(10,10,11,0.82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.topnav-inner {
  max-width: 1600px; margin: 0 auto;
  padding: clamp(2.6rem, 4vw, 4rem) var(--gut);
  display: flex; align-items: center; gap: 1rem;
}
.brand { display: flex; align-items: center; flex: 0 0 auto; line-height: 1; }
.brand-logo { display: block; width: auto; height: 224px; margin: 0; transition: height 0.4s var(--ease); }
.topnav.scrolled .brand-logo { height: 150px; }

.topnav-links { display: flex; align-items: center; gap: clamp(0.45rem, 0.95vw, 0.9rem); margin-inline: auto; min-width: 0; }
.topnav-links a {
  font-family: var(--sans); font-size: 1.18rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--bone);
  position: relative; padding: 0.5rem 0; white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.topnav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--silver); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.topnav-links a:hover, .topnav-links a.active { color: var(--bone); }
.topnav-links a:hover::after, .topnav-links a.active::after { transform: scaleX(1); }
.nav-cta { flex: 0 0 auto; margin-left: 0.5rem; padding: 0.9rem 1.5rem; font-size: 1.05rem; letter-spacing: 0.08em; }

/* hamburger */
.nav-toggle { display: none; background: none; border: 0; width: 42px; height: 38px; cursor: pointer; margin-left: auto; position: relative; z-index: 1300; }
.nav-toggle span { display: block; width: 25px; height: 1.5px; background: var(--bone); margin: 6px auto; transition: 0.35s var(--ease); }
.topnav.open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.topnav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.topnav.open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile drawer */
.topnav-drawer { display: none; }

@media (max-width: 1520px) {
  .topnav-links, .topnav-inner > .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .brand-logo { height: 150px; }
  .topnav.scrolled .brand-logo { height: 118px; }
  .topnav-drawer {
    display: flex; flex-direction: column; justify-content: center; gap: 1.35rem;
    /* NOTE: .topnav has backdrop-filter, which makes position:fixed here resolve
       against the nav bar (not the viewport). Set explicit viewport sizing so the
       drawer fills the screen instead of being clipped to the nav's height. */
    position: fixed; top: 0; left: 0; right: 0;
    width: 100vw; height: 100vh; height: 100svh;
    z-index: 1100;
    padding: 6rem 2.4rem 2.4rem;
    background: rgba(10,10,11,0.98);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    transform: translateX(100%); transition: transform 0.5s var(--ease);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .topnav.open .topnav-drawer { transform: translateX(0); }
  .drawer-nav { display: flex; flex-direction: column; gap: 1.25rem; }
  .drawer-nav a { font-family: var(--serif); font-size: clamp(1.6rem, 6vw, 2.2rem); color: var(--bone); line-height: 1; }
  .drawer-nav a.active { color: var(--silver); }
  .drawer-cta { margin-top: 1.8rem; align-self: flex-start; }
}

/* Offset anchor jumps for the fixed nav */
section[id], header[id] { scroll-margin-top: 128px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: calc(100svh + 540px); /* taller than the viewport so the opening video frame (incl. its logo) fills the first screen and the text sits below the fold (scroll to read it) */
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding-top: clamp(160px, 18vh, 192px); /* reserve clearance under the fixed nav */
  box-sizing: border-box;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img, .hero-bg video { width: 100%; height: 100%; object-fit: cover; }
/* Slow cinematic drift */
.hero-bg img { transform-origin: 60% 40%; animation: kenburns 30s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.05); } to { transform: scale(1.18) translate(-1.6%, -1.2%); } }
/* Cinematic fallback when no media present */
.hero-bg.placeholder {
  background:
    radial-gradient(120% 90% at 75% 15%, rgba(207,211,216,0.16), transparent 55%),
    radial-gradient(90% 80% at 12% 85%, rgba(207,211,216,0.07), transparent 50%),
    linear-gradient(160deg, #16161a 0%, #0a0a0b 70%);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(10,10,11,0.92) 2%, rgba(10,10,11,0.45) 36%, rgba(10,10,11,0.08) 68%, transparent 88%),
    linear-gradient(90deg, rgba(10,10,11,0.5) 0%, rgba(10,10,11,0.12) 42%, transparent 72%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut) clamp(1.25rem, 2.5vw, 2.25rem); }
.hero h1 { margin: 1.4rem 0 0; max-width: 20ch; text-wrap: balance; text-shadow: 0 2px 24px rgba(0,0,0,0.55); }
.hero .eyebrow { text-shadow: 0 1px 10px rgba(0,0,0,0.7); }
.hero .hero-tag { margin-top: 1.8rem; max-width: 56ch; text-shadow: 0 1px 14px rgba(0,0,0,0.6); }
.hero-cta { margin-top: 2.6rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  z-index: 2; font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ash-dim);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.scroll-cue .line { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0%,100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* Cinematic full-bleed image band (edge-to-edge, tall) */
.media-band {
  max-width: none; width: auto;
  margin-inline: 0; padding-inline: 0; margin-block: 0;
}
.media-band figure {
  margin: 0; position: relative; overflow: hidden;
  border-radius: 0; border: 0;
  border-block: 1px solid var(--line);
}
.media-band img {
  display: block; width: 100%;
  height: clamp(360px, 72vh, 800px); object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.media-band figure:hover img { transform: scale(1.04); }
/* Positioning-section feature image (B&W BTS still) */
.positioning-media { margin: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: linear-gradient(150deg,#1a1a20,#0b0b0d); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7); }
.positioning-media img { display: block; width: 100%; height: auto; transition: transform 1.2s var(--ease); }
.positioning-media:hover img { transform: scale(1.035); }
.positioning-media figcaption { padding: 0.7rem 1.1rem; border-top: 1px solid var(--line); font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--silver-lo); }
@media (max-width: 720px) { .positioning-media { max-width: 460px; margin: 0 auto; } }
.media-band figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,11,0.6), transparent 55%);
}
.media-band figcaption {
  position: absolute; left: clamp(1.1rem, 3vw, 2.2rem); bottom: clamp(1.1rem, 3vw, 2rem);
  z-index: 2; font-size: 0.62rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--silver);
}

/* Page hero (interior pages) */
.page-hero { position: relative; padding: clamp(7rem, 14vw, 11rem) 0 clamp(3rem, 7vw, 5rem); border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(80% 120% at 80% 0%, rgba(207,211,216,0.12), transparent 60%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); margin-top: 1.2rem; max-width: 18ch; }
.page-hero .lede { margin-top: 1.6rem; }
.studio-mark { width: clamp(160px, 19vw, 240px); height: auto; display: block; margin-bottom: 1.4rem; filter: drop-shadow(0 14px 30px rgba(0,0,0,0.55)); }

/* ---------- STAT ROW ---------- */
.stats { display: flex; flex-wrap: wrap; gap: clamp(2rem, 6vw, 5rem); margin-top: 3rem; border-top: 1px solid var(--line); padding-top: 2rem; }
.stat strong { display: block; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; }
.stat span { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ash-dim); margin-top: 0.6rem; display: block; }

/* ---------- REEL ---------- */
.reel { position: relative; }
.reel-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(80% 80% at 50% 40%, rgba(207,211,216,0.10), transparent 60%),
    linear-gradient(160deg, #17171b, #0b0b0d);
  cursor: pointer;
}
.reel-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.reel-play {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.2rem;
  transition: opacity 0.4s var(--ease);
}
.reel-play .disc {
  width: 86px; height: 86px; border-radius: 50%;
  border: 1px solid var(--silver);
  display: grid; place-items: center;
  background: rgba(10,10,11,0.4);
  backdrop-filter: blur(4px);
  transition: 0.4s var(--ease);
}
.reel-frame:hover .disc { background: var(--gold); border-color: var(--gold); transform: scale(1.06); }
.reel-frame:hover .disc svg { fill: var(--ink); }
.reel-play .disc svg { width: 26px; height: 26px; fill: var(--silver); margin-left: 4px; transition: fill 0.4s; }
.reel-play .label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ash); }

/* ---------- FOUNDER (photo + bio) ---------- */
.founder { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 860px) { .founder { grid-template-columns: 1fr; gap: 2.2rem; } }
.founder-photo {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 5; background: linear-gradient(150deg, #22222b, #0c0c0e);
}
@media (min-width: 861px) { .founder-photo { position: sticky; top: 100px; } }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; transition: transform 1.2s var(--ease); }
.founder-photo:hover img { transform: scale(1.04); }
.founder .section-head { margin-bottom: 1.6rem; }

/* ---------- POSITIONING / SPLIT ---------- */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split.reverse { grid-template-columns: 1fr 1.1fr; }
@media (max-width: 860px) { .split, .split.reverse { grid-template-columns: 1fr; gap: 2.5rem; } }
.section-head { max-width: 64ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { font-size: clamp(2.1rem, 5.5vw, 4.4rem); margin-top: 1.1rem; }

/* ---------- PILLARS ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 800px) { .pillars { grid-template-columns: 1fr; } }
.pillar { background: var(--ink); padding: clamp(2rem, 4vw, 3rem); transition: background 0.4s var(--ease); }
.pillar:hover { background: var(--surface); }
.pillar .num { font-family: var(--serif); font-size: 0.9rem; color: var(--gold); letter-spacing: 0.1em; }
.pillar h3 { font-size: 1.5rem; margin: 1rem 0 0.8rem; }
.pillar p { color: var(--ash); font-size: 0.96rem; }

/* ---------- WORK / SLATE GRID ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.8rem; }
.filter {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.6rem 1.2rem; border: 1px solid var(--line); border-radius: 100px;
  color: var(--ash); background: transparent; transition: 0.3s var(--ease);
}
.filter:hover { color: var(--bone); border-color: var(--silver-lo); }
.filter.active { background: var(--bone); color: var(--ink); border-color: var(--bone); }

/* Featured project — full-width landscape banner */
.project-feature {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: clamp(1.6rem, 3vw, 2.6rem);
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.project-feature:hover { border-color: var(--silver-lo); box-shadow: 0 30px 60px -28px rgba(0,0,0,0.75); }
.project-feature img {
  display: block; width: 100%;
  height: clamp(300px, 46vw, 560px); object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.project-feature:hover img { transform: scale(1.045); }
.project-feature .feature-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.4rem, 4vw, 2.8rem);
  background: linear-gradient(180deg, rgba(10,10,11,0) 38%, rgba(10,10,11,0.55) 70%, rgba(10,10,11,0.9) 100%);
}
.project-feature .cat {
  align-self: flex-start;
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.35rem 0.7rem; border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px; color: var(--silver); background: rgba(10,10,11,0.45); backdrop-filter: blur(4px);
  margin-bottom: auto;
}
.project-feature h3 { font-family: var(--serif); font-size: clamp(1.8rem, 4.5vw, 3rem); margin: 0.8rem 0 0.25rem; line-height: 1.02; }
.project-feature .role { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver); }
.project-feature .yr { font-size: 0.62rem; letter-spacing: 0.2em; color: var(--ash); margin-right: 0.6rem; }
.project-feature p { margin: 0.9rem 0 0; max-width: 62ch; color: var(--ash); }
@media (max-width: 560px) { .project-feature p { display: none; } }

.slate { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.8rem); }
@media (max-width: 900px) { .slate { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .slate { grid-template-columns: 1fr; } }
.project {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.project.hide, .set.hide { display: none; }
.project:hover { transform: translateY(-6px); border-color: var(--silver-lo); box-shadow: 0 26px 50px -24px rgba(0,0,0,0.7); }
.project-poster {
  aspect-ratio: 2 / 3;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 1.4rem;
  background-size: cover; background-position: center;
  /* placeholder gradient if no poster image */
  background-image: linear-gradient(180deg, rgba(10,10,11,0) 35%, rgba(10,10,11,0.92) 100%), linear-gradient(150deg, #20202a, #0c0c0e);
}
.project-poster .cat {
  position: absolute; top: 1.1rem; left: 1.1rem;
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.35rem 0.7rem; border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px; color: var(--silver); background: rgba(10,10,11,0.45); backdrop-filter: blur(4px);
}
.project-poster .glyph {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%);
  font-family: var(--serif); font-size: 3.4rem; color: rgba(255,255,255,0.06); letter-spacing: 0.05em;
}
.project-meta { position: relative; z-index: 2; }
.project-meta .yr { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold); }
.project-meta h3 { font-size: 1.45rem; margin: 0.35rem 0 0.2rem; line-height: 1.05; }
.project-meta .role { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash); }
.project-body { padding: 1.3rem 1.4rem 1.5rem; }
.project-body p { font-size: 0.9rem; color: var(--ash); }

/* ---------- STUDIOS FEATURES ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 740px) { .feature-grid { grid-template-columns: 1fr; } }
.feature { background: var(--ink); padding: clamp(1.8rem, 3.5vw, 2.6rem); }
.feature .ico { width: 30px; height: 30px; color: var(--gold); margin-bottom: 1rem; }
.feature h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.feature p { color: var(--ash); font-size: 0.94rem; }

.callout {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  background:
    radial-gradient(90% 130% at 100% 0%, rgba(207,211,216,0.14), transparent 55%),
    var(--surface);
  text-align: center;
}
.callout h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 1.2rem; }
.callout p { color: var(--ash); max-width: 52ch; margin: 0 auto 2rem; }
.callout .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- ABOUT / TEAM ---------- */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 700px) { .team { grid-template-columns: 1fr; } }
.member { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.member-photo { aspect-ratio: 4 / 5; background: linear-gradient(150deg, #22222b, #0c0c0e); display: grid; place-items: center; overflow: hidden; }
.member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
.member-photo .initial { font-family: var(--serif); font-size: 4rem; color: rgba(255,255,255,0.08); }
.member-body { padding: 1.6rem 1.8rem 2rem; }
.member-body .role { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.member-body h3 { font-size: 1.7rem; margin: 0.5rem 0 0.8rem; }
.member-body p { color: var(--ash); font-size: 0.95rem; }

.bio-body p { margin-bottom: 1.3rem; color: var(--ash-rich, #b9b9c0); font-size: 1.08rem; line-height: 1.8; max-width: 68ch; }
.bio-body p strong, .bio-body em { color: var(--bone); }
.bio-body em { font-style: italic; }
.pull-quote { font-family: var(--serif); font-size: clamp(1.6rem, 3.5vw, 2.6rem); line-height: 1.25; letter-spacing: -0.02em; color: var(--bone); margin: 2.5rem 0; padding-left: 1.6rem; border-left: 2px solid var(--gold); }

/* ---------- PRESS ---------- */
.press-list { border-top: 1px solid var(--line); }
.press-item {
  display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: 1.5rem;
  padding: 1.8rem 0; border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease);
}
.press-item:hover { padding-left: 0.8rem; }
.press-item .outlet { font-family: var(--serif); font-size: clamp(1.3rem, 3vw, 2rem); }
.press-item .headline { color: var(--ash); font-size: 0.95rem; }
.press-item .go { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
@media (max-width: 680px) { .press-item { grid-template-columns: 1fr; gap: 0.5rem; } .press-item .go { justify-self: start; } }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); }
@media (max-width: 840px) { .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.4rem; }
.field label { display: block; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash); margin-bottom: 0.6rem; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--bone); font-family: inherit; font-size: 1rem; padding: 0.95rem 1.1rem; transition: border-color 0.3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 140px; }
.contact-detail { margin-bottom: 2rem; }
.contact-detail .k { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ash-dim); margin-bottom: 0.4rem; }
.contact-detail .v { font-size: 1.15rem; }
.contact-detail .v a:hover { color: var(--gold); }
.map-embed { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; margin-top: 1.5rem; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(0.9) contrast(0.85); }
.form-note { font-size: 0.8rem; color: var(--ash-dim); margin-top: 0.5rem; }

/* ---------- CTA BAND ---------- */
.cta-band { position: relative; text-align: center; padding: clamp(5rem, 12vw, 9rem) var(--gut); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink-2); overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 0%, rgba(207,211,216,0.1), transparent 60%); }
.cta-band .inner { position: relative; z-index: 1; max-width: 60ch; margin: 0 auto; }
.cta-band h2 { font-size: clamp(2.2rem, 6vw, 4.5rem); margin-bottom: 1.4rem; }
.cta-band p { color: var(--ash); margin-bottom: 2.2rem; }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); border-top: 1px solid var(--line); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer-top { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3.5rem; }
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .mark { font-family: var(--serif); font-size: 1.7rem; }
.footer-brand .sub { font-size: 0.58rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--ash-dim); margin-top: 0.4rem; }
.footer-logo { display: block; height: 176px; width: auto; margin: -0.6rem 0 0.2rem -0.4rem; }
.footer-brand p { color: var(--ash); font-size: 1.1rem; line-height: 1.6; margin-top: 1.3rem; max-width: 38ch; }
.social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.social a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ash); transition: all 0.3s var(--ease); }
.social a:hover { color: var(--ink); background: var(--silver); border-color: var(--silver); transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; }
.footer-col h6 { font-size: 0.82rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ash-dim); margin-bottom: 1.3rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.95rem; }
.footer-col a { font-size: 1.18rem; color: var(--ash); transition: color 0.3s; }
.footer-col a:hover { color: var(--silver); }
.footer-bottom {
  border-top: 1px solid var(--line); margin-top: 0;
  max-width: var(--maxw); margin-inline: auto; padding: 1.6rem var(--gut);
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem;
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash-dim);
}
.footer-bottom .footer-email { text-transform: none; letter-spacing: 0.02em; color: var(--ash); }
.footer-bottom .footer-email:hover { color: var(--gold); }
/* Agency credit — intentionally small and quiet */
.footer-bottom .powered-by { font-size: 0.58rem; letter-spacing: 0.16em; color: rgba(244,244,243,0.3); }
.footer-bottom .powered-by a { color: rgba(244,244,243,0.38); transition: color 0.3s; }
.footer-bottom .powered-by a:hover { color: var(--gold); }

/* ---------- REVEAL ANIMATIONS ---------- */
/* Reveal is only hidden when JS is active (html.js); without JS, content shows by default */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }

/* ---------- MISC ---------- */
.big-watermark { font-family: var(--serif); font-size: clamp(7rem, 26vw, 22rem); line-height: 0.8; color: rgba(255,255,255,0.022); letter-spacing: -0.04em; pointer-events: none; user-select: none; }
.center { text-align: center; }
.center .eyebrow, .center .section-head,
.section-head.center, .section-head.center .lede { margin-inline: auto; }
.mt-sm { margin-top: 1.5rem; } .mt-md { margin-top: 2.5rem; }

/* ---------- STUDIO RENTAL: anchor offset + gallery ---------- */
[id] { scroll-margin-top: 1.5rem; }
@media (max-width: 920px) { [id] { scroll-margin-top: 128px; } }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 1.8vw, 1.4rem);
}
@media (max-width: 760px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-grid.two-up { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .gallery-grid.two-up { grid-template-columns: 1fr; } }
.gallery-item {
  margin: 0; position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius);
  aspect-ratio: 4 / 3; background: linear-gradient(150deg, #1a1a20, #0b0b0d);
}
.gallery-item.gallery-wide { grid-column: span 2; }
@media (max-width: 480px) { .gallery-item.gallery-wide { grid-column: span 1; } }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
/* Wardrobe photos are portrait (3:4) — give their tiles a portrait ratio so the full garment (shoulders included) shows */
#wardrobe .gallery-item { aspect-ratio: 3 / 4; }
#wardrobe .gallery-item img { object-position: top center; }
/* Prop shots are white-background product photos in mixed orientations — contain on a white tile so the whole object fits in frame */
#props .gallery-item { background: #fff; }
#props .gallery-item img { object-fit: contain; padding: 1.3rem 1.3rem 2.8rem; }
/* Picture-car cutouts are white-background product shots — same contain-on-white treatment; the police tile is a full-bleed photo */
#cars .gallery-item { background: #fff; }
#cars .gallery-item img { object-fit: contain; padding: 1.3rem 1.3rem 2.8rem; }
#cars .gallery-item.photo-tile { background: linear-gradient(150deg, #1a1a20, #0b0b0d); }
#cars .gallery-item.photo-tile img { object-fit: cover; padding: 0; }
/* Media: YouTube embed / player slot (responsive 16:9) */
.media-embed {
  position: relative; display: block; max-width: 1000px; margin: 0 auto;
  aspect-ratio: 16 / 9; overflow: hidden; background: #0a0a0b;
  border: 1px solid var(--line); border-radius: var(--radius);
}
.media-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.media-embed > img { width: 38%; max-width: 320px; height: auto; position: absolute; top: 42%; left: 50%; transform: translate(-50%, -50%); opacity: 0.9; }
.media-embed-cta {
  position: absolute; left: 50%; bottom: 16%; transform: translateX(-50%);
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--bone); white-space: nowrap;
}
.media-embed:hover .media-embed-cta { color: var(--gold); }
/* Disclaimer note (e.g. picture cars) */
.disclaimer {
  max-width: 760px; margin: 1.4rem auto 0; text-align: center;
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; line-height: 1.6;
  color: rgba(244,244,243,0.62);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 0.95rem 1.3rem;
}
.disclaimer strong { color: var(--gold); font-weight: 700; }
/* Click-to-play video feature (native controls, plays with sound) */
.video-feature { max-width: 1080px; margin: clamp(1.6rem, 3vw, 2.6rem) auto 0; }
.video-feature video {
  width: 100%; aspect-ratio: 16 / 9; display: block; background: #0a0a0b;
  border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer;
  object-fit: contain;
}
/* Production-office facility photos: four portrait tiles across */
.office-grid { grid-template-columns: repeat(4, 1fr); }
.office-grid .gallery-item { aspect-ratio: 3 / 4; }
@media (max-width: 860px) { .office-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .office-grid { grid-template-columns: 1fr; } }
/* Blockbuster: one large featured photo that opens a click-through gallery */
.blockbuster-hero { aspect-ratio: 16 / 9; max-width: 1080px; margin: 0 auto; }
.blockbuster-hero figcaption { padding: 3rem 1.6rem 1.3rem; }
.blockbuster-hero figcaption strong { font-size: clamp(1.3rem, 2.4vw, 1.9rem); }
.blockbuster-hero figcaption span { color: var(--gold); }
.gallery-item:hover img { transform: scale(1.05); }
/* logo placeholder tile (category with no photo yet) */
.gallery-item.cat-placeholder { background: linear-gradient(150deg, #16161c, #0b0b0d); }
.gallery-item.cat-placeholder img { object-fit: contain; padding: clamp(1.4rem, 13%, 3.4rem); opacity: 0.88; }
.gallery-item.cat-placeholder:hover img { transform: none; }
.gallery-soon {
  display: grid; place-items: center; text-align: center;
  font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ash-dim); line-height: 1.8;
  background:
    radial-gradient(80% 80% at 50% 40%, rgba(207,211,216,0.08), transparent 60%),
    linear-gradient(150deg, #16161a, #0b0b0d);
}

/* ---------- STUDIO AT A GLANCE (quick-facts band, Culver/MBS-style) ---------- */
.glance { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink-2); }
.glance-inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(2.2rem, 4vw, 3rem) var(--gut);
  display: grid; grid-template-columns: repeat(5, auto); justify-content: space-between; gap: clamp(1rem, 2vw, 2.4rem);
}
@media (max-width: 1080px) { .glance-inner { grid-template-columns: 1fr 1fr; justify-content: initial; gap: 2rem 1.5rem; } }
@media (max-width: 460px) { .glance-inner { grid-template-columns: 1fr; } }
.glance-item { display: flex; align-items: flex-start; gap: 0.65rem; }
.glance-item .ico { width: 22px; height: 22px; color: var(--gold); flex: 0 0 auto; margin-top: 0.15rem; }
.glance-item strong { display: block; font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.7rem); line-height: 1; color: var(--silver); white-space: nowrap; }
.glance-item span { display: block; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ash-dim); margin-top: 0.55rem; white-space: nowrap; }
.glance-item span em { font-style: normal; color: var(--gold); opacity: 0.8; }

/* ---------- STANDING SETS (captioned grid) ---------- */
.sets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.8rem, 1.8vw, 1.4rem); }
@media (max-width: 760px) { .sets-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .sets-grid { grid-template-columns: 1fr; } }
.set { position: relative; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); aspect-ratio: 4 / 3; background: linear-gradient(150deg, #1a1a20, #0b0b0d); }
.set img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.set:hover img { transform: scale(1.06); }
.set.cat-placeholder { background: linear-gradient(150deg, #16161c, #0b0b0d); }
.set.cat-placeholder img { object-fit: contain; padding: clamp(1.4rem, 13%, 3.4rem); opacity: 0.88; }
.set.cat-placeholder:hover img { transform: none; }
.set figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 2rem 1.1rem 0.95rem; background: linear-gradient(to top, rgba(8,8,10,0.94), rgba(8,8,10,0.45) 55%, transparent); pointer-events: none; }
.set figcaption strong { display: block; font-family: var(--serif); font-size: 1.1rem; line-height: 1.1; color: var(--bone); }
.set figcaption span { display: block; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 0.35rem; }

/* ---------- PICTURE CARS ---------- */
.car-media { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--ink-2); }
.car-media img { display: block; width: 100%; height: auto; }
.car-points { list-style: none; margin: 1.8rem 0 0; padding: 0; }
.car-points li { display: flex; gap: 0.9rem; align-items: flex-start; padding: 0.9rem 0; border-top: 1px solid var(--line); color: var(--ash); font-size: 0.95rem; }
.car-points li:first-child { border-top: 0; }
.car-points .ico { width: 22px; height: 22px; color: var(--gold); flex: 0 0 auto; margin-top: 0.1rem; }
.car-points strong { color: var(--bone); font-weight: 600; }

/* ---------- EXPANDABLE PHOTOS + CAPTIONS ---------- */
/* gallery photos get the same bottom caption overlay as the standing sets */
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2rem 1.1rem 0.95rem;
  background: linear-gradient(to top, rgba(8,8,10,0.94), rgba(8,8,10,0.45) 55%, transparent);
  pointer-events: none;
}
.gallery-item figcaption strong { display: block; font-family: var(--serif); font-size: 1.1rem; line-height: 1.1; color: var(--bone); }
.gallery-item figcaption span { display: block; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 0.35rem; }

/* zoom affordance on every expandable photo */
.set, .gallery-item, .positioning-media, .media-band figure, .car-media { cursor: pointer; }

/* lightbox overlay */
.lightbox {
  position: fixed; inset: 0; z-index: 5000;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1.2rem, 5vw, 3.5rem);
  background: rgba(6,6,8,0.93); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
  opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-stage { margin: 0; max-width: min(1100px, 100%); display: flex; flex-direction: column; align-items: center; }
.lightbox img {
  max-width: 100%; max-height: 80vh; width: auto; height: auto; object-fit: contain;
  border-radius: var(--radius); box-shadow: 0 40px 90px -30px rgba(0,0,0,0.85);
  transform: scale(0.96); transition: transform 0.35s var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lightbox-cap { margin-top: 1.1rem; text-align: center; font-family: var(--sans); color: var(--ash); font-size: 0.8rem; letter-spacing: 0.06em; }
.lightbox-cap strong { display: block; font-family: var(--serif); font-size: 1.3rem; line-height: 1.15; color: var(--bone); letter-spacing: 0; }
.lightbox-cap span { display: block; font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-top: 0.45rem; }
.lightbox-close, .lightbox-nav {
  position: fixed; z-index: 5010; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%;
  background: rgba(0,0,0,0.45); color: var(--bone); font-size: 1.3rem; line-height: 1;
  display: grid; place-items: center; cursor: pointer; transition: all 0.3s var(--ease);
}
.lightbox-close:hover, .lightbox-nav:hover { border-color: var(--silver); background: var(--silver); color: var(--ink); }
.lightbox-close { top: 1.2rem; right: 1.2rem; }
/* Solid, high-contrast pucks so the arrows read clearly over any image */
.lightbox-nav {
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px; font-size: 1.9rem; font-weight: 600;
  background: rgba(12,12,14,0.92); border: 1.5px solid var(--silver); color: var(--bone);
  box-shadow: 0 6px 26px rgba(0,0,0,0.7);
}
.lightbox-nav:hover { background: var(--silver); color: var(--ink); transform: translateY(-50%) scale(1.06); }
.lightbox-prev { left: 1.8rem; }
.lightbox-next { right: 1.8rem; }
@media (max-width: 560px) {
  .lightbox-close { width: 44px; height: 44px; top: 1rem; right: 1rem; background: rgba(0,0,0,0.7); }
  /* Side arrows overlapping the image edges, vertically centered on it — keeps them
     attached to the photo instead of floating at the bottom of a tall screen */
  .lightbox-nav {
    width: 48px; height: 48px; font-size: 1.6rem;
    top: 50%; bottom: auto; transform: translateY(-50%);
    background: rgba(0,0,0,0.72); border-color: var(--silver);
  }
  .lightbox-prev { left: 0.55rem; right: auto; margin-left: 0; }
  .lightbox-next { right: 0.55rem; left: auto; margin-right: 0; }
  .lightbox-nav:hover { transform: translateY(-50%); }
  .lightbox-cap strong { font-size: 1.1rem; }
  .lightbox-cap { margin-bottom: 0; }
}

/* FAQ accordion (dependency-free <details>) */
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 1.35rem 2.6rem 1.35rem 0;
  font-family: var(--serif); font-size: clamp(1.05rem, 2.1vw, 1.35rem); line-height: 1.25;
  color: var(--bone); transition: color 0.3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--silver); }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0.1rem; top: 1.3rem;
  font-family: var(--sans); font-weight: 400; font-size: 1.5rem; line-height: 1;
  color: var(--silver); transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item .faq-a {
  padding: 0 0 1.5rem; max-width: 72ch;
  font-family: var(--sans); color: var(--ash); font-size: 0.98rem; line-height: 1.75;
  animation: faqIn 0.35s var(--ease);
}
.faq-item .faq-a a { color: var(--gold); text-decoration: none; border-bottom: 1px solid currentColor; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* Clickable quick-fact + spec cards (jump to their section) */
a.glance-item, a.feature { text-decoration: none; color: inherit; cursor: pointer; }
a.glance-item { transition: transform 0.3s var(--ease); }
a.glance-item:hover { transform: translateY(-2px); }
a.glance-item:hover .ico { color: var(--bone); }
a.glance-item:hover strong { color: var(--bone); }
a.feature { transition: background 0.3s var(--ease); position: relative; }
a.feature:hover { background: var(--ink-2); }
a.feature:hover .ico { color: var(--bone); }
a.feature::after {
  content: "\2197"; position: absolute; top: clamp(1.4rem, 3vw, 2.1rem); right: clamp(1.4rem, 3vw, 2.1rem);
  font-family: var(--sans); font-size: 1rem; color: var(--silver); opacity: 0; transform: translate(-3px, 3px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
a.feature:hover::after { opacity: 0.85; transform: none; }

/* ---------- All-caps display polish (Archivo Expanded) ---------- */
.stat strong, .glance-item strong { font-stretch: 125%; font-variation-settings: "wdth" 125; }
.set figcaption strong, .gallery-item figcaption strong, .lightbox-cap strong {
  text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700;
}
.drawer-nav a {
  text-transform: uppercase; letter-spacing: 0.03em; font-weight: 700;
  font-stretch: 125%; font-variation-settings: "wdth" 125;
}
.faq-item summary { letter-spacing: 0; } /* keep FAQ questions readable, not capsed */

/* ---------- BOLD-ELEVATED: oversized section index (01 / 02 …) ---------- */
body { counter-reset: chapter; }
.numbered { counter-increment: chapter; position: relative; }
.numbered::before {
  content: counter(chapter, decimal-leading-zero);
  display: block;
  font-family: var(--serif);
  font-weight: 800; font-stretch: 125%; font-variation-settings: "wdth" 125;
  font-size: clamp(2.6rem, 7vw, 5.5rem); line-height: 0.85;
  letter-spacing: 0.01em;
  color: transparent; -webkit-text-stroke: 1px var(--silver-lo);
  opacity: 0.55;
  margin-bottom: clamp(0.8rem, 2vw, 1.4rem);
}
.section-head.center.numbered::before { text-align: center; }

/* chapter hairline divider above numbered showcase sections */
.section.numbered-section { border-top: 1px solid var(--line-soft); }

/* Grander full-bleed band caption */
.media-band figcaption { font-size: clamp(0.62rem, 1.4vw, 0.8rem); letter-spacing: 0.3em; }

/* =====================================================================
   MULTI-PAGE (2026-06-19): cinematic interior page heroes + home chapters
   ===================================================================== */
/* Interior page hero — full-bleed image, title bottom-left (mirrors home hero, shorter) */
.page-hero {
  position: relative; min-height: 64svh; display: flex; align-items: flex-end;
  overflow: hidden; border-bottom: 1px solid var(--line);
  padding: clamp(252px, 21vh, 272px) 0 clamp(2.6rem, 6vw, 4.5rem);
  box-sizing: border-box;
}
.page-hero::before { content: none; }
/* Video page-hero (e.g. Cyc Wall): taller than the viewport so the video fills the first screen and the header text sits below the fold (scroll to read it) — mirrors the home hero. */
.page-hero.has-video { min-height: calc(100svh + 380px); }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 34s ease-in-out infinite alternate; }
.page-hero-bg video { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(10,10,11,0.94) 3%, rgba(10,10,11,0.5) 42%, rgba(10,10,11,0.12) 78%, transparent),
    linear-gradient(90deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.12) 55%, transparent 80%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.3rem, 6vw, 5rem); margin-top: 1rem; max-width: 20ch; text-wrap: balance; text-shadow: 0 2px 24px rgba(0,0,0,0.5); }
.page-hero .lede { margin-top: 1.4rem; max-width: 58ch; color: var(--bone); opacity: 0.92; text-shadow: 0 1px 12px rgba(0,0,0,0.5); }
.page-hero .eyebrow { text-shadow: 0 1px 10px rgba(0,0,0,0.7); }
/* Mobile: keep the video page-hero to one screen so the video doesn't bleed behind
   the content as you scroll (the desktop +380px below-fold treatment is too tall on phones). */
@media (max-width: 640px) {
  .page-hero.has-video { min-height: 100svh; padding-top: clamp(150px, 30vh, 240px); }
  .page-hero-bg::after {
    background:
      linear-gradient(0deg, rgba(10,10,11,0.96) 6%, rgba(10,10,11,0.6) 40%, rgba(10,10,11,0.35) 70%, rgba(10,10,11,0.28));
  }
}

/* Home: chapter cards (gallery-forward navigation into the pages) */
.chapters { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(0.8rem, 1.6vw, 1.4rem); }
@media (max-width: 720px) { .chapters { grid-template-columns: 1fr; } }
.chapter-card {
  position: relative; display: block; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius);
  aspect-ratio: 16 / 10; background: linear-gradient(150deg, #1a1a20, #0b0b0d);
}
.chapter-card.wide { grid-column: 1 / -1; aspect-ratio: 21 / 8; }
@media (max-width: 720px) { .chapter-card.wide { aspect-ratio: 16 / 10; } }
.chapter-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease); }
.chapter-card:hover img { transform: scale(1.06); }
.chapter-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,11,0.92), rgba(10,10,11,0.2) 55%, rgba(10,10,11,0.05) 100%);
}
.chapter-meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(1.2rem, 3vw, 2.3rem);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
}
.chapter-no {
  position: absolute; top: clamp(1rem, 3vw, 2rem); left: clamp(1.2rem, 3vw, 2.3rem);
  font-family: var(--serif); font-weight: 800; font-stretch: 125%; font-variation-settings: "wdth" 125;
  font-size: clamp(1.6rem, 4vw, 2.8rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px var(--silver-lo); opacity: 0.7;
}
.chapter-meta h3 { font-size: clamp(1.4rem, 3vw, 2.3rem); color: var(--bone); }
.chapter-meta .chapter-go {
  font-family: var(--sans); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--silver); white-space: nowrap; display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.35s var(--ease);
}
.chapter-card:hover .chapter-go { gap: 0.7rem; }

/* Active nav link (current page) */
.topnav-links a.current { color: var(--bone); }
.topnav-links a.current::after { transform: scaleX(1); }
.drawer-nav a.current { color: var(--silver); }

/* ---------- TEAM (Meet the Team) ---------- */
.team-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.4rem, 3vw, 2.6rem); max-width: 760px; margin: 0 auto; }
@media (min-width: 560px) { .team-grid { grid-template-columns: 1fr 1fr; } }
.team-member { text-align: center; }
.team-photo { aspect-ratio: 4 / 5; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(150deg, #1a1a20, #0c0c0e); display: grid; place-items: center; margin-bottom: 1.1rem; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo span { font-family: var(--serif); font-weight: 800; font-stretch: 125%; font-variation-settings: "wdth" 125; font-size: clamp(2.4rem, 6vw, 3.6rem); color: rgba(255,255,255,0.12); }
.team-member h3 { font-size: clamp(1.2rem, 2.6vw, 1.8rem); }
.team-member .role { display: block; font-family: var(--sans); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 0.55rem; }
