/* ═══════════════════════════════════════════════════════════════════════════
   TYPE CONTROLS — leading, tracking & size, all in one place
   ═══════════════════════════════════════════════════════════════════════════
   LEADING  = space between lines. Unitless number. 1 = tight, 1.6 = airy.
   TRACKING = space between letters (kerning). In px. Negative pulls tighter.
   SIZE     = clamp(minimum, scales-with-window, maximum).

   Change a number here and every matching element updates. Nothing else in
   this file needs touching. Big display type is listed first.
   ═══════════════════════════════════════════════════════════════════════════ */
:root {
  /* ── HERO NAME — "MANDIP SALH" ── */
  --hero-size: clamp(3.5rem, 11.4vw, 11.5rem);
  --hero-leading: 0.86;      /* very tight — lines nearly touch */
  --hero-tracking: 1px;

  /* ── HERO HEADLINE — "Campaigns that became culture." ── */
  --hero-line-size: clamp(1.6rem, 2.6vw, 2.6rem);
  --hero-line-tracking: 0.4px;

  /* ── SECTION HEADINGS — "Selected work" / "More work" ── */
  --h2-size: clamp(34px, 3.6vw, 56px);
  --h2-tracking: 0.5px;

  /* ── CULTURAL MOMENT TITLES — the two biggest statements ── */
  --moment-size: clamp(3.5rem, 9vw, 9rem);
  --moment-leading: 0.96;
  --moment-tracking: 0.5px;

  /* ── CASE TITLES — full-width cases, and the More-work grid ── */
  --case-title-size: clamp(30px, 3vw, 46px);
  --case-title-tracking: 0.4px;
  --more-title-size: clamp(22px, 2vw, 30px);
  --more-title-tracking: 0.4px;

  /* ── THE EMAIL — largest interactive element on the page ── */
  --email-size: clamp(40px, 6.4vw, 100px);
  --email-leading: 1;
  --email-tracking: 0.5px;

  /* ── BODY COPY ── */
  --body-size: 17px;
  --body-leading: 1.6;
  --body-tracking: 0;
  --moment-col-leading: 1.65;

  /* ── MONO LABELS — eyebrows, chips, all-caps notes ──
     These carry the widest tracking on the site; that spacing is the look. */
  --mono-tracking: 2px;
  --mono-tracking-wide: 3px;
  --mono-tracking-tight: 1.5px;
  --client-tracking: 3px;
}

/* ── PALETTE ──
   Accent #e8402f is reserved for: the two Cultural-Moment eyebrows, the
   Chapter-02 badge, and the Contact status line + email hover. Nowhere else. */
:root {
  --field: #0e0e11;
  --text: #f1efe9;
  --muted: #8f8d94;
  --body: #c9c7c0;
  --sec: #a5a3ab;
  --accent: #e8402f;
  --well: #17171b;
  --well-dark: #141419;
  --hair: rgba(241, 239, 233, 0.1);
  --hair-strong: rgba(241, 239, 233, 0.12);
  --bez: cubic-bezier(0.22, 1, 0.36, 1);
  --pad-x: 48px;
  --maxw: 1440px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--field);
  color: var(--text);
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  line-height: var(--body-leading);
  letter-spacing: var(--body-tracking);
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--text); outline-offset: 4px; }

button {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: var(--mono-tracking-wide);
  color: var(--muted);
}

