/* ==========================================================================
   Spilanth Studio — cinematic red design system
   Original stylesheet. No third-party themes, no watermarks.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink: #0A0809;
  --ink-raised: #171112;
  --ink-soft: #201718;
  --surface: #FFF8F5;
  --surface-muted: #F2E6E1;
  --paper: #FFFFFF;

  --red-900: #68090C;
  --red-700: #A90E17;
  --red-600: #D51D29;
  --red-500: #F02D3A;
  --red-300: #FF9A9F;
  --red-100: #FFE1E2;

  --text: #161011;
  --text-muted: #675C5D;
  --text-on-ink: #FBF3F1;
  --text-on-ink-muted: #B4A5A5;

  --line-dark: rgba(255, 255, 255, .16);
  --line-light: #E4D6D1;
  --success: #0D7A4D;
  --danger: #C61E2A;
  --shadow-red: 0 24px 70px rgba(169, 14, 23, .22);
  --shadow-deep: 0 30px 80px rgba(0, 0, 0, .55);
  --bg-red-gradient: radial-gradient(ellipse 90% 65% at 50% 46%,
    #BA0E0A 0%, #A60C09 14%, #8C0C08 28%, #701009 42%,
    #560E09 56%, #3D0B08 70%, #260808 84%, #120505 100%);

  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --wordmark: "Audiowide", "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body: "Instrument Sans", "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --wrap: 1240px;
  --gutter: 20px;
  --radius: 4px;
  --t: 240ms cubic-bezier(.2, .7, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-red-gradient);
  background-attachment: fixed;
  background-color: #120505;
  color: var(--text-on-ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: .002em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; line-height: .98; letter-spacing: -.022em; margin: 0; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }

::selection { background: var(--red-600); color: #fff; }

:focus-visible {
  outline: 3px solid var(--red-500);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--red-600); color: #fff; padding: 12px 18px; font-weight: 700;
}
.skip:focus { left: 12px; top: 12px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: 104px 0; position: relative; }
.section--tight { padding: 72px 0; }
.section--ink { background: transparent; }
.section--raised { background: transparent; }
.section--light { background: var(--surface); color: var(--text); }
.section--light h1, .section--light h2, .section--light h3 { color: var(--text); }

/* film grain + vignette, purely CSS/SVG — no stock imagery */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 60; opacity: .30;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.glow {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(213, 29, 41, .34) 0%, rgba(213, 29, 41, 0) 68%);
  filter: blur(6px);
}

/* ---------- Signature device: the slate strip ---------- */
.slate {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--red-300); margin-bottom: 22px;
}
.section--light .slate { color: var(--red-700); }
.slate::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--red-500); box-shadow: 0 0 0 4px rgba(240, 45, 58, .18);
  animation: rec 2.4s steps(1, end) infinite;
}
.slate span { color: var(--text-on-ink-muted); }
.section--light .slate span { color: var(--text-muted); }
.slate .rule { flex: 1; min-width: 40px; height: 1px; background: var(--line-dark); }
.section--light .slate .rule { background: var(--line-light); }
@keyframes rec { 0%, 55% { opacity: 1; } 56%, 100% { opacity: .25; } }

/* sprocket / film-edge divider echoing the logo */
.sprockets {
  height: 18px; width: 100%;
  background:
    repeating-linear-gradient(90deg, var(--text-on-ink) 0 14px, transparent 14px 34px);
  opacity: .18;
}
.sprockets--red { background: repeating-linear-gradient(90deg, var(--red-600) 0 14px, transparent 14px 34px); opacity: .5; }

