/* ============================================================
   BLACK INK — Film Marketing · Main Stylesheet
   Font swap: change --serif / --sans + the @font-face src
   ============================================================ */

@font-face {
  font-family: 'PPNeueMontreal';
  src: url('fonts/ppneuemontreal-book.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'AribauGrotesk';
  src: url('fonts/AribauGrotesk-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'AribauGrotesk';
  src: url('fonts/AribauGrotesk-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'AribauGrotesk';
  src: url('fonts/AribauGrotesk-Medium.otf') format('opentype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'AribauGrotesk';
  src: url('fonts/AribauGrotesk-Light.otf') format('opentype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'PPMonumentExtended';
  src: url('fonts/PPMonumentExtended-Light.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'PPMonumentExtended';
  src: url('fonts/PPMonumentExtended-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'PPMonumentExtendedItalic';   /* separate family on purpose —
     keeping it inside PPMonumentExtended makes every italic request
     (logo, hero, em words) resolve to this file instead of the
     synthetic-slanted heavier weights */
  src: url('fonts/PPMonumentExtended-RegularItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'PPMonumentExtended';
  src: url('fonts/PPMonumentExtended-Black.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #080705;
  --bg2:          #131009;
  --bg3:          #1D1912;
  --text:         #EDE8DF;
  --text-muted:   #7A7066;
  --text-body:    #A69C90;                       /* long-form paragraph ink */
  --text-dim:     #4A4540;
  --accent:       #FA6162;
  --border:       rgba(250,97,98,0.25);
  --border-dim:   rgba(250,97,98,0.10);
  --serif:        'PPMonumentExtended', Georgia, serif;
  --sans:         'Jost', sans-serif;           /* nav, labels, eyebrows */
  --sans-body:    'PPNeueMontreal', sans-serif; /* paragraphs, body copy */
}

html { scroll-behavior: smooth; }

html { overflow-x: hidden; max-width: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* Body-copy tracking lives on each rule now (0 — Neue Montreal
   is drawn for 0 tracking at text sizes). */

/* Film grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
}

/* ── Custom cursor — crosshair ──
   White + mix-blend-mode:difference inverts against whatever
   is underneath: reads black on the white hero, white on dark. */
.cursor {
  position: fixed;
  width: 16px; height: 16px;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, opacity 0.3s ease;
  mix-blend-mode: difference;
}
.cursor::before,
.cursor::after {
  content: '';
  position: absolute;
  background: #fff;
}
.cursor::before {            /* horizontal bar */
  top: 50%; left: 0; right: 0;
  height: 1px;
  transform: translateY(-50%);
}
.cursor::after {             /* vertical bar */
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, opacity 0.3s ease;
  mix-blend-mode: difference;
}
body:hover .cursor { opacity: 1; }

/* Interactive elements get the native pointer hand;
   main.js fades the crosshair out over them. */
a, button, .film-card { cursor: pointer; }

/* ── Navigation ──
   Default state: over the white hero
   .nav--dark:    over all dark sections below
   ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 4rem;
  /* Hidden on load — main.js adds .nav--visible once you scroll */
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
nav.nav--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
nav::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
  /* No backdrop in the light state; dark sections get a gradient below */
  background: none;
}
nav.nav--dark::after {
  background: linear-gradient(to bottom, rgba(8,7,5,0.92) 0%, transparent 100%);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0em;
  font-style: italic;
  text-decoration: none;
  /* Light state: black */
  color: #0A0908;
  white-space: nowrap;
  transition: color 0.4s ease;
}
nav.nav--dark .nav-logo {
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  /* Light state: mid grey */
  color: #666;
  transition: color 0.4s ease;
}
.nav-links a:hover           { color: #0A0908; }
nav.nav--dark .nav-links a   { color: var(--text-muted); }
nav.nav--dark .nav-links a:hover { color: var(--accent); }

/* ── Hero — white background ── */
.hero {
  position: relative;
  height: 100vh;
  background: #EAEAEA;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 3.5rem;
  overflow: hidden;
}

/* Canvas fills the hero; text rows overflow edges by design */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 4rem;
}
.hero-scroll {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.hero-scroll::after {
  content: '';
  width: 9px;
  height: 9px;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  transform: rotate(45deg);
  animation: scrollNudge 2s ease-in-out infinite;
}
@keyframes scrollNudge {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50%      { transform: rotate(45deg) translate(3px, 3px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll::after { animation: none; }
}
.hero-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(0,0,0,0.1);
  z-index: 2;
}

/* ── Sections common ── */
section { padding: 8rem 4rem; }
.section-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.section-label::after {
  content: '';
  flex: 0 0 60px;
  height: 1px;
  background: var(--accent);
  opacity: 0.4;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible        { opacity: 1; transform: translateY(0); }
.reveal-delay-1        { transition-delay: 0.15s; }
.reveal-delay-2        { transition-delay: 0.30s; }
.reveal-delay-3        { transition-delay: 0.45s; }
.reveal-delay-4        { transition-delay: 0.60s; }

/* ── Manifesto ── */
.manifesto { background: var(--bg2); border-top: 1px solid var(--border-dim); }
.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(0.88rem, 1.76vw, 1.52rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--text);
  max-width: 820px;
}
.manifesto-text + .manifesto-text { margin-top: 2.5rem; }
.manifesto-text em { font-style: italic; }

/* ── Services — white ground, halftone overprint ──
   Each card carries a halftone disc: coral (first ink pass)
   beneath, black on top, pulled slightly out of register.
   On hover the black layer snaps into register. */
.services {
  background: #ffffff;
  color: #0A0908;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(10,9,8,0.12);
}
.service-item {
  position: relative;
  overflow: hidden;
  text-align: left;
  padding: 3rem 15rem 3.5rem 3.5rem;   /* right padding clears the art */
  border-right: 1px solid rgba(10,9,8,0.12);
  border-bottom: 1px solid rgba(10,9,8,0.12);
  transition: background 0.4s ease;
  cursor: default;
}
.service-item:nth-child(2n) { border-right: none; }
.service-item:hover { background: #FAFAFA; }

.service-art {
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  width: 150px;
  height: 150px;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  /* black layer slightly out of register over the coral layer */
  background-position: calc(50% + 7px) calc(50% + 5px), 50% 50%;
  transition: background-position 0.45s ease;
  pointer-events: none;
}
.service-item:hover .service-art {
  background-position: 50% 50%, 50% 50%;
}
/* One pictogram per card: black layer first (on top), coral beneath */
.service-item:nth-child(1) .service-art { background-image: url('images/halftone/01-strategy-black.svg'), url('images/halftone/01-strategy-coral.svg'); }
.service-item:nth-child(2) .service-art { background-image: url('images/halftone/02-keyart-black.svg'),   url('images/halftone/02-keyart-coral.svg'); }
.service-item:nth-child(3) .service-art { background-image: url('images/halftone/03-trailers-black.svg'), url('images/halftone/03-trailers-coral.svg'); }
.service-item:nth-child(4) .service-art { background-image: url('images/halftone/04-titles-black.svg'),   url('images/halftone/04-titles-coral.svg'); }
.service-item:nth-child(5) .service-art { background-image: url('images/halftone/05-photo-black.svg'),    url('images/halftone/05-photo-coral.svg'); }
.service-item:nth-child(6) .service-art { background-image: url('images/halftone/06-social-black.svg'),   url('images/halftone/06-social-coral.svg'); }

.service-num {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.service-title {
  position: relative;
  z-index: 1;
  margin-left: -0.04em;   /* optical: counters Monument's left side-bearing; delete if unwanted */
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: #0A0908;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.service-desc {
  position: relative;
  z-index: 1;
  font-size: 0.9375rem;    /* 15px */
  color: #5A5550;
  line-height: 1.4;        /* 21px */
  max-width: 38ch;
}

/* ── Work ── */
.work { background: var(--bg2); border-top: 1px solid var(--border-dim); }
.work-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.work-link {
  font-family: 'PPMonumentExtendedItalic', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}
.work-link:hover { color: var(--accent); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.film-card {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--bg3);
  cursor: pointer;
}
.film-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease, filter 0.7s ease;
}
.film-card:hover .film-poster {
  transform: scale(1.04);
  filter: brightness(0.45) saturate(0.85);
}
.film-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,7,5,0.7) 0%, transparent 38%);
}
.film-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.8rem;
}
.film-genre {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.film-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.film-role {
  font-size: 0.75rem;      /* 12px */
  line-height: 1.35;       /* 16.2px */
  letter-spacing: 0;
  color: rgba(237,232,223,0.78);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}
.film-card:hover .film-role { opacity: 1; transform: translateY(0); }

/* ── About — coral ground ── */
.about {
  background: var(--accent);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 8rem;
  align-items: start;
}
.about-left { position: sticky; top: 8rem; }
.about-name {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.15;
  color: #0A0908;
  margin-bottom: 2rem;
}
.about-name em { font-style: italic; color: #ffffff; display: block; }
.about-right p {
  font-size: 1.0625rem;    /* 17px */
  color: rgba(10,9,8,0.82);
  line-height: 1.353;      /* 23px */
  margin-bottom: 1.8rem;
}
.about-right p strong { color: #0A0908; font-weight: 400; }

/* ── Contact ── */
.contact {
  background: var(--bg);
  text-align: center;
  padding: 10rem 4rem 3rem;
}
.contact-pre {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.contact-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  max-width: 16ch;
  margin: 0 auto 3rem;
}
.contact-heading em { font-style: italic; }
.contact-note {
  font-size: 0.75rem;      /* 12px */
  line-height: 1.35;       /* 16.2px */
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  letter-spacing: 0;
}
.contact-email {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.4rem;
  transition: color 0.3s, border-color 0.3s;
  letter-spacing: 0.04em;
}
.contact-email:hover { color: var(--accent); border-color: var(--accent); }

/* ── Copyright (inside contact) ── */
.copyright {
  margin-top: 10rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

/* ── Misc ── */
.hr { height: 1px; background: var(--border-dim); border: none; margin: 0; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  nav             { padding: 1.5rem 2rem; }
  .nav-links      { gap: 2rem; }
  section         { padding: 5rem 2rem; }
  .hero           { padding: 0 0 3rem; }
  .hero-footer    { padding: 0 2rem; }
  .services-grid  { grid-template-columns: 1fr; }
  .service-item   { border-right: none; padding: 3rem 10rem 3rem 2rem; }
  .service-art    { width: 110px; height: 110px; right: 1.5rem; }
  .work-grid      { grid-template-columns: repeat(2, 1fr); }
  .about-inner    { grid-template-columns: 1fr; gap: 3rem; }
  .about-left     { position: static; }
}

/* ============================================================
   CASE STUDY PAGES (work/ — tuktuit-caribou.html etc.)
   Shares everything above; classes below are case-study only.
   Prefixed .case- to avoid colliding with homepage hero/nav.
   ============================================================ */

/* ── Reading progress bar ── */
.reading-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--accent);
  width: 0%;
  z-index: 200;
  transition: width 0.1s linear;
}

/* ── Nav back link (replaces nav-links on case pages) ── */
.nav-back {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.3s;
}
.nav-back::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s;
}
nav.nav--dark .nav-back { color: var(--text-muted); }
.nav-back:hover, nav.nav--dark .nav-back:hover { color: var(--accent); }
.nav-back:hover::before { width: 48px; }

/* ── Case hero — full-bleed poster, dark ──
   Named .case-hero so homepage .hero (white, canvas) styles
   and hero.js never touch it. */
.case-hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 4rem 5rem;
  overflow: hidden;
  background: var(--bg);
}
.case-hero-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(0.8);
}
.case-hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8,7,5,1) 0%, rgba(8,7,5,0.3) 40%, transparent 70%),
    linear-gradient(to right, rgba(8,7,5,0.55) 0%, transparent 45%);
}
.case-hero-content { position: relative; z-index: 2; }

.case-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.case-genre {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
}
.case-meta-divider { width: 1px; height: 12px; background: var(--text-dim); }
.case-year {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
}
.case-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6.5vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1s ease 0.4s forwards;
}
.case-title em { font-style: italic; color: var(--accent); }
.case-roles {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease 0.7s forwards;
}
.case-role-tag {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-dim);
  padding: 0.45rem 1rem;
}

/* ── Section grounds (uses global `section` padding) ── */
.cs-dark  { background: var(--bg2); border-top: 1px solid var(--border-dim); }
.cs-white { background: #ffffff; color: #0A0908; }
.cs-coral { background: var(--accent); color: #0A0908; }

/* Label recolours per ground */
.cs-white .section-label,
.cs-coral .section-label { color: #0A0908; }
.cs-white .section-label::after,
.cs-coral .section-label::after { background: #0A0908; }

/* ── Overview strip ── */
.overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-dim);
}
.overview-item {
  padding: 2.5rem 2.8rem;
  border-right: 1px solid var(--border-dim);
}
.overview-item:last-child { border-right: none; }
.overview-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.8rem;
}
.overview-value {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
}

/* ── Body columns (brief / approach) ── */
.body-col {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}
.body-aside { position: sticky; top: 8rem; }
.body-aside-heading {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--text);
}
.body-aside-heading em { font-style: italic; color: var(--accent); }
.cs-white .body-aside-heading { color: #0A0908; }
.body-text p {
  font-size: 1.0625rem;    /* 17px */
  color: var(--text-body);
  line-height: 1.353;      /* 23px */
  letter-spacing: 0;
  margin-bottom: 1.8rem;
}
.body-text p strong { color: var(--text); font-weight: 400; }
.body-text p:last-child { margin-bottom: 0; }
.cs-white .body-text p { color: #5A5550; }
.cs-white .body-text p strong { color: #0A0908; }

/* ── Pull quote ── */
.pull-quote {
  border-left: 1px solid var(--accent);
  padding: 1.2rem 0 1.2rem 2.5rem;
  margin: 3rem 0;
}
.pull-quote p {
  font-family: 'PPMonumentExtendedItalic', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin-bottom: 0 !important;
}
.cs-white .pull-quote p { color: #0A0908; }
.pull-quote-cite {
  display: block;
  margin-top: 1.2rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cs-white .pull-quote-cite { color: #5A5550; }

/* ── Deliverables grid ── */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.deliverable-card {
  background: var(--bg3);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
.deliverable-card.wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.deliverable-card.full {
  grid-column: span 3;
  aspect-ratio: 21/9;
}
.deliverable-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.deliverable-card:hover .deliverable-bg { transform: scale(1.03); }
.deliverable-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(8,7,5,0.75) 100%);
}
.deliverable-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.8rem;
  z-index: 2;
}
.deliverable-type {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.deliverable-name {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
}

/* ── Outcomes (coral ground, mirrors About) ── */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(10,9,8,0.25);
  margin-bottom: 5rem;
}
.outcome-item {
  padding: 3rem 3.2rem;
  border-right: 1px solid rgba(10,9,8,0.25);
}
.outcome-item:last-child { border-right: none; }
.outcome-num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  font-weight: 300;
  color: #0A0908;
  line-height: 1;
  margin-bottom: 1rem;
}
.outcome-label {
  font-size: 0.9375rem;    /* 15px */
  color: rgba(10,9,8,0.82);
  line-height: 1.4;        /* 21px */
  letter-spacing: 0;
}

/* ── Press quotes ── */
.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.press-item {
  padding: 3rem 3.5rem;
  border: 1px solid rgba(10,9,8,0.25);
}
.press-quote {
  font-family: 'PPMonumentExtendedItalic', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  color: #0A0908;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.press-source {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(10,9,8,0.6);
}

/* ── Next project ── */
.next-project {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6rem 4rem;
  background: var(--bg);
  border-top: 1px solid var(--border-dim);
  text-decoration: none;
  transition: background 0.4s;
}
.next-project:hover { background: var(--bg3); }
.next-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
}
.next-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--text);
}
.next-title em { font-style: italic; color: var(--accent); }
.next-arrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s, gap 0.3s;
}
.next-project:hover .next-arrow { color: var(--accent); gap: 1.5rem; }
.next-arrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s;
}
.next-project:hover .next-arrow::after { width: 60px; }

