/* ============================================================
   Damien Stafford — Director / Cinematographer
   Mockup design system
   ============================================================ */

:root {
  /* palette — warm cinematic near-black */
  --bg:        #0b0b0c;
  --bg-soft:   #121113;
  --bg-card:   #161518;
  --ink:       #f3efe7;
  --ink-dim:   #c4beb3;
  --muted:     #8d877d;
  --muted-2:   #6a655d;
  --line:      rgba(243, 239, 231, 0.12);
  --line-soft: rgba(243, 239, 231, 0.07);
  --accent:    #c46a3d;   /* clay / leather — used sparingly */
  --accent-2:  #e2a877;

  /* type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* metrics */
  --pad: clamp(20px, 5vw, 88px);
  --maxw: 1480px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-2: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent); color: #0b0b0c; }

/* ---------- film grain + vignette overlays ---------- */
.grain, .vignette { position: fixed; inset: 0; pointer-events: none; z-index: 60; }
.vignette {
  background: radial-gradient(120% 120% at 50% 45%, transparent 55%, rgba(0,0,0,0.55) 100%);
}
.grain {
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- custom cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 80;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink);
  transform: translate(-50%, -50%);
  pointer-events: none; mix-blend-mode: difference;
  transition: width .35s var(--ease), height .35s var(--ease), background .35s var(--ease);
}
.cursor.is-media {
  width: 88px; height: 88px; background: transparent;
  border: 1px solid rgba(243,239,231,0.85); mix-blend-mode: normal;
}
.cursor .cursor-label {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); opacity: 0; transition: opacity .3s var(--ease);
}
.cursor.is-media .cursor-label { opacity: 1; }
@media (hover: none), (max-width: 860px) { .cursor { display: none; } }

/* ---------- utilities ---------- */
/* single content container — gutter via margin so borders align with content (not edge-to-edge) */
.shell { width: calc(100% - var(--pad) * 2); max-width: var(--maxw); margin-inline: auto; }
.eyebrow {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.eyebrow .dot { color: var(--accent); }
.serif { font-family: var(--serif); }
.muted { color: var(--muted); }
.center { text-align: center; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }
[data-delay="3"] { transition-delay: .24s; }
[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 70;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px max(var(--pad), calc(50% - var(--maxw) / 2));
  transition: background .5s var(--ease), padding .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11,11,12,0.72);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  padding-top: 14px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.wordmark {
  font-family: var(--serif); font-size: 27px; font-weight: 500; letter-spacing: 0.02em;
  line-height: 1; white-space: nowrap;
}
.wordmark .reg { color: var(--muted); font-size: 0.62em; vertical-align: super; margin-left: 2px; }
.nav-links { display: flex; gap: 42px; align-items: center; }
.nav-links a {
  font-size: 14px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-dim);
  position: relative; padding: 6px 0; transition: color .3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--accent); transition: width .4s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none; background: none; border: none; color: var(--ink);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; padding: 6px 0;
}

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 75; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: var(--pad); gap: 6px;
  transform: translateY(-100%); transition: transform .6s var(--ease);
}
.mobile-menu.open { transform: none; }
.mobile-menu a {
  font-family: var(--serif); font-size: clamp(36px, 11vw, 68px); font-weight: 400; line-height: 1.1;
  color: var(--ink-dim); transition: color .3s var(--ease);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .mm-close {
  position: absolute; top: 22px; right: var(--pad);
  background: none; border: none; color: var(--ink);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
}
.mobile-menu .mm-foot { position: absolute; bottom: var(--pad); font-size: 12px; letter-spacing: .14em; color: var(--muted); text-transform: uppercase; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; height: 100svh; min-height: 620px; width: 100%; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
  animation: kenburns 22s var(--ease-2) infinite alternate;
}
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1.16) translateY(-1.5%); } }
/* portrait banner: keep face in frame, weight toward the right so the title sits on the darker side */
.hero-portrait img { object-position: 64% 20%; filter: saturate(1) contrast(1.05) brightness(0.96); }
@media (max-width: 860px) { .hero-portrait img { object-position: 56% 16%; } }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,0.55) 0%, rgba(11,11,12,0.18) 32%, rgba(11,11,12,0.35) 62%, rgba(11,11,12,0.96) 100%);
}
.hero-inner {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--pad) clamp(40px, 8vh, 92px);
}
.hero-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(52px, 12vw, 184px); line-height: 0.92; letter-spacing: -0.01em;
  margin: 14px 0 0; text-wrap: balance;
}
.hero-title em { font-style: italic; color: var(--accent-2); }
.hero-row {
  display: flex; flex-wrap: wrap; gap: 18px 40px; align-items: flex-end; justify-content: space-between;
  margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line);
}
.hero-role { font-size: 13px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-dim); max-width: 28ch; }
.scroll-cue { display: flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.scroll-cue .line { display: inline-block; width: 56px; height: 1px; background: var(--muted); position: relative; overflow: hidden; }
.scroll-cue .line::after { content:""; position:absolute; left:0; top:0; height:100%; width:40%; background: var(--accent); animation: slide 2.4s var(--ease) infinite; }
@keyframes slide { 0%{transform:translateX(-100%)} 60%,100%{transform:translateX(280%)} }

/* ============================================================
   HERO 2 — editorial split (portrait + copy)
   ============================================================ */
.hero2 {
  position: relative; min-height: 100svh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  gap: clamp(28px, 6vh, 64px);
  padding: clamp(120px, 17vh, 168px) 0 clamp(28px, 5vh, 48px);
}
/* soft warm glow behind the portrait for depth */
.hero2::before {
  content: ""; position: absolute; right: -8%; top: 46%; transform: translateY(-50%);
  width: 58vw; height: 86vh; pointer-events: none; z-index: 0;
  background: radial-gradient(closest-side, rgba(196,106,61,0.14), rgba(196,106,61,0) 72%);
}
.hero2-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center;
  gap: clamp(34px, 6vw, 96px);
}
.hero2-copy { max-width: 100%; }
.hero2-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(56px, 9vw, 134px); line-height: 0.92; letter-spacing: -0.01em;
  margin: 16px 0 0; text-wrap: balance;
}
.hero2-title em { font-style: italic; color: var(--accent-2); }
.hero2-lead {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(20px, 2.1vw, 28px); line-height: 1.5; color: var(--ink-dim);
  max-width: 30ch; margin: 26px 0 0;
}
.hero2-actions { display: flex; align-items: center; gap: 28px; margin-top: clamp(30px, 5vh, 44px); flex-wrap: wrap; }