/* ---------- Type scale ---------- */
.display {
  font-family: var(--display);
  font-size: clamp(2.6rem, 8.2vw, 6.4rem);
  font-weight: 800;
  line-height: .93;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.h2 { font-size: clamp(2rem, 4.6vw, 3.5rem); text-transform: uppercase; letter-spacing: -.028em; }
.h3 { font-size: clamp(1.3rem, 2.3vw, 1.75rem); letter-spacing: -.02em; }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--text-on-ink-muted); max-width: 62ch; }
.section--light .lede { color: var(--text-muted); }
.section--light .card { background: var(--surface); }
.section--light .card:hover { background: var(--paper); }
.section--light .cards { background: var(--line-light); border-color: var(--line-light); }
.section--light .card p { color: var(--text-muted); }
.section--light .card__go { color: var(--text); }
.section--light .faq summary { color: var(--text); }
.section--light .meta { color: var(--text-muted); }
.eyebrow { font-family: var(--mono); font-size: 11.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--red-500); }
.red { color: var(--red-500); }
.section--light .red { color: var(--red-700); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 13px 26px; border-radius: var(--radius);
  font-family: var(--mono); font-size: 12.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  border: 1px solid transparent; cursor: pointer;
  transition: transform var(--t), background var(--t), border-color var(--t), box-shadow var(--t), color var(--t);
}
.btn:hover { transform: translateY(-2px); }
.btn--red { background: var(--red-600); color: #fff; box-shadow: var(--shadow-red); }
.btn--red:hover { background: var(--red-500); }
.btn--ghost { border-color: var(--line-dark); color: var(--text-on-ink); background: rgba(255, 255, 255, .03); }
.btn--ghost:hover { border-color: var(--red-500); color: #fff; background: rgba(240, 45, 58, .12); }
.section--light .btn--ghost { border-color: var(--line-light); color: var(--text); background: transparent; }
.section--light .btn--ghost:hover { border-color: var(--red-700); color: var(--red-700); background: var(--red-100); }
.btn--wide { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.textlink {
  font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; color: var(--red-500); display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(240, 45, 58, .35); padding-bottom: 3px;
  transition: gap var(--t), border-color var(--t);
}
.textlink:hover { gap: 14px; border-color: var(--red-500); }
.section--light .textlink { color: var(--red-700); border-color: rgba(169, 14, 23, .3); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background var(--t), border-color var(--t), backdrop-filter var(--t);
}
.site-header.is-stuck {
  background: rgba(30, 6, 6, .90);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-dark);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 40px; width: auto; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 15px; letter-spacing: .14em; text-transform: uppercase; line-height: 1.1; }
.brand-name small { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: .2em; color: var(--text-on-ink-muted); font-weight: 400; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a, .nav button.nav-trigger {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 14px; text-decoration: none; border-radius: var(--radius);
  font-size: 14px; font-weight: 500; letter-spacing: .01em;
  background: none; border: 0; cursor: pointer;
  transition: color var(--t), background var(--t);
}
.nav a:hover, .nav button.nav-trigger:hover { color: var(--red-500); background: rgba(255, 255, 255, .05); }
.nav a[aria-current="page"] { color: var(--red-500); }
.nav-item { position: relative; }
.nav-trigger svg { transition: transform var(--t); }
.nav-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }

.megamenu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-6px);
  width: min(640px, 78vw); padding: 12px; border-radius: 6px;
  background: var(--ink-raised); border: 1px solid var(--line-dark); box-shadow: var(--shadow-deep);
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; visibility: hidden; transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.megamenu[data-open="true"] { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.megamenu a { display: block; padding: 12px 14px; border-radius: var(--radius); }
.megamenu a strong { display: block; font-size: 14.5px; font-weight: 600; }
.megamenu a span { display: block; font-size: 12.5px; color: var(--text-on-ink-muted); line-height: 1.45; }
.megamenu a:hover span { color: var(--text-on-ink); }

.nav-cta { margin-left: 8px; }
.burger {
  display: none; width: 48px; height: 48px; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line-dark); border-radius: var(--radius); cursor: pointer;
}
.burger span { display: block; width: 20px; height: 2px; background: currentColor; position: relative; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor; }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }

