/* ============================================
   HOME — Cinematic scroll journey
   Hero → Film → Print parallax → Film → Print → …
   Five fullscreen film sections (YouTube background
   embeds, autoplay muted loop) interspersed with
   four print modules that drift on parallax.
   ============================================ */

/* —— HERO ————————————————— */
/* Tall host gives the sticky hero a scrub runway. Each viewport-height of
   scroll inside this host advances the background film proportionally. */
.hero-scroll {
  position: relative;
  /* Total scroll runway = 250vh → roughly 2.5 viewports of scrubbing before
     the marquee takes over. Tweak this to make the scrub feel slower/faster. */
  height: 250vh;
}
/* Mobile: same scroll-driven scrub, but shorter runway (200vh ≈ 2 swipes)
   so users don't have to scroll 2.5 viewports through a phone screen. */
@media (max-width: 900px), (hover: none) and (pointer: coarse) {
  .hero-scroll { height: 200vh; }
  /* Show the scrub progress bar back — it's meaningful again */
  .hero__progress { display: block; }
}
.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100vh;
  padding: 140px var(--gutter) 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
}

/* Background film */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  background: var(--bg);
}

/* No veil — the typography uses mix-blend-mode: difference to stay legible
   over any video brightness. The veil element is kept in the DOM purely as
   a fallback hook in case we want to dial it back in. */
.hero__veil { display: none; }

/* Foreground content sits above the bg + invert-blends with what's underneath.
   Setting colour: white means "difference" subtracts white from the video,
   yielding the inverse of the underlying pixel. Dark video → bright text,
   bright video → dark text. Always legible. */
.hero__top, .hero__bottom {
  position: relative;
  z-index: 2;
  color: #fff;
  mix-blend-mode: difference;
}
.hero__top *, .hero__bottom * { color: #fff !important; }
.hero__title .small { color: rgba(255,255,255,0.7) !important; }
.hero__meta { color: rgba(255,255,255,0.85) !important; }
.hero__meta strong { color: #fff !important; font-weight: 400; }
.hero__bottom p { color: #fff !important; }
.hero__scroll { color: rgba(255,255,255,0.85) !important; }
.hero__bottom { border-top-color: rgba(255,255,255,0.35); }

/* The progress bar sits ABOVE the difference layer so it shows in true colour */
.hero__progress {
  background: rgba(255,255,255,0.18);
  mix-blend-mode: normal;
}

/* Tiny scrub-progress bar at the bottom of the hero */
.hero__progress {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 30px;
  height: 1px;
  background: rgba(10,10,10,0.12);
  z-index: 2;
}
.hero__progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent);
  transform-origin: left;
  transition: width 0.06s linear;
}

.hero__top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
  margin-bottom: 80px;
}

.hero__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}
.hero__meta strong { color: var(--ink); font-weight: 400; }

.hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(60px, 14vw, 240px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  margin: 0;
}
.hero__title .it { font-style: italic; }
.hero__title .small {
  font-family: var(--font-sans);
  font-size: 0.18em;
  letter-spacing: -0.02em;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.2em;
  color: var(--ink-mute);
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.hero__bottom p {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.45;
  max-width: 32ch;
  color: var(--ink-soft);
}
.hero__scroll {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}
.hero__scroll svg { width: 18px; animation: bounceY 2s infinite ease-in-out; }
@keyframes bounceY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* —— MARQUEE ————————————————— */
.marquee {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 40px;
  animation: marqueeX 40s linear infinite;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.02em;
}
.marquee__track span { display: inline-block; }
.marquee__track svg { width: 16px; vertical-align: middle; opacity: 0.4; transform: translateY(-4px); }
@keyframes marqueeX {
  to { transform: translateX(-50%); }
}

/* ============================================
   FILM SECTION — fullscreen background video
   ============================================ */
.film {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: #050505;
  color: #fff;
  isolation: isolate;
}

/* YouTube wrapper — sized larger than viewport so the iframe
   crops out branding and edges */
.film__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.film__bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  /* 16:9 cover trick */
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%) scale(1.15);
  border: 0;
  pointer-events: none;
}