@keyframes posterPan {
  from { background-position: 40% 50%; }
  to { background-position: 60% 50%; }
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-6%, 4%); }
  40%  { transform: translate(4%, -6%); }
  60%  { transform: translate(-4%, 6%); }
  80%  { transform: translate(6%, -4%); }
  100% { transform: translate(0, 0); }
}
@keyframes cycIn {
  from { opacity: 0.12; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px var(--pad-x);
  background: rgba(14, 14, 17, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair);
}
.nav-name { font-weight: 600; font-size: 15px; letter-spacing: 0.2px; margin-right: auto; }
.nav-contact {
  border: 1px solid rgba(241, 239, 233, 0.35);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  padding: 9px 22px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-contact:hover { background: var(--text); color: var(--field); text-decoration: none; }

/* ── Hero — North Over Everything still ── */
.hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
}
.hero-wrap { position: absolute; inset: -16px; will-change: transform; }
.hero-poster {
  position: absolute;
  inset: 0;
  background-color: var(--well-dark);
  background-size: cover;
  background-position: center;
  filter: saturate(0.92) contrast(1.08) brightness(0.82);
  animation: posterPan 20s ease-in-out infinite alternate;
}
/* Animated film grain — lets a lower-res still read as film texture */
.hero-grain {
  position: absolute;
  inset: -40%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-repeat: repeat;
  opacity: 0.14;
  mix-blend-mode: overlay;
  animation: grainShift 1.1s steps(4) infinite;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.16) 0 1px, transparent 1px 3px);
  opacity: 0.2;
  box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.75);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 14, 17, 0.96) 0%, rgba(14, 14, 17, 0.42) 52%, rgba(14, 14, 17, 0.34) 100%);
}
.hero-lockup {
  position: absolute;
  left: var(--pad-x); right: var(--pad-x); bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-lockup h1 {
  margin: 0 0 0 -5px;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: var(--hero-size);
  line-height: var(--hero-leading);
  letter-spacing: var(--hero-tracking);
  white-space: nowrap;
}
.hero-line {
  font-family: 'Anton', sans-serif;
  font-size: var(--hero-line-size);
  letter-spacing: var(--hero-line-tracking);
}
.hero-lockup p {
  margin: 0;
  font-size: var(--body-size);
  color: var(--body);
  max-width: 52ch;
  line-height: var(--body-leading);
}

/* ── Prestige bar ── */
.prestige {
  border-bottom: 1px solid var(--hair);
  padding: 20px var(--pad-x) 22px;
}
.prestige .eyebrow { margin-bottom: 12px; }
.prestige-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}
.prestige-row div {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: var(--client-tracking);
  color: #84828a;
}

/* ── Shared section scaffolding ── */
.display-h2 {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: var(--h2-size);
  letter-spacing: var(--h2-tracking);
}
.work-head {
  padding: 44px var(--pad-x) 6px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.mono-h2 {
  margin: 0 0 40px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-size: 12.8px;
  letter-spacing: var(--mono-tracking-wide);
  color: var(--muted);
}

/* ── Cultural Moments ── */
.moment {
  padding: 40px var(--pad-x) 120px;
  max-width: var(--maxw);
  margin: 0 auto;
}
#moment2 { padding: 60px var(--pad-x) 44px; }
.moment-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: var(--mono-tracking-wide);
  color: var(--accent);
}
.moment-title {
  margin: 24px 0 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: var(--moment-size);
  line-height: var(--moment-leading);
  letter-spacing: var(--moment-tracking);
}
.moment-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: var(--mono-tracking-tight);
  color: var(--sec);
  margin: 22px 0 0;
}
.moment-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 30px 0 44px;
  max-width: 1080px;
}
.moment-cols p {
  margin: 0;
  font-size: var(--body-size);
  line-height: var(--moment-col-leading);
  color: var(--body);
}

/* Cultural Moment №1 film — the site's only sound-on moment */
.peak-film {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(241, 239, 233, 0.16);
  overflow: hidden;
}
.peak-film iframe { width: 100%; height: 100%; border: 0; display: block; }
.peak-film-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.16) 0 1px, transparent 1px 3px);
  opacity: 0.1;
  box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.5);
}
.sound-btn {
  position: absolute;
  right: 18px; bottom: 18px;
  background: rgba(14, 14, 17, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(241, 239, 233, 0.4);
  border-radius: 999px;
  color: var(--text);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: var(--mono-tracking);
  padding: 11px 20px;
  transition: background 0.2s ease, color 0.2s ease;
}
.sound-btn:hover { background: var(--text); color: var(--field); }

/* "THE CAMPAIGN IN FULL" — the real case boards, click any to enlarge.
   Frames use object-fit:contain on the dark field so boards of differing
   aspect ratios sit together without ever cropping real content. */
.stills-block { margin-top: 64px; }
.stills-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.stills-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 2.5px;
  color: var(--muted);
}
.stills-hint {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: var(--mono-tracking);
  color: var(--muted);
}
.stills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.still-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  background: var(--well-dark);
  border: 1px solid var(--hair-strong);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
}
.still-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.45s var(--bez), opacity 0.2s ease;
}
.still-frame:hover img { transform: scale(1.03); }
.still-zoom {
  position: absolute;
  right: 10px; bottom: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text);
  background: rgba(14, 14, 17, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(241, 239, 233, 0.28);
  border-radius: 999px;
  padding: 5px 10px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.still-frame:hover .still-zoom,
.still-frame:focus-visible .still-zoom { opacity: 1; }

/* ── Lightbox ── */
.lb { position: fixed; inset: 0; z-index: 80; }
.lb-scrim {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: lbFade 0.22s ease both;
  cursor: zoom-out;
}
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbPop {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}
.lb-figure {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 72px 88px;
  pointer-events: none;
}
.lb-figure img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  animation: lbPop 0.24s var(--bez) both;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}
.lb-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: var(--mono-tracking);
  color: var(--muted);
  flex: none;
}
.lb-close, .lb-nav {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: rgba(20, 20, 25, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(241, 239, 233, 0.28);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.lb-close {
  top: 22px; right: 24px;
  width: 44px; height: 44px;
  font-size: 16px;
}
.lb-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  font-size: 26px;
  line-height: 1;
  padding-bottom: 4px;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-close:hover, .lb-nav:hover { background: var(--text); color: var(--field); }
.lb-nav[hidden] { display: none; }

/* ── Award medallions ── */
.award-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 64px;
}
.medallions { display: flex; gap: 24px; flex-wrap: wrap; }
.medallion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 92px;
  text-align: center;
}
.medallion-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.2px;
  color: var(--text);
}
.medallion-tier {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--muted);
}
.award-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 2.5px;
  color: var(--muted);
  line-height: 2;
}

