/* ============================================================
   PRODUCTION BOSS — Main Stylesheet
   Brand Book v3.0 (2026)
   ============================================================ */

/* ===== TOKENS ===== */
:root {
    --ink: #0E0E0E;
    --iron: #1F1F1F;
    --steel: #2A2A2A;
    --smoke: #6E6E6E;
    --ash: #9A9A9A;
    --bone: #F2EEE3;
    --paper: #FAF7F0;
    --signal: #DD4124;
    --signal-dim: #B83518;

    --line-light: rgba(242, 238, 227, 0.10);
    --line-dark: rgba(14, 14, 14, 0.10);

    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'IBM Plex Mono', 'SF Mono', monospace;

    --max: 1400px;
    --max-narrow: 920px;
    --gut: clamp(20px, 5vw, 80px);

    --header-h: 72px;
    --strip-h: 32px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-snap: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
body {
    background: var(--ink);
    color: var(--bone);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    font-feature-settings: 'ss01', 'cv11';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--signal); color: var(--bone); }

/* ===== ACCESSIBILITY ===== */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    padding: 12px 16px;
    background: var(--signal);
    color: var(--bone);
    z-index: 9999;
}
.skip-link:focus { left: 12px; top: 12px; }

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px; width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    word-wrap: normal !important;
}

:focus-visible {
    outline: 2px solid var(--signal);
    outline-offset: 2px;
}

/* ===== CONTAINERS ===== */
.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gut);
}
.container.narrow { max-width: var(--max-narrow); }
.container.wide { max-width: 1600px; padding: 0 clamp(20px, 4vw, 56px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(14, 14, 14, 0.92);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid var(--line-light);
    transition: transform 0.35s var(--ease);
}
.site-header.is-hidden { transform: translateY(-100%); }

.site-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    padding: 0 var(--gut);
}

.site-header-brand {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 0.95;
    color: var(--bone);
}
.brand-mark { display: inline-flex; flex-direction: column; }
.brand-mark span:first-child { font-size: 13px; letter-spacing: 0.18em; color: var(--ash); }
.brand-mark span:last-child {
    font-size: 22px;
    letter-spacing: 0.02em;
    line-height: 1;
    display: flex;
    align-items: baseline;
}
.brand-mark i {
    color: var(--signal);
    font-style: normal;
    font-size: 28px;
    line-height: 0.6;
    margin-left: 2px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.site-nav .menu {
    display: flex;
    align-items: center;
    gap: 28px;
}
.site-nav .menu a {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ash);
    padding: 6px 0;
    position: relative;
    transition: color 0.2s var(--ease);
}
.site-nav .menu a::after {
    content: '';
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 1px;
    background: var(--signal);
    transition: right 0.3s var(--ease);
}
.site-nav .menu a:hover,
.site-nav .menu .current-menu-item a,
.site-nav .menu li.current-menu-item > a { color: var(--bone); }
.site-nav .menu a:hover::after,
.site-nav .menu .current-menu-item a::after { right: 0; }

.site-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--signal);
    color: var(--bone);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.site-nav-cta:hover { background: var(--signal-dim); transform: translateY(-1px); }
.site-nav-cta svg { transition: transform 0.2s var(--ease); }
.site-nav-cta:hover svg { transform: translateX(3px); }

/* mobile toggle */
.nav-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bone);
}
.nav-toggle-bars {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    width: 18px;
}
.nav-toggle-bars span {
    height: 1.5px;
    background: var(--bone);
    transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* header strip */
.site-header-strip {
    display: flex;
    height: var(--strip-h);
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--gut);
    background: var(--ink);
    border-top: 1px solid var(--line-light);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--smoke);
    gap: 16px;
    overflow: hidden;
}
.strip-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.strip-item i {
    width: 6px; height: 6px;
    background: var(--signal);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.8s ease-in-out infinite;
}
.pb-timecode {
    color: var(--signal);
    font-variant-numeric: tabular-nums;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    padding: clamp(80px, 12vw, 160px) var(--gut) clamp(60px, 8vw, 120px);
    min-height: calc(100vh - var(--header-h) - var(--strip-h));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
.hero-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    pointer-events: none;
    z-index: 0;
}
.hero-grid span {
    border-right: 1px solid var(--line-light);
}
.hero-grid span:last-child { border-right: none; }