/* Soft cinematic overlays for legibility */
.film::before,
.film::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.film::before {
  /* Flat 50 % black scrim across the whole frame so the info + buttons
     stay clearly readable on any footage. Toggled off via .is-clean. */
  background: rgba(0,0,0,0.50);
}
.film::after {
  /* Extra darkening at top + bottom edges keeps the corner labels and
     award strip pushed forward without muddying the centre. */
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.45) 100%);
}

/* Content layer */
.film__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 110px var(--gutter) 60px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
}

/* Top row — number + meta */
.film__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.film__num {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.film__num::before {
  content: '';
  width: 26px; height: 1px;
  background: currentColor;
}

/* Center title */
.film__title-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.film__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(56px, 11vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 60px rgba(0,0,0,0.4);
  max-width: 14ch;
}
.film__title em { font-style: italic; }

/* Bottom panel — info stacked, awards inline below */
.film__bottom {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 0;
}
.film__info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  max-width: 760px;
}
.film__col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.film__lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.film__val {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.film__desc {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.5;
  max-width: 48ch;
  color: rgba(255,255,255,0.85);
  margin-top: 12px;
}

/* Award strip — minimal text, dot-separated, no pills */
.film__prizes {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
  /* Reserve room on the right for the floating control buttons */
  padding-right: clamp(220px, 25vw, 320px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}
.film__prizes::before {
  content: 'Recognition';
  display: inline-block;
  margin-right: 14px;
  padding-right: 14px;
  border-right: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.4);
  font-size: 10px;
}
.film__prize {
  position: relative;
  white-space: nowrap;
  color: rgba(255,255,255,0.85);
}
.film__prize::after {
  content: '·';
  display: inline-block;
  margin: 0 10px;
  color: rgba(255,255,255,0.3);
}
.film__prize:last-child::after { display: none; }
.film__prize--gold   { color: #ffd66e; }
.film__prize--silver { color: #e6e6e6; }
.film__prize--bronze { color: #d6a982; }

/* Sticky title that pins as section scrolls */
.film__sticky {
  position: absolute;
  left: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

/* Side ticker (Cannes line) */
.film__side {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  z-index: 3;
  white-space: nowrap;
}

/* Subtle ▶ play indicator at top-right of film */
.film__playing {
  position: absolute;
  top: 110px;
  right: var(--gutter);
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 10px;
}
.film__playing .live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: liveBlink 1.6s infinite;
}
@keyframes liveBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.25; }
}

/* ============================================
   PRINTS STACK — sticky cards stacking on scroll
   Each card pins to the top of the viewport while
   the next card slides up over it. Pure CSS sticky.
   ============================================ */
.prints-stack {
  position: relative;
  background: var(--bg);
}
/* Invisible spacer below the last card — extends the containing block so
   the last sticky card gets its full-viewport "alone" pin window before the
   parent's bottom releases everything. Padding doesn't extend the sticky
   containing block; a real flow element does. */
.prints-stack__tail {
  display: block;
  height: 100vh;
  pointer-events: none;
}
.prints-stack__intro {
  position: relative;
  padding: clamp(80px, 14vh, 160px) var(--gutter) 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-strong);
  z-index: 5;
}
.prints-stack__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(48px, 8vw, 120px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0;
}
.prints-stack__lede {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
}

.stack-card {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vh, 50px) clamp(20px, 4vw, 60px);
  background: var(--bg);
  will-change: transform;
}
.stack-card__panel {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1500px;
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 60px 120px -50px rgba(0,0,0,0.45);
  background: #0a0a0a;
}
.stack-card__bg {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
  transition: transform 0.8s var(--ease-out);
}
.stack-card:hover .stack-card__bg { transform: scale(1.03); }

/* Portrait variant — show the full poster, no crop. The panel becomes a
   matte; the image sits centred with the original aspect ratio intact. */
.stack-card--portrait .stack-card__panel {
  background: #0a0a0a;
}
.stack-card--portrait .stack-card__bg {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.stack-card--portrait:hover .stack-card__bg { transform: scale(1.015); }

/* Cinematic dark gradient for legibility */
.stack-card__panel::before,
.stack-card__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.stack-card__panel::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 22%, rgba(0,0,0,0.05) 60%, rgba(0,0,0,0.85) 100%);
}
.stack-card__panel::after {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 100%);
}

