/* Santa Barbara Grip & Lighting — dark cinematic system.
   Palette derived from the logo: golden-hour amber + cobalt on a soundstage near-black.
   Color = subject matter here: warm key light, cool fill. */

@font-face {
  font-family: "Big Shoulders Display";
  src: url(../fonts/big-shoulders-display-latin.woff2) format("woff2");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* surfaces (warm near-black; --bg matches the baked logo plate) */
  --bg: #15120e;
  --bg-2: #1c1812;
  --bg-3: #241d15;
  --line: #362d20;
  --line-soft: #2a231a;

  /* ink */
  --ink: #f5ede1;
  --ink-2: #c9bba6;
  --ink-3: #9c8e79;

  /* accents */
  --amber: #dca23c;
  --amber-deep: #e07d22;
  --amber-soft: rgba(220, 162, 60, 0.13);
  --cobalt: #62a6ea;
  --cyan: #7fcdec;
  --on-amber: #1a1305;

  --font-display: "Big Shoulders Display", "Arial Narrow", system-ui, sans-serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Code", "Segoe UI Mono", Menlo,
    Consolas, monospace;

  --maxw: 1180px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}

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

a { color: var(--cobalt); text-decoration: none; }
a:hover { color: var(--cyan); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--ink);
  text-transform: uppercase;
}

p { margin: 0 0 1.1rem; max-width: 68ch; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3.5rem;
  z-index: 200;
  background: var(--amber);
  color: var(--on-amber);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  transition: top 0.18s var(--ease);
}
.skip-link:focus { top: 0.75rem; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(2.6rem, 5.5vw, 4.75rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3.25rem); }
.bg-2 { background: var(--bg-2); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}
.lead { font-size: clamp(1.1rem, 1.9vw, 1.35rem); color: var(--ink-2); line-height: 1.55; max-width: 60ch; }

/* ---------- buttons ---------- */
/* ---------- glass press buttons (pure CSS; faithful to Petr Knoll's Glass Button, brand-adapted to the dark amber system) ----------
   Markup: <span class="button-wrap"><button|a class="btn btn-primary|btn-ghost"><span>icon + label</span></button|a><span class="button-shadow" aria-hidden="true"></span></span>
   The detached .button-shadow stays grounded while the face tilts back on press (a box-shadow would rotate with it). */
@property --angle-1 { syntax: "<angle>"; inherits: false; initial-value: -75deg; }
@property --angle-2 { syntax: "<angle>"; inherits: false; initial-value: -45deg; }
:root { --gb-ease: cubic-bezier(0.25, 1, 0.5, 1); }

