/* ============================================================
   We'll Go Down in History - trukunitedfilm.com
   Static rebuild, Round 2 visual pass.
   Palette lifted from the live Squarespace site.css:
     black theme - #000 bg, white text (header, hero, footer)
     light theme - hsl(313,100%,93%) pink (home content sections)
     white theme - #fff bg, black text (interior content)
   Typeface: Montserrat throughout, as on the live site.
   ============================================================ */

:root {
  --black: #000000;
  --white: #ffffff;
  --pink: hsl(312.97, 100%, 92.75%);   /* live "light" theme bg */
  --blue-pale: hsl(195.71, 95.45%, 91.37%);
  --blue: #4fa8dc;                     /* wordmark blue */
  --blue-dark: #2f7fb0;
  --gold: hsl(35.68, 86.85%, 58.24%);  /* live accent - CTA pill colour */
  --gold-deep: hsl(35.68, 80%, 47%);
  --gold-text: hsl(35.68, 85%, 33%);  /* AA-passing gold for text on light bg */
  --ink: #111111;
  --ink-soft: #444444;
  --rule: #e4e4e4;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Reduced motion: no autoplaying hero video (the .hero background
   key art shows instead), no smooth scrolling */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-video { display: none; }
}

body {
  margin: 0;
  font-family: 'Montserrat', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  color: var(--ink);
  /* white, NOT black - the only intentionally black areas are the
     header nav bar and the footer, which set their own background.
     A black body was bleeding through as bands between sections. */
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
h3 { font-size: 1.1rem; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Header / nav ----------
   Layout: nav LEFT (one line, never wraps), wordmark CENTRED,
   gold CTA pills + social icons RIGHT. Transparent over the hero
   video on the homepage (see body.home rules below). */

.site-header {
  background: var(--black);
  color: var(--white);
  position: relative;
}
.site-header .wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 16px;
  padding-top: 18px; padding-bottom: 18px;
  /* header spans wider than the content wrap so the larger nav
     fits one line at every width above the hamburger breakpoint */
  max-width: 1280px;
}
.header-collapse { display: contents; }
.site-header .site-nav { grid-column: 1; grid-row: 1; justify-self: start; }
.site-header .brand { grid-column: 2; grid-row: 1; }
.site-header .header-right {
  grid-column: 3; grid-row: 1; justify-self: end;
  display: flex; align-items: center; gap: 10px;
}
.site-header .brand img { width: 180px; max-width: 52vw; }

/* nav must never wrap on desktop - sized to fit one line, and the
   hamburger takes over (at 1280px) before the columns get too narrow */
.site-nav ul {
  list-style: none; display: flex; flex-wrap: nowrap;
  white-space: nowrap;
  gap: 18px; margin: 0; padding: 0;
}
.site-nav a {
  font-size: 0.88rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  text-decoration: none; color: var(--white);
  padding-bottom: 4px; border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--pink); border-bottom-color: var(--pink); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--blue); }

.btn-pill {
  display: inline-block;
  background: var(--gold); color: var(--black);   /* live-site gold CTA */
  font-size: 0.64rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  text-decoration: none;
  padding: 8px 12px; border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.btn-pill:hover { background: var(--gold-deep); color: var(--black); }
.btn-pill.btn-lg { font-size: 0.9rem; padding: 15px 32px; }

.social-icons { display: flex; align-items: center; gap: 10px; }
.ig-icon { color: var(--white); display: inline-flex; align-items: center; }
.ig-icon:hover { color: var(--pink); }
.ig-icon svg { width: 20px; height: 20px; }

/* Transparent header on the homepage: the header overlays the hero video,
   which starts at y=0 behind it. NO solid bar - legibility comes from a
   soft top-down scrim that fades to fully transparent. Interior pages
   keep the solid black header above. */
body.home .site-header {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 10;
  background: transparent;
}
body.home .site-header::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: -1;
}

/* Textured header (redesigned interior pages - TRUK United, Filmmakers):
   the key art texture runs from the very top of the page through the
   content, so the header sits on it with dark chrome instead of a black
   bar. Scoped via body.header-textured; other pages keep the black header. */