/* mobile panel */
.mobile-panel {
  position: fixed; inset: 0; z-index: 120; background: var(--bg-red-gradient);
  display: flex; flex-direction: column; padding: 20px;
  transform: translateY(-100%); transition: transform 320ms cubic-bezier(.2,.7,.3,1);
  overflow-y: auto;
}
.mobile-panel[data-open="true"] { transform: translateY(0); }
.mobile-top { display: flex; align-items: center; justify-content: space-between; min-height: 56px; }
.mobile-close { width: 48px; height: 48px; border: 1px solid var(--line-dark); background: none; border-radius: var(--radius); cursor: pointer; font-size: 20px; }
.mobile-links { list-style: none; margin-top: 26px; }
.mobile-links li { border-bottom: 1px solid var(--line-dark); }
.mobile-links a {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 18px 2px; text-decoration: none; font-family: var(--display);
  font-size: 1.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: -.02em;
}
.mobile-links a i { font-family: var(--mono); font-style: normal; font-size: 11px; letter-spacing: .18em; color: var(--red-500); }
.mobile-sub { list-style: none; padding: 0 0 16px 2px; }
.mobile-sub a { font-family: var(--body); font-size: 15px; font-weight: 500; text-transform: none; letter-spacing: 0; padding: 10px 0; border: 0; }
.mobile-foot { margin-top: auto; padding-top: 28px; display: grid; gap: 12px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 168px 0 96px; overflow: hidden; }
.hero .glow.g1 { width: 720px; height: 720px; top: -240px; right: -180px; }
.hero .glow.g2 { width: 520px; height: 520px; bottom: -280px; left: -200px; opacity: .7; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--red-500); }
.hero-meta {
  margin-top: 38px; display: flex; flex-wrap: wrap; gap: 10px 26px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-on-ink-muted);
}
.hero-meta b { color: var(--text-on-ink); font-weight: 500; }

/* the slate card — hero signature */
.slate-card {
  background: linear-gradient(160deg, var(--ink-raised), #100B0C);
  border: 1px solid var(--line-dark); border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.slate-card__top {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  background: repeating-linear-gradient(115deg, var(--surface) 0 26px, var(--ink) 26px 52px);
  color: var(--ink);
}
.slate-card__top strong {
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  background: var(--red-600); color: #fff; padding: 5px 10px; border-radius: 2px;
}
.slate-card__body { padding: 26px 22px 24px; }
.slate-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.slate-rows div { background: var(--ink-raised); padding: 14px 16px; }
.slate-rows dt { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-on-ink-muted); margin-bottom: 6px; }
.slate-rows dd { margin: 0; font-family: var(--display); font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: -.01em; }
.slate-tc {
  margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  font-family: var(--mono); font-size: 13px; letter-spacing: .16em; color: var(--red-300);
  border-top: 1px solid var(--line-dark); padding-top: 16px;
}
.slate-tc b { color: var(--text-on-ink); font-weight: 500; }
.slate-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.slate-logo img { height: 78px; width: auto; }
.slate-logo p { margin: 0; font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-on-ink-muted); }

/* slate card variant that houses a real video (director's clap, holding real footage) */
.slate-card__title { margin-left: auto; font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); opacity: .7; }
.slate-card__video { position: relative; aspect-ratio: 16 / 9; background: #000; }
.slate-card__video video { width: 100%; height: 100%; display: block; background: #000; object-fit: contain; }
.slate-card__video--portrait { aspect-ratio: 9 / 16; max-width: 360px; margin-left: auto; margin-right: auto; }

/* ---------- Hero scroll-scrub (featured reel) ---------- */
.hero-scrub { position: relative; }
.hero-scrub__pin {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  padding: 128px 0 84px;
}
.hero-scrub__media { position: absolute; inset: 0; z-index: 0; background: #050404; }
.hero-scrub__poster, .hero-scrub__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; display: block;
}
.hero-scrub__poster { object-fit: cover; }
.hero-scrub__canvas { opacity: 0; transition: opacity 320ms ease; }
.hero-scrub.is-ready .hero-scrub__canvas { opacity: 1; }
.hero-scrub.is-ready .hero-scrub__poster { opacity: 0; }
.hero-scrub__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,8,9,.80) 0%, rgba(10,8,9,.30) 42%, rgba(10,8,9,.38) 68%, rgba(10,8,9,.94) 100%),
    linear-gradient(90deg, rgba(10,8,9,.55) 0%, rgba(10,8,9,0) 46%);
}
.hero-scrub .glow { z-index: 1; }
.hero-scrub .glow.g1 { width: 640px; height: 640px; top: -220px; right: -160px; }
.hero-scrub .glow.g2 { width: 480px; height: 480px; bottom: -260px; left: -180px; opacity: .55; }
.hero-scrub__overlay {
  position: relative; z-index: 2;
  transition: opacity 220ms linear, transform 220ms linear;
}
.hero-scrub__overlay h1 { margin-bottom: 22px; }
.hero-scrub__overlay h1 em { font-style: normal; color: var(--red-500); }
.hero-scrub__hint {
  position: absolute; left: 50%; bottom: 56px; z-index: 2; transform: translateX(-50%);
  margin: 0; font-family: var(--mono); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-on-ink-muted); opacity: 0; transition: opacity 320ms ease 200ms;
  display: flex; align-items: center; gap: 10px;
}
.hero-scrub.is-ready .hero-scrub__hint { opacity: 1; }
.hero-scrub__hint.is-hidden { opacity: 0 !important; transition-delay: 0s; }
.hero-scrub__hint::after {
  content: ""; width: 1px; height: 16px; background: var(--red-500);
  animation: scrub-hint 1.6s ease-in-out infinite;
}
@keyframes scrub-hint { 0%, 100% { transform: translateY(0); opacity: .4; } 50% { transform: translateY(6px); opacity: 1; } }
.hero-scrub__foot {
  position: absolute; left: 0; right: 0; bottom: 22px; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  padding-inline: max(20px, calc((100% - var(--wrap)) / 2 + 20px));
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-on-ink-muted);
  opacity: 0; transition: opacity 300ms ease;
}
.hero-scrub.is-ready .hero-scrub__foot { opacity: 1; }
.hero-scrub__count { color: var(--red-300); font-variant-numeric: tabular-nums; }
.hero-scrub__progress { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; z-index: 2; background: var(--line-dark); }
.hero-scrub__progress span { display: block; height: 100%; width: 0%; background: var(--red-600); }

