/* Hallmark · genre: editorial · macrostructure: Marquee Hero (marketing) + Portfolio Grid (content)
 * design-system: design.md · designed-as-app · codified 2026-05-22
 */

/* ============================================================
   BOGNER ENTERTAINMENT INC.
   Old Hollywood meets modern dealmaker.
   Shared design system + components for all pages.
   ============================================================ */

/* ---------- 1. Tokens ---------------------------------------- */
:root {
  /* Color — dark "screening room", warm-tinted neutrals, antique gold */
  --bg:         oklch(0.158 0.008 66);
  --bg-deep:    oklch(0.122 0.007 64);
  --surface:    oklch(0.205 0.010 67);
  --surface-2:  oklch(0.255 0.012 68);
  --ivory:      oklch(0.941 0.013 83);
  --ivory-dim:  oklch(0.770 0.014 80);
  --muted:      oklch(0.645 0.012 76);
  --gold:       oklch(0.808 0.106 81);
  --gold-deep:  oklch(0.700 0.110 73);
  --hairline:   oklch(0.300 0.010 70);
  --line:       oklch(0.402 0.013 73);

  /* Type families */
  --display: "Clash Display", "Helvetica Neue", Arial, sans-serif;
  --body: "Switzer", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Fluid type scale — ~1.32 ratio */
  --t-xs:    0.78rem;
  --t-sm:    0.875rem;
  --t-base:  1.0625rem;
  --t-md:    1.2rem;
  --t-lg:    clamp(1.35rem, 1.08rem + 1.18vw, 2.05rem);
  --t-xl:    clamp(1.85rem, 1.30rem + 2.45vw, 3.15rem);
  --t-2xl:   clamp(2.55rem, 1.55rem + 4.45vw, 5.1rem);
  --t-3xl:   clamp(3.15rem, 1.55rem + 7.1vw, 7.3rem);
  --t-hero:  clamp(3.5rem, 1.5rem + 8.9vw, 9.4rem);

  /* Spacing — 4pt scale */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;  --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.25rem;  --sp-6: 1.5rem;  --sp-8: 2rem;    --sp-10: 2.5rem;
  --sp-12: 3rem;    --sp-16: 4rem;   --sp-20: 5rem;   --sp-24: 6rem;
  --section-y: clamp(4.5rem, 2.4rem + 8vw, 9.5rem);
  --gutter: clamp(1.25rem, 0.35rem + 3.2vw, 3.75rem);
  --maxw: 1340px;
  --measure: 64ch;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --dur-1: 140ms;
  --dur-2: 280ms;
  --dur-3: 560ms;

  /* Elevation / z */
  --z-nav: 100;
  --z-overlay: 200;
}

/* ---------- 2. Reset ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100svh; }
img, picture, svg, iframe, video { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; }
ul, ol { list-style: none; padding: 0; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 1px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- 3. Base ------------------------------------------ */
body {
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--body);
  font-size: var(--t-base);
  font-weight: 400;
  line-height: 1.65;
  font-feature-settings: "kern", "liga", "calt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: var(--bg-deep); }