/* ── Case footer ── */
.case-footer {
  background: var(--bg);
  border-top: 1px solid var(--border-dim);
  padding: 2.5rem 4rem;
  text-align: center;
}
.case-footer .copyright { margin-top: 0; }

/* ── Case study responsive ── */
@media (max-width: 900px) {
  .case-hero          { padding: 0 2rem 4rem; }
  .overview           { grid-template-columns: 1fr; }
  .overview-item      { border-right: none; border-bottom: 1px solid var(--border-dim); }
  .overview-item:last-child { border-bottom: none; }
  .body-col           { grid-template-columns: 1fr; gap: 2.5rem; }
  .body-aside         { position: static; }
  .deliverables-grid  { grid-template-columns: 1fr 1fr; }
  .deliverable-card.wide { grid-column: span 2; }
  .deliverable-card.full { grid-column: span 2; aspect-ratio: 16/9; }
  .outcomes-grid      { grid-template-columns: 1fr; }
  .outcome-item       { border-right: none; border-bottom: 1px solid rgba(10,9,8,0.25); }
  .outcome-item:last-child { border-bottom: none; }
  .press-grid         { grid-template-columns: 1fr; }
  .next-project       { flex-direction: column; align-items: flex-start; gap: 2rem; padding: 4rem 2rem; }
}