/* Baseline (no JS / reduced motion / save-data): a normal-height static hero, no scroll-jacking */
.hero-scrub__pin { position: relative; }

/* Enhanced: JS confirmed canvas + motion is allowed, so pin and give scroll room to scrub through */
.hero-scrub.js-scrub { height: 320vh; }
.hero-scrub.js-scrub .hero-scrub__pin { position: sticky; top: 0; height: 100vh; min-height: 0; padding-bottom: 64px; }

@media (max-width: 900px) {
  .hero-scrub.js-scrub { height: 260vh; }
  .hero-scrub__pin { padding: 108px 0 74px; }
  .hero-scrub__foot { padding-inline: 20px; }
}
@media (max-width: 640px) {
  .hero-scrub.js-scrub { height: 220vh; }
  .hero-scrub__hint { bottom: 74px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scrub.js-scrub { height: auto; }
  .hero-scrub.js-scrub .hero-scrub__pin { position: relative; height: auto; min-height: 100vh; }
}

/* ---------- Hero wordmark (full-page glowing brand statement) ---------- */
.hero-scrub__wordmark {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 30px;
  padding: 0 20px; text-align: center;
}
.hero-scrub__brand {
  margin: 0; font-family: var(--wordmark); font-weight: 400; text-transform: uppercase;
  font-size: clamp(3.6rem, 15vw, 13.5rem); line-height: 1.02; letter-spacing: -.02em;
  color: var(--text-on-ink);
  text-shadow: 0 0 6px rgba(255,255,255,.22), 0 0 46px rgba(255,255,255,.16), 0 0 90px rgba(240,45,58,.20);
}
.hero-scrub__brand span {
  display: block; font-family: var(--wordmark); font-size: .26em; letter-spacing: .3em; font-weight: 400;
  margin-top: .34em; color: var(--text-on-ink-muted);
  text-shadow: 0 0 30px rgba(255,255,255,.12);
}
.hero-scrub__tagline {
  margin: 0; font-family: var(--mono); font-size: clamp(1.9rem, 4.8vw, 3rem);
  letter-spacing: .28em; text-transform: uppercase; font-weight: 500;
  color: var(--text-on-ink);
}
@media (max-width: 640px) {
  .hero-scrub__wordmark { gap: 32px; }
}

/* ---------- Section heading block ---------- */
.head { max-width: 760px; margin-bottom: 52px; }
.head--split { max-width: none; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: end; }
.head p { margin-top: 18px; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.card {
  background: var(--ink); padding: 0; text-decoration: none; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: background var(--t), transform var(--t);
}
.card::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px; background: var(--red-600);
  transform: scaleX(0); transform-origin: left; transition: transform 320ms cubic-bezier(.2,.7,.3,1);
  z-index: 2;
}
.card:hover { background: var(--ink-raised); }
.card:hover::after { transform: scaleX(1); }
.card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink-raised); }
.card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 480ms cubic-bezier(.2,.7,.3,1);
}
.card:hover .card__media img { transform: scale(1.045); }
.card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,9,0) 55%, rgba(10,8,9,.85) 100%);
}
.card__body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.card__tc { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; color: var(--red-500); margin-bottom: 18px; }
.card h3 { font-size: 1.42rem; text-transform: uppercase; margin-bottom: 12px; }
.card p { color: var(--text-on-ink-muted); font-size: 15px; margin-bottom: 22px; }
.card__go { margin-top: auto; font-family: var(--mono); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-on-ink); display: inline-flex; gap: 8px; align-items: center; transition: gap var(--t); }
.card:hover .card__go { gap: 14px; color: var(--red-500); }