.skip-link {
  position: absolute;
  left: var(--sp-4); top: -120%;
  z-index: calc(var(--z-overlay) + 1);
  background: var(--gold); color: var(--bg-deep);
  padding: var(--sp-3) var(--sp-5);
  font: 600 var(--t-sm)/1 var(--body);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.skip-link:focus { top: var(--sp-4); }

/* ---------- 4. Typography ------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.012em;
  font-optical-sizing: auto;
}
.display {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.014em;
}
em, .italic { font-style: italic; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--body);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.kicker::before {
  content: "";
  width: clamp(1.5rem, 4vw, 3rem);
  height: 1px;
  background: currentColor;
}
.kicker.is-plain::before { display: none; }

.lede {
  font-size: var(--t-lg);
  line-height: 1.5;
  color: var(--ivory-dim);
  font-weight: 400;
  max-width: 32ch;
}

p { max-width: var(--measure); }
strong { font-weight: 600; color: var(--ivory); }

/* ---------- 5. Layout --------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }
/* The credibility band follows straight after the hero — pull its top in so the
   marquee isn't stranded below a tall stack of empty space on 16:9 monitors. */
.hero + .section--tight { padding-top: clamp(2rem, 1.2rem + 2vw, 3.75rem); }

.rule {
  height: 1px;
  border: 0;
  background: var(--hairline);
}

.section-head {
  display: grid;
  gap: var(--sp-5);
  margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4.5rem);
}
.section-head__title {
  font-size: var(--t-2xl);
  max-width: 18ch;
}
.section-head__index {
  font-family: var(--body);
  font-variant-numeric: tabular-nums;
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.section-head__lede { max-width: 52ch; }

/* visually hidden */
.vh {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- 6. Site header / nav ---------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: color-mix(in oklch, var(--bg-deep) 92%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  min-height: 4.75rem;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: 0.01em;
}
.brand__sub {
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.34rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.2rem + 1.8vw, 2.4rem);
}
.nav__link {
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ivory-dim);
  padding-block: 0.35rem;
  position: relative;
  transition: color var(--dur-1) var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-2) var(--ease);
}
.nav__link:hover { color: var(--ivory); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--ivory); }

.nav__cta {
  font-family: var(--body);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  border: 1px solid var(--gold-deep);
  padding: 0.6rem 1.15rem;
  transition: background var(--dur-2) var(--ease), color var(--dur-2) var(--ease), transform var(--dur-1) var(--ease);
}
.nav__cta:hover { background: var(--gold); color: var(--bg-deep); }
.nav__cta:active { transform: scale(0.97); }

.nav__toggle {
  display: none;
  width: 2.75rem; height: 2.75rem;
  margin-right: -0.6rem;
  position: relative;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 50%; width: 1.5rem; height: 1.5px;
  background: var(--ivory);
  transform: translateX(-50%);
  transition: transform var(--dur-2) var(--ease), opacity var(--dur-1) var(--ease);
}
.nav__toggle span { top: 50%; }
.nav__toggle span::before { top: -0.42rem; }
.nav__toggle span::after { top: 0.42rem; }

/* mobile overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform var(--dur-3) var(--ease);
  visibility: hidden;
}
.nav__overlay.is-open { transform: translateY(0); visibility: visible; }
.nav__overlay a {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 1rem + 5vw, 3.4rem);
  text-decoration: none;
  color: var(--ivory);
  padding-block: var(--sp-2);
  border-bottom: 1px solid var(--hairline);
}
.nav__overlay a[aria-current="page"] { color: var(--gold); }
.nav__overlay a:last-child { border-bottom: 0; }
.nav__overlay-close {
  position: absolute;
  top: 1.4rem; right: var(--gutter);
  font-size: 2rem; color: var(--ivory);
  width: 2.75rem; height: 2.75rem;
  line-height: 1;
}

/* ---------- 7. Buttons -------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--body);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 1.7rem;
  border: 1px solid transparent;
  transition: background var(--dur-2) var(--ease),
              color var(--dur-2) var(--ease),
              border-color var(--dur-2) var(--ease),
              transform var(--dur-1) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--gold); color: var(--bg-deep); }
.btn--primary:hover { background: var(--ivory); }
.btn--outline { border-color: var(--line); color: var(--ivory); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn__arrow { transition: transform var(--dur-2) var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  padding-bottom: 0.25rem;
  border-bottom: 1px solid color-mix(in oklch, var(--gold) 35%, transparent);
  transition: border-color var(--dur-2) var(--ease);
}
.text-link:hover { border-color: var(--gold); }
.text-link span { transition: transform var(--dur-2) var(--ease); }
.text-link:hover span { transform: translateX(4px); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-4); }

/* ---------- 8. Reveal motion -------------------------------- */
/* Hidden state only applies when JS is active (.js on <html>),
   so content is always visible if scripts fail to load. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity var(--dur-3) var(--ease), transform var(--dur-3) var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- 9. Footer --------------------------------------- */