/* ── Cases (lead + post) ── */
.cases-section {
  padding: 56px var(--pad-x) 40px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.lead-section {
  border-top: 1px solid var(--hair-strong);
  padding-top: 80px;
}
.case-list { display: flex; flex-direction: column; gap: 96px; }

.case-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--well);
}
.case-media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.play-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.play-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--bez);
}
.play-btn:hover img { transform: scale(1.03); }
/* Broadcast Master treatment — grade + veil only. No provenance chips. */
.still-hd { filter: saturate(0.96) contrast(1.03); }
.still-sd { filter: saturate(0.78) contrast(1.16) brightness(0.94); }
.veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0 1px, transparent 1px 3px);
  opacity: 0.28;
  box-shadow: inset 0 0 110px rgba(0, 0, 0, 0.5);
}
.veil-open {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 130px rgba(0, 0, 0, 0.42);
}
.play-ring {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 1.5px solid rgba(241, 239, 233, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text);
  background: rgba(14, 14, 17, 0.32);
}
.no-poster {
  position: absolute;
  inset: 0;
  background: var(--well-dark);
}

.case-meta {
  display: flex;
  align-items: baseline;
  gap: 26px;
  margin-top: 22px;
  padding-top: 18px;
}
.case-meta h3 {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: var(--case-title-size);
  letter-spacing: var(--case-title-tracking);
}
.meta-right { margin-left: auto; text-align: right; flex: none; max-width: 52ch; }
.meta-client {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 2.5px;
  color: var(--muted);
}
.meta-role { font-size: 13.5px; color: var(--sec); margin-top: 7px; }
.meta-outcome { font-size: 14.5px; color: var(--body); margin-top: 5px; }

.case-ctrls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.film-chip {
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: var(--mono-tracking-tight);
  padding: 6px 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.film-chip.on { border-bottom-color: var(--text); color: var(--text); }
.close-btn {
  margin-left: auto;
  color: var(--muted);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: var(--mono-tracking);
  padding: 6px 4px;
  transition: color 0.2s ease;
}
.close-btn:hover { color: var(--text); }
.case-divider { border-top: 1px solid var(--hair-strong); margin-top: 44px; }

/* ── Mazda chapters ── */
.chapter-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: var(--mono-tracking);
  border-radius: 999px;
  padding: 3px 11px;
}
.badge-solid { color: var(--field); background: var(--accent); }
.badge-ghost { color: var(--body); border: 1px solid rgba(241, 239, 233, 0.28); }
.chapter-hint {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 2.5px;
  color: var(--muted);
}

/* Chapter 01 — presented smaller; its vintage is a timestamp, not a flaw */
.chapter1 { max-width: 720px; margin: 64px auto 0; }
.chapter1-badge-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 6px;
}
.chapter1-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 14px;
}
.chapter1-film {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(241, 239, 233, 0.16);
  overflow: hidden;
}
.chapter1-film iframe { width: 100%; height: 100%; border: 0; display: block; }
.chapter1-cue {
  position: absolute;
  left: 16px; bottom: 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: var(--mono-tracking);
  color: var(--text);
}
.chapter1-film .play-ring { width: 64px; height: 64px; font-size: 19px; }