/* ---------- Capability strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); border-block: 1px solid var(--line-dark); }
.stat { background: var(--ink); padding: 34px 24px; }
.stat b { display: block; font-family: var(--display); font-size: clamp(1.7rem, 3.4vw, 2.7rem); font-weight: 800; letter-spacing: -.03em; color: var(--text-on-ink); }
.stat span { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-on-ink-muted); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--flip .split__media { order: -1; }
.panel {
  position: relative; aspect-ratio: 4 / 3; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--line-dark);
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(240, 45, 58, .5), transparent 58%),
    radial-gradient(90% 80% at 10% 96%, rgba(140, 12, 8, .85), transparent 62%),
    linear-gradient(150deg, #3D0B08, #1A0605 70%);
  display: flex; align-items: flex-end; padding: 26px;
}
.panel::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 4px);
  opacity: .7;
}
.panel::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 16px;
  background: repeating-linear-gradient(90deg, rgba(255,248,245,.75) 0 10px, transparent 10px 26px);
  opacity: .35;
}
.panel span {
  position: relative; font-family: var(--mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-on-ink);
  background: rgba(10, 8, 9, .6); border: 1px solid var(--line-dark); padding: 8px 12px; border-radius: 2px;
}
.panel--light { border-color: var(--line-light); background: radial-gradient(120% 90% at 80% 10%, rgba(240,45,58,.35), transparent 60%), linear-gradient(150deg, #FFF, var(--surface-muted)); }
.panel--light span { color: var(--text); background: rgba(255,255,255,.8); border-color: var(--line-light); }

/* ---------- Numbered process ---------- */
.steps { list-style: none; display: grid; gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.section--light .steps { background: var(--line-light); border-color: var(--line-light); }
.step { background: var(--ink); display: grid; grid-template-columns: 128px 1fr; gap: 28px; padding: 30px 28px; }
.section--light .step { background: var(--surface); }
.step__no { font-family: var(--mono); font-size: 11.5px; letter-spacing: .18em; color: var(--red-500); padding-top: 5px; }
.step h3 { font-size: 1.25rem; text-transform: uppercase; margin-bottom: 8px; }
.step p { margin: 0; color: var(--text-on-ink-muted); font-size: 15.5px; }
.section--light .step p { color: var(--text-muted); }

/* ---------- Tick list ---------- */
.ticks { list-style: none; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 30px; color: var(--text-on-ink-muted); }
.section--light .ticks li { color: var(--text-muted); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 10px; width: 12px; height: 2px; background: var(--red-500);
}
.ticks strong { color: var(--text-on-ink); font-weight: 600; }
.section--light .ticks strong { color: var(--text); }

/* ---------- Work grid ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.work-card { border: 1px solid var(--line-dark); border-radius: 6px; overflow: hidden; background: var(--ink-raised); display: flex; flex-direction: column; }
.work-card__media { position: relative; aspect-ratio: 16 / 10; background: #000; }
.work-card__media video { width: 100%; height: 100%; display: block; object-fit: cover; background: #000; }
.work-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.work-card h3 { font-size: 1.15rem; text-transform: uppercase; }
.work-card p { margin: 0; font-size: 14.5px; color: var(--text-on-ink-muted); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 8px; }
.tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-on-ink-muted); border: 1px solid var(--line-dark); padding: 5px 9px; border-radius: 2px; }
.tag--red { color: var(--red-300); border-color: rgba(240, 45, 58, .4); }

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  padding: 10px 16px; min-height: 44px; border-radius: 2px; cursor: pointer;
  background: transparent; border: 1px solid var(--line-dark); color: var(--text-on-ink-muted);
  transition: color var(--t), border-color var(--t), background var(--t);
}
.filter:hover { color: var(--text-on-ink); border-color: var(--red-500); }
.filter[aria-pressed="true"] { background: var(--red-600); border-color: var(--red-600); color: #fff; }

/* ---------- Posts ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { display: flex; flex-direction: column; text-decoration: none; border: 1px solid var(--line-dark); border-radius: 6px; overflow: hidden; background: var(--ink-raised); transition: border-color var(--t), transform var(--t); }
.post-card:hover { border-color: var(--red-600); transform: translateY(-3px); }
.post-card__media { aspect-ratio: 16 / 9; position: relative; background: #000; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-card__body { padding: 22px; display: grid; gap: 10px; }
.post-card h3 { font-size: 1.12rem; letter-spacing: -.015em; }
.post-card p { margin: 0; font-size: 14.5px; color: var(--text-on-ink-muted); }

/* ---------- Article featured image ---------- */
.post-featured-img { aspect-ratio: 16 / 9; border-radius: 8px; overflow: hidden; border: 1px solid var(--line-dark); margin: 0 0 40px; }
.post-featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.meta { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-on-ink-muted); }