.button-wrap {
  position: relative;
  z-index: 2;
  display: inline-flex;
  vertical-align: middle;
  max-width: 100%;
  border-radius: 999vw;
  background: transparent;
  pointer-events: none;
  transition: all 0.4s var(--gb-ease);
}
.button-shadow {
  --cut: 2em;
  position: absolute;
  z-index: 0;
  width: calc(100% + var(--cut));
  height: calc(100% + var(--cut));
  top: calc(0% - var(--cut) / 2);
  left: calc(0% - var(--cut) / 2);
  filter: blur(clamp(2px, 0.125em, 12px));
  pointer-events: none;
  overflow: visible;
}
.button-shadow::after {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(100% - var(--cut) - 0.25em);
  height: calc(100% - var(--cut) - 0.25em);
  top: calc(var(--cut) - 0.5em);
  left: calc(var(--cut) - 0.875em);
  border-radius: 999vw;
  padding: 0.125em;
  box-sizing: border-box;
  background: linear-gradient(180deg, var(--sh-1, rgba(0, 0, 0, 0.4)), var(--sh-2, rgba(0, 0, 0, 0.2)));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  transition: all 0.4s var(--gb-ease);
}
.btn {
  --border-width: clamp(1px, 0.0625em, 4px);
  all: unset;
  box-sizing: border-box;
  position: relative;
  z-index: 3;
  display: inline-flex;
  pointer-events: auto;
  cursor: pointer;
  border-radius: 999vw;
  -webkit-tap-highlight-color: transparent;
  background: linear-gradient(-75deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  box-shadow:
    inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05),
    inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.5),
    0 0.25em 0.125em -0.125em rgba(0, 0, 0, 0.2),
    inset 0 0 0.1em 0.25em rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(clamp(1px, 0.125em, 4px));
          backdrop-filter: blur(clamp(1px, 0.125em, 4px));
  transition: transform 0.4s var(--gb-ease), box-shadow 0.4s var(--gb-ease);
}
.btn:hover {
  transform: scale(0.975);
  box-shadow:
    inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05),
    inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.5),
    0 0.15em 0.05em -0.1em rgba(0, 0, 0, 0.25),
    inset 0 0 0.05em 0.1em rgba(255, 255, 255, 0.5);
}
/* all:unset wipes the focus ring; restore a clear keyboard-visible one (WCAG 2.4.7) */
.btn:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
.btn > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  padding: 0.95em 1.55em;
  text-shadow: 0 0.08em 0.08em rgba(0, 0, 0, 0.18);
  transition: text-shadow 0.4s var(--gb-ease), background-position 0.5s var(--gb-ease), --angle-2 0.5s ease;
}
.btn:hover > span { text-shadow: 0.02em 0.06em 0.06em rgba(0, 0, 0, 0.2); }
.btn > span svg { width: 1.1em; height: 1.1em; flex: none; }
.btn > span::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - var(--border-width));
  height: calc(100% - var(--border-width));
  top: calc(0% + var(--border-width) / 2);
  left: calc(0% + var(--border-width) / 2);
  box-sizing: border-box;
  border-radius: 999vw;
  overflow: clip;
  pointer-events: none;
  mix-blend-mode: screen;
  background: linear-gradient(var(--angle-2), rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 40% 50%, rgba(255, 255, 255, 0) 55%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  background-repeat: no-repeat;
  transition: background-position 0.5s var(--gb-ease), --angle-2 0.5s ease;
}
.btn:hover > span::after { background-position: 25% 50%; }
.btn:active > span::after { background-position: 50% 15%; --angle-2: -15deg; }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(100% + var(--border-width));
  height: calc(100% + var(--border-width));
  top: calc(0% - var(--border-width) / 2);
  left: calc(0% - var(--border-width) / 2);
  padding: var(--border-width);
  box-sizing: border-box;
  border-radius: 999vw;
  pointer-events: none;
  background:
    conic-gradient(from var(--angle-1) at 50% 50%,
      rgba(28, 20, 6, 0.5), rgba(28, 20, 6, 0) 5% 40%,
      rgba(28, 20, 6, 0.5) 50%, rgba(28, 20, 6, 0) 60% 95%, rgba(28, 20, 6, 0.5)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  box-shadow: inset 0 0 0 calc(var(--border-width) / 2) rgba(255, 255, 255, 0.5);
  transition: all 0.4s var(--gb-ease), --angle-1 0.5s ease;
}
.btn:hover::after { --angle-1: -125deg; }
.btn:active::after { --angle-1: -75deg; }
.button-wrap:has(.btn:hover) .button-shadow { filter: blur(clamp(2px, 0.0625em, 6px)); }
.button-wrap:has(.btn:hover) .button-shadow::after { top: calc(var(--cut) - 0.875em); opacity: 1; }
.button-wrap:has(.btn:active) { transform: perspective(40em) rotate3d(1, 0, 0, 22deg); }
.button-wrap:has(.btn:active) .btn {
  box-shadow:
    inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05),
    inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.5),
    0 0.125em 0.125em -0.125em rgba(0, 0, 0, 0.2),
    inset 0 0 0.1em 0.25em rgba(255, 255, 255, 0.2),
    0 0.225em 0.05em 0 rgba(0, 0, 0, 0.05),
    0 0.25em 0 0 rgba(255, 255, 255, 0.4),
    inset 0 0.25em 0.05em 0 rgba(0, 0, 0, 0.15);
}
.button-wrap:has(.btn:active) .button-shadow { filter: blur(clamp(2px, 0.125em, 12px)); }
.button-wrap:has(.btn:active) .button-shadow::after { top: calc(var(--cut) - 0.5em); opacity: 0.75; }
.button-wrap:has(.btn:active) .btn > span { text-shadow: 0.02em 0.18em 0.05em rgba(0, 0, 0, 0.12); }