.hero > * { position: relative; z-index: 1; }

.hero-slate {
    display: flex;
    gap: 32px;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ash);
    margin-bottom: clamp(40px, 6vw, 72px);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line-light);
}
.hero-slate .slate-num { color: var(--signal); }
.hero-slate .slate-meta { margin-left: auto; }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(72px, 16vw, 240px);
    line-height: 0.86;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: var(--bone);
    margin-bottom: 32px;
}
.hero-line {
    display: block;
    overflow: hidden;
}
.hero-line em {
    font-style: italic;
    color: var(--signal);
    font-family: var(--font-display);
}
.hero-title i.dot {
    color: var(--signal);
    font-style: normal;
}

.hero-foot {
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 40px;
    align-items: end;
    padding-top: 32px;
    border-top: 1px solid var(--line-light);
}
.hero-foot-lead p {
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.55;
    color: var(--ash);
    max-width: 540px;
}
.hero-foot-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
    transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
    cursor: pointer;
}
.btn svg { transition: transform 0.25s var(--ease); }
.btn-primary {
    background: var(--signal);
    color: var(--bone);
}
.btn-primary:hover {
    background: var(--signal-dim);
    transform: translateY(-2px);
}
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
    background: transparent;
    color: var(--bone);
    border: 1px solid var(--line-light);
}
.btn-ghost:hover {
    border-color: var(--signal);
    color: var(--signal);
}
.btn-ghost-light {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line-dark);
}
.btn-ghost-light:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }

/* ============================================================
   MANIFEST
   ============================================================ */
.manifest {
    padding: clamp(80px, 12vw, 160px) 0;
    background: var(--bone);
    color: var(--ink);
    border-top: 1px solid var(--line-light);
}
.manifest .eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--signal);
    margin-bottom: 40px;
}
.manifest-lines {
    display: flex;
    flex-direction: column;
    gap: clamp(4px, 0.6vw, 8px);
}
.m-line {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.5vw, 64px);
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--ink);
    opacity: 0;
    transform: translateY(20px);
}
.manifest.is-visible .m-line {
    animation: lineUp 0.7s var(--ease) forwards;
}
.manifest.is-visible .m-line:nth-child(1) { animation-delay: 0.1s; }
.manifest.is-visible .m-line:nth-child(2) { animation-delay: 0.2s; }
.manifest.is-visible .m-line:nth-child(3) { animation-delay: 0.3s; }
.manifest.is-visible .m-line:nth-child(4) { animation-delay: 0.4s; }
.manifest.is-visible .m-line:nth-child(5) { animation-delay: 0.5s; }
.manifest.is-visible .m-line:nth-child(6) { animation-delay: 0.6s; }
.manifest.is-visible .m-line:nth-child(7) { animation-delay: 0.7s; color: var(--signal); }

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

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head {
    margin-bottom: clamp(40px, 5vw, 72px);
    max-width: 880px;
}
.section-head.split {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 32px;
    flex-wrap: wrap;
}

.slate {
    display: flex;
    gap: 32px;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ash);
    flex-wrap: wrap;
}
.light .slate { border-bottom-color: var(--line-dark); color: var(--smoke); }
.slate-num { color: var(--signal); }
.slate-meta { margin-left: auto; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 112px);
    line-height: 0.9;
    letter-spacing: 0.015em;
    text-transform: uppercase;
}
.section-title i {
    color: var(--signal);
    font-style: normal;
}

.lead {
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.5;
    color: var(--ash);
    margin-top: 24px;
    font-weight: 300;
    max-width: 680px;
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--smoke);
    margin-bottom: 16px;
}
.eyebrow.signal { color: var(--signal); }

/* ============================================================
   SECTOREN (homepage)
   ============================================================ */