/* Film cards are now links to case study pages */
a.film-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ── Deliverables: trailer embed + reel video + EPK link ── */
.deliverable-card.embed {
  aspect-ratio: 16/9;
  background: #000;
}
.deliverable-card.embed::after { display: none; }
.deliverable-card.embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.deliverable-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.deliverable-card:hover .deliverable-video { transform: scale(1.03); }

.epk-row { margin-top: 3rem; }
.epk-link {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-dim);
  padding-bottom: 0.4rem;
  transition: color 0.3s, border-color 0.3s;
}
.epk-link:hover { color: var(--accent); border-color: var(--accent); }

/* ============================================================
   HOMEPAGE WORK SECTION — feature cards + poster wall
   ============================================================ */

/* Two large case study cards */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 6rem;
}
.feature-card { aspect-ratio: 16/10; }
.feature-card .film-title { font-size: 2rem; }
.feature-card .film-info { padding: 2.5rem 2.2rem; }
.feature-cta {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
}
.feature-card:hover .feature-cta { opacity: 1; transform: translateY(0); }

/* Poster wall */
.poster-label { margin-top: 0; }
.poster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.poster-card,
.deliverable-card[data-img] { cursor: pointer; }
.poster-card:focus-visible,
.deliverable-card[data-img]:focus-visible { outline: 1px solid var(--accent); outline-offset: 2px; }
.poster-card .film-title { font-size: 1.1rem; margin-bottom: 0; }
.poster-card .film-info { padding: 1.5rem 1.5rem; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(8,7,5,0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-img {
  max-width: min(90vw, 640px);
  max-height: 80vh;
  display: block;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: scale(0.97);
  transition: transform 0.35s ease;
}
.lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-caption { margin-top: 1.8rem; text-align: center; }
.lightbox-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
}
.lightbox-credit {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.lightbox-hint {
  position: absolute;
  top: 2rem; right: 4rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
}

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; margin-bottom: 4rem; }
  .poster-grid  { grid-template-columns: repeat(2, 1fr); }
  .lightbox-hint { right: 2rem; }
}

/* ============================================================
   SERVICES COMPACTION — 3-across on desktop, tighter cells
   Halves the section height while keeping all six services
   and the halftone art (smaller, still out-of-register on rest).
   ============================================================ */
@media (min-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-item {
    padding: 2.2rem 8.5rem 2.6rem 2.2rem;  /* right padding clears the art */
  }
  .service-item:nth-child(2n) { border-right: 1px solid rgba(10,9,8,0.12); }
  .service-item:nth-child(3n) { border-right: none; }
  .service-art {
    width: 105px;
    height: 105px;
    right: 1.8rem;
  }
}