.site-footer {
  border-top: 1px solid var(--hairline);
  background: var(--bg-deep);
  padding-block: clamp(3rem, 2rem + 4vw, 5.5rem) var(--sp-10);
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-10);
}
.footer__mark .brand__name { font-size: 1.7rem; }
.footer__tagline {
  margin-top: var(--sp-4);
  color: var(--muted);
  max-width: 30ch;
  font-size: var(--t-sm);
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-8);
}
.footer__nav a {
  font-size: var(--t-sm);
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ivory-dim);
  transition: color var(--dur-1) var(--ease);
}
.footer__nav a:hover { color: var(--gold); }
.footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-top: var(--sp-16);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--hairline);
  font-size: var(--t-xs);
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* ---------- 10. Credit / network marquee -------------------- */
.credit-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.25rem, 0.4rem + 2.6vw, 3rem);
}
.credit-band__item {
  font-family: var(--body);
  font-size: clamp(0.82rem, 0.72rem + 0.4vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  white-space: nowrap;
}
.credit-band--divided .credit-band__item {
  display: flex; align-items: center;
  gap: clamp(1.25rem, 0.4rem + 2.6vw, 3rem);
}
.credit-band--divided .credit-band__item::after {
  content: "";
  width: 4px; height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
}
.credit-band--divided .credit-band__item:last-child::after { display: none; }

/* Network logo marquee — a continuously scrolling, full-bleed logo band.
   Logos are <img> SVGs recoloured to one uniform tone with a filter; the
   track holds 4 identical groups so the loop never shows a gap, even on 4K. */
.marquee {
  width: 100vw;
  margin-inline: calc(50% - 50vw);            /* break out to full bleed */
  margin-block: clamp(1.5rem, 1rem + 1.4vw, 2.75rem);
  padding-block: var(--sp-1);                 /* headroom so a hovered logo can lift without clipping */
  overflow: hidden;
  --logo-h: clamp(23px, 14px + 1.9vw, 38px);  /* base height — tuned per logo below */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-roll 40s linear infinite;
}
/* main.js adds .is-paused while the band is scrolled off-screen — no point
   compositing an animation nobody can see; dropping will-change frees the layer. */
.marquee.is-paused .marquee__track {
  animation-play-state: paused;
  will-change: auto;
}
.marquee__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
.marquee__logo {
  flex: 0 0 auto;
  height: var(--logo-h);
  width: auto;
  margin-inline-end: clamp(2.5rem, 1.4rem + 3.2vw, 4.75rem);
  filter: brightness(0) invert(1);            /* one uniform colour for every logo */
  opacity: 0.72;
  transition: opacity var(--dur-2) var(--ease), transform var(--dur-2) var(--ease);
}
/* Hover affordances live behind hover:hover so a tap on a touchscreen can't
   leave the strip stuck paused — or a single logo stuck mid-lift. */
@media (hover: hover) {
  .marquee:hover .marquee__track { animation-play-state: paused; }
  .marquee:hover .marquee__logo { opacity: 0.86; }
  .marquee__logo:hover { opacity: 1; transform: scale(1.06); }
}

/* Focus pause — keyboard / AT users can Tab to the marquee to stop it.
   Closes WCAG 2.2.2 for users without a reduced-motion preference. */
.marquee:focus-visible .marquee__track { animation-play-state: paused; }
.marquee:focus-visible .marquee__logo { opacity: 0.86; }

@keyframes marquee-roll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-25%, 0, 0); }
}

/* Per-logo optical sizing — every mark carries different visual weight, so a
   single shared height would let wide wordmarks shout and tall marks vanish. */
.mq--20th      { height: calc(var(--logo-h) * 1.42); }
.mq--warner    { height: calc(var(--logo-h) * 1.45); }
.mq--history   { height: calc(var(--logo-h) * 1.30); }
.mq--new-line  { height: calc(var(--logo-h) * 1.30); }
.mq--disney    { height: calc(var(--logo-h) * 1.26); }
.mq--hgtv      { height: calc(var(--logo-h) * 1.15); }
.mq--tlc       { height: calc(var(--logo-h) * 1.06); }
.mq--discovery { height: calc(var(--logo-h) * 0.80); }
.mq--nat-geo   { height: calc(var(--logo-h) * 0.92); }
.mq--amazon    { height: calc(var(--logo-h) * 0.80); }
.mq--lifetime  { height: calc(var(--logo-h) * 0.82); }
.mq--lionsgate { height: calc(var(--logo-h) * 0.62); }