/* The texture is painted by a FIXED, viewport-sized underlay rather than
   a body background. With `cover` on the body itself, the 2500px texture
   was scaled to the full DOCUMENT height (thousands of px on long pages),
   i.e. blown up several hundred percent - that upscaling was the "blurry
   background" at the Festivals section and the foot of every long interior
   page. A fixed inset-0 underlay is always viewport-sized, so the texture
   stays at or below native resolution everywhere. */
body.header-textured { background: var(--pink); }
body.header-textured::before {
  content: "";
  position: fixed; inset: 0;
  z-index: -1;
  background: var(--pink) url('../assets/hero/texture-full.webp') center / cover no-repeat;
}
body.header-textured .site-header { background: transparent; }
body.header-textured main.textured-page { background: transparent; }
body.header-textured .site-nav a { color: var(--ink); }
body.header-textured .site-nav a:hover { color: var(--blue-dark); border-bottom-color: var(--gold); }
body.header-textured .nav-burger span { background: var(--ink); }
body.header-textured .ig-icon { color: var(--ink); }
body.header-textured .ig-icon:hover { color: var(--blue-dark); }

/* Hamburger - hidden on desktop */
.nav-burger {
  display: none;
  background: none; border: 0; padding: 8px; cursor: pointer;
}
.nav-burger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); margin: 6px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 1280px) {
  .site-header .wrap {
    display: flex; align-items: center; gap: 16px;
  }
  .nav-burger { display: block; }
  .site-header .brand { margin: 0 auto; }
  /* nav + CTAs collapse into a dropdown panel under the header */
  .header-collapse {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--black);
    padding: 8px 24px 28px;
    border-top: 1px solid #222;
    z-index: 50;
  }
  body.nav-open .header-collapse { display: block; }
  body.nav-open .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .site-nav ul { flex-direction: column; gap: 18px; padding-top: 12px; }
  .site-nav a { font-size: 1rem; }
  .site-header .header-right {
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 16px; margin-top: 24px;
  }
  .btn-pill { font-size: 0.82rem; }
  /* textured-header pages: pale dropdown with dark links, not a black panel */
  body.header-textured .header-collapse {
    background: hsl(312.97, 100%, 96%);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
}