.sectors {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--ink);
}
.sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line-light);
    border: 1px solid var(--line-light);
}
.sector-card {
    display: block;
    padding: 48px 40px;
    background: var(--ink);
    color: var(--bone);
    transition: background 0.4s var(--ease), color 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.sector-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 60px; height: 2px;
    background: var(--signal);
    transition: width 0.4s var(--ease);
}
.sector-card:hover { background: var(--iron); }
.sector-card:hover::before { width: 100%; }
.sector-card-num {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--signal);
    margin-bottom: 24px;
}
.sector-card-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 4vw, 60px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.sector-card-sub {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--smoke);
    margin-bottom: 24px;
}
.sector-card-text {
    color: var(--ash);
    font-size: 15px;
    margin-bottom: 32px;
}
.sector-card-arrow {
    color: var(--signal);
    font-size: 24px;
    transition: transform 0.3s var(--ease);
    display: inline-block;
}
.sector-card:hover .sector-card-arrow { transform: translateX(8px); }

/* ── Work Reel Marquee ───────────────────────────────────── */
.work-reel {
  overflow: hidden;
  background: #080808;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 0;
}
.reel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.reel-header .eyebrow {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .45;
}
.reel-header .link-mono {
  font-size: .75rem;
  opacity: .5;
  text-decoration: none;
  transition: opacity .2s;
}
.reel-header .link-mono:hover { opacity: 1; }
.reel-marquee {
  overflow: hidden;
  width: 100%;
}
.reel-track {
  display: flex;
  gap: 3px;
  width: max-content;
  animation: reel-scroll 55s linear infinite;
  will-change: transform;
}
.reel-track:hover { animation-play-state: paused; }
@keyframes reel-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.reel-slide {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 30vw;
  max-width: 520px;
  min-width: 260px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  text-decoration: none;
}
.reel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}
.reel-track:hover .reel-slide:hover img { transform: scale(1.05); }
.reel-slide-title {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.1rem 0.9rem;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, transparent 100%);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.reel-slide:hover .reel-slide-title { opacity: 1; transform: translateY(0); }
@media (max-width: 640px) {
  .reel-slide { width: 72vw; min-width: 220px; }
  .reel-header { padding: 1rem 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  .reel-track { animation: none; }
}

.link-mono {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ash);
    padding: 6px 0;
    border-bottom: 1px solid var(--line-light);
    transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.link-mono:hover {
    color: var(--signal);
    border-bottom-color: var(--signal);
}
.link-mono svg { transition: transform 0.25s var(--ease); }
.link-mono:hover svg { transform: translateX(4px); }

/* ============================================================
   BRAND ARCHITECTUUR
   ============================================================ */
.arch-section {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--bone);
    color: var(--ink);
}
.arch-section .lead { color: var(--smoke); }
.arch-section .slate {
    border-bottom-color: var(--line-dark);
    color: var(--smoke);
}

.arch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.arch-card {
    border: 1px solid var(--line-dark);
    padding: clamp(28px, 3vw, 40px);
    background: var(--paper);
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.arch-card:hover { transform: translateY(-4px); border-color: var(--signal); }
.arch-card.primary {
    background: var(--ink);
    color: var(--bone);
    border-color: var(--signal);
}
.arch-card.primary .arch-meta { color: var(--ash); border-top-color: var(--line-light); }

.arch-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--signal);
    margin-bottom: 16px;
}
.arch-name {
    font-family: var(--font-display);
    font-size: clamp(38px, 4vw, 56px);
    line-height: 0.9;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.arch-name i { color: var(--signal); font-style: normal; }
.arch-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 28px;
}
.arch-card:not(.primary) .arch-desc { color: var(--smoke); }
.arch-meta {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--smoke);
    padding-top: 20px;
    border-top: 1px solid var(--line-dark);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--ink);
}
.process-list {
    display: flex;
    flex-direction: column;
}
.process-list li {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding: 32px 0;
    border-top: 1px solid var(--line-light);
    align-items: start;
}
.process-list li:last-child { border-bottom: 1px solid var(--line-light); }
.process-num {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1;
    color: var(--signal);
    letter-spacing: 0.02em;
}
.process-list h3 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.process-list p {
    color: var(--ash);
    max-width: 560px;
}

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pull-quote {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--iron);
    text-align: left;
}
.pq-text {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.1;
    letter-spacing: 0.015em;
    text-transform: uppercase;
    color: var(--bone);
    margin-bottom: 28px;
}
.pq-text::before {
    content: '"';
    color: var(--signal);
    margin-right: 0.1em;
}
.pq-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--smoke);
}