.hero2-figure { position: relative; margin: 0; justify-self: end; width: 100%; max-width: 440px; }
/* offset editorial frame behind the portrait */
.hero2-figure::before {
  content: ""; position: absolute; z-index: 0;
  left: 16px; right: -16px; top: 16px; bottom: 38px;
  border: 1px solid var(--line-soft);
}
.hero2-frame { position: relative; z-index: 1; aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid var(--line); background: var(--bg-card); }
.hero2-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%;
  filter: grayscale(0.12) contrast(1.05) brightness(0.99);
  transition: transform 1.3s var(--ease), filter 1.3s var(--ease);
}
.hero2-figure:hover .hero2-frame img { transform: scale(1.04); filter: grayscale(0) contrast(1.05) brightness(1); }
.hero2-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(11,11,12,0.5)); }
.hero2-badge {
  position: absolute; left: 14px; top: 14px; z-index: 2;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink);
  border: 1px solid rgba(243,239,231,0.4); border-radius: 100px; padding: 5px 12px; backdrop-filter: blur(4px);
}
.hero2-figure figcaption {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  margin-top: 16px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-dim);
}
.hero2-figure figcaption .muted { color: var(--muted); }

.hero2-foot {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.hero2-clients { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: clamp(16px, 2vw, 22px); }

@media (max-width: 860px) {
  .hero2 { min-height: auto; padding-top: clamp(120px, 20vh, 150px); }
  .hero2-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero2-figure { order: -1; justify-self: start; max-width: 300px; }
  .hero2-figure::before { display: none; }
  .hero2-foot { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ============================================================
   SECTIONS / GENERIC
   ============================================================ */
.section { padding: clamp(72px, 13vh, 168px) 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 30px;
  margin-bottom: clamp(34px, 6vh, 70px); flex-wrap: wrap;
}
.section-title {
  font-family: var(--serif); font-weight: 400; line-height: 1.02;
  font-size: clamp(34px, 6vw, 80px); letter-spacing: -0.01em; margin: 12px 0 0; max-width: 16ch;
}
.section-title em { font-style: italic; color: var(--accent-2); }
.lead {
  font-family: var(--serif); font-size: clamp(22px, 3vw, 34px); line-height: 1.42;
  font-weight: 300; color: var(--ink-dim); max-width: 24ch;
}

.link-pill {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink);
  padding: 14px 26px; border: 1px solid var(--line); border-radius: 100px;
  transition: border-color .4s var(--ease), color .4s var(--ease), background .4s var(--ease), gap .4s var(--ease);
}
.link-pill .arrow { transition: transform .4s var(--ease); }
.link-pill:hover { border-color: var(--ink); background: var(--ink); color: var(--bg); gap: 18px; }
.text-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim);
}
.text-link .arrow { transition: transform .4s var(--ease); color: var(--accent); }
.text-link:hover { color: var(--ink); }
.text-link:hover .arrow { transform: translateX(6px); }