/* ---------- Home hero: looping trailer video, dark + cinematic ----------
   Key art poster shows while the video loads / if playback is blocked. */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--black) url('../assets/hero/keyart-clean.webp') center / cover no-repeat;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.65) 100%
  );
}
.hero-inner { position: relative; z-index: 2; padding: 96px 24px; }
.hero-title { margin: 0; }
.hero-inner img.wordmark {
  width: min(860px, 92vw); margin: 0 auto;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.6));
}
.hero-inner .tagline {
  margin: 26px auto 0; max-width: 640px;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 600; letter-spacing: 0.02em; line-height: 1.4;
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

/* ---------- Sections ---------- */

.section { padding: 72px 0; background: var(--white); }
.section-title { text-align: center; margin: 0 0 40px; }

/* Homepage: one continuous watercolour key-art background behind all
   content sections - no flat colour panels. Sections go transparent
   and text blocks float on soft semi-opaque cards (.soft-panel).
   The texture paints via a FIXED viewport-sized underlay, same mechanism
   as body.header-textured: `cover` on main itself scaled the 2500px
   texture to the full DOCUMENT height, so it blurred progressively as
   the page grew - the same latent bug root-caused on interior pages. */
body.home { background: var(--pink); }
body.home::before {
  content: "";
  position: fixed; inset: 0;
  z-index: -1;
  background: var(--pink) url('../assets/hero/texture-full.webp') center / cover no-repeat;
}
body.home main { background: transparent; }
body.home .section { background: transparent; }
body.home .section { padding: 52px 0; }
body.home .section-title { margin-bottom: 32px; }

.soft-panel {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 14px;
  padding: 38px 44px;
  max-width: 780px;
  margin: 0 auto;
}
@media (max-width: 560px) {
  .soft-panel { padding: 28px 22px; border-radius: 10px; }
}

/* Pull quote - slimmed to a supporting accent, marks anchored to the
   text corners (open top-left, close bottom-right) */
.pull-quote {
  position: relative;
  max-width: 560px; margin: 0 auto 26px;
  padding: 4px 40px;
  text-align: center;
}
.pull-quote p {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 500; font-style: italic; line-height: 1.5;
}
.pull-quote .quo { position: absolute; width: 24px; }
.pull-quote .quo.open { top: 0; left: 4px; }
.pull-quote .quo.close { bottom: 0; right: 4px; }
@media (max-width: 560px) {
  .pull-quote { padding: 4px 32px; }
  .pull-quote .quo { width: 20px; }
}

/* Framing block - tight, centred */
.framing { max-width: 620px; margin: 0 auto; text-align: center; font-size: 0.95rem; line-height: 1.6; }
.framing p { margin: 0 0 12px; }
.framing p:last-child { margin-bottom: 0; font-weight: 600; }

/* Two small seed quotes - light accents, not a press wall */
.seed-quotes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 26px; padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.seed-quotes p {
  margin: 0; text-align: center;
  font-style: italic; font-size: 0.92rem; line-height: 1.5;
}
.seed-quotes .attr {
  display: block; font-style: normal;
  font-size: 0.76rem; color: var(--ink-soft); margin-top: 6px;
}
@media (max-width: 620px) {
  .seed-quotes { grid-template-columns: 1fr; gap: 18px; }
}

/* Laurels - flex, not grid: grid auto-fill centres the tracks but
   left-aligns an incomplete final row, which is why laurel rows kept
   rendering off-centre. Flex wrap centres every row, full or not. */
.laurels-hero {
  display: flex; flex-wrap: nowrap;   /* one clean row, never two */
  justify-content: center; align-items: center;
  gap: clamp(12px, 3vw, 40px);
  max-width: 1040px;
  margin: 0 auto;
}
/* Height-based sizing (see prior note); the clamp keeps all five on one
   row down to phone widths instead of wrapping */
.laurels-hero img { height: clamp(42px, 9.5vw, 100px); width: auto; object-fit: contain; }
/* On phones, height-based sizing can overflow the viewport (images will
   not shrink below their intrinsic row width) - switch to width shares so
   five always fit */
@media (max-width: 600px) {
  .laurels-hero { gap: 3%; }
  .laurels-hero img { width: 17.6%; height: auto; max-height: 64px; }
}

/* Trailer */
.trailer {
  position: relative; max-width: 900px; margin: 0 auto;
  aspect-ratio: 16 / 9; background: #000;
}
.trailer iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* The Films - two equal cards, the homepage centrepiece (2.4: larger).
   The films wrap is allowed to run wider than the standard content wrap
   so the two cards read as the main event of the page. */
body.home #films .wrap { max-width: 1360px; }
.films {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1320px; margin: 0 auto;
  /* stretch (not start) so both cards match the taller card's height -
     align-items:start let the shorter card's box stop short, which read
     as two different card sizes rather than one misplaced button */
  align-items: stretch;
}
.film-card {
  background: var(--white);
  text-align: center;
  padding-bottom: 30px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
  /* flex column + margin-top:auto on the watch-link (below) pins it to
     the same y-position in both cards regardless of how many lines the
     description wraps to - same technique as .strand-card/.person-card */
  display: flex; flex-direction: column;
}
.hero-cta { margin-top: 30px; }

/* 2.2: tighten the gap specifically between the laurel teaser and The Films */
body.home .laurel-teaser { padding-bottom: 12px; }
body.home #films { padding-top: 20px; }

/* Click-to-play facade: branded poster + gold play button */
.film-facade {
  position: relative; display: block;
  width: 100%; aspect-ratio: 16 / 9;
  padding: 0; border: 0; margin: 0 0 22px;
  background: #000; cursor: pointer; overflow: hidden;
}
.film-facade img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.play-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  transition: transform 0.15s ease, background 0.15s ease;
}
.play-icon::after {
  content: ""; position: absolute; top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid; border-width: 15px 0 15px 26px;
  border-color: transparent transparent transparent var(--black);
}
.film-facade:hover .play-icon,
.film-facade:focus-visible .play-icon {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gold-deep);
}
.film-facade:focus-visible { outline: 3px solid var(--gold-deep); outline-offset: 3px; }

/* embedded film players - injected on play */
.film-embed {
  position: relative; aspect-ratio: 16 / 9;
  background: #000; margin-bottom: 22px;
}
.film-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.watch-link {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink); text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.watch-link:hover { color: var(--gold-text); }