/* ============================================================
   PAGE HEADER (generic)
   ============================================================ */
.page-header {
    padding: clamp(80px, 10vw, 140px) 0 clamp(40px, 5vw, 80px);
    background: var(--ink);
}
.page-header.tall {
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.page-title {
    font-family: var(--font-display);
    font-size: clamp(56px, 9vw, 144px);
    line-height: 0.9;
    letter-spacing: 0.015em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.page-title.display { font-size: clamp(64px, 12vw, 180px); }
.page-title i { color: var(--signal); font-style: normal; }
.page-lead {
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.55;
    color: var(--ash);
    max-width: 680px;
    font-weight: 300;
}

/* ============================================================
   CASES GRID (archive)
   ============================================================ */
.cases-archive {
    padding: 60px 0 clamp(80px, 10vw, 140px);
    background: var(--ink);
}
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: clamp(16px, 2vw, 32px);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
}
.chip {
    display: inline-flex;
    padding: 8px 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ash);
    border: 1px solid var(--line-light);
    transition: all 0.2s var(--ease);
}
.chip:hover { color: var(--bone); border-color: var(--smoke); }
.chip.is-active {
    color: var(--bone);
    background: var(--signal);
    border-color: var(--signal);
}

/* ============================================================
   SINGLE CASE
   ============================================================ */
.case-single { background: var(--ink); }
.case-header {
    padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 60px);
}
.case-header-slate {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ash);
}
.case-header-slate .slate-num { color: var(--signal); }
.case-header-slate .slate-meta { margin-left: auto; color: var(--smoke); }

.case-title {
    font-family: var(--font-display);
    font-size: clamp(56px, 9vw, 144px);
    line-height: 0.88;
    letter-spacing: 0.015em;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.case-lead {
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.5;
    color: var(--ash);
    max-width: 720px;
    font-weight: 300;
}

.case-hero {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(20px, 3vw, 40px);
}
.case-hero img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.case-facts {
    padding: clamp(40px, 5vw, 60px) 0;
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    margin-top: clamp(40px, 5vw, 60px);
}
.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.facts-grid > div { display: flex; flex-direction: column; gap: 6px; }
.facts-wide { grid-column: span 4; padding-top: 24px; border-top: 1px dashed var(--line-light); }
.facts-grid dt {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--smoke);
}
.facts-grid dd { color: var(--bone); font-size: 16px; }

.case-video {
    padding: clamp(40px, 5vw, 80px) 0;
}
.video-wrap {
    aspect-ratio: 16 / 9;
    width: 100%;
    background: var(--steel);
    border: 1px solid var(--line-light);
    overflow: hidden;
}
.video-wrap iframe { width: 100%; height: 100%; border: 0; }

.related-cases {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--iron);
}

/* ============================================================
   CONTENT (prose)
   ============================================================ */