/* Larger marquee — the Slate page carries no reel, so the band can take more room. */
.marquee--large {
  --logo-h: clamp(34px, 20px + 3vw, 58px);
  margin-block: clamp(2.25rem, 1.4rem + 2.4vw, 4rem);
}
.marquee--large .marquee__logo { margin-inline-end: clamp(3rem, 1.7rem + 3.8vw, 6rem); }
.marquee--large .marquee__track { animation-duration: 56s; }

/* Reduced motion — hold the strip still, lay every logo out as a centred grid. */
@media (prefers-reduced-motion: reduce) {
  .marquee {
    -webkit-mask-image: none;
            mask-image: none;
  }
  .marquee__track {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--gutter);
    animation: none;
    transform: none;
  }
  .marquee__group { display: none; }
  .marquee__group:first-child {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .marquee__logo {
    margin: clamp(0.55rem, 0.35rem + 0.5vw, 0.95rem) clamp(0.85rem, 0.4rem + 1.3vw, 1.7rem);
  }
}

/* ---------- 11. Record (figures set as an editorial line) --- */
.record {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--sp-5) clamp(1.5rem, 0.4rem + 2.7vw, 3.25rem);
}
.record__item {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
}
.record__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--t-xl);
  line-height: 1;
  color: var(--gold);
}
.record__label {
  font-size: var(--t-sm);
  line-height: 1.35;
  color: var(--ivory-dim);
  max-width: 13ch;
}
.record__sep {
  align-self: center;
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ---------- 12. Big statement ------------------------------- */
.statement {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--t-2xl);
  line-height: 1.04;
  letter-spacing: -0.018em;
  max-width: 18ch;
}
.statement em { color: var(--gold); font-style: normal; }

/* ---------- 13. Poster / show tiles (Slate) ----------------- */
.poster-grid {
  display: grid;
  gap: clamp(1.5rem, 0.8rem + 2vw, 2.75rem);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
}
/* home teaser: 4-up, then 2-up on small screens — never a full-width single,
   since the vintage posters are low-res and read better at a smaller size */
.poster-grid--teaser { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .poster-grid--teaser { grid-template-columns: repeat(2, 1fr); } }
.poster-tile {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--hairline);
  transition: border-color var(--dur-2) var(--ease), transform var(--dur-2) var(--ease);
}
.poster-tile:hover {
  border-color: color-mix(in oklch, var(--gold) 55%, transparent);
  transform: translateY(-4px);
}
.poster-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-deep);
}
.poster-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-3) var(--ease), filter var(--dur-3) var(--ease);
  filter: saturate(0.92) brightness(0.94);
}
.poster-tile:hover .poster-media img {
  transform: scale(1.045);
  filter: saturate(1) brightness(1);
}
.poster-media__role {
  position: absolute;
  top: var(--sp-3); left: var(--sp-3);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--gold);
  padding: 0.32rem 0.6rem;
}
.poster-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-5);
  flex: 1;
}
.poster-title {
  font-size: var(--t-md);
  font-weight: 700;
  line-height: 1.1;
}
.poster-studio {
  font-family: var(--body);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.poster-cast {
  font-size: var(--t-sm);
  color: var(--muted);
  line-height: 1.5;
  margin-top: auto;
  padding-top: var(--sp-3);
}

/* TV / typographic credit rows */
.tv-list {
  display: grid;
  border-top: 1px solid var(--hairline);
}
.tv-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: var(--sp-4) var(--sp-8);
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--hairline);
}
.tv-row__title {
  font-size: var(--t-lg);
  font-weight: 700;
  transition: transform var(--dur-2) var(--ease);
}
.tv-row:hover .tv-row__title { transform: translateX(var(--sp-3)); }
.tv-row__title span {
  font-family: var(--body);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--muted);
  margin-left: var(--sp-3);
  letter-spacing: 0.02em;
}
.tv-row__net {
  font-family: var(--body);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: right;
}