.film-card h3 { margin: 0 18px 10px; font-size: 1.2rem; }
.film-card p { margin: 0 24px 18px; font-size: 1rem; }
.film-card p:last-child { margin-bottom: 0; margin-top: auto; padding-top: 18px; }
@media (max-width: 760px) {
  .films { grid-template-columns: 1fr; max-width: 520px; }
}

/* Partner/funder logo strip - one clean, evenly-spaced, vertically-
   centred row on desktop (full wrap width, so nothing drops a line);
   wraps gracefully only on narrow screens */
.partners {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 32px 48px; margin: 0 auto;
}
.partners a { display: block; }
.partners img { height: 48px; width: auto; }
@media (max-width: 480px) {
  .partners { gap: 24px 32px; }
  .partners img { height: 38px; }
}

/* ---------- Impact & Press (/screenings) ---------- */

/* Tighter inter-section rhythm, scoped to Impact & Press only.
   SPECIFICITY BUG FIXED (2026-07-18): this rule and main.textured-page
   .section (below, "generic textured interior page" padding: 52px 0) tie
   on specificity (element + 2 classes each); being LATER in the file, the
   52px rule was winning the cascade, so every section on this page was
   silently rendering at 52px 0 instead of the intended 26px 0 - doubling
   every section-to-section gap to 104px and reading as wildly inconsistent
   next to the 34-36px gaps used within a section. The extra body.header
   -textured ancestor class here gives this rule unambiguously higher
   specificity so it wins regardless of source order. */
body.header-textured main.ip-main .section { padding: 26px 0; }