/* PRIMARY: amber liquid glass, dark label (high contrast on the bright fill) */
.btn-primary { background: linear-gradient(-75deg, rgba(214, 150, 52, 0.95), rgba(224, 162, 66, 1), rgba(214, 150, 52, 0.95)); }
.btn-primary > span { color: var(--on-amber); text-shadow: 0 0.08em 0.1em rgba(60, 38, 4, 0.4); }
.button-wrap:has(.btn-primary) { --sh-1: rgba(120, 76, 12, 0.55); --sh-2: rgba(120, 76, 12, 0.26); }
.btn-primary:focus-visible { outline-color: var(--ink); }

/* GHOST: frosted glass over the dark soundstage, light label */
.btn-ghost { background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)); }
.btn-ghost > span { color: var(--ink); text-shadow: 0 0.06em 0.08em rgba(0, 0, 0, 0.5); }
.button-wrap:has(.btn-ghost) { --sh-1: rgba(0, 0, 0, 0.55); --sh-2: rgba(0, 0, 0, 0.3); }

/* large variant (the closing tap-to-call CTA, formerly .phone-xl) */
/* closing tap-to-call: a prominent CTA (restores the scale the old .phone-xl had; the 1.18rem fold made it the smallest element under a huge heading) */
.btn-lg > span { font-size: clamp(1.4rem, 2.7vw, 2rem); padding: 0.7em 1.6em; letter-spacing: 0.005em; }

@media (prefers-reduced-motion: reduce) {
  .button-wrap, .button-shadow, .button-shadow::after,
  .btn, .btn > span, .btn::after, .btn > span::after { transition: none; }
  .button-wrap:has(.btn:active) { transform: none; }
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}
.brand { display: flex; align-items: center; gap: 0.7rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand img { width: 42px; height: 37px; border-radius: 7px; }
.brand-name { font-family: var(--font-display); text-transform: uppercase; line-height: 0.92; font-weight: 800; }
.brand-name b { display: block; font-size: 1.06rem; letter-spacing: 0.02em; }
.brand-name span { display: block; font-size: 1.06rem; letter-spacing: 0.02em; color: var(--amber); }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a.navlink {
  color: var(--ink-2);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 0.4rem 0;
  position: relative;
}
.nav a.navlink:hover, .nav a.navlink[aria-current="page"] { color: var(--ink); }
.nav a.navlink[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--amber);
}
.nav .btn > span { padding: 0.58em 1.2em; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--ink);
  padding: 0.5rem 0.6rem;
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; display: block; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.4rem;
    transform: translateY(-130%);
    transition: transform 0.28s var(--ease);
    box-shadow: 0 24px 40px -24px rgba(0, 0, 0, 0.8);
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a.navlink { padding: 0.9rem 0; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; }
  .nav a.navlink[aria-current="page"]::after { display: none; }
  .nav .button-wrap { margin-top: 1rem; width: 100%; }
  .nav .button-wrap .btn, .nav .button-wrap .btn > span { width: 100%; }
}

/* ---------- hero ---------- */
.hero { position: relative; isolation: isolate; min-height: clamp(520px, 82vh, 760px); display: flex; align-items: flex-end; }
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(21, 18, 14, 0.62) 0%, rgba(21, 18, 14, 0.12) 34%, rgba(21, 18, 14, 0.72) 78%, var(--bg) 100%),
    linear-gradient(90deg, rgba(21, 18, 14, 0.78) 0%, rgba(21, 18, 14, 0.18) 60%, rgba(21, 18, 14, 0.05) 100%);
}
.hero-body { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2.75rem, 6vw, 4rem); }
.hero h1 {
  font-size: clamp(2.7rem, 7.4vw, 6rem);
  font-weight: 900;
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}
.hero h1 .amber { color: var(--amber); }
.hero .lead { margin-top: 1.4rem; color: var(--ink); max-width: 46ch; text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }

/* credential ribbon */
.ribbon {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.ribbon-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2.4rem;
  padding-block: 1.05rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.ribbon-inner b { color: var(--amber); font-weight: 600; }
.ribbon-inner span { display: inline-flex; align-items: center; gap: 0.6rem; }

/* ---------- interior page head ---------- */
.page-head { position: relative; padding-block: clamp(2rem, 4.5vw, 3.5rem) clamp(1.4rem, 3vw, 2.25rem); border-bottom: 1px solid var(--line); overflow: hidden; }
.page-head::before {
  content: "";
  position: absolute; inset: -40% 0 auto auto; width: 60%; height: 200%;
  background: radial-gradient(closest-side, var(--amber-soft), transparent 70%);
  z-index: 0; pointer-events: none;
}
.page-head .wrap { position: relative; z-index: 1; }
.page-head h1 { font-size: clamp(2.4rem, 6.4vw, 4.6rem); font-weight: 900; max-width: 18ch; }
.page-head .lead { margin-top: 1.25rem; max-width: 56ch; }

/* ---------- generic heading block ---------- */
.head-block { max-width: 54ch; margin-bottom: clamp(1.4rem, 2.8vw, 2.2rem); }
.head-block h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); }
.head-block p { margin-top: 1.1rem; color: var(--ink-2); }

/* ---------- services rows ---------- */
.services { display: grid; gap: 0; border-top: 1px solid var(--line); }
.service {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem 1.8rem;
  align-items: baseline;
  padding-block: clamp(1.6rem, 3.2vw, 2.4rem);
  border-bottom: 1px solid var(--line);
  transition: background 0.2s var(--ease);
}
.service:hover { background: var(--bg-2); }
.service .idx { font-family: var(--font-mono); font-size: 0.8rem; color: var(--amber); letter-spacing: 0.1em; padding-top: 0.5rem; }
.service h3 { font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 700; }
.service .desc { color: var(--ink-2); max-width: 52ch; }
.service .tags { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); white-space: nowrap; padding-top: 0.55rem; }
@media (max-width: 720px) {
  .service { grid-template-columns: auto 1fr; }
  .service .tags { grid-column: 2; white-space: normal; padding-top: 0; }
}

/* ---------- service image bands ---------- */
.svc-bands { display: grid; gap: 0; }
.svc-band { position: relative; isolation: isolate; overflow: hidden; min-height: clamp(300px, 38vw, 460px); display: flex; align-items: center; border-top: 1px solid var(--line); }
.svc-band:last-child { border-bottom: 1px solid var(--line); }
.svc-bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.svc-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(21, 18, 14, 0.95) 0%, rgba(21, 18, 14, 0.86) 34%, rgba(21, 18, 14, 0.5) 68%, rgba(21, 18, 14, 0.32) 100%),
    linear-gradient(0deg, rgba(21, 18, 14, 0.72) 0%, rgba(21, 18, 14, 0.1) 55%, rgba(21, 18, 14, 0.45) 100%);
}
.svc-band-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 1.1rem 1.8rem; align-items: center; padding-block: clamp(2rem, 4vw, 3rem); }
.svc-band .idx { font-family: var(--font-mono); font-size: 0.8rem; color: var(--amber); letter-spacing: 0.1em; align-self: start; padding-top: 0.45rem; }
.svc-band h3 { font-size: clamp(1.55rem, 3vw, 2.4rem); text-shadow: 0 2px 22px rgba(0, 0, 0, 0.55); }
.svc-band .desc { color: var(--ink); max-width: 50ch; margin: 0.6rem 0 0; text-shadow: 0 1px 14px rgba(0, 0, 0, 0.75); }
.svc-band .tags { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); white-space: nowrap; align-self: start; padding-top: 0.55rem; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.85); }
@media (max-width: 720px) {
  .svc-band-inner { grid-template-columns: auto 1fr; }
  .svc-band .tags { grid-column: 2; white-space: normal; padding-top: 0; margin-top: 0.6rem; }
}