/* ---------- 14. Property tiles (In Development) ------------- */
.dev-cat { margin-top: var(--section-y); }
.dev-cat:first-of-type { margin-top: 0; }
.dev-cat__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(1.75rem, 1rem + 2vw, 3rem);
}
.dev-cat__title { font-size: var(--t-xl); }
.dev-cat__count {
  font-family: var(--body);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.prop-grid {
  display: grid;
  gap: clamp(1.25rem, 0.6rem + 1.8vw, 2.25rem);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr));
}
.prop-tile {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  text-align: left;
}
.prop-media {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--hairline);
  transition: border-color var(--dur-2) var(--ease);
}
.prop-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-3) var(--ease);
}
.prop-tile:hover .prop-media { border-color: color-mix(in oklch, var(--gold) 55%, transparent); }
.prop-tile:hover .prop-media img { transform: scale(1.05); }
.prop-media__empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  padding: var(--sp-4);
  text-align: center;
  font-family: var(--body);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* featured property tier — bestsellers lead the Books shelf */
.prop-grid--feature {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 0.8rem + 2vw, 2.75rem);
  margin-bottom: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
}
.prop-tile--feature { gap: var(--sp-4); }
.prop-tile--feature .prop-name { font-size: var(--t-lg); }
.prop-tile--feature .prop-tag { font-size: var(--t-sm); }
@media (max-width: 760px) {
  .prop-grid--feature { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .prop-grid--feature { grid-template-columns: 1fr; }
}
.prop-name {
  font-size: var(--t-base);
  font-weight: 600;
  line-height: 1.2;
}
.prop-tag {
  font-family: var(--body);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.prop-tag--star { color: var(--gold); }

/* ---------- 15. Hero (Home) --------------------------------- */
.hero { padding-block: clamp(1.75rem, 1rem + 2.4vw, 3.5rem) clamp(1.25rem, 0.7rem + 1.1vw, 2.5rem); }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 0.6rem + 3vw, 4rem);
  align-items: center;
}
.hero__text { display: grid; gap: var(--sp-6); align-content: center; container-type: inline-size; }
.hero__title {
  font-size: var(--t-3xl);
  line-height: 0.97;
  letter-spacing: -0.022em;
}
.hero__title em { color: var(--gold); font-style: normal; }
/* In the two-column hero the headline is sized against its own column (cqi),
   not the viewport — so "on the air." can never outgrow its track and slide
   under the reel at any width. The one-column layout keeps the viewport scale. */
@media (min-width: 881px) {
  .hero__title { font-size: clamp(3.75rem, 19cqi, 7.25rem); }
}
.hero__sub {
  font-size: var(--t-md);
  color: var(--ivory-dim);
  max-width: 34ch;
}

/* Reel — a powered-on "screening room" screen; the tape loads on click */
.reel {
  position: relative;
  isolation: isolate;
  aspect-ratio: 16 / 9;
  background: var(--bg-deep);
  border: 1px solid var(--line);
  overflow: hidden;
}
/* drifting scanlines — the screen is alive */
.reel::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: calc(100% + 5px);
  z-index: 0;
  background: repeating-linear-gradient(180deg,
    transparent 0 2px,
    color-mix(in oklch, var(--ivory) 2.5%, transparent) 2px 4px);
  animation: reel-scan 9s linear infinite;
  pointer-events: none;
}
@keyframes reel-scan { to { transform: translateY(-4px); } }

/* the paused frame behind the glass — a still pulled from the reel itself,
   sitting under the scanlines so the screen reads as powered-on, not blank */
.reel__poster {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.6) contrast(1.06);
  transition: filter var(--dur-3) var(--ease), transform var(--dur-3) var(--ease);
}
.reel:hover .reel__poster {
  filter: grayscale(1) brightness(0.78) contrast(1.06);
  transform: scale(1.035);
}