.stat-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 940px; margin: 0 auto;
}
.stat { text-align: center; }
.stat .num {
  display: block;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.1;
}
.stat .lbl {
  display: block; margin-top: 4px;
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-soft);
}
@media (max-width: 700px) {
  .stat-band { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
}

/* Reach - contained on the soft panel (reverted from the editorial
   on-texture treatment) */
.reach-panel { max-width: 860px; text-align: center; margin-bottom: 36px; }
.reach-panel .stakes { margin: 0 0 18px; font-size: 1.02rem; font-weight: 500; }
.reach-panel .stat-band {
  background: none; border-radius: 0;
  padding: 6px 0 20px; max-width: none; margin: 0;
}
.reach-panel .fff { margin: 0; font-size: 0.95rem; }

.stat-note { text-align: center; margin: 30px 0 16px; font-size: 1.05rem; font-weight: 600; }
.stat-cta { text-align: center; margin: 34px 0 0; }   /* clear air above the CTA */
/* Task 3: stronger CTA (scoped to this block) */
.stat-cta .btn-pill { font-size: 1.05rem; padding: 18px 46px; }
.ip-laurels { margin-top: 0; }

/* Statement pull-quote - single opening accent (reduced from the
   editorial full-width scale) */
.statement-quote {
  position: relative;
  max-width: 720px; margin: 0 auto 40px;
  padding: 8px clamp(38px, 6vw, 56px);
  text-align: center;
}
.statement-quote p {
  margin: 0 0 12px;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500; font-style: italic; line-height: 1.5;
}
.statement-quote .quo { position: absolute; width: clamp(24px, 3.2vw, 34px); }
.statement-quote .quo.open { top: 0; left: 6px; }
/* no cite line under this quote now - close mark sits at the text's foot */
.statement-quote .quo.close { bottom: 8px; right: 6px; }

/* Quote roller - the audience's own voices, horizontally scrollable.
   Smooth scroll-snap, hidden scrollbar (swipe on touch, gold arrow
   buttons on desktop), slides sized as a section highlight. */
.quotes-title { text-align: center; margin: 0 0 26px; font-size: 1.35rem; }
.quotes-title::after {
  content: ""; display: block;
  width: 56px; height: 3px; background: var(--gold);
  margin: 12px auto 0;
}
/* Reserve a 44px lane each side so the arrow buttons sit BESIDE the
   cards, never over the quote text on the edge slides. Lane width ==
   button width, so there is no overlap at any width. */
.quote-roller { position: relative; padding: 0 44px; }
.quote-carousel {
  display: flex; gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  /* NO scroll-behavior:smooth here - it would turn the arrow buttons'
     per-frame scrollLeft tween into competing mini-animations. The
     arrows animate themselves; touch/wheel scrolling is native. */
  -webkit-overflow-scrolling: touch;
  padding: 6px 4px 18px;
  scrollbar-width: none;              /* arrows + swipe are the affordance */
}
.quote-carousel::-webkit-scrollbar { display: none; }
.quote-slide {
  flex: 0 0 380px;
  scroll-snap-align: start;
  margin: 0;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  border-left: 3px solid var(--gold);
  padding: 26px 28px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  display: flex; flex-direction: column;
}
.quote-slide p {
  margin: 0 0 12px;
  font-style: italic; font-size: 0.98rem; line-height: 1.6;
}
.quote-slide cite {
  margin-top: auto;
  font-style: normal; font-size: 0.8rem; font-weight: 600;
}
.quote-slide cite span { font-weight: 400; color: var(--ink-soft); }
@media (max-width: 480px) { .quote-slide { flex-basis: 270px; padding: 22px 24px; } }

/* Roller arrows - gold/black (house accent), desktop only; touch users
   swipe. Sit half-out over the roller edges, vertically centred. */
.qc-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: var(--gold); color: var(--black);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.qc-btn:hover { background: var(--gold-deep); }
.qc-btn:focus-visible { outline: 3px solid var(--gold-deep); outline-offset: 2px; }
.qc-btn svg { width: 20px; height: 20px; }
.qc-prev { left: 0; }
.qc-next { right: 0; }
/* Below 700px the lanes would eat too much of a narrow track - hide the
   arrows (touch users swipe) and drop the reserved padding. */
@media (max-width: 700px) {
  .qc-btn { display: none; }
  .quote-roller { padding: 0; }
}

/* Awards - Grierson leads. Flex so incomplete rows centre.
   margin-bottom matched to .laurel-wall's own row gap below (36px) - it
   was 44px against the wall's 30px, two different spacing systems sitting
   back to back where they should read as one continuous rhythm. */
.awards {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: flex-start;
  gap: 32px 40px;
  max-width: 1040px; margin: 0 auto 36px;
}
.award { width: 170px; text-align: center; }
.award img { height: 92px; width: auto; max-width: 100%; margin: 0 auto 10px; object-fit: contain; }
.award .award-mark {
  display: flex; align-items: center; justify-content: center;
  height: 92px; font-size: 2rem; margin-bottom: 10px;
}
.award p { margin: 0; font-size: 0.78rem; line-height: 1.45; }
.award strong { text-transform: uppercase; letter-spacing: 0.06em; }
@media (max-width: 900px) { .awards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .awards { grid-template-columns: 1fr; gap: 28px; } }

/* Laurel wall - flex for true centring.
   row-gap matched to .awards' bottom margin above (36px, was 30px) - see
   note there; the two blocks now read as one continuous rhythm. */
.laurel-wall {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 36px 40px;
  /* NOTE: .laurel-wall is a plain block inside .wrap (no breakout
     positioning), so it can never actually exceed .wrap's own content
     width - 1072px at max--1120px minus the 24px side padding - no
     matter what max-width is set here. An earlier version of this rule
     asked for 1110px, which silently did nothing; the row-wrap math
     below is computed against the REAL 1072px ceiling. */
  max-width: 1072px; margin: 0 auto;
}
/* VISUAL WEIGHT, not just bounding box (2026-07-19): a flat height/width
   rule made every mark occupy a similar FOOTPRINT, but footprint isn't
   weight - a thin laurel-wreath outline (BFI Flare, SQIFF, Newport Beach,
   Exposures, New Renaissance, UQFF, Sunrise) still read recessive next to
   solid block/script logos (British Shorts, London Breeze, Melbourne,
   Norwich) and the colour badges (Inside Out, Kashish) at the identical
   84px height, because thin linework carries far less ink per pixel than
   a solid mark. Each is now sized by eye against its own actual weight -
   thin/pale marks bigger, bold/solid marks smaller - so the row reads as
   one family instead of some marks jumping forward and others sitting
   back. Heights are the eyeballed weight-compensation call, scaled down
   ~4% as a set (preserving their relative proportions to each other) to
   fit 6/6/6 into the real 1072px ceiling above - the first pass sized
   these against a wrongly-assumed 1110px container and produced 5/6/6/1
   with Écrans Mixtes stranded alone. Per-mark max-width is only headroom
   above each mark's own natural width at its height (never the binding
   constraint) - the old flat 158px cap existed to stop wide marks
   dominating on FOOTPRINT alone, which weight-based sizing makes moot for
   wreaths that read light regardless of how wide they run. */
.laurel-wall img { width: auto; object-fit: contain; }
.lw-bfiflare   { height: 88px; max-width: 208px; }   /* thin wreath, wide - boosted */
.lw-insideout  { height: 69px; max-width: 167px; }   /* solid circular badge - reined in */
.lw-stlouis    { height: 71px; max-width: 163px; }   /* bold serif wordmark - reined in */
.lw-brighton   { height: 88px; max-width: 145px; }   /* thin wreath, dense small type - boosted */
.lw-sqiff      { height: 92px; max-width: 109px; }   /* small thin wreath - boosted most in this row */
.lw-lunenburg  { height: 81px; max-width: 135px; }   /* medium weight - baseline */
.lw-scad       { height: 88px; max-width: 178px; }   /* thin wreath - boosted */
.lw-melbourne  { height: 67px; max-width: 149px; }   /* bold block mark - reined in */
.lw-norwich    { height: 67px; max-width: 80px; }    /* bold block mark, near-square - reined in */
.lw-newport    { height: 88px; max-width: 133px; }   /* thin wreath - boosted */
.lw-kashish    { height: 73px; max-width: 119px; }   /* colour badge draws the eye on hue alone - reined in */
.lw-exposures  { height: 90px; max-width: 155px; }   /* thin wreath - boosted */
.lw-britishshorts { height: 63px; max-width: 122px; } /* solid reversed-type badge, heaviest mark - reined in most */
.lw-uqff       { height: 92px; max-width: 115px; }   /* small thin wreath - boosted */
.lw-londonbreeze { height: 69px; max-width: 124px; } /* bold script/block - reined in */
.lw-newren     { height: 88px; max-width: 135px; }   /* thin wreath - boosted */
.lw-sunrise    { height: 96px; max-width: 130px; }  /* palest mark on the wall - boosted most overall */
.lw-ecransmixtes { height: 84px; max-width: 132px; } /* bordered box, thin interior type - slight boost */

/* Press row - six transparent marks straight on the texture, ONE line
   at every width (sizes scale with viewport rather than wrapping).
   Files are auto-cropped to their visible marks, so these heights are
   true visual sizes - tuned by eye against the render. */
.press-row {
  list-style: none; margin: 0 auto; padding: 0;
  display: flex; flex-wrap: nowrap;
  justify-content: center; align-items: center;
  gap: clamp(12px, 3vw, 40px);
}
.press-row li { display: flex; align-items: center; }
.press-row img { width: auto; }
.pl-att  { height: clamp(15px, 2.4vw, 35px); }
.pl-out  { height: clamp(15px, 2.5vw, 36px); }
.pl-fff  { height: clamp(46px, 7vw, 104px); }
.pl-bfi  { height: clamp(17px, 2.8vw, 40px); }
.pl-s95  { height: clamp(13px, 2.2vw, 32px); }
.pl-diva { height: clamp(14px, 2.4vw, 34px); }

/* Photo strip - flickable journey carousel (scroll-snap). Breaks out of the
   .wrap like the strand row, and the photos are taller so the journey reads
   as a real gallery rather than a thumbnail strip. */
.photo-strip {
  display: flex; gap: 18px;
  width: min(1320px, 94vw); max-width: none;
  position: relative; left: 50%; transform: translateX(-50%);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 16px;
  margin: 0 auto 48px;
}
.photo-strip figure {
  flex: 0 0 auto; margin: 0;
  max-width: 520px;
  scroll-snap-align: start;
}
.photo-strip button {
  display: block; padding: 0; border: 0; background: none;
  cursor: zoom-in; line-height: 0;
}
.photo-strip img {
  height: 300px; width: auto;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}
.photo-strip figcaption {
  margin-top: 9px; padding-top: 7px;
  border-top: 2px solid var(--gold);
  font-size: 0.8rem; font-weight: 600;
  color: var(--ink-soft); text-align: left;
}
@media (max-width: 600px) {
  .photo-strip {
    width: 100%; left: auto; transform: none;   /* drop breakout on mobile */
  }
  .photo-strip img { height: 220px; }
  .photo-strip figure { max-width: 340px; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0, 0, 0, 0.88);
  display: flex; align-items: center; justify-content: center;
  padding: 4vh 4vw;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  border-radius: 6px;
}
.lightbox-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: 0;
  color: var(--white);
  font-size: 2.4rem; line-height: 1;
  padding: 8px; cursor: pointer;
}
.lightbox-close:hover { color: var(--gold); }