/* Top row */
.stack-card__top {
  position: absolute;
  top: clamp(20px, 3vh, 36px);
  left: clamp(22px, 3vw, 40px);
  right: clamp(22px, 3vw, 40px);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.stack-card__num {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.stack-card__num::before {
  content: '';
  width: 26px; height: 1px;
  background: currentColor;
}

/* Bottom content layer */
.stack-card__bottom {
  position: absolute;
  left: clamp(22px, 3vw, 40px);
  right: clamp(22px, 3vw, 40px);
  bottom: clamp(22px, 4vh, 50px);
  z-index: 3;
  color: #fff;
}
.stack-card__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.stack-card__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(48px, 9vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
  text-shadow: 0 4px 60px rgba(0,0,0,0.4);
}
.stack-card__title em { font-style: italic; }
.stack-card__caption {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  border-top: 1px solid rgba(255,255,255,0.22);
  padding-top: 18px;
}
.stack-card__desc {
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.45;
  max-width: 56ch;
  color: rgba(255,255,255,0.88);
  margin: 0;
}
.stack-card__desc em { font-style: italic; }
.stack-card__prizes {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-align: right;
  max-width: 320px;
}
.stack-card__prize { white-space: nowrap; display: inline-block; }
.stack-card__prize::after {
  content: '·';
  margin: 0 8px;
  color: rgba(255,255,255,0.4);
}
.stack-card__prize:last-child::after { display: none; }

@media (max-width: 800px) {
  .prints-stack__intro { grid-template-columns: 1fr; }
  .stack-card { padding: 12px; }
  .stack-card__title { font-size: clamp(40px, 12vw, 80px); }
  .stack-card__caption { grid-template-columns: 1fr; gap: 14px; }
  .stack-card__prizes { text-align: left; max-width: none; }
}

/* ============================================
   PRINT GALLERY SECTION
   - Multi-image case study per project
   - Editorial header (eyebrow + big title + meta)
   - Mosaic gallery with mixed aspect-ratios
   - Story column under it
   ============================================ */
.print {
  position: relative;
  width: 100%;
  padding: clamp(80px, 14vh, 160px) var(--gutter);
  background: var(--bg);
  overflow: hidden;
}

.print__head {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 24px;
  margin-bottom: 50px;
  z-index: 2;
}
.print__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.print__eyebrow::before {
  content: '';
  width: 30px; height: 1px;
  background: currentColor;
}
.print__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0;
}
.print__title em { font-style: italic; }
.print__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
}

/* —— Gallery mosaic —— */
.gal {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 1.6vw, 24px);
  margin-bottom: 60px;
}
.gal__frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink-soft);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.3);
  isolation: isolate;
}
.gal__frame img {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-out), filter 0.8s;
  will-change: transform;
}
.gal__frame:hover img {
  transform: scale(1.04);
  filter: contrast(1.06) saturate(1.06);
}

/* Frame size variants */
.gal__frame--hero    { grid-column: span 8; aspect-ratio: 4 / 3; }
.gal__frame--side    { grid-column: span 4; aspect-ratio: 4 / 5; }
.gal__frame--third   { grid-column: span 4; aspect-ratio: 3 / 4; }
.gal__frame--half    { grid-column: span 6; aspect-ratio: 4 / 3; }
.gal__frame--full    { grid-column: span 12; aspect-ratio: 21 / 9; }
.gal__frame--square  { grid-column: span 4; aspect-ratio: 1 / 1; }
.gal__frame--wide    { grid-column: span 8; aspect-ratio: 16 / 9; }
.gal__frame--tall    { grid-column: span 4; aspect-ratio: 2 / 3; }