/* projector glow — slowly breathes */
.reel__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 50% 46%,
    color-mix(in oklch, var(--gold) 12%, transparent), transparent 64%);
  pointer-events: none;
  animation: reel-breathe 7.5s ease-in-out infinite;
}
@keyframes reel-breathe {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.reel__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: var(--sp-5);
  justify-items: center;
}
.reel__play-disc {
  position: relative;
  width: clamp(4.5rem, 3rem + 5vw, 7rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-deep);
  display: grid;
  place-content: center;
  transition: transform var(--dur-2) var(--ease), background var(--dur-2) var(--ease);
}
/* inviting pulse ring */
.reel__play-disc::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: reel-pulse 2.9s var(--ease-quart) infinite;
}
@keyframes reel-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  70%, 100% { transform: scale(1.8); opacity: 0; }
}
.reel__play-disc svg { margin-left: 6%; }
.reel:hover .reel__play-disc { transform: scale(1.08); background: var(--ivory); }
.reel__play-label {
  font-family: var(--body);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory);
}

/* loading state — shown while the Vimeo player loads after Play */
.reel__loading {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
  place-content: center;
  justify-items: center;
  gap: var(--sp-5);
  background: color-mix(in oklch, var(--bg-deep) 72%, transparent);
}
.reel.is-loading .reel__loading { display: grid; }
.reel.is-loading .reel__play { display: none; }
.reel__loading-ring {
  width: 2.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid color-mix(in oklch, var(--gold) 24%, transparent);
  border-top-color: var(--gold);
  animation: reel-spin 0.8s linear infinite;
}
@keyframes reel-spin { to { transform: rotate(1turn); } }
.reel__loading-text {
  font-family: var(--body);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.reel__iframe-wrap {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
  transition: opacity var(--dur-3) var(--ease);
}
.reel.is-playing .reel__iframe-wrap { opacity: 1; }
.reel.is-playing .reel__play,
.reel.is-playing .reel__loading,
.reel.is-playing .reel__scrim { display: none; }
.reel.is-playing::before { display: none; }
.reel__iframe-wrap iframe { width: 100%; height: 100%; border: 0; }

/* corner registration marks — film-frame language */
.framed { position: relative; }
.framed > .corner {
  position: absolute;
  width: 16px; height: 16px;
  z-index: 2;
  pointer-events: none;
}
.framed > .corner::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--gold);
}
.corner--tl { top: -1px; left: -1px; }
.corner--tl::before { border-right: 0; border-bottom: 0; }
.corner--tr { top: -1px; right: -1px; }
.corner--tr::before { border-left: 0; border-bottom: 0; }
.corner--bl { bottom: -1px; left: -1px; }
.corner--bl::before { border-right: 0; border-top: 0; }
.corner--br { bottom: -1px; right: -1px; }
.corner--br::before { border-left: 0; border-top: 0; }

.media-cap {
  margin-top: var(--sp-4);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-2) var(--sp-5);
  font-size: var(--t-sm);
  letter-spacing: 0.02em;
  color: var(--muted);
}

.section-cta { margin-top: clamp(2rem, 1.2rem + 2.5vw, 3.5rem); }

/* ---------- 16. Bio strip ---------------------------------- */
.bio {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: center;
}
.bio__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface);
}
.bio__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(0.18) contrast(1.03);
}
.bio__body { display: grid; gap: var(--sp-5); }
.bio__name { font-size: var(--t-2xl); }
.bio__role {
  font-family: var(--body);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.bio__text { color: var(--ivory-dim); }
.creds {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--hairline);
}
.creds li {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- 17. CTA panel ----------------------------------- */
.cta-panel {
  display: grid;
  gap: var(--sp-8);
  padding: clamp(2.5rem, 1.5rem + 5vw, 5.5rem) var(--gutter);
  background: var(--surface);
  border: 1px solid var(--hairline);
  text-align: center;
  justify-items: center;
}
.cta-panel__title {
  font-size: var(--t-2xl);
  max-width: 20ch;
}
.cta-panel__title em { color: var(--gold); font-style: normal; }
.cta-panel p { color: var(--ivory-dim); margin-inline: auto; text-align: center; }

/* ---------- 18. Offer / steps (Consulting) ------------------ */
.offer-grid {
  display: grid;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}
.offer {
  background: var(--bg);
  padding: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
  display: grid;
  gap: var(--sp-3);
  align-content: start;
}
.offer__index {
  font-family: var(--body);
  font-variant-numeric: tabular-nums;
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.offer__title { font-size: var(--t-lg); }
.offer__text { color: var(--ivory-dim); font-size: var(--t-sm); }

.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-6);
  padding: var(--sp-8) 0;
  border-bottom: 1px solid var(--hairline);
}
.step:first-child { border-top: 1px solid var(--hairline); }
.step__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--t-xl);
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.step__title { font-size: var(--t-lg); margin-bottom: var(--sp-2); }
.step__text { color: var(--ivory-dim); }