/* ---------- selected productions ---------- */
.prod-grid { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
@media (min-width: 560px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 920px) { .prod-grid { grid-template-columns: repeat(6, 1fr); } }
.prod { margin: 0; }
.prod-media {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  display: grid;
  place-items: center;
}
.prod-media::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--amber); }
.prod-media .slate { width: 34%; max-width: 60px; height: auto; color: var(--ink-3); opacity: 0.5; }
.prod-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.prod-media:has(img)::before { display: none; }
.prod-media:has(img) .slate { display: none; }
.prod-body { padding-top: 0.7rem; }
.prod-title { font-family: var(--font-display); text-transform: uppercase; font-weight: 800; line-height: 1.02; font-size: clamp(1.05rem, 1.9vw, 1.3rem); margin: 0; max-width: none; color: var(--ink); }
.prod-kind { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); margin: 0.35rem 0 0; max-width: none; }

/* ---------- split feature ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.split.reverse .split-media { order: -1; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.split-media img { width: 100%; height: auto; }
.frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -40px rgba(0, 0, 0, 0.9);
}
.frame::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

/* ---------- proof strip ---------- */
.strip { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 0.75rem; grid-auto-rows: clamp(180px, 21vw, 320px); }
.strip .frame { height: 100%; }
.strip .frame img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 720px) {
  .strip { grid-template-columns: 1fr 1fr; grid-auto-rows: clamp(150px, 40vw, 230px); }
  .strip .frame:first-child { grid-column: span 2; }
}

/* ---------- gallery (masonry columns) ----------
   Columns have no row structure, so a mix of wide-aspect and tall tiles packs
   flush with no orphan rows or dead vertical gaps at any viewport or photo count.
   One full-bleed .hero spans the top; every other tile keeps its own aspect. */
.gallery { columns: 280px 3; column-gap: 1rem; }
.gallery figure { margin: 0 0 1rem; break-inside: avoid; -webkit-column-break-inside: avoid; }
.tile {
  display: block;
  position: relative;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  cursor: pointer;
  padding: 0;
}
.tile img { width: 100%; height: auto; display: block; object-fit: cover; transition: transform 0.5s var(--ease), filter 0.4s var(--ease); }
.tile:hover img { transform: scale(1.04); filter: brightness(1.06); }
.tile .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: left;
  background: linear-gradient(0deg, rgba(15, 12, 9, 0.92), transparent);
}
.gallery .hero { column-span: all; margin: 0 0 1rem; }
.gallery .hero .tile img { aspect-ratio: 21 / 9; }
@media (max-width: 640px) { .gallery .hero .tile img { aspect-ratio: 16 / 9; } }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: none;
  align-items: center; justify-content: center;
  background: rgba(10, 8, 6, 0.92);
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox[open], .lightbox.is-open { display: flex; }
.lightbox figure { margin: 0; max-width: min(1100px, 100%); }
.lightbox img { width: 100%; height: auto; max-height: 78vh; object-fit: contain; border-radius: 10px; }
.lightbox figcaption { margin-top: 0.9rem; color: var(--ink-2); font-size: 0.95rem; text-align: center; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--ink);
  font-size: 1.4rem; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { border-color: var(--amber); color: var(--amber); }