/* Caption stamp on each frame */
.gal__cap {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 5px 10px;
  background: rgba(10,10,10,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s, transform 0.4s;
}
.gal__frame:hover .gal__cap { opacity: 1; transform: translateY(0); }

/* —— Story under the gallery —— */
.print__story {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 50px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.print__story-l {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.print__story-l div { display: flex; flex-direction: column; gap: 4px; }
.print__story-l strong { font-family: var(--font-sans); font-weight: 500; font-size: 13px; letter-spacing: 0.02em; text-transform: none; color: var(--ink); }
.print__desc {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.print__desc em { font-style: italic; }

/* Right rail — minimal text awards */
.print__prizes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.print__prizes-l {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.print__prize {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px dashed var(--line);
  padding: 4px 0;
}
.print__prize span:first-child { color: var(--ink); }
.print__prize--gold { color: #6c4d00; }
.print__prize--silver { color: #555; }
.print__prize--bronze { color: #7a4f30; }

/* Index number — drift in the background */
.print__index {
  position: absolute;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(180px, 28vw, 480px);
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: rgba(10,10,10,0.05);
  z-index: 0;
  pointer-events: none;
  user-select: none;
  will-change: transform;
}
.print__index--tl { top: 4%; left: -2%; }
.print__index--br { bottom: 2%; right: -2%; }

/* ============================================
   FILM CONTROLS — overlay + sound toggle
   ============================================ */
.film__ctrls {
  position: absolute;
  bottom: 30px;
  right: var(--gutter);
  z-index: 4;
  display: flex;
  gap: 10px;
  align-items: center;
}
.film__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s var(--ease), border-color 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.film__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}
.film__btn .ic {
  width: 14px; height: 14px;
  display: inline-grid;
  place-items: center;
}
.film__btn .ic svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.6; }

/* When .is-clean → overlay AND scrim fully vanish so the video gets the stage */
.film.is-clean .film__content > *:not(.film__top),
.film.is-clean .film__sticky,
.film.is-clean .film__playing { opacity: 0; transform: translateY(8px); pointer-events: none; }
.film.is-clean .film__content { opacity: 0; }
.film.is-clean::before,
.film.is-clean::after { opacity: 0; }
.film.is-clean .film__top { opacity: 0; }
.film .film__content,
.film::before,
.film::after { transition: opacity 0.5s var(--ease); }
.film .film__content > *,
.film .film__sticky,
.film .film__playing { transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }

/* When unmuted, give the SOUND button a glow */
.film.is-loud .film__btn--sound {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 0 rgba(61,6,146,0.5);
  animation: soundPulse 2s infinite;
}
@keyframes soundPulse {
  0% { box-shadow: 0 0 0 0 rgba(61,6,146,0.55); }
  70% { box-shadow: 0 0 0 14px rgba(61,6,146,0); }
  100% { box-shadow: 0 0 0 0 rgba(61,6,146,0); }
}

/* ============================================
   AWARDS SUMMARY (after the journey)
   ============================================ */
.summary {
  padding: clamp(80px, 14vh, 160px) var(--gutter);
  background: var(--ink);
  color: var(--bg);
  border-top: 0;
}
.summary__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 30px;
  margin-bottom: 50px;
}
.summary__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--bg);
}
.summary__title em { color: var(--bg); }
.summary__lede {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
  color: rgba(244,241,236,0.7);
  max-width: 44ch;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-top: 1px solid rgba(244,241,236,0.18);
  padding-top: 40px;
}
.num { display: flex; flex-direction: column; gap: 12px; }
.num__big {
  font-family: var(--font-serif);
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--bg);
}
.num__big em { font-style: italic; color: var(--bg); }
.num__lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.55);
}
/* Counter highlight while animating — keep the violet pop */
.summary .num__big.is-counting { color: #fff; }

/* ============================================
   ONE-PAGER ABOUT — integrated below the work
   ============================================ */

/* About chapter intro — bridges Work → About */
.about-intro {
  position: relative;
  padding: clamp(80px, 15vh, 180px) var(--gutter) clamp(40px, 8vh, 100px);
  border-top: 1px solid var(--line);
}
.about-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 30px;
}
.about-intro__eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(61,6,146,0.5);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(61,6,146,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(61,6,146,0); }
  100% { box-shadow: 0 0 0 0 rgba(61,6,146,0); }
}
.about-intro__head {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(60px, 12vw, 220px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin: 0 0 50px;
}
.about-intro__head em { font-style: italic; }
.about-intro__head .l { display: block; }
.about-intro__head .l.shift { transform: translateX(6vw); }
.about-intro__head .l.shift2 { transform: translateX(-2vw); }

.about-intro__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.about-intro__row p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 36ch;
}
.about-intro__row .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 8px;
}