/* ---------- Article ---------- */
.article { max-width: 760px; margin-inline: auto; }
.article h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); text-transform: uppercase; margin: 48px 0 16px; }
.article h3 { font-size: 1.22rem; margin: 34px 0 12px; }
.article p, .article li { color: var(--text-on-ink-muted); font-size: 17px; }
.article ul, .article ol { margin: 0 0 22px; padding-left: 22px; display: grid; gap: 8px; }
.article strong { color: var(--text-on-ink); }
.article blockquote {
  margin: 32px 0; padding: 22px 26px; border-left: 3px solid var(--red-600);
  background: var(--ink-raised); font-size: 1.1rem; color: var(--text-on-ink);
}
.toc { border: 1px solid var(--line-dark); border-radius: 6px; padding: 22px 24px; margin-bottom: 40px; background: var(--ink-raised); }
.toc p { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--red-300); margin-bottom: 12px; }
.toc ol { margin: 0; padding-left: 18px; display: grid; gap: 8px; }
.toc a { color: var(--text-on-ink-muted); text-decoration: none; font-size: 15px; }
.toc a:hover { color: var(--red-500); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line-dark); }
.section--light .faq { border-color: var(--line-light); }
.faq details { border-bottom: 1px solid var(--line-dark); }
.section--light .faq details { border-color: var(--line-light); }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 44px 24px 0; position: relative;
  font-family: var(--display); font-size: clamp(1.05rem, 1.8vw, 1.3rem); font-weight: 700; letter-spacing: -.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-family: var(--mono); font-size: 22px; color: var(--red-500); transition: transform var(--t);
}
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { color: var(--red-500); }
.faq .answer { padding: 0 60px 26px 0; color: var(--text-on-ink-muted); }
.section--light .faq .answer { color: var(--text-muted); }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- Checklist (icon + text, service overview) ---------- */
.checklist { list-style: none; display: grid; gap: 18px; }
.checklist li { display: flex; align-items: flex-start; gap: 14px; }
.checklist__icon { width: 22px; height: 22px; flex: none; color: var(--red-500); margin-top: 1px; }
.checklist__icon svg { width: 100%; height: 100%; }
.checklist span { color: var(--text-on-ink); font-size: 15.5px; line-height: 1.5; }

/* ---------- Feature badges (service hero) ---------- */
.feature-badges { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 38px; }
.feature-badge { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; max-width: 150px; }
.feature-badge__icon {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line-dark); background: var(--ink-raised); color: var(--red-500); flex: none;
}
.feature-badge__icon svg { width: 20px; height: 20px; }
.feature-badge span { font-size: 13.5px; color: var(--text-on-ink-muted); line-height: 1.35; }
.feature-badge strong { color: var(--text-on-ink); font-weight: 600; }

/* ---------- Hero with side visual (service pages) ---------- */
.service-hero { position: relative; padding: 156px 0 0; overflow: hidden; }
.service-hero .glow { width: 620px; height: 620px; top: -260px; right: -160px; }
.service-hero .wrap { position: relative; z-index: 1; }
.service-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; padding-bottom: 70px; }
.service-hero-grid h1 { max-width: 16ch; }