/* ---------- 19. Pitch form --------------------------------- */
.pitch-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 1rem + 6vw, 6rem);
  align-items: start;
}
.pitch-aside { display: grid; gap: var(--sp-8); position: sticky; top: 7rem; }
.pitch-aside__title { font-size: var(--t-xl); margin-top: var(--sp-4); }
.assurance { display: grid; gap: var(--sp-5); }
.assurance__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-4);
  align-items: start;
}
.assurance__mark {
  width: 2.4rem; height: 2.4rem;
  border: 1px solid var(--gold-deep);
  display: grid; place-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.assurance__title { font-family: var(--body); font-size: var(--t-base); font-weight: 600; }
.assurance__text { font-size: var(--t-sm); color: var(--muted); }

.form {
  display: grid;
  gap: var(--sp-8);
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: clamp(1.5rem, 1rem + 3vw, 3rem);
}
.form__group { display: grid; gap: var(--sp-5); }
.form__legend {
  font-family: var(--body);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--hairline);
}
.field { display: grid; gap: var(--sp-2); }
.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
.field label {
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.field label .req { color: var(--gold); }
.field input,
.field select,
.field textarea {
  background: var(--bg-deep);
  border: 1px solid var(--line);
  color: var(--ivory);
  padding: 0.85rem 1rem;
  font-size: var(--t-base);
  transition: border-color var(--dur-2) var(--ease);
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 6.5rem; }
.field select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none' stroke='%23c89a4f' stroke-width='2'%3E%3Cpath d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.05rem center;
}
.field select option { background: var(--bg-deep); color: var(--ivory); }
.field__hint { font-size: var(--t-xs); color: var(--muted); }
.field--invalid input,
.field--invalid select,
.field--invalid textarea { border-color: var(--gold-deep); }
.field__error {
  font-size: var(--t-xs);
  color: var(--gold);
  display: none;
}
.field--invalid .field__error { display: block; }

/* file drop */
.dropzone {
  border: 1.5px dashed var(--line);
  background: var(--bg-deep);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  display: grid;
  gap: var(--sp-2);
  justify-items: center;
  cursor: pointer;
  transition: border-color var(--dur-2) var(--ease), background var(--dur-2) var(--ease);
}
.dropzone:hover, .dropzone.is-drag { border-color: var(--gold); background: var(--surface); }
.dropzone__icon { color: var(--gold); }
.dropzone__main { font-weight: 600; }
.dropzone__main u { color: var(--gold); text-decoration: none; }
.dropzone__hint { font-size: var(--t-xs); color: var(--muted); }
.dropzone__file {
  display: none;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--t-sm);
  color: var(--ivory);
}
.dropzone.has-file .dropzone__file { display: flex; }
.dropzone.has-file .dropzone__prompt { display: none; }