/* ============================================================
   WORK GRID
   ============================================================ */
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2.4vw, 40px); }

.tile { grid-column: span 6; position: relative; }
.tile.wide { grid-column: span 12; }
.tile.third { grid-column: span 4; }
.tile-media {
  position: relative; overflow: hidden; background: var(--bg-card);
  aspect-ratio: 16 / 9; border: 1px solid var(--line-soft);
}
.tile.feature .tile-media { aspect-ratio: 21 / 9; }
.tile-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
  filter: grayscale(0.32) brightness(0.86) contrast(1.02);
  transform: scale(1.01);
}
.tile-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,0) 40%, rgba(11,11,12,0.7) 100%);
  opacity: .55; transition: opacity .8s var(--ease);
}
.tile:hover .tile-media img { transform: scale(1.07); filter: grayscale(0) brightness(1) contrast(1.04); }
.tile:hover .tile-media::after { opacity: .35; }

.tile-num {
  position: absolute; top: 16px; left: 18px; z-index: 3;
  font-size: 11px; letter-spacing: 0.2em; color: var(--ink); opacity: .8;
}
.tile-dur {
  position: absolute; top: 16px; right: 18px; z-index: 3;
  font-size: 11px; letter-spacing: 0.16em; color: var(--ink);
  padding: 4px 10px; border: 1px solid rgba(243,239,231,0.4); border-radius: 100px;
  backdrop-filter: blur(4px);
}
.tile-cap {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 16px 2px 0;
}
.tile-client { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-2); }
.tile-title { font-family: var(--serif); font-size: clamp(28px, 3.1vw, 44px); font-weight: 400; line-height: 1.08; margin: 6px 0 0; }
.tile-meta { font-size: 12px; letter-spacing: 0.1em; color: var(--muted); white-space: nowrap; text-transform: uppercase; }
.tile-cap .right { text-align: right; }

@media (max-width: 860px) {
  .tile, .tile.third { grid-column: span 12; }
  .tile-media, .tile.feature .tile-media { aspect-ratio: 16/9; }
}

/* ============================================================
   STRIP (marquee of clients)
   ============================================================ */
.strip .shell { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding-top: 26px; padding-bottom: 26px; overflow: hidden; }
.strip-track { display: flex; gap: 64px; white-space: nowrap; width: max-content; animation: marquee 28s linear infinite; }
.strip:hover .strip-track { animation-play-state: paused; }
.strip-track span { font-family: var(--serif); font-size: clamp(20px, 3vw, 34px); color: var(--muted); font-style: italic; }
.strip-track span .star { color: var(--accent); font-style: normal; margin: 0 28px; font-size: .7em; vertical-align: middle; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   REEL (featured player)
   ============================================================ */
.reel-stage { position: relative; aspect-ratio: 16/9; overflow: hidden; border: 1px solid var(--line); background:#000; }
.reel-stage img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7) contrast(1.05); transition: transform 1.2s var(--ease), filter 1.2s var(--ease); }
.reel-stage:hover img { transform: scale(1.04); filter: brightness(0.82); }
.reel-stage iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.reel-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; z-index: 3;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.22) 55%, rgba(0,0,0,0) 80%); }
.play-btn {
  width: clamp(78px, 9vw, 120px); height: clamp(78px, 9vw, 120px); border-radius: 50%;
  border: 1px solid rgba(243,239,231,0.6); background: rgba(11,11,12,0.18);
  display: grid; place-items: center; color: var(--ink);
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
  backdrop-filter: blur(3px);
}
.play-btn svg { width: 26%; height: 26%; margin-left: 8%; }
.reel-stage:hover .play-btn { background: var(--accent); border-color: var(--accent); transform: scale(1.06); }
.reel-cap { font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink); text-shadow: 0 1px 2px rgba(0,0,0,.95), 0 2px 30px rgba(0,0,0,.85); }

/* ============================================================
   EDITORIAL (bio / statement)
   ============================================================ */
.editorial { display: grid; grid-template-columns: 1fr; gap: clamp(40px, 6vw, 90px); }
.ed-2col { grid-template-columns: 0.85fr 1.15fr; }
@media (max-width: 900px) { .ed-2col { grid-template-columns: 1fr; } }