/* —— Generic about section header —— */
.about-section {
  position: relative;
  padding: clamp(60px, 10vh, 120px) var(--gutter);
}
.about-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.about-section__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.about-section__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* —— Philosophy line —— */
.philos {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 26ch;
  margin: 0;
}
.philos em { font-style: italic; }
.philos .underline {
  background: linear-gradient(transparent 70%, var(--accent-soft) 70%);
  background-size: 100% 100%;
}

/* —— Compact Experience timeline —— */
.exp {
  display: flex;
  flex-direction: column;
}
.exp__row {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1.4fr 1fr 100px;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  cursor: default;
  transition: padding 0.4s var(--ease), color 0.3s, background 0.3s;
}
.exp__row:hover {
  padding-left: 14px;
  background: linear-gradient(90deg, var(--accent-tint), transparent);
}
.exp__year {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  white-space: nowrap;
}
.exp__role {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.exp__role em { font-style: italic; }
.exp__company {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.exp__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink);
  justify-self: end;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.exp__row:hover .exp__dot {
  background: var(--accent);
  transform: scale(1.6);
}

/* —— Skills inline (like obsessions) —— */
.skills-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 3.2vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.skills-line span {
  position: relative;
  padding: 4px 16px;
  cursor: default;
  transition: color 0.3s var(--ease);
}
.skills-line span::after {
  content: '·';
  margin-left: 16px;
  color: var(--ink-mute);
  font-style: normal;
}
.skills-line span:last-child::after { display: none; }
.skills-line span:hover { color: var(--accent); }
.skills-line .skills-line__sep {
  color: var(--ink-mute);
  font-style: normal;
  opacity: 0.45;
  padding: 0 24px;
  font-size: 0.55em;
}
.skills-line .skills-line__sep::after { display: none; }

/* —— Clients · SVG logo grid —— */
.clients {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.client {
  position: relative;
  display: grid;
  place-items: center;
  height: 110px;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  overflow: hidden;
  transition: background-color 0.45s var(--ease);
  cursor: default;
  isolation: isolate;
}
.client::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 0.6s var(--ease-out);
  z-index: 0;
}
.client:hover::before { transform: translateY(0); }
.client__logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 110px;
  max-height: 38px;
  height: auto;
  object-fit: contain;
  /* The SVG ships near-black; turn near-white on hover so it reads on violet */
  filter: brightness(0.05) saturate(0);
  transition: filter 0.45s var(--ease);
}
.client:hover .client__logo { filter: brightness(0) invert(1); }

/* Italic-serif wordmark fallback for trademark-restricted brands */
.client__wordmark {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 28px);
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
  transition: color 0.45s var(--ease);
}
.client:hover .client__wordmark { color: #fff; }
.client__name {
  position: absolute;
  bottom: 8px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  opacity: 0;
  transition: opacity 0.4s var(--ease), color 0.4s;
  z-index: 1;
}
.client:hover .client__name {
  opacity: 0.7;
  color: rgba(255,255,255,0.85);
}

/* —— Testimonials —— */
.tests {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  perspective: 1500px;
}

/* Masonry-style flowing list for the 19 quotes — up to 5 columns wide */
.tests--masonry {
  display: block;
  columns: 5;
  column-gap: clamp(24px, 2.4vw, 40px);
  perspective: 1400px;
}
.tests--masonry .test {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 24px;
  display: block;
}
@media (max-width: 1400px) { .tests--masonry { columns: 4; } }
@media (max-width: 1100px) { .tests--masonry { columns: 3; } }
@media (max-width:  800px) { .tests--masonry { columns: 2; } }
@media (max-width:  520px) { .tests--masonry { columns: 1; } }

/* —— Tests Grid: 3 columns of "Vanessa-style" centered quotes —— */
.tests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 5vw, 80px) clamp(30px, 4vw, 70px);
  perspective: 1400px;
}
.tests-grid--more {
  margin-top: clamp(40px, 5vw, 70px);
  padding-top: clamp(40px, 5vw, 70px);
  border-top: 1px solid var(--line);
}
.tests-grid--more[hidden] { display: none !important; }