/* ---------- contact / reveal ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.1rem); }
.contact-row { display: flex; gap: 1rem; align-items: flex-start; padding-block: 1.1rem; border-bottom: 1px solid var(--line-soft); }
.contact-row:last-child { border-bottom: 0; }
.contact-row .ic { flex: none; width: 42px; height: 42px; border-radius: 10px; background: var(--amber-soft); color: var(--amber); display: flex; align-items: center; justify-content: center; }
.contact-row .ic svg { width: 20px; height: 20px; }
.contact-row .lbl { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.2rem; }
.contact-row .val { font-size: 1.18rem; font-weight: 700; color: var(--ink); }
.contact-row a.val { color: var(--ink); }
.contact-row a.val:hover { color: var(--amber); }
.reveal-btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  background: transparent;
  border: 1px dashed var(--line);
  color: var(--cobalt);
  border-radius: 9px;
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  transition: border-color 0.18s var(--ease), color 0.18s var(--ease);
}
.reveal-btn:hover { border-color: var(--cobalt); color: var(--cyan); }

/* ---------- callouts ---------- */
.note {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 1.9rem);
}
.note .tag { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); display: block; margin-bottom: 0.5rem; }
.note p:last-child { margin-bottom: 0; }

/* big closing call band */
.call-band { text-align: center; }
.call-band h2 { font-size: clamp(2.1rem, 5.5vw, 4rem); font-weight: 900; }
.call-band .lead { margin: 1.1rem auto 2rem; }
.call-band .hero-cta { justify-content: center; }
/* .phone-xl folded into the glass system as .btn.btn-primary.btn-lg (see closing call band) */

/* phone reveal controls (bot protection — the number is assembled in JS, never in the markup) */
button.js-tel { cursor: pointer; }
button.tel-plain { background: none; border: 0; padding: 0; cursor: pointer; font-family: inherit; font-size: inherit; color: var(--ink-2); }
button.tel-plain:hover, button.tel-plain:focus-visible { color: var(--amber); }
.contact-row button.val { background: none; border: 0; padding: 0; cursor: pointer; font-family: inherit; text-align: left; }
.contact-row button.val:hover, .contact-row button.val:focus-visible { color: var(--amber); }

/* ---------- about specifics ---------- */
.measure { max-width: 62ch; }
.measure p { color: var(--ink-2); }
.measure p strong { color: var(--ink); }
.kicker-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0.85rem; }
.kicker-list li { display: flex; gap: 0.8rem; color: var(--ink-2); }
.kicker-list li::before { content: ""; flex: none; width: 0.85rem; height: 0.85rem; margin-top: 0.45rem; background: var(--amber); border-radius: 3px; transform: rotate(45deg); }

/* ---------- footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: clamp(2.75rem, 6vw, 4rem) 2rem; color: var(--ink-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; } }
.footer-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.9rem; }
.footer-brand img { width: 46px; height: 41px; border-radius: 8px; }
.footer-brand b { font-family: var(--font-display); text-transform: uppercase; font-size: 1.15rem; color: var(--ink); line-height: 0.95; }
.footer-col h2 { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 0.9rem; font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-col a { color: var(--ink-2); }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { margin-top: 2.4rem; padding-top: 1.3rem; border-top: 1px solid var(--line-soft); font-size: 0.85rem; color: var(--ink-3); display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; justify-content: space-between; }

/* reveal-on-scroll (progressive; visible by default) */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
}
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- experience: by the numbers ---------- */
.stat-grid {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
@media (min-width: 680px) { .stat-grid { grid-template-columns: repeat(3, 1fr); } }
.stat { background: var(--bg); padding: clamp(1.3rem, 3vw, 2.1rem); }
.bg-2 .stat { background: var(--bg-2); }
.stat b { display: block; font-family: var(--font-display); font-weight: 900; font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--amber); line-height: 0.95; }
.stat span { display: block; margin-top: 0.55rem; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); line-height: 1.45; }

/* ---------- experience: network logo wall ----------
   Monochrome wordmarks so it reads as a unified broadcast-credits wall, not a
   multicolor logo soup. To drop in an official mark later, replace a li's
   <span class="lw"> with an inline <svg class="lw-svg"> (fill: currentColor). */