/* Strand cards - 3-up, the photo is the hero of each card.
   IMPORTANT: this row BREAKS OUT of the .wrap (max content ~1072px). A
   plain max-width above that value does nothing - the wrap clips it - which
   is why an earlier 1040->1150 bump read as no change. left:50% + a
   translateX(-50%) on a wider-than-parent box re-centres it in the viewport
   so the three 4:3 photos actually render larger. */
.strand-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: min(1320px, 94vw); max-width: none;
  position: relative; left: 50%; transform: translateX(-50%);
  margin: 0 auto 44px;
  align-items: stretch;
}
.strand-card {
  background: rgba(255, 255, 255, 0.84);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.strand-card button {
  display: block; width: 100%;
  padding: 0; border: 0; background: none;
  cursor: zoom-in; line-height: 0;
}
.strand-card button img {
  width: 100%; aspect-ratio: 4 / 3;
  object-fit: cover; display: block;
}
.strand-body { padding: 14px 18px 18px; }
.strand-body h3 { margin: 0 0 6px; font-size: 0.9rem; }
.strand-body p { margin: 0; font-size: 0.84rem; line-height: 1.55; }
@media (max-width: 860px) {
  /* stack 1-up and drop the desktop breakout (back to normal flow) */
  .strand-cards {
    grid-template-columns: 1fr;
    width: min(480px, 100%); max-width: 480px;
    left: auto; transform: none;
  }
}

.profile {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 48px; align-items: center;
  max-width: 1000px; margin: 0 auto 72px;
}
.profile:last-child { margin-bottom: 0; }
.profile.flip .profile-photo { order: 2; }
.profile h2, .profile h3 { margin-top: 0; }
.profile .role {
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.82rem; color: var(--ink-soft); margin: 4px 0 0;
}
.profile .pronouns { font-size: 0.82rem; color: var(--ink-soft); margin: 2px 0 18px; }
@media (max-width: 760px) {
  .profile { grid-template-columns: 1fr; gap: 24px; }
  .profile.flip .profile-photo { order: 0; }
}

/* ---------- Textured interior page: one continuous key-art background
   (same treatment as the homepage) - sections go transparent */
main.textured-page {
  background: var(--pink) url('../assets/hero/texture-full.webp') center top / cover no-repeat;
}
main.textured-page .section { background: transparent; padding: 52px 0; }

/* ---------- Filmmakers hero: full-width group photo, title overlaid
   on a bottom-up scrim */
.fm-hero { position: relative; }
.fm-hero img {
  width: 100%; height: clamp(320px, 52vh, 560px);
  object-fit: cover; object-position: center 30%;
}
.fm-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0) 68%);
}
.fm-hero-text {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  text-align: center; padding: 0 24px 30px;
  color: var(--white);
}
.fm-hero-text h1 { margin: 0 0 6px; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6); }
.fm-hero-text p {
  margin: 0; font-size: 0.85rem; opacity: 0.92;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

/* ---------- Filmmaker cards: uniform, equal-height, expandable bios */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1080px; margin: 0 auto;
  align-items: stretch;      /* equal-height cards per row */
}
.team-grid.duo { grid-template-columns: repeat(2, 1fr); max-width: 534px; }