/* Each quote is the same Vanessa-style: centered, larger serif */
.tests-grid .test,
.test--feature {
  text-align: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  transform-style: preserve-3d;
  transition: transform 0.45s var(--ease-out);
}
.tests-grid .test__quote,
.test--feature .test__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: var(--ink);
}
.tests-grid .test__quote::before,
.test--feature .test__quote::before {
  content: '"';
  display: block;
  text-align: center;
  font-size: 60px;
  line-height: 0.6;
  margin: 0 0 -8px;
  top: 0;
  position: relative;
  color: var(--accent);
}
.tests-grid .test__author,
.test--feature .test__author {
  display: block;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* —— More-quotes button —— */
.tests-grid__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 6vh, 80px);
}
.tests-grid__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}
.tests-grid__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 0.55s var(--ease-out);
  z-index: -1;
}
.tests-grid__btn:hover {
  color: #fff;
  border-color: var(--accent);
}
.tests-grid__btn:hover::before { transform: translateY(0); }
.tests-grid__btn-meta {
  font-size: 10px;
  opacity: 0.6;
  padding-left: 14px;
  border-left: 1px solid currentColor;
}

/* When open, the button changes its label via .is-open class on the section */
[data-tests-section].is-open .tests-grid__btn-lbl::before {
  content: '— ';
}
[data-tests-section].is-open .tests-grid__btn-lbl {
  /* JS swaps text content; nothing needed here */
}

@media (max-width: 1100px) {
  .tests-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .tests-grid { grid-template-columns: 1fr; }
}

.test {
  position: relative;
  padding: 6px 0 28px;
  background: transparent;
  border: 0;
  border-radius: 0;
  transform-style: preserve-3d;
  transition: transform 0.45s var(--ease-out);
  will-change: transform;
}
.test__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--ink);
}
.test__quote::before { content: '"'; font-size: 38px; line-height: 0; position: relative; top: 14px; margin-right: 4px; color: var(--accent); }
.test__author {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.test__author em {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  opacity: 0.8;
}

/* —— PRINTS WEBGL — infinite gallery section, light theme —— */
.prints-webgl {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
}
.prints-webgl__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
}
.prints-webgl__canvas:active { cursor: grabbing; }

.prints-webgl__head {
  position: absolute;
  top: clamp(28px, 5vh, 60px);
  left: var(--gutter);
  right: var(--gutter);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  pointer-events: none;
}
.prints-webgl__num { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.prints-webgl__num::before { content: ''; width: 26px; height: 1px; background: currentColor; }

.prints-webgl__title-wrap {
  position: absolute;
  left: var(--gutter);
  bottom: clamp(40px, 7vh, 90px);
  z-index: 2;
  pointer-events: none;
  color: var(--ink);
  max-width: 540px;
}
.prints-webgl__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 130px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--ink);
}
.prints-webgl__title em { font-style: italic; }
.prints-webgl__lede {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 18px;
  max-width: 36ch;
  color: var(--ink-soft);
}

.prints-webgl__hint {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(40px, 7vh, 90px);
  z-index: 2;
  pointer-events: none;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 10px;
}
.prints-webgl__hint .live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  animation: liveBlink 1.6s infinite;
}

/* Soft top + bottom cream-fade vignette so the type sits cleanly above the planes */
.prints-webgl::before,
.prints-webgl::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 22%;
  z-index: 1;
  pointer-events: none;
}
.prints-webgl::before {
  top: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(244,241,236,0) 100%);
}
.prints-webgl::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(244,241,236,0) 100%);
}

@media (max-width: 700px) {
  .prints-webgl__title { font-size: clamp(40px, 12vw, 72px); }
  .prints-webgl__hint  { display: none; }
}

/* —— Side-by-side Publications + Features —— */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
}
.about-split__col { min-width: 0; }
.about-split__col .about-section__head {
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 18px;
  margin-bottom: 28px;
}
.about-split__col .about-section__title {
  /* Slightly tighter at column width */
  font-size: clamp(28px, 3.4vw, 48px);
}
.about-split .led__row { grid-template-columns: 1fr auto; gap: 16px; padding: 12px 0; }
.about-split .led__name { font-size: clamp(16px, 1.2vw, 20px); }
.about-split .led__count { font-size: 10px; letter-spacing: 0.16em; }
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 60px; }
}