.moment-credit { max-width: 860px; margin: 40px auto 0; padding-top: 26px; }
.credit-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--muted);
}
.credit-line { font-size: 14.5px; color: var(--body); margin-top: 9px; }
.moment-credit .medallions { margin-top: 26px; }
.credit-rule { border-top: 1px solid var(--hair-strong); margin-top: 44px; }

/* ── Module host — the module paints its own field/padding; the section
   already provides both, so neutralize them here and leave the module's
   own CSS file untouched so it stays drop-in updatable. ── */
.mz-host .mz { padding: 0; background: transparent; }

/* The grid is square, so its height follows its width. Drive the column
   width off viewport HEIGHT so the whole interactive piece — badge row,
   profile, tabs and a complete 3x3 cover — lands inside one screen with no
   scrolling. --mz-chrome is everything stacked above/around the cover:
     chapter badge row 22 + its margin 22 + profile 90 + tabs 44
     + seam 6 + fixed nav 79 + breathing room 40  ~= 303px
   Capped at the design's 860px on tall screens, floored so it stays usable
   on short ones. */
.mz-host {
  --mz-chrome: 303px;
  --mz-cover: min(860px, max(300px, calc(100vh - var(--mz-chrome))));
}
.mz-host .mz__col {
  width: var(--mz-cover);
  max-width: 100%;
}

/* Below ~700px of cover the profile row crowds; tighten it in step. */
@media (max-height: 900px) {
  .mz-host .mz__avatar { width: 54px; height: 54px; font-size: 11px; }
  .mz-host .mz__profile { gap: 16px; padding-bottom: 18px; }
  .mz-host .mz__stats { gap: 18px; }
}

/* ── More work — collapsed by default ── */
.more-section {
  padding: 40px var(--pad-x) 44px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.more-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.more-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: var(--mono-tracking);
  color: var(--muted);
  margin-top: 12px;
  max-width: 56ch;
  line-height: 1.75;
}
.more-toggle {
  border: 1px solid rgba(241, 239, 233, 0.35);
  border-radius: 999px;
  color: var(--text);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: var(--mono-tracking);
  padding: 12px 24px;
  flex: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.more-toggle:hover { background: var(--text); color: var(--field); }
.more-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 32px;
}
/* An author-level `display` beats the UA stylesheet's [hidden]{display:none},
   so the collapse has to be re-asserted here or the grid never hides. */
.more-grid[hidden] { display: none; }
.more-card { display: flex; flex-direction: column; }
.more-card .veil { box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.5); }
.more-card .veil-open { box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.42); }
/* ── Print & press — a larger gallery after the film + radio grid. Each plate
   shows at natural aspect (no crop), sized by its own column so the newspaper
   portrait and the landscape plates both read large. ── */
.more-print {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}
/* An author `display` beats the UA [hidden]{display:none}, so re-assert the
   collapse or the print gallery stays visible while More work is collapsed. */