.person-card {
  background: rgba(255, 255, 255, 0.84);
  border-radius: 14px;
  padding: 18px;
  display: flex; flex-direction: column;
}
.person-card img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);   /* the one unifying frame */
  margin-bottom: 16px;
}
.person-card h2 { font-size: 1rem; margin: 0; }
.person-card .role {
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.7rem; color: var(--ink-soft); margin: 6px 0 0;
}
.person-card .pronouns { font-size: 0.74rem; color: var(--ink-soft); margin: 2px 0 10px; }
.person-card .teaser { font-style: italic; font-size: 0.88rem; margin: 0 0 12px; }

/* the toggle pins to the card bottom so collapsed cards align */
.person-card .bio { margin-top: auto; }
.bio summary {
  cursor: pointer; list-style: none;
  font-weight: 700; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink);
  border-bottom: 2px solid var(--gold);   /* gold/black accent, not blue */
  display: inline-block;
  padding: 6px 0 2px;
}
.bio summary::-webkit-details-marker { display: none; }
.bio summary::after { content: " +"; }
.bio[open] summary::after { content: " \2013"; }
.bio summary:hover { color: var(--gold-text); }
.bio .bio-body p { font-size: 0.85rem; line-height: 1.6; margin: 8px 0 0; }

@media (max-width: 980px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .team-grid, .team-grid.duo { grid-template-columns: 1fr; max-width: 420px; }
}