/* —— Ledger — Publications & Features —— */
.ledger {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.led__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding 0.4s var(--ease), background 0.3s, color 0.3s;
}
.led__row:hover {
  padding-left: 16px;
  background: linear-gradient(90deg, var(--accent-tint), transparent);
}
.led__name {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.8vw, 28px);
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ink);
}
.led__name em { font-style: italic; }
.led__count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
  line-height: 1.5;
}
.led__row:hover .led__count { color: var(--ink); }

@media (max-width: 700px) {
  .led__row { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .led__count { text-align: left; }
}

/* —— Obsessions (target style for skills also) —— */
.obs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 5vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.obs span {
  position: relative;
  padding: 8px 18px;
  cursor: default;
  transition: color 0.3s var(--ease);
}
.obs span::after {
  content: '•';
  margin-left: 18px;
  color: var(--ink-mute);
  font-style: normal;
}
.obs span:last-child::after { display: none; }
.obs span:hover { color: var(--accent); }

/* —— Contact CTA big —— */
.contact-big {
  padding: clamp(80px, 14vh, 160px) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--line);
}
.contact-big__pre {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 20px;
}
.contact-big__email {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(40px, 9vw, 140px);
  letter-spacing: -0.04em;
  line-height: 1;
  position: relative;
}
.contact-big__email::after {
  content: '';
  position: absolute;
  left: 0; bottom: -10px;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.8s var(--ease-out);
}
.contact-big__email:hover::after { transform: scaleX(1); transform-origin: left; }

/* Counter glow */
.num__big.is-counting { color: var(--accent); }

/* —— RESPONSIVE ————————————————— */
@media (max-width: 900px) {
  /* Pack title + info close together at the top of the frame instead of
     letting the middle row push them apart. */
  .film__content {
    padding: 100px var(--gutter) 40px;
    gap: 14px;
    grid-template-rows: auto auto auto;
    align-content: start;
  }
  .film__title { font-size: clamp(48px, 13vw, 120px); margin-bottom: 0; }
  .film__title-wrap { align-items: flex-start; }
  /* Slightly more breathing room between the headline and the info block */
  .film__bottom { grid-template-columns: 1fr; gap: 14px; margin-top: 14px; }
  .film__info { grid-template-columns: 1fr; gap: 12px; }
  .film__prizes { justify-content: flex-start; max-width: none; }
  .film__side, .film__playing { display: none; }

  .print { padding: 60px var(--gutter); }
  .print__head { grid-template-columns: 1fr; }
  .gal { grid-template-columns: repeat(6, 1fr); gap: 12px; }
  .gal__frame--hero, .gal__frame--wide, .gal__frame--full { grid-column: span 6; }
  .gal__frame--side, .gal__frame--third, .gal__frame--half, .gal__frame--square, .gal__frame--tall { grid-column: span 3; }
  .print__story { grid-template-columns: 1fr; gap: 24px; }
  .summary__head { grid-template-columns: 1fr; }
  .numbers { grid-template-columns: repeat(2, 1fr); }
  .hero__bottom { grid-template-columns: 1fr; gap: 18px; }
  .hero__scroll { justify-self: start; }
}
@media (max-width: 900px) {
  .about-intro__row { grid-template-columns: 1fr; gap: 20px; }
  .exp__row { grid-template-columns: 70px 1fr 80px; }
  .exp__row > .exp__company { display: none; }
  .clients { grid-template-columns: repeat(3, 1fr); }
  .tests { grid-template-columns: 1fr; }
  .film__ctrls { bottom: 16px; right: 16px; }

  /* Recognition / awards strip: hidden completely on mobile — the buttons
     and story text are the priority. Awards live on desktop only. */
  .film__prizes { display: none; }
}
@media (max-width: 600px) {
  .hero__top { grid-template-columns: 1fr; }

  /* Hero title shifts to the right side on phones so it doesn't sit on
     the subject of the background film. */
  .hero__title {
    text-align: right;
    padding-left: 12vw;
  }
  .hero__meta { text-align: right; }

  .numbers { grid-template-columns: 1fr; }
  .clients { grid-template-columns: repeat(2, 1fr); }
}