.portrait { position: relative; }
.portrait img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: grayscale(0.25) contrast(1.04); border: 1px solid var(--line-soft); }
.portrait .tag { position: absolute; bottom: 14px; left: 14px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); background: rgba(11,11,12,.55); padding: 6px 12px; backdrop-filter: blur(6px); }

.prose p { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.75; color: var(--ink-dim); margin: 0 0 1.3em; max-width: 62ch; }
.prose p.big { font-family: var(--serif); font-size: clamp(24px, 3.2vw, 40px); line-height: 1.4; font-weight: 300; color: var(--ink); margin-bottom: 0.9em; max-width: 24ch; }
.prose p strong { color: var(--ink); font-weight: 500; }
.prose .drop::first-letter { font-family: var(--serif); font-size: 3.6em; line-height: .8; float: left; padding: 6px 12px 0 0; color: var(--accent-2); }

.pullquote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(26px, 4vw, 50px); line-height: 1.3; color: var(--ink);
  border-left: 2px solid var(--accent); padding-left: clamp(20px, 3vw, 40px); margin: 10px 0;
  max-width: 22ch;
}

/* facts / credits list */
.facts { display: grid; gap: 0; border-top: 1px solid var(--line); margin-top: 8px; }
.fact { display: grid; grid-template-columns: 0.5fr 1.5fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.fact dt { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.fact dd { margin: 0; color: var(--ink-dim); }
.fact dd b { color: var(--ink); font-weight: 500; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-hero { padding-top: clamp(140px, 22vh, 240px); }
.mailto-xl {
  font-family: var(--serif); font-weight: 300; line-height: 1.04;
  font-size: clamp(34px, 8vw, 116px); letter-spacing: -0.01em; display: inline-block;
  transition: color .4s var(--ease);
}
.mailto-xl:hover { color: var(--accent-2); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: clamp(50px, 9vh, 110px); }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; gap: 0; } }
.contact-card { padding: 28px 0; border-top: 1px solid var(--line); }
.contact-card h4 { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; font-weight: 500; }
.contact-card a, .contact-card p { color: var(--ink-dim); margin: 0 0 6px; font-size: 16px; transition: color .3s var(--ease); }
.contact-card a:hover { color: var(--accent-2); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 0 0 38px; }
.footer .shell { border-top: 1px solid var(--line); padding-top: clamp(50px, 9vh, 96px); }
.footer-top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-end; }
.footer-mark { font-family: var(--serif); font-size: clamp(40px, 9vw, 120px); font-weight: 400; line-height: .9; letter-spacing: -0.01em; }
.footer-mark em { font-style: italic; color: var(--accent-2); }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-dim); transition: color .3s var(--ease); }
.footer-links a:hover { color: var(--accent-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: clamp(40px, 7vh, 80px); padding-top: 24px; border-top: 1px solid var(--line-soft); }
.footer-bottom p { margin: 0; font-size: 12px; letter-spacing: 0.08em; color: var(--muted); }
.footer-bottom .draft { color: var(--accent); }

/* page intro header (interior pages) */
.page-intro { padding-top: clamp(150px, 24vh, 260px); padding-bottom: clamp(40px, 8vh, 90px); }
.page-intro h1 {
  font-family: var(--serif); font-weight: 400; line-height: .98;
  font-size: clamp(48px, 11vw, 150px); letter-spacing: -0.01em; margin: 16px 0 0;
}
.page-intro h1 em { font-style: italic; color: var(--accent-2); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 90; display: none;
  background: rgba(6,6,7,0.94); backdrop-filter: blur(10px);
  padding: clamp(20px, 6vh, 80px) var(--pad);
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lb-bar { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 18px; }
.lb-title { font-family: var(--serif); font-size: clamp(20px, 3vw, 34px); font-weight: 400; }
.lb-title small { display: block; font-family: var(--sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 6px; }
.lb-close { background: none; border: 1px solid var(--line); color: var(--ink); border-radius: 100px; padding: 12px 22px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; transition: background .3s var(--ease), color .3s var(--ease); }
.lb-close:hover { background: var(--ink); color: var(--bg); }
.lb-frame { position: relative; flex: 1; min-height: 0; display: grid; place-items: center; }
.lb-frame .ratio { position: relative; width: 100%; max-width: 1320px; aspect-ratio: 16/9; max-height: 100%; background: #000; border: 1px solid var(--line); }
.lb-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lb-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; }
.lb-nav button { background: none; border: none; color: var(--ink-dim); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; display: inline-flex; gap: 10px; align-items: center; transition: color .3s var(--ease); }
.lb-nav button:hover { color: var(--ink); }
.lb-nav .count { font-size: 12px; letter-spacing: 0.2em; color: var(--muted); }