/* ---------- Featured work (single real example) ---------- */
.featured-work {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 0; align-items: stretch;
  border: 1px solid var(--line-dark); border-radius: 8px; overflow: hidden; background: var(--ink-raised);
}
.featured-work__media { position: relative; aspect-ratio: 16 / 10; background: #000; }
.featured-work__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.featured-work__play {
  position: absolute; inset: 0; display: grid; place-items: center; background: rgba(10,8,9,.28);
  transition: background var(--t);
}
.featured-work__play span {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(10,8,9,.72); border: 1px solid rgba(255,255,255,.4);
  display: grid; place-items: center; color: #fff; transition: transform var(--t), background var(--t);
}
.featured-work__play svg { width: 22px; height: 22px; margin-left: 3px; }
.featured-work:hover .featured-work__play { background: rgba(10,8,9,.1); }
.featured-work:hover .featured-work__play span { background: var(--red-600); transform: scale(1.08); }
.featured-work__body { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }
.featured-work__tag { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--red-300); margin-bottom: 14px; }
.featured-work__body h3 { font-size: 1.6rem; text-transform: uppercase; margin-bottom: 10px; }
.featured-work__body p { color: var(--text-on-ink-muted); margin-bottom: 0; }

/* ---------- Benefit icon grid ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.benefit {
  background: var(--ink); padding: 32px 26px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
}
.benefit__icon {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(240,45,58,.35); color: var(--red-500); flex: none;
}
.benefit__icon svg { width: 20px; height: 20px; }
.benefit h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .01em; }
.benefit p { margin: 0; font-size: 14px; color: var(--text-on-ink-muted); }

@media (max-width: 900px) {
  .service-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .featured-work { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .benefit-grid { grid-template-columns: 1fr; }
  .feature-badges { gap: 22px; }
}

/* ---------- Auto-rotating image carousel ---------- */
.carousel { max-width: 640px; margin: 0 auto; }
.carousel__track {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 8px;
  border: 1px solid var(--line-dark); background: var(--ink-raised);
}
.carousel__slide {
  position: absolute; inset: 0; opacity: 0; transform: translateX(48px);
  transition: opacity 720ms ease, transform 720ms ease; z-index: 0;
}
.carousel__slide.is-active { opacity: 1; transform: translateX(0); z-index: 1; }
.carousel__slide.is-prev { transform: translateX(-48px); }
.carousel__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel__dots { display: flex; justify-content: center; gap: 9px; margin-top: 20px; }
.carousel__dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--line-dark); transition: background var(--t); }
.carousel__dots span.is-active { background: var(--red-500); }