/* Full crew CTA */
.crew-cta { text-align: center; }

/* ---------- TRUK United page ---------- */

.club-intro { text-align: center; font-size: 0.95rem; }
.club-intro p { margin: 0 0 12px; }
.club-intro .stance {
  margin: 22px 0 0;
  font-size: 1.2rem; font-weight: 700; line-height: 1.45;
}
.club-intro .stance em {
  font-style: italic;
  box-shadow: inset 0 -0.4em var(--gold);   /* gold highlighter accent */
}

/* Lucy / Emily feature blocks: consistent frame with the card headshots */
.profile .profile-photo img {
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}
.profile .soft-panel { padding: 28px 32px; }

/* ---------- Full credits (multi-column) ---------- */

.credits-title { text-align: center; margin: 0 0 32px; }
.credits-panel { max-width: 1040px; margin: 0 auto 28px; }
.credits-panel:last-child { margin-bottom: 0; }

.credits-columns { columns: 3; column-gap: 44px; }
.credit { break-inside: avoid; margin: 0 0 18px; }
.credit h2, .credit h3 {
  margin: 0 0 3px;
  font-size: 0.72rem; letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.credit p { margin: 0; font-size: 0.92rem; line-height: 1.5; }

.companies { columns: 3; column-gap: 44px; }
.company { break-inside: avoid; margin: 0 0 24px; }
.company h2 { margin: 0 0 10px; font-size: 0.9rem; }

.thanks-title { margin: 0 0 14px; font-size: 0.95rem; }
.thanks-list {
  list-style: none; margin: 0; padding: 0;
  columns: 3; column-gap: 44px;
}
.thanks-list li { break-inside: avoid; font-size: 0.92rem; line-height: 1.7; }

@media (max-width: 900px) {
  .credits-columns, .companies, .thanks-list { columns: 2; }
}
@media (max-width: 560px) {
  .credits-columns, .companies, .thanks-list { columns: 1; }
}

/* ---------- Contact ---------- */

.contact-panel { max-width: 720px; margin: 0 auto 28px; }
.contact-panel:last-child { margin-bottom: 0; }
.contact-panel h2 { margin: 0 0 14px; font-size: 1.15rem; }
.contact-panel p { margin: 0 0 14px; }
.contact-panel p:last-child { margin-bottom: 0; }
.contact-cta { margin-top: 20px; }
.contact-panel .email a {
  font-size: clamp(1.05rem, 2.6vw, 1.35rem); font-weight: 700;
  color: var(--gold-text);
  text-decoration-color: var(--gold);
}
.contact-panel .email a:hover { color: var(--ink); }

/* ---------- Footer (black, per live site) ---------- */

.site-footer {
  background: var(--black);
  color: #cccccc;
  padding: 48px 0;
  text-align: center;
  font-size: 0.85rem;
}
.site-footer p { margin: 6px 0; }
.site-footer nav { margin-bottom: 14px; }
.site-footer nav a { margin: 0 10px; }
.site-footer a { color: var(--white); }
.site-footer a:hover { color: var(--pink); }


/* Impact & Press hero: slightly stronger cover treatment (scoped).
   object-position biases the crop toward the lower half of the new
   auditorium photo so the people on stage stay in frame (the default
   center 30% favoured the top and cut them off). */
.fm-hero.ip-cover img { height: clamp(340px, 58vh, 600px); object-position: center 62%; }
.fm-hero.ip-cover::after {
  background: linear-gradient(to top,
    rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.34) 46%, rgba(0, 0, 0, 0.04) 74%);
}
.fm-hero.ip-cover .fm-hero-text h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