.content-section {
    padding: clamp(60px, 8vw, 120px) 0;
    background: var(--ink);
}
.prose {
    color: var(--bone);
    font-size: 17px;
    line-height: 1.7;
}
.prose > * + * { margin-top: 1em; }
.prose h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 1.6em 0 0.6em;
}
.prose h3 {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin: 1.4em 0 0.5em;
}
.prose h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--signal);
    margin: 1.4em 0 0.5em;
}
.prose p { color: var(--ash); }
.prose a {
    color: var(--bone);
    border-bottom: 1px solid var(--signal);
    transition: color 0.2s;
}
.prose a:hover { color: var(--signal); }
.prose ul, .prose ol { padding-left: 1.5em; color: var(--ash); }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose blockquote {
    border-left: 3px solid var(--signal);
    padding-left: 24px;
    margin: 32px 0;
    font-size: 20px;
    color: var(--bone);
    font-style: italic;
}
.prose img, .prose video { margin: 32px 0; border: 1px solid var(--line-light); }
.prose code {
    font-family: var(--font-mono);
    font-size: 0.9em;
    background: var(--iron);
    color: var(--signal);
    padding: 2px 6px;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-block {
    padding: clamp(40px, 5vw, 80px) 0;
    border-top: 1px solid var(--line-light);
}
.service-block:first-of-type { border-top: none; padding-top: 0; }
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(32px, 5vw, 80px);
}
.service-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 72px);
    line-height: 0.92;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-top: 12px;
}
.service-title i { color: var(--signal); font-style: normal; }
.service-body p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ash);
    margin-bottom: 28px;
}
.service-specs {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line-light);
}
.service-specs li {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.service-specs li span:first-child { color: var(--smoke); }
.service-specs li span:last-child { color: var(--bone); text-align: right; }

.alt-section {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--bone);
    color: var(--ink);
}
.alt-section .lead { color: var(--smoke); }
.alt-section .section-title i { color: var(--signal); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-block {
    padding: clamp(40px, 5vw, 64px) 0;
    border-top: 1px solid var(--line-light);
}
.about-block:first-of-type { border-top: none; padding-top: 0; }
.h-rule {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--signal);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line-light);
}
.about-block p {
    color: var(--ash);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 680px;
}
.bigquote {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.1;
    letter-spacing: 0.015em;
    text-transform: uppercase;
    color: var(--bone);
    border: none;
    padding: 0;
    margin: 0;
    font-style: normal;
}

.values-list {
    display: grid;
    gap: 0;
}
.values-list li {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line-light);
}
.values-list li:last-child { border-bottom: none; }
.v-num {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 1;
    color: var(--signal);
}
.values-list h3 {
    font-family: var(--font-display);
    font-size: 26px;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.person-card {
    padding: 32px;
    border: 1px solid var(--line-light);
    transition: border-color 0.3s var(--ease);
}
.person-card:hover { border-color: var(--signal); }
.person-card.muted { border-style: dashed; opacity: 0.7; }
.person-num {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    color: var(--signal);
    margin-bottom: 16px;
}
.person-card h3 {
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.person-role {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ash);
    margin-bottom: 16px;
}

.kit-list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line-light);
}
.kit-list li {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-light);
    font-size: 14px;
}
.kit-list li span:first-child {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--smoke);
    align-self: center;
}
.kit-list li span:last-child { color: var(--bone); }
.kit-list li a { color: var(--bone); border-bottom: 1px solid var(--signal); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 6vw, 80px);
}

.contact-direct { display: flex; flex-direction: column; gap: 12px; }

.contact-block {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px;
    padding: 24px 28px;
    border: 1px solid var(--line-light);
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
    color: var(--bone);
    position: relative;
}
a.contact-block:hover { border-color: var(--signal); background: var(--iron); }
.contact-label {
    grid-column: 1;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--smoke);
}
.contact-value {
    grid-column: 1;
    font-family: var(--font-display);
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--bone);
    margin-top: 6px;
}
.contact-sub {
    grid-column: 1;
    font-size: 13px;
    color: var(--ash);
    margin-top: 6px;
}
.contact-arrow {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    color: var(--signal);
    font-size: 20px;
    transition: transform 0.3s var(--ease);
}
a.contact-block:hover .contact-arrow { transform: translateX(6px); }
.contact-block.static { cursor: default; }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-row span {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--smoke);
}
.form-row input,
.form-row select,
.form-row textarea {
    background: var(--iron);
    border: 1px solid var(--line-light);
    padding: 14px 16px;
    color: var(--bone);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.2s var(--ease);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--signal);
}
.form-row textarea { resize: vertical; min-height: 120px; font-family: var(--font-body); }
.form-row select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--ash) 50%),
                      linear-gradient(135deg, var(--ash) 50%, transparent 50%);
    background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 40px;
}
.form-note {
    font-size: 12px;
    color: var(--smoke);
    margin-top: 8px;
}
.form-note a { color: var(--signal); }