/* waiver */
.waiver {
  display: grid;
  gap: var(--sp-4);
  background: var(--bg-deep);
  border: 1px solid var(--line);
  padding: var(--sp-5);
}
.waiver__scroll {
  max-height: 11rem;
  overflow-y: auto;
  padding-right: var(--sp-4);
  display: grid;
  gap: var(--sp-3);
  font-size: var(--t-sm);
  color: var(--ivory-dim);
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.waiver__scroll p { max-width: none; }
.waiver__scroll strong { color: var(--ivory); }
.waiver__placeholder {
  font-size: var(--t-xs);
  color: var(--gold);
  font-weight: 600;
}
.checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-3);
  align-items: start;
  cursor: pointer;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--hairline);
}
.checkbox input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox__box {
  width: 1.35rem; height: 1.35rem;
  border: 1px solid var(--line);
  display: grid; place-content: center;
  color: var(--bg-deep);
  background: var(--bg-deep);
  transition: background var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease);
  margin-top: 2px;
}
.checkbox__box svg { opacity: 0; transition: opacity var(--dur-1) var(--ease); }
.checkbox input:checked ~ .checkbox__box { background: var(--gold); border-color: var(--gold); }
.checkbox input:checked ~ .checkbox__box svg { opacity: 1; }
.checkbox input:focus-visible ~ .checkbox__box { outline: 2px solid var(--gold); outline-offset: 3px; }
.checkbox__text { font-size: var(--t-sm); color: var(--ivory-dim); }
.waiver__error {
  display: none;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gold);
}
.waiver.is-invalid { border-color: var(--gold-deep); }
.waiver.is-invalid .waiver__error { display: block; }
.waiver.is-invalid .checkbox__box { border-color: var(--gold); }

.form__submit { display: grid; gap: var(--sp-4); }
.btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.form__note { font-size: var(--t-xs); color: var(--muted); text-align: center; }
.form__note--error { color: var(--gold); }

.form-success {
  display: none;
  text-align: center;
  padding: clamp(2.5rem, 1.5rem + 4vw, 4.5rem) var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--hairline);
}
.form-success.is-shown { display: grid; gap: var(--sp-4); justify-items: center; }
.form-success__mark {
  width: 3.5rem; height: 3.5rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid; place-content: center;
  color: var(--gold);
}
.form-success__title { font-size: var(--t-xl); }
.is-form-hidden { display: none !important; }

/* ---------- 20. Page intro --------------------------------- */
.page-intro { padding-block: clamp(3rem, 2rem + 5vw, 6.5rem) 0; }
.page-intro__title {
  font-size: var(--t-3xl);
  max-width: 16ch;
  margin-top: var(--sp-5);
}
.page-intro__title em { color: var(--gold); font-style: normal; }
.page-intro__lede { margin-top: var(--sp-6); max-width: 54ch; color: var(--ivory-dim); font-size: var(--t-lg); }

/* ---------- 21. Misc layout helpers ------------------------ */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(2rem, 1rem + 4vw, 5rem);
}
.flow > * + * { margin-top: var(--sp-5); }
.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
}

/* ---------- 22. Responsive --------------------------------- */
@media (max-width: 880px) {
  .nav { gap: var(--sp-4); }
  .nav__link { display: none; }                /* hide the text links, not the whole bar */
  .nav__links { margin-inline-start: auto; }   /* ...so "Pitch Me" stays, pushed to the right */
  .nav__toggle { display: block; }
  .nav__cta { padding-block: 0.85rem; }        /* taller tap target on touch */
  .brand__sub { display: none; }               /* drop the descriptor to make room */
  .hero__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .bio { grid-template-columns: 1fr; }
  .bio__photo { max-width: 22rem; }
  .pitch-layout { grid-template-columns: 1fr; }
  .pitch-aside { position: static; }
}
@media (max-width: 560px) {
  :root { --t-base: 1rem; }
  .field--row { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; }
  .tv-row { grid-template-columns: 1fr; }
  .tv-row__net { text-align: left; }
  /* books, properties & film posters read better 2-up than as one long column */
  .prop-grid:not(.prop-grid--feature) { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
  .poster-grid:not(.poster-grid--teaser) { grid-template-columns: repeat(2, 1fr); }
  .record { gap: var(--sp-5) var(--sp-8); }
  .record__sep { display: none; }
}
@media (hover: none) {
  .poster-tile:hover { transform: none; }
  .reel:hover .reel__play-disc { transform: none; }
  .reel:hover .reel__poster { transform: none; }
}