/* ---------- Custom minimal video controls (autoplay-when-visible) ---------- */
.video-controls { position: absolute; left: 14px; bottom: 14px; z-index: 3; display: flex; gap: 8px; }
.video-btn {
  width: 36px; height: 36px; border-radius: 50%; padding: 0;
  background: rgba(10,8,9,.62); border: 1px solid rgba(255,255,255,.28); color: #fff;
  display: grid; place-items: center; cursor: pointer; transition: background var(--t), border-color var(--t);
}
.video-btn:hover { background: var(--red-600); border-color: var(--red-600); }
.video-btn svg { width: 16px; height: 16px; }
.video-btn .i-play, .video-btn .i-sound-off { display: none; }
[data-video-player].is-paused .video-btn[data-video-play] .i-pause { display: none; }
[data-video-player].is-paused .video-btn[data-video-play] .i-play { display: block; }
[data-video-player].is-muted .video-btn[data-video-mute] .i-sound-on { display: none; }
[data-video-player].is-muted .video-btn[data-video-mute] .i-sound-off { display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; padding: 96px 0;
  color: #fff; text-align: center;
}
.cta-band .wrap { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 18px; }
.cta-band p { color: rgba(255, 255, 255, .88); max-width: 56ch; margin-inline: auto; }
.cta-band .btn--red { background: #fff; color: var(--red-700); box-shadow: 0 20px 50px rgba(0,0,0,.28); }
.cta-band .btn--red:hover { background: var(--ink); color: #fff; }
.cta-band .btn--ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.cta-band .btn--ghost:hover { background: rgba(0,0,0,.2); border-color: #fff; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-on-ink-muted); }
.field label .req { color: var(--red-500); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; min-height: 50px; font: inherit; font-size: 16px;
  color: var(--text-on-ink); background: var(--ink-raised);
  border: 1px solid var(--line-dark); border-radius: var(--radius);
  transition: border-color var(--t), background var(--t);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red-500); background: var(--ink-soft); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--danger); background: rgba(198, 30, 42, .08); }
.field .error { font-size: 13px; color: var(--red-300); min-height: 0; }
.field .error:empty { display: none; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--text-on-ink-muted); }
.consent input { width: 22px; height: 22px; min-height: 0; flex: none; margin-top: 2px; accent-color: var(--red-600); }
.consent a { color: var(--red-300); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-status { border-radius: var(--radius); font-size: 15px; }
.form-status:not(:empty) { padding: 16px 18px; border: 1px solid var(--line-dark); background: var(--ink-raised); }
.form-status[data-state="ok"] { border-color: rgba(13, 122, 77, .6); }
.form-status[data-state="error"] { border-color: var(--danger); }

/* ---------- Contact detail list ---------- */
.contact-list { list-style: none; display: grid; gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.contact-list li { background: var(--ink-raised); padding: 22px 24px; display: grid; gap: 5px; }
.contact-list span { font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-on-ink-muted); }
.contact-list a, .contact-list b { font-size: 1.02rem; font-weight: 600; text-decoration: none; color: var(--text-on-ink); overflow-wrap: anywhere; }
.contact-list a:hover { color: var(--red-500); }

/* ---------- Footer ---------- */
.site-footer { background: transparent; border-top: 1px solid var(--line-dark); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-grid h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--red-300); font-weight: 500; margin-bottom: 18px; }
.footer-links { list-style: none; display: grid; gap: 11px; }
.footer-links a { text-decoration: none; font-size: 14.5px; color: var(--text-on-ink-muted); }
.footer-links a:hover { color: var(--red-500); }
.footer-brand img { height: 62px; margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; color: var(--text-on-ink-muted); max-width: 34ch; }
.footer-bottom {
  margin-top: 54px; padding-top: 22px; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-on-ink-muted);
}
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--red-500); }
.to-top { background: none; border: 1px solid var(--line-dark); border-radius: 2px; padding: 10px 14px; min-height: 44px; cursor: pointer; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.to-top:hover { border-color: var(--red-500); color: var(--red-500); }

/* ---------- Floating contact ---------- */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 18px;
  background: var(--red-600); color: #fff; text-decoration: none; border-radius: 999px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  box-shadow: var(--shadow-red); transition: transform var(--t), background var(--t);
}
.fab:hover { transform: translateY(-3px); background: var(--red-500); }

/* ---------- Breadcrumb ---------- */
.crumbs { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-on-ink-muted); margin-bottom: 26px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--red-500); }
.crumbs span { color: var(--red-500); }

/* ---------- Page hero ---------- */
.page-hero { position: relative; padding: 156px 0 70px; overflow: hidden; }
.page-hero .glow { width: 620px; height: 620px; top: -260px; right: -160px; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { max-width: 18ch; }
.page-hero .lede { margin-top: 22px; }

/* ---------- Empty state ---------- */
.empty {
  border: 1px dashed var(--line-dark); border-radius: 8px; padding: 54px 32px; text-align: center;
  background: var(--ink-raised);
}
.empty h3 { text-transform: uppercase; margin-bottom: 12px; }
.empty p { color: var(--text-on-ink-muted); max-width: 52ch; margin-inline: auto; }

/* ---------- Reveal animation ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 620ms ease, transform 620ms cubic-bezier(.2,.7,.3,1); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .work-grid, .posts { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 900px) {
  .nav, .nav-cta { display: none; }
  .burger { display: inline-flex; }
  .hero-grid, .split, .head--split { grid-template-columns: 1fr; gap: 40px; }
  .split--flip .split__media { order: 0; }
  .hero { padding: 132px 0 76px; }
  .section { padding: 76px 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .cards, .work-grid, .posts { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 10px; padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .slate-rows { grid-template-columns: 1fr; }
  .fab { right: 12px; bottom: 12px; padding: 12px 15px; }
  .display { font-size: clamp(2.3rem, 11vw, 3.4rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .fab, .grain, .cta-band, .mobile-panel { display: none !important; }
  body { background: #fff; color: #000; }
}