.more-print[hidden] { display: none; }
.print-figure { display: flex; flex-direction: column; margin: 0; }
.print-plate {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--hair-strong);
  background: var(--well-dark);
  cursor: pointer;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.42);
  transition: border-color 0.3s ease;
}
.print-plate:hover { border-color: rgba(241, 239, 233, 0.34); }
.print-plate img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.55s var(--bez);
}
.print-plate:hover img { transform: scale(1.025); }
.print-plate .still-zoom {
  position: absolute;
  right: 12px; bottom: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text);
  background: rgba(14, 14, 17, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(241, 239, 233, 0.28);
  border-radius: 999px;
  padding: 5px 10px;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.print-plate:hover .still-zoom,
.print-plate:focus-visible .still-zoom { opacity: 1; }
.print-cap {
  margin-top: 15px;
  border-top: 1px solid var(--hair-strong);
  padding-top: 13px;
}
.print-cap h3 {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: var(--more-title-size);
  letter-spacing: var(--more-title-tracking);
}
.print-cap .more-client { margin-top: 9px; }
.more-meta {
  margin-top: 16px;
  border-top: 1px solid var(--hair-strong);
  padding-top: 14px;
}
.more-meta h3 {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: var(--more-title-size);
  letter-spacing: var(--more-title-tracking);
}
.more-client {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: var(--mono-tracking);
  color: var(--muted);
  margin-top: 9px;
}
.more-role { font-size: 12.5px; color: var(--sec); margin-top: 8px; line-height: 1.5; }
.more-card .case-ctrls { margin-top: 10px; }
.more-card .film-chip { font-size: 11px; padding: 5px 3px; }
.more-card .close-btn { font-size: 11.5px; padding: 5px 3px; }

/* ── Radio reel — a tuner "device" card in the More-work grid.
   cqw units size everything to the card so it holds at any column width. ── */
.radio-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(155deg, #22222c 0%, #16161c 60%, #101015 100%);
  border: 1px solid rgba(241, 239, 233, 0.08);
  container-type: inline-size;
}
.radio-gloss {
  position: absolute;
  top: 2%; left: 0; right: 0; height: 34%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
  pointer-events: none;
}
.radio-antenna {
  position: absolute;
  top: -8%; right: 12%;
  width: 2px; height: 34%;
  background: linear-gradient(#e9e7e0, #6f6d75);
  transform: rotate(22deg);
  transform-origin: bottom right;
  border-radius: 2px;
}
.radio-antenna-tip {
  position: absolute;
  top: -6%; right: 14%;
  width: 2.5cqw; max-width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(232, 64, 47, 0.6);
}
.radio-body {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: clamp(12px, 4cqw, 22px);
  padding: clamp(14px, 5.5cqw, 26px);
}
.radio-speaker {
  flex: none;
  height: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  cursor: pointer;
  border: 1.5px solid rgba(241, 239, 233, 0.2);
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.1), transparent 52%),
    repeating-radial-gradient(circle at center, rgba(241, 239, 233, 0.18) 0 1.5px, transparent 2px 7px),
    radial-gradient(circle at center, #1b1b21, #141419);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5);
}
.radio-speaker-hub {
  width: 42%; height: 42%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #26262e, #0e0e11);
  border: 1px solid rgba(241, 239, 233, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: clamp(10px, 3.4cqw, 15px);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.radio-face {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(6px, 2.6cqw, 12px);
}
.radio-dial {
  background: linear-gradient(#f4f2eb, #dbd8ce);
  border-radius: 3px;
  padding: clamp(4px, 1.6cqw, 7px) clamp(6px, 2.4cqw, 11px);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.28), 0 1px 0 rgba(255, 255, 255, 0.06);
}
.radio-dial-nums {
  display: flex;
  justify-content: space-between;
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(6px, 1.9cqw, 8.5px);
  letter-spacing: 0.5px;
  color: #5f5d53;
}
.radio-dial-track { position: relative; height: clamp(9px, 3cqw, 13px); margin-top: 3px; }
.radio-dial-ticks {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, #8c8a7f 0 1px, transparent 1px 8px);
}
.radio-dial-needle {
  position: absolute;
  top: -2px; bottom: -2px;
  width: 2px;
  background: var(--accent);
  box-shadow: 0 0 5px rgba(232, 64, 47, 0.8);
  transform: translateX(-50%);
  transition: left 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.radio-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(14px, 5cqw, 21px);
  letter-spacing: 0.3px;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.radio-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: clamp(3px, 1.4cqw, 6px);
}
.radio-client {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(7px, 2.1cqw, 9.5px);
  letter-spacing: 1.5px;
  color: var(--sec);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.radio-status { display: inline-flex; align-items: center; gap: 5px; flex: none; }
.radio-eq { display: inline-flex; align-items: flex-end; gap: 1.5px; height: clamp(7px, 2.2cqw, 9px); }
.radio-eq i {
  width: 2px; height: 100%;
  background: var(--accent);
  transform-origin: bottom;
  transform: scaleY(0.3);
}
.radio-eq.on i { animation: eqbar 0.9s ease-in-out infinite; }
.radio-eq.on i:nth-child(2) { animation-delay: 0.15s; }
.radio-eq.on i:nth-child(3) { animation-delay: 0.3s; }
@keyframes eqbar { 0%, 100% { transform: scaleY(0.32); } 50% { transform: scaleY(1); } }
.radio-status-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(6.5px, 2cqw, 9px);
  letter-spacing: 1.5px;
  color: var(--accent);
}
.radio-scrub {
  position: relative;
  height: clamp(3px, 1.2cqw, 5px);
  background: rgba(241, 239, 233, 0.15);
  border-radius: 3px;
  cursor: pointer;
}
.radio-scrub-fill {
  position: absolute;
  inset: 0;
  background: var(--accent);
  border-radius: 3px;
  clip-path: inset(0 100% 0 0);
}
.radio-scrub-head {
  position: absolute;
  top: -2px; bottom: -2px;
  left: 0;
  width: 2px;
  background: var(--text);
  box-shadow: 0 0 5px rgba(241, 239, 233, 0.7);
}
.radio-controls { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.radio-presets { display: flex; gap: clamp(4px, 1.6cqw, 6px); }
.radio-preset {
  width: clamp(16px, 5cqw, 22px);
  height: clamp(16px, 5cqw, 22px);
  border-radius: 50%;
  border: 1px solid rgba(241, 239, 233, 0.35);
  background: transparent;
  color: var(--body);
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(6.5px, 2cqw, 9px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.radio-preset.on { background: var(--accent); border-color: var(--accent); color: var(--field); }
.radio-time {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(6.5px, 2cqw, 9px);
  letter-spacing: 0.5px;
  color: var(--muted);
  white-space: nowrap;
}

/* ── Recognition — no years, ever ── */
.recognition {
  padding: 96px var(--pad-x);
  border-top: 1px solid var(--hair);
  max-width: var(--maxw);
  margin: 0 auto;
}
.honors { display: flex; flex-direction: column; }
.honor-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(241, 239, 233, 0.09);
  align-items: center;
}
.honor-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.honor-award { font-weight: 600; font-size: 15.5px; }
/* Count badge is a bone hairline pill — deliberately NOT accent */
.honor-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text);
  border: 1px solid rgba(241, 239, 233, 0.4);
  border-radius: 999px;
  padding: 2px 9px;
}
.honor-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 1px;
  color: var(--muted);
  margin-top: 5px;
}
.honor-client {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: var(--mono-tracking-tight);
  color: var(--muted);
  text-align: right;
}

/* ── Availability + Contact ──
   Colour marks the status; scale marks the ask. They must not compete —
   the email stays bone until hover. */
.contact {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 64px var(--pad-x) 88px;
  border-top: 1px solid var(--hair);
  max-width: var(--maxw);
  margin: 0 auto;
}
.contact-h2 { margin-bottom: 22px; }
.status-line {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  letter-spacing: 1.2px;
  color: var(--accent);
  max-width: 60ch;
  line-height: 1.5;
}
.status-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: var(--mono-tracking-tight);
  color: var(--muted);
  margin-top: 12px;
}
.big-email {
  display: inline-block;
  margin-top: 44px;
  font-family: 'Anton', sans-serif;
  font-size: var(--email-size);
  line-height: var(--email-leading);
  letter-spacing: var(--email-tracking);
  color: var(--text);
  will-change: transform;
  transition: color 0.2s ease;
  overflow-wrap: anywhere;
}
.big-email:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 2px;
}
.contact-links { display: flex; align-items: center; gap: 28px; margin-top: 26px; }
.contact-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: var(--mono-tracking);
  color: var(--muted);
  transition: color 0.2s ease;
}
.contact-links a:hover { color: var(--text); }

/* ── Cursor pill ── */
.cursor-pill {
  position: fixed;
  left: 0; top: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  background: var(--text);
  color: var(--field);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: var(--mono-tracking);
  padding: 9px 16px;
  border-radius: 999px;
  will-change: transform;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  :root { --pad-x: 24px; }
  .moment-cols { grid-template-columns: 1fr; gap: 24px; }
  .case-meta { flex-direction: column; gap: 12px; }
  .meta-right { margin-left: 0; text-align: left; }
  .more-grid { grid-template-columns: 1fr; }
  .more-print { grid-template-columns: 1fr; gap: 40px; max-width: 560px; }
  .stills-grid { grid-template-columns: repeat(2, 1fr); }
  .lb-figure { padding: 64px 16px 56px; }
  .lb-nav { width: 42px; height: 42px; font-size: 22px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-close { top: 14px; right: 14px; }
  .honor-row { grid-template-columns: 34px 1fr; }
  .honor-client { grid-column: 2; text-align: left; }
  .award-row { gap: 24px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.15s !important; }
}