.logo-wall {
  list-style: none; padding: 0; margin: 1.75rem 0 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
@media (min-width: 520px) { .logo-wall { grid-template-columns: repeat(5, 1fr); } }
.logo-wall li { background: var(--bg-2); display: flex; align-items: center; justify-content: center; padding: clamp(1.2rem, 3vw, 1.7rem) 0.5rem; min-height: 78px; }
.bg-2 .logo-wall li { background: var(--bg-3); }
.logo-wall .lw { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; font-size: clamp(1.05rem, 2.2vw, 1.4rem); color: var(--ink-3); transition: color 0.2s var(--ease); white-space: nowrap; }
.logo-wall li:hover .lw, .logo-wall li:focus-within .lw { color: var(--ink); }
.logo-wall .lw .pop { color: var(--amber); }
.logo-wall .lw-svg { height: 1.5rem; width: auto; max-width: 100%; fill: var(--ink-3); transition: fill 0.2s var(--ease); }
.logo-wall li:hover .lw-svg { fill: var(--ink); }

/* ---------- experience: credits / filmography list ---------- */
.cred-group { margin-top: clamp(2.25rem, 5vw, 3.5rem); }
.cred-group:first-of-type { margin-top: 0; }
.cred-group > h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; display: flex; align-items: baseline; gap: 0.75rem; }
.cred-group > h3 .num { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; color: var(--amber); }
.creds { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.cred { display: grid; grid-template-columns: 13rem 1fr; gap: 0.35rem 1.8rem; padding-block: clamp(1.1rem, 2.6vw, 1.7rem); border-bottom: 1px solid var(--line); align-items: baseline; }
.cred-when { font-family: var(--font-mono); font-size: 0.71rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); padding-top: 0.2rem; }
.cred-title { font-family: var(--font-display); text-transform: uppercase; font-weight: 800; line-height: 1.04; font-size: clamp(1.2rem, 2.3vw, 1.55rem); margin: 0; color: var(--ink); max-width: none; }
.cred-role { color: var(--ink-2); margin: 0.45rem 0 0; max-width: 62ch; }
@media (max-width: 640px) { .cred { grid-template-columns: 1fr; gap: 0.3rem; } .cred-when { padding-top: 0; } }

/* ---------- experience: role tags ---------- */
.role-tags { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-wrap: wrap; gap: 0.7rem; }
.role-tags li { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); border: 1px solid var(--line); border-radius: 7px; padding: 0.55rem 1rem; background: var(--bg); }
.bg-2 .role-tags li { background: var(--bg-3); }

/* experience: compact marquee credits (no poster boxes) */
.credit-tiles { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr)); gap: 0.7rem; }
.credit-tiles li { position: relative; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: clamp(1rem, 2.2vw, 1.35rem) clamp(1.1rem, 2.2vw, 1.45rem); overflow: hidden; transition: border-color 0.2s var(--ease), transform 0.2s var(--ease); }
.credit-tiles li::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--amber); transform: scaleY(0); transform-origin: top; transition: transform 0.22s var(--ease); }
.credit-tiles li:hover { border-color: var(--amber); transform: translateY(-2px); }
.credit-tiles li:hover::before { transform: scaleY(1); }
.credit-tiles b { display: block; font-family: var(--font-display); text-transform: uppercase; font-weight: 800; font-size: clamp(1.05rem, 1.9vw, 1.35rem); color: var(--ink); line-height: 1.04; }
.credit-tiles span { display: block; margin-top: 0.4rem; font-family: var(--font-mono); font-size: 0.63rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); }