/* ============================================================
   ERROR PAGE
   ============================================================ */
.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}

/* ============================================================
   SEARCH RESULTS
   ============================================================ */
.search-results { display: grid; gap: 32px; }
.search-result {
    padding: 24px 0;
    border-bottom: 1px solid var(--line-light);
}
.search-type {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--signal);
    margin-bottom: 8px;
}
.search-result h2 {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.search-result a:hover { color: var(--signal); }
.search-result p { color: var(--ash); font-size: 15px; }

.search-form {
    display: flex;
    margin-top: 24px;
    border: 1px solid var(--line-light);
    max-width: 480px;
}
.search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 16px;
    color: var(--bone);
    font-family: var(--font-body);
    font-size: 15px;
}
.search-input:focus { outline: none; }
.search-submit {
    padding: 0 18px;
    background: var(--signal);
    color: var(--bone);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    margin-top: 64px;
    display: flex;
    justify-content: center;
}
.pagination .nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}
.pagination a, .pagination .current {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    padding: 10px 14px;
    border: 1px solid var(--line-light);
    color: var(--ash);
    transition: all 0.2s var(--ease);
}
.pagination a:hover { color: var(--bone); border-color: var(--smoke); }
.pagination .current {
    color: var(--bone);
    background: var(--signal);
    border-color: var(--signal);
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
    padding: 60px 0;
    text-align: center;
    color: var(--ash);
    font-size: 16px;
    border: 1px dashed var(--line-light);
}

/* ============================================================
   POST CARD (blog index)
   ============================================================ */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}
.post-card {
    border: 1px solid var(--line-light);
    transition: border-color 0.3s var(--ease);
}
.post-card:hover { border-color: var(--signal); }
.post-card-thumb img {
    width: 100%; aspect-ratio: 16/9; object-fit: cover;
}
.post-card-body { padding: 24px; }
.post-card-date {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    color: var(--signal);
}
.post-card-title {
    font-family: var(--font-display);
    font-size: 26px;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 8px 0 12px;
}
.post-card-title a:hover { color: var(--signal); }

.post-hero {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(20px, 3vw, 40px);
}
.post-hero img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--ink);
    border-top: 1px solid var(--line-light);
}
.footer-cta {
    padding: clamp(100px, 14vw, 180px) var(--gut);
    text-align: center;
    border-bottom: 1px solid var(--line-light);
    background:
        radial-gradient(circle at 50% 100%, rgba(221, 65, 36, 0.08) 0%, transparent 60%),
        var(--ink);
}
.footer-cta-inner { max-width: 720px; margin: 0 auto; }
.footer-cta-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--signal);
    margin-bottom: 32px;
}
.footer-cta-title {
    font-family: var(--font-display);
    font-size: clamp(60px, 10vw, 144px);
    line-height: 0.88;
    letter-spacing: 0.015em;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.footer-cta-title span { color: var(--signal); }
.footer-cta-text {
    color: var(--ash);
    font-size: 17px;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 40px;
}
.footer-cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 48px;
    padding: clamp(60px, 8vw, 100px) var(--gut);
    max-width: var(--max);
    margin: 0 auto;
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 0.95;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--bone);
}
.footer-brand i { color: var(--signal); font-style: normal; }
.footer-tag {
    margin-top: 16px;
    color: var(--ash);
    font-size: 13px;
    max-width: 280px;
}
.footer-h {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--smoke);
    margin-bottom: 20px;
}
.footer-list { display: flex; flex-direction: column; gap: 8px; }
.footer-list a, .footer-list li {
    font-size: 14px;
    color: var(--ash);
    transition: color 0.2s var(--ease);
}
.footer-list a:hover { color: var(--signal); }
.footer-list-muted { color: var(--smoke); font-size: 13px; line-height: 1.6; }

.footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px var(--gut);
    border-top: 1px solid var(--line-light);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--smoke);
    gap: 16px;
}
.footer-meta-center { text-align: center; }
.footer-meta-right { text-align: right; color: var(--signal); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    will-change: opacity, transform;
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
    .strip-item i { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 840px) {
    :root {
        --header-h: 64px;
        --strip-h: 0px;
    }
    .site-header-strip { display: none; }

    .nav-toggle { display: inline-flex; }
    .site-nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        bottom: 0;
        background: var(--ink);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 32px var(--gut);
        gap: 24px;
        transform: translateY(-110%);
        transition: transform 0.4s var(--ease);
        border-bottom: 1px solid var(--line-light);
        overflow-y: auto;
    }
    .site-nav.is-open { transform: translateY(0); }
    .site-nav .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
    }
    .site-nav .menu a {
        font-family: var(--font-display);
        font-size: 32px;
        letter-spacing: 0.02em;
        color: var(--bone);
        line-height: 1;
        padding: 8px 0;
    }
    .site-nav .menu a::after { display: none; }
    .site-nav-cta {
        width: 100%;
        justify-content: center;
        padding: 18px;
        margin-top: 16px;
    }

    .hero-foot {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero-foot-cta { justify-content: flex-start; }

    .sector-grid {
        grid-template-columns: 1fr;
    }
    .cinema-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .arch-grid {
        grid-template-columns: 1fr;
    }
    .service-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .facts-grid {
        grid-template-columns: 1fr 1fr;
    }
    .facts-wide { grid-column: span 2; }
    .people-grid { grid-template-columns: 1fr; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand { grid-column: 1 / -1; }
    .footer-meta {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .footer-meta-right { text-align: center; }

    .process-list li {
        grid-template-columns: 60px 1fr;
        gap: 16px;
    }

    .hero-slate, .case-header-slate {
        gap: 16px;
        font-size: 10px;
    }
    .hero-slate .slate-meta, .case-header-slate .slate-meta { margin-left: 0; }
}

@media (max-width: 520px) {
    .cinema-strip {
        grid-template-columns: 1fr;
    }
    .facts-grid {
        grid-template-columns: 1fr;
    }
    .facts-wide { grid-column: 1; }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .values-list li {
        grid-template-columns: 40px 1fr;
        gap: 12px;
    }
    .v-num { font-size: 28px; }
}


/* ============================================================
HERO BACKGROUND VIDEO
============================================================ */

/* Video sits behind all hero content */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
  /* Fade in smoothly once loaded, avoids flash */
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-bg-video.is-loaded {
  opacity: 1;
}

/* Gradient overlay: dark-left (text legible) → lighter right (video visible)
   + bottom darkening so footer CTA stays readable */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(14, 14, 14, 0.90) 0%,
      rgba(14, 14, 14, 0.68) 30%,
      rgba(14, 14, 14, 0.28) 62%,
      rgba(14, 14, 14, 0.42) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(14, 14, 14, 0.10) 0%,
      rgba(14, 14, 14, 0.65) 100%
    );
}

/* Bump all existing hero children above the overlay */
.hero > *:not(.hero-bg-video):not(.hero-video-overlay) {
  position: relative;
  z-index: 2;
}

/* Mobile: full dark overlay, video still visible but subtler */
@media (max-width: 840px) {
  .hero-video-overlay {
    background: rgba(14, 14, 14, 0.78);
  }
}

/* Respect reduced-motion: freeze video visually */
@media (prefers-reduced-motion: reduce) {
  .hero-bg-video {
    opacity: 0 !important;
  }
}

/* ── Reels Pitch ────────────────────────────────────────────────── */
.reels-pitch {
  padding: 7rem 0;
  background: #111;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.reels-pitch .container { max-width: 52rem; }
.reels-pitch .eyebrow {
  display: block;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .5;
  margin-bottom: 1.5rem;
}
.reels-pitch .section-title { margin-bottom: 1.5rem; }
.reels-pitch .lead {
  max-width: 46ch;
  margin-bottom: 2.5rem;
  opacity: .7;
}
@media (max-width: 640px) {
  .reels-pitch { padding: 4.5rem 0; }
}