/* ---------- home: career highlight band ---------- */
.career { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 820px) { .career { grid-template-columns: 1fr; } }
.career .mini-stats { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.career .mini-stats li { background: var(--bg); padding: clamp(1.1rem, 2.6vw, 1.5rem); }
.career .mini-stats b { display: block; font-family: var(--font-display); font-weight: 900; font-size: clamp(1.5rem, 3.4vw, 2.2rem); color: var(--amber); line-height: 0.95; }
.career .mini-stats span { display: block; margin-top: 0.4rem; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.11em; text-transform: uppercase; color: var(--ink-2); line-height: 1.4; }

/* ---------- home: movie end-credits roll inside a cinema screen (pure CSS, no JS) ---------- */
/* widen the crop (2:1 letterbox via object-fit cover, NOT a scaled-up 16:9) so it fills wide browsers; cap+vw keeps it filling 1280-1920 */
.theater { position: relative; isolation: isolate; background: var(--bg-2); overflow: hidden; max-width: min(95vw, 1640px); aspect-ratio: 2 / 1; margin-inline: auto; }
.theater-bg { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.theater-fade {
  position: absolute; inset: -1px; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, var(--bg-2), transparent 9%, transparent 92%, var(--bg-2)),
    linear-gradient(90deg, var(--bg-2), transparent 5%, transparent 95%, var(--bg-2));
}
/* the "screen" sits exactly over the white screen in the photo (measured box) — solid PURE BLACK, no bleed */
.theater-screen {
  position: absolute; left: 14.3%; top: 12.2%; width: 71.4%; height: 81.2%;
  z-index: 2; overflow: hidden; container-type: size;
  background: #000;
}
/* credits fade in/out ONLY against the black screen (a black gradient over the credits, not a mask on the frame) */
.theater-screen::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(180deg, #000 0, transparent 14%, transparent 86%, #000 100%);
}
.credits-track {
  position: absolute; left: 0; right: 0; top: 100%;
  text-align: center; padding-inline: 4%;
  will-change: transform;
  animation: credits-roll 65s linear infinite;
}
.theater-screen:hover .credits-track,
.theater-screen:focus-within .credits-track { animation-play-state: paused; }
@keyframes credits-roll {
  from { transform: translateY(0); }
  to   { transform: translateY(calc(-100% - 100cqh)); }
}
.roll-title { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(1.8rem, 5vw, 3.3rem); color: var(--ink); line-height: 1; margin: 0; max-width: none; }
.roll-sub { font-family: var(--font-mono); font-size: clamp(0.7rem, 1.35vw, 0.92rem); letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin: 0.7rem 0 0; max-width: none; }
.credits-group { margin-top: clamp(2rem, 4.4vw, 3.5rem); }
.credits-group .role { font-family: var(--font-mono); font-size: clamp(0.72rem, 1.5vw, 1rem); letter-spacing: 0.24em; text-transform: uppercase; color: var(--amber); margin: 0 0 0.9rem; max-width: none; }
.credits-group ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.credits-group li { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(1.25rem, 3.2vw, 2.15rem); letter-spacing: 0.02em; color: var(--ink); line-height: 1.05; max-width: none; }
.credits-group li span { display: block; font-family: var(--font-mono); font-weight: 400; font-size: clamp(0.66rem, 1.25vw, 0.88rem); letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-2); margin-top: 0.2rem; }
.credits-honor { margin-top: clamp(2rem, 4.4vw, 3.5rem); }
.credits-honor b { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; color: var(--amber); font-size: clamp(1.4rem, 3.3vw, 2.35rem); display: block; line-height: 1.04; max-width: none; }
.credits-honor span { font-family: var(--font-mono); font-size: clamp(0.68rem, 1.25vw, 0.88rem); letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-2); display: block; margin-top: 0.4rem; max-width: none; }
.credits-end { margin-bottom: 3.5rem; }
.credits-hint { margin: 1.1rem 0 0; text-align: center; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }

@media (max-width: 760px) {
  .theater { max-width: none; aspect-ratio: auto; }
  .theater-bg, .theater-fade { display: none; }
  .theater-screen { position: relative; left: auto; top: auto; width: 100%; height: clamp(460px, 74vh, 600px); }
}
@media (prefers-reduced-motion: reduce) {
  .theater { aspect-ratio: auto; }
  .theater-bg, .theater-fade { display: none; }
  .theater-screen {
    position: relative; left: auto; top: auto; width: 100%; height: auto; overflow: visible;
    container-type: normal; padding-block: clamp(2.5rem, 6vw, 4rem); background: #000;
  }
  .theater-screen::after { display: none; }
  .credits-track { position: static; animation: none; transform: none; top: auto; padding-inline: var(--gutter); }
}
