/* ============================================================
   ManageMowed Flagship — THE SHIFT
   Dark PNW world: #0a0f14 ground, #ccff00 signal, Clash Display.
   ============================================================ */

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

:root {
  /* Surfaces */
  --bg: #0a0f14;
  --surface: #111820;
  --surface-2: #161e28;
  --surface-3: #1c2632;
  --evergreen: #0e1a15;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.16);

  /* Text */
  --text: #f0f2f5;
  --muted: #c7cdd6;
  --faint: #8892a2;

  /* Accent */
  --accent: #ccff00;
  --accent-hover: #b8e600;
  --accent-dim: rgba(204,255,0,0.12);
  --accent-glow: rgba(204,255,0,0.25);
  --amber: #ffb85c; /* golden hour */
  --accent-ink: #ccff00; /* accent when used as text on the current surface */
  --paper: #f2f4ee;

  /* Type */
  --font-display: 'Clash Display', 'Inter', sans-serif;
  --font-body: 'General Sans', 'Inter', sans-serif;
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2.2rem, 1.2rem + 3vw, 4rem);
  --text-hero: clamp(2.8rem, 1rem + 7vw, 7rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 0.75rem;
}

html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  /* Avoid creating a scrolling ancestor that breaks sticky media in Safari. */
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--accent-glow); }

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

.skip-link {
  position: fixed; left: 1rem; top: 1rem; z-index: 100;
  padding: 0.75rem 1rem; border-radius: 999px;
  background: var(--accent); color: #0a0f14; font-weight: 700;
  transform: translateY(-180%); transition: transform 160ms var(--ease);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute !important; width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important; overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.lime { color: var(--accent-ink); }
.kicker {
  font-family: var(--font-body);
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent-ink); margin-bottom: 1.1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl); font-weight: 700;
  line-height: 1.08; letter-spacing: -0.015em;
  text-wrap: balance; margin-bottom: 1.2rem;
}
.section-lede { color: var(--muted); max-width: 62ch; margin-bottom: 2rem; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 600; font-size: var(--text-sm);
  padding: 0.85rem 1.6rem; border-radius: 999px;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-lime { background: var(--accent); color: #0a0f14; }
.btn-lime:hover { background: var(--accent-hover); box-shadow: 0 6px 30px var(--accent-glow); }
.btn-ghost { border: 1px solid var(--border-hover); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ============ HEADER ============ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; gap: 2rem;
  padding: 0.9rem 1.5rem;
  transition: background 240ms var(--ease), box-shadow 240ms var(--ease);
}
.site-header.scrolled {
  background: rgba(10,15,20,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-name {
  display: flex; flex-direction: column;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; line-height: 1.1;
}
.brand-name em { font-style: normal; font-family: var(--font-body); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.08em; color: var(--accent); }
.main-nav { display: flex; gap: 1.6rem; margin: 0 auto; }
.main-nav a { font-size: var(--text-sm); font-weight: 500; color: var(--muted); transition: color 160ms; }
.main-nav a:hover { color: var(--accent); }
.header-cta { display: flex; align-items: center; gap: 1.2rem; margin-left: auto; }
.phone { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 600; font-size: var(--text-sm); color: var(--text); }
.phone:hover { color: var(--accent); }
.phone-big { font-size: var(--text-lg); margin-top: 1.4rem; }
.proposal-contact-options { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }

.nav-toggle { display: none; flex-direction: column; gap: 6px; padding: 8px; margin-left: auto; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: transform 200ms var(--ease), opacity 200ms; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(10,15,20,0.97);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 500;
}
.mobile-menu[hidden] { display: none; }
.mobile-contact-actions { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }

.form-validation { margin-top: 0.85rem; color: #b42318; font-weight: 600; }

/* ============ THE FILM ============ */
.film { position: relative; height: 760vh; height: 760svh; }
.film-sticky {
  position: -webkit-sticky; position: sticky; top: 0; height: 100dvh; overflow: clip;
  isolation: isolate;
  background: #05080b;
}
#film-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.film-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: none; }
html.no-film .film { height: 100svh; min-height: 720px; }
html.no-film .beat:not(.beat-hero), html.no-film .film-loader, html.no-film .film-hud { display: none; }
html.no-film .beat-hero { opacity: 1; }
html.no-film #film-canvas { display: none; }
html.no-film .film-fallback { display: block; }

.film-loader {
  position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 12vh; pointer-events: none; transition: opacity 400ms var(--ease);
}
.film-loader.done { opacity: 0; }
.film-loader-bar { width: 180px; height: 2px; background: rgba(255,255,255,0.15); border-radius: 2px; overflow: hidden; }
.film-loader-bar i { display: block; height: 100%; width: 0%; background: var(--accent); transition: width 200ms linear; }

.film-grade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(6,12,20,0.5), rgba(6,12,20,0.12) 40%, rgba(6,12,20,0.55));
}
.film-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 45%, transparent 55%, rgba(3,6,9,0.55));
}
.film-bottom-fade {
  position: absolute; inset: auto 0 0 0; height: 34vh; pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--bg));
  opacity: 0;
}

/* HUD */
.film-hud {
  position: absolute; left: 1.5rem; bottom: 1.5rem; z-index: 5;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.hud-clock {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem); letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; gap: 0.4rem;
  text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}
.hud-ampm { font-size: 0.9rem; color: var(--accent); font-weight: 600; }
.hud-chapter { display: flex; flex-direction: column; gap: 0.45rem; }
.hud-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.26em; color: var(--muted); }
.hud-bar { width: 180px; height: 2px; background: rgba(255,255,255,0.18); border-radius: 2px; overflow: hidden; }
.hud-bar i { display: block; height: 100%; width: 0%; background: var(--accent); }

/* Beats */
.beat {
  position: absolute; inset: 0; z-index: 4;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 0 clamp(1.5rem, 7vw, 7rem);
  opacity: 0; pointer-events: none; will-change: transform, opacity;
}
.beat h1, .beat h2 {
  font-family: var(--font-display); font-weight: 600;
  line-height: 1.04; letter-spacing: -0.015em; text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,0.55);
}
.beat h2 { font-size: var(--text-2xl); max-width: 16ch; }
.beat p { margin-top: 1rem; color: var(--muted); max-width: 44ch; text-shadow: 0 1px 14px rgba(0,0,0,0.6); }
.beat .kicker { margin-bottom: 1.4rem; }

.beat-hero { pointer-events: auto; }
.hero-proposal { align-self: flex-start; margin-top: 1rem; }
.map-card-close { min-width: 44px; min-height: 44px; }
.hero-line { font-size: var(--text-hero); }
.hero-line .hero-visual-line { display: block; overflow: hidden; }
.hero-line span i, .hero-line .char { display: inline-block; font-style: normal; }
.beat-hero .sub { font-size: var(--text-lg); color: var(--text); }
.scroll-hint {
  margin-top: 2.6rem; width: 26px; height: 44px;
  border: 2px solid rgba(255,255,255,0.35); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 8px;
}
.scroll-hint span { width: 3px; height: 9px; border-radius: 2px; background: var(--accent); animation: hint 1.6s var(--ease) infinite; }
@keyframes hint { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

.film-stats { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(150px, 1fr)); gap: 2rem 3.4rem; }
.film-stats b {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3.4rem, 8.5vw, 6.4rem); line-height: 1; color: var(--accent);
  font-variant-numeric: tabular-nums; display: block;
  text-shadow: 0 3px 18px rgba(0,0,0,0.65), 0 0 44px rgba(204,255,0,0.35);
}
.film-stats span { font-size: var(--text-sm); color: var(--text); letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; text-shadow: 0 2px 12px rgba(0,0,0,0.7); }

.beat-finale { align-items: flex-start; pointer-events: none; }
.beat-finale.live { pointer-events: auto; }
.beat-ctas { display: flex; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap; }

/* ============ TRUST MARQUEE ============ */
/* Seam handoff: the film's final frame bottom edge samples to a mossy olive;
   melt from it into the page bg across the first content block. */
.trust { padding: 3.6rem 0 3rem; border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(113,114,59,0.16), var(--bg) 55%); }
.trust-kicker { text-align: center; font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--faint); margin-bottom: 1.6rem; font-weight: 600; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track {
  display: flex; align-items: center; gap: 3rem; width: max-content;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.3rem, 2.6vw, 2rem); color: var(--faint);
  will-change: transform;
}
.marquee-track i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }

/* ============ SECTIONS SHARED ============ */
main section { padding: clamp(4rem, 7vw, 6.5rem) 0; transition: background-color 400ms ease, color 400ms ease; }

/* M CARE */
.care { background: linear-gradient(180deg, var(--bg), var(--evergreen) 120%); }
.care-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; margin-top: 2.6rem; }
.care-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.9rem; transition: transform 240ms var(--ease), border-color 240ms var(--ease);
}
.care-card:hover { transform: translateY(-4px); border-color: var(--accent-glow); }
.care-letter {
  display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  background: var(--accent-dim); color: var(--accent-ink); border-radius: 10px; margin-bottom: 1.1rem;
}
.care-card h3 { font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); margin-bottom: 0.5rem; }
.care-card p { color: var(--muted); font-size: var(--text-sm); }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; margin-top: 2.6rem; }
.service-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; display: flex; flex-direction: column; gap: 0.6rem;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--border-hover); }
.service-card h3 { font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); }
.service-card p { color: var(--muted); font-size: var(--text-sm); flex: 1; }
.service-card-cta { background: var(--accent-dim); border-color: var(--accent-glow); }
.service-card-cta .btn { align-self: flex-start; margin-top: 0.8rem; }

/* BEFORE / AFTER */
.transformation { background: var(--evergreen); border-block: 1px solid var(--border); }
.ba-slider {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16 / 9; margin-top: 1rem;
  border: 1px solid var(--border);
  user-select: none; touch-action: pan-y;
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-after-wrap { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 0 0 50%); will-change: clip-path; }
.ba-after-wrap img { position: absolute; inset: 0; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; margin-left: -1.5px;
  background: var(--accent); cursor: ew-resize;
  box-shadow: 0 0 20px var(--accent-glow);
}
.ba-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
}
.ba-grip::before { content: "\2194"; color: #0a0f14; font-weight: 700; font-size: 1.2rem; }
.ba-tag {
  position: absolute; bottom: 1rem; padding: 0.35rem 0.9rem; border-radius: 999px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(5,8,11,0.72); backdrop-filter: blur(6px);
}
.ba-tag-before { left: 1rem; }
.ba-tag-after { right: 1rem; color: var(--accent); }

/* PROPERTY TYPE CHIPS (under services) */
.ptype-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-top: 2rem; }
.ptype-lead { font-weight: 600; color: var(--muted); margin-right: 0.4rem; }
.ptype-chips > span:not(.ptype-lead) {
  font-size: var(--text-sm); color: var(--muted);
  border: 1px solid var(--border); border-radius: 999px; padding: 0.4rem 0.95rem;
  transition: border-color 180ms, color 180ms;
}
.ptype-chips > span:not(.ptype-lead):hover { border-color: var(--accent-glow); color: var(--text); }

/* TERRITORIES */
.state-group { margin-bottom: 1.6rem; }
.state-group h3 { font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); margin-bottom: 0.7rem; }
.state-group { break-inside: avoid; }
#territory-grid { display: block; column-width: 230px; column-gap: 0.9rem; }
#territory-grid .territory-card { margin-bottom: 0.8rem; break-inside: avoid; }
.finder {
  display: flex; align-items: center; gap: 0.9rem;
  background: var(--surface); border: 1px solid var(--border-hover); border-radius: 999px;
  padding: 0.9rem 1.4rem; max-width: 560px; margin-bottom: 2.2rem;
  color: var(--faint);
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.finder:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-dim); color: var(--accent); }
.finder input { flex: 1; background: none; border: none; outline: none; color: var(--text); }
.finder input::placeholder { color: var(--faint); }

.territory-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 0.8rem; }
.territory-card {
  display: flex; flex-direction: column; gap: 0.15rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  padding: 1rem 1.2rem;
  transition: transform 200ms var(--ease), border-color 200ms var(--ease), background 200ms var(--ease);
}
.territory-card:hover { transform: translateY(-3px); border-color: var(--accent-glow); background: var(--surface-2); }
.territory-card b { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.territory-card span { font-size: 0.78rem; color: var(--faint); letter-spacing: 0.08em; text-transform: uppercase; }
.territory-card .tc-meta { margin-top: 0.35rem; font-size: 0.8rem; color: var(--muted); letter-spacing: 0; text-transform: none; }
.territory-card .go { margin-top: 0.5rem; font-size: 0.8rem; color: var(--accent-ink); font-weight: 600; opacity: 0; transition: opacity 200ms; }
.territory-card:hover .go { opacity: 1; }
.territory-miss { margin-top: 1.6rem; color: var(--muted); }
.territory-miss a { color: var(--accent-ink); font-weight: 600; }

/* TESTIMONIALS */
.testimonials { background: var(--evergreen); border-block: 1px solid var(--border); }
.quote-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; margin-top: 1rem; }
.quote-row blockquote {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; display: flex; flex-direction: column; gap: 1.2rem;
}
.quote-row p { font-size: var(--text-base); line-height: 1.55; }
.quote-row footer { font-size: 0.8rem; color: var(--faint); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }

/* LEAD FORM */
.assessment { background: linear-gradient(180deg, var(--bg), #0c1219); }
.assessment-wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.assessment-wrap > * { min-width: 0; }
.assessment-steps { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 0.6rem; }
.assessment-steps li { display: flex; gap: 1rem; align-items: baseline; }
.assessment-steps .pnum { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: 0.14em; flex: none; }
.assessment-steps b { font-family: var(--font-display); font-weight: 600; display: block; margin-bottom: 0.15rem; }
.assessment-steps div > span { color: var(--muted); font-size: var(--text-sm); }

.lead-form {
  background: var(--surface); border: 1px solid var(--border-hover); border-radius: var(--radius);
  padding: 2.2rem; position: relative;
}
.form-body { display: flex; flex-direction: column; gap: 1rem; border: 0; padding: 0; margin: 0; min-width: 0; }
.form-body[hidden], .form-success[hidden], .form-error[hidden], .form-validation[hidden] { display: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.lead-form label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--muted); }
.lead-form input, .lead-form select, .lead-form textarea {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 8px;
  padding: 0.8rem 1rem; outline: none; width: 100%;
  transition: border-color 180ms;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--accent); }
.lead-form input.invalid, .lead-form select.invalid { border-color: #ff6b57; }
.lead-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--faint) 50%), linear-gradient(135deg, var(--faint) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 15px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
.btn-full { width: 100%; margin-top: 0.6rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-success h3 { font-family: var(--font-display); font-size: var(--text-xl); margin-bottom: 0.8rem; }
.form-success p, .form-error { color: var(--muted); }
.form-success a, .form-error a { color: var(--accent-ink); font-weight: 600; }
.form-error { margin-top: 1.2rem; font-size: var(--text-sm); }
.form-validation { color: #9b2c1f; font-size: var(--text-sm); font-weight: 600; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1rem; max-width: 820px; }
@media (min-width: 961px) {
  .faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; max-width: none; align-items: start; }
}
.faq-list details {
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; transition: border-color 200ms;
}
.faq-list details[open] { border-color: var(--accent-glow); }
.faq-list summary {
  list-style: none; cursor: pointer; padding: 1.2rem 1.5rem;
  font-family: var(--font-display); font-weight: 500; font-size: var(--text-base);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--accent-ink); font-size: 1.4rem; font-weight: 500; transition: transform 200ms var(--ease); flex: none; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 1.5rem 1.4rem; color: var(--muted); font-size: var(--text-sm); max-width: 68ch; }

/* FOOTER */
.site-footer { border-top: 1px solid var(--border); padding: 4rem 0 2rem; background: #070b0f; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; }
.footer-brand { display: flex; flex-direction: column; gap: 1rem; max-width: 34ch; }
.footer-brand p { color: var(--muted); font-size: var(--text-sm); }
.footer-grid nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-grid h3 { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 0.4rem; }
.footer-grid nav a { color: var(--muted); font-size: var(--text-sm); }
.footer-grid nav a:hover { color: var(--accent); }
.footer-legal { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--faint); }
.footer-legal a:hover { color: var(--accent); }

/* STICKY MOBILE CTA */
.sticky-cta {
  position: fixed; inset: auto 0 0 0; z-index: 50;
  display: none; gap: 0.7rem; padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
  background: rgba(10,15,20,0.92); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  transform: translateY(110%); transition: transform 300ms var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { flex: 1; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .assessment-wrap { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .sticky-cta { display: flex; }
  .film-hud { left: 1.1rem; bottom: 5.4rem; }
}
@media (max-width: 640px) {
  .film { height: 540svh; }
  .beat-hero .hero-brand { font-size: clamp(1.7rem, 7vw, 2.5rem); }
  .beat-hero .hero-line { font-size: clamp(2rem, 8.5vw, 3rem); }
  .beat-hero .sub { font-size: 1rem; }
  .beat-hero .scroll-hint { display: none; }
  .beat { padding: 0 1.25rem; justify-content: flex-start; padding-top: 14vh; }
  .beat-hero { justify-content: center; padding-top: 0; }
  .beat h2 { font-size: clamp(1.7rem, 7.5vw, 2.4rem); }
  .film-stats { gap: 1.4rem 2rem; }
  .desktop-br { display: none; }
  .mm-pin circle.halo { animation: none; opacity: 0.45; pointer-events: none; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .film { height: auto; }
  .film-sticky { position: relative; height: auto; min-height: 100dvh; }
  #film-canvas, .film-hud, .scroll-hint, .film-loader { display: none; }
  .film-fallback { display: block; position: absolute; }
  .beat { position: relative; opacity: 1 !important; transform: none !important; padding-block: 3rem; z-index: 4; }
}

.click-trigger { margin-top: 0.9rem; font-size: 0.8rem; color: var(--faint); text-align: right; }

/* ============================================================
   v4 — THEME SYSTEM, BANDING, PERSONAS, TERRITORY MAP
   ============================================================ */

/* ---- Light theme (root token flip via the header switcher) ---- */
body { transition: background-color 400ms ease, color 400ms ease; }

/* ---- Band pops: in dark theme these sections turn to light paper,
       in light theme they turn to white, so the page always alternates. ---- */
.band-pop {
  --bg: var(--paper);
  --surface: #ffffff;
  --surface-2: #e9ede1;
  --surface-3: #dde3d3;
  --evergreen: #e6ecdd;
  --border: rgba(18, 28, 18, 0.10);
  --border-hover: rgba(18, 28, 18, 0.22);
  --text: #141d15;
  --muted: #3e4b41;
  --faint: #68766b;
  --accent-dim: rgba(120, 165, 0, 0.14);
  --accent-glow: rgba(140, 190, 0, 0.35);
  --accent-ink: #3f6212;
  background: var(--bg);
  color: var(--text);
}
.band-pop .btn-ghost { color: var(--text); }
.band-pop ::selection { background: rgba(140, 190, 0, 0.3); }

/* ---- Theme toggle ---- */

/* ---- Personas ---- */
.persona-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; margin-top: 2.6rem; }
.persona-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.2rem; position: relative; overflow: hidden;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}
.persona-card::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 4px;
  background: linear-gradient(180deg, var(--accent), transparent);
  opacity: 0; transition: opacity 260ms;
}
.persona-card:hover { transform: translateY(-6px); border-color: var(--accent-glow); box-shadow: 0 18px 40px rgba(10, 20, 10, 0.12); }
.persona-card:hover::before { opacity: 1; }
.persona-card h3 { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); margin-bottom: 0.3rem; }
.persona-hook { color: var(--accent-ink); font-weight: 600; margin-bottom: 0.7rem; }
.persona-card p:not(.persona-hook) { color: var(--muted); font-size: var(--text-sm); }

/* ---- Territory map (always dark: the glow band) ---- */
.territories {
  --bg: #0a0f14; --surface: #111820; --surface-2: #161e28; --surface-3: #1c2632;
  --border: rgba(255,255,255,0.08); --border-hover: rgba(255,255,255,0.16);
  --text: #f0f2f5; --muted: #c7cdd6; --faint: #8892a2;
  --accent-dim: rgba(204,255,0,0.12); --accent-glow: rgba(204,255,0,0.25); --accent-ink: #ccff00;
  background:
    radial-gradient(900px 500px at 70% 30%, rgba(204,255,0,0.05), transparent 60%),
    #0a0f14;
  color: var(--text);
}
.map-stage { position: relative; margin: 1rem 0 2rem; }
.map-holder svg { width: 100%; height: auto; display: block; }
.map-holder .state {
  fill: #151d26; stroke: rgba(255,255,255,0.10); stroke-width: 0.8;
  transition: fill 240ms ease;
}
.map-holder .borders { stroke: rgba(255,255,255,0.10); }
.map-holder .separator1 { stroke: rgba(255,255,255,0.14); }
.map-holder .mm-covered { fill: #24331c; cursor: pointer; }
.map-holder .mm-covered:hover { fill: #33491f; }
.map-holder .state:not(.mm-covered):hover { fill: #1b2531; cursor: pointer; }
.mm-pin { cursor: pointer; }
.mm-pin circle.core { fill: var(--accent); }
.mm-pin circle.halo {
  fill: none; stroke: var(--accent); stroke-width: 1.4; opacity: 0.7;
  transform-box: fill-box; transform-origin: center;
  animation: pinpulse 2.6s ease-out infinite;
}
.mm-pin.hot circle.core { filter: drop-shadow(0 0 6px rgba(204,255,0,0.9)); }
.mm-pin:hover circle.core, .mm-pin:focus-visible circle.core { r: 5.5; filter: drop-shadow(0 0 6px rgba(204,255,0,0.9)); }
.mm-pin:focus-visible { outline: none; }
.mm-pin:focus-visible circle.halo { stroke-width: 2.2; opacity: 1; animation: none; transform: scale(1.4); }
.mm-pin.dim { opacity: 0.18; }
.mm-pin { transition: opacity 200ms ease; }
.map-tip {
  position: absolute; z-index: 7; pointer-events: none;
  transform: translate(-50%, -100%);
  background: rgba(13, 19, 26, 0.94); border: 1px solid rgba(204,255,0,0.4);
  color: var(--text); border-radius: 8px; padding: 0.3rem 0.7rem;
  font-size: 0.78rem; font-weight: 600; white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}
.map-tip[hidden] { display: none; }
.map-card-list { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.8rem; }
.map-card-list[hidden] { display: none; }
.map-card-list a {
  font-size: 0.82rem; font-weight: 600; color: var(--text);
  border: 1px solid var(--border-hover); border-radius: 999px;
  padding: 0.32rem 0.8rem; transition: border-color 160ms, color 160ms;
}
.map-card-list a:hover { border-color: var(--accent); color: var(--accent); }
#map-card-visit[hidden] { display: none; }
@keyframes pinpulse {
  0% { transform: scale(0.4); opacity: 0.8; }
  70% { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}
.map-card {
  position: absolute; z-index: 6; min-width: 230px; max-width: 300px;
  background: rgba(13, 19, 26, 0.96); border: 1px solid rgba(204,255,0,0.35);
  border-radius: 12px; padding: 1.1rem 1.2rem;
  box-shadow: 0 18px 50px rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
}
.map-card b { font-family: var(--font-display); font-size: 1.15rem; display: block; }
.map-card > span { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.map-card-owner { display: block; margin-top: 0.55rem; font-size: 0.88rem !important; letter-spacing: 0 !important; text-transform: none !important; color: var(--text) !important; font-weight: 600; }
.map-card-owner[hidden], .map-card-phone[hidden] { display: none; }
.map-card-phone { display: inline-block; margin-top: 0.25rem; font-size: 0.88rem; font-weight: 600; color: var(--accent-ink); }
.map-card-phone:hover { text-decoration: underline; }
.map-card-actions { display: flex; gap: 0.6rem; margin-top: 0.9rem; flex-wrap: wrap; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.82rem; }
.map-card-close {
  position: absolute; top: 6px; right: 10px; font-size: 1.3rem; color: var(--faint);
}
.map-card-close:hover { color: var(--text); }
.map-legend { display: flex; gap: 1.6rem; margin-top: 1rem; font-size: 0.82rem; color: var(--faint); flex-wrap: wrap; }
.map-legend .dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 0.45rem; }
.map-legend .dot-on { background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }
.map-legend .dot-off { background: #2a3542; }
.map-money {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  border: 1px solid rgba(204,255,0,0.25); border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(204,255,0,0.08), transparent 60%);
  padding: 1.6rem 2rem; margin-bottom: 2rem;
}
.map-money p { max-width: 52ch; color: var(--text); font-weight: 500; margin: 0; }
.map-money-ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.territory-browse { margin-top: 1.4rem; }
.territory-browse summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; color: var(--muted); padding: 0.6rem 0;
}
.territory-browse summary::-webkit-details-marker { display: none; }
.territory-browse summary::after { content: "▾"; color: var(--accent-ink); transition: transform 200ms; }
.territory-browse[open] summary::after { transform: rotate(180deg); }
.territory-browse .territory-grid { margin-top: 1rem; }

/* ============================================================
   v5 — INTENTIONAL COLOR VARIATION
   Brand lane stays green/lime. Two supporting tones give the page
   a deliberate rhythm: moss (grown, established) and amber
   (golden hour, seasonality). Applied per section, both themes.
   ============================================================ */
:root {
  --moss: #7cb342;
  --moss-ink: #8fce4e;      /* moss as text on dark surfaces */
  --amber-ink: #ffb85c;     /* amber as text on dark surfaces */
}
.band-pop { --moss-ink: #3f6a12; --amber-ink: #9a6210; }

/* Personas: paper band, lime lane (unchanged accent, stronger hover bar) */

/* Transformation: mossier evergreen, so the before/after block feels like
   the "grown" chapter of the page */
.transformation {
  background:
    radial-gradient(720px 420px at 18% 8%, rgba(124,179,66,0.10), transparent 60%),
    var(--evergreen);
}
.transformation .kicker { color: var(--moss-ink); }

/* Assessment steps: amber numbers (work happening, golden hour) */
.assessment-steps .pnum { color: var(--amber-ink); }

/* Testimonials: quiet moss band with a moss signature on each quote */
.testimonials .kicker { color: var(--moss-ink); }
.quote-row blockquote { border-top: 3px solid rgba(124,179,66,0.45); }
.quote-row footer { color: var(--moss-ink); }

/* FAQ: keep lime, but give open items a moss wash so the page closes
   on the full palette */
.faq-list details[open] { background: linear-gradient(180deg, rgba(124,179,66,0.06), var(--surface)); }

/* Honeypot: visually removed, still in the accessibility-hidden DOM for bots */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* Closing CTA band */
.final-cta { background: linear-gradient(180deg, var(--bg), var(--evergreen) 140%); border-top: 1px solid var(--border); text-align: center; }
.final-cta .section-title { margin-bottom: 1.6rem; }
.final-cta-actions { display: flex; gap: 1.4rem; align-items: center; justify-content: center; flex-wrap: wrap; }

/* ---- Section action shots (from the v6 build) ---- */
.section-shot {
  margin: 2.4rem 0 3rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.section-shot img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.band-pop .section-shot { border-color: rgba(10,15,20,0.1); box-shadow: 0 24px 50px rgba(10,15,20,0.18); }
.section-shot-tight { margin: 1.6rem 0; }
.section-shot-tight img { aspect-ratio: 4 / 3; }
@media (max-width: 640px) {
  .section-shot { border-radius: 12px; margin: 1.4rem 0 1.8rem; }
  .section-shot img { aspect-ratio: 4 / 3; }
  .proposal-contact-options { gap: 0.85rem; }
  .phone-big { font-size: 1rem; min-height: 44px; }
  .lead-form .btn { white-space: normal; text-align: center; }
}

/* ---- Winter band: full-bleed dawn plow shot with copy overlay ---- */
.winter-band { position: relative; overflow: hidden; padding: 0 !important; }
.winter-band figure { margin: 0; }
.winter-band figure img { display: block; width: 100%; height: clamp(340px, 52vh, 560px); object-fit: cover; }
.winter-copy {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  color: #f0f2f5;
}
.winter-copy .kicker { color: var(--accent); }
.winter-copy .section-title { color: #f0f2f5; text-shadow: 0 2px 24px rgba(0,0,0,0.65); max-width: 16ch; }
.winter-copy p:not(.kicker) { max-width: 46ch; color: #dfe5ec; text-shadow: 0 1px 14px rgba(0,0,0,0.7); }
.winter-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,8,11,0.72) 0%, rgba(5,8,11,0.35) 55%, transparent 80%);
}
.winter-band .winter-copy { z-index: 2; }

/* ---- Final CTA: golden aerial backdrop ---- */
.final-cta { position: relative; overflow: hidden; }
.final-cta-bg {
  position: absolute; inset: 0;
  background: url('/assets/section-ptypes.jpg') center 35% / cover no-repeat;
  opacity: 0.35;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(10,15,20,0.55) 40%, rgba(10,15,20,0.82) 100%);
  z-index: 1;
}
.final-cta .container { position: relative; z-index: 2; }
.final-cta-bg { z-index: 0; }

/* ---- Bigger tap targets + mobile boldness ---- */
.btn { min-height: 46px; }
@media (max-width: 640px) {
  .section-title { font-size: clamp(1.9rem, 8.5vw, 2.6rem); }
  .section-lede { font-size: 1.05rem; }
  .map-money { padding: 1.3rem; }
  .map-card { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; max-width: none; z-index: 70; }
  .persona-card { padding: 1.6rem; }
  main section { padding: 4.2rem 0; }
}

/* ---- v5 polish: pronounced hero tagline + readable nav ---- */
.beat p.hero-brand, .hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 1.6rem + 4.4vw, 4.6rem);
  font-weight: 700; letter-spacing: 0.005em; line-height: 1;
  color: var(--accent);
  text-shadow: 0 3px 18px rgba(0,0,0,0.55);
  margin-bottom: 0.35rem;
}
.beat p.hero-tagline, .hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 0.9rem + 1.6vw, 2rem);
  font-weight: 600; letter-spacing: 0.01em; line-height: 1.1;
  color: var(--text);
  margin: 0.2rem 0 1.1rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
}
.beat p.hero-tagline em, .hero-tagline em { font-style: italic; font-weight: 400; color: var(--accent); }
.hero-line .word { display: inline-block; white-space: nowrap; }
.beat-hero .kicker { color: var(--text); opacity: 0.85; margin-bottom: 0.2rem; }

/* Nav readability over the film: permanent scrim + brighter links */
.site-header {
  background: linear-gradient(180deg, rgba(6,10,14,0.78), rgba(6,10,14,0.35) 70%, transparent);
}
.site-header .main-nav a { color: #e7ebef; font-weight: 600; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.site-header .main-nav a:hover { color: var(--accent); }
.site-header .phone { text-shadow: 0 1px 8px rgba(0,0,0,0.5); }

/* Reconciled editorial layout: identical media geometry across all five bands. */
.brand { flex-shrink: 0; }
.brand img { width: 216px; height: 64px; object-fit: contain; }
.footer-brand img { width: 250px; max-width: 100%; height: auto; align-self: flex-start; }
.site-header { gap: 1.2rem; }
.main-nav { gap: 1.1rem; }
.editorial-split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(2rem,5vw,5rem); align-items: start; }
.editorial-media { position: sticky; top: 7rem; grid-column: 1; grid-row: 1; }
.media-right .editorial-media { grid-column: 2; }
.editorial-copy { min-width: 0; grid-column: 2; grid-row: 1; padding: 1rem 0; }
.media-right .editorial-copy { grid-column: 1; }
.editorial-media .section-shot { margin: 0; border-radius: 16px; }
.editorial-media .section-shot img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
.editorial-copy .section-title { font-size: clamp(2rem,3vw,3.1rem); }
.editorial-copy .care-grid, .editorial-copy .services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.editorial-copy .persona-grid { grid-template-columns: 1fr; gap: 1rem; }
.editorial-copy .care-card, .editorial-copy .service-card, .editorial-copy .persona-card { padding: 1.3rem; }
.editorial-copy .desktop-br { display: none; }
.editorial-copy .ptype-chips { margin: 1.5rem 0 2rem; }
.seasonal { background: #10201a; }
.seasonal .editorial-copy > p { color: #c7cdd6; margin-bottom: 1.5rem; }
.seasonal .editorial-copy > .kicker { color: #ccff00; }
.urgent-contact { background: #15291e; border-top: 1px solid #435238; border-bottom: 1px solid #435238; }
.urgent-layout { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 3rem; align-items: center; }
.urgent-layout h2 { font-family: var(--font-display); font-size: clamp(2.4rem,4.2vw,4.2rem); line-height: 1.05; margin-bottom: 1rem; color: #f0f2f5; }
.urgent-layout p:not(.kicker) { max-width: 62ch; color: #d5dfd8; }
.urgent-layout .kicker { color: #ccff00; letter-spacing: .12em; }
.urgent-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.urgent-actions .btn { min-height: 54px; }
.urgent-actions .btn-ghost { color: #f0f2f5; border-color: #b6c6ba; }
.urgent-actions span { grid-column: 1 / -1; color: #d5dfd8; text-align: center; }
@media (max-width: 1180px) { .header-cta > .phone { display: none; } }
@media (max-width: 900px) {
  .editorial-split { grid-template-columns: minmax(0,1fr); gap: 1.6rem; }
  .editorial-media, .media-right .editorial-media { position: relative; top: auto; grid-column: 1; grid-row: 1; }
  .editorial-copy, .media-right .editorial-copy { grid-column: 1; grid-row: 2; padding: 0; }
  .editorial-media .section-shot img { aspect-ratio: 4 / 3; }
  .urgent-layout { grid-template-columns: 1fr; gap: 1.8rem; }
  .urgent-actions { max-width: 420px; }
}
@media (max-width: 640px) {
  .brand img { width: 169px; height: 50px; }
  .footer-brand img { width: 216px; height: auto; }
  .editorial-copy .care-grid, .editorial-copy .services-grid { grid-template-columns: 1fr; }
  .editorial-media .section-shot img { aspect-ratio: 4 / 3; }
  .nav-toggle { min-width: 44px; min-height: 44px; }
  .footer-grid nav a, .footer-brand .phone { display: inline-flex; align-items: center; min-height: 44px; }
  .site-footer { padding-bottom: calc(7rem + env(safe-area-inset-bottom)); }
  .sticky-cta { gap: .4rem; padding-bottom: max(.7rem,env(safe-area-inset-bottom)); }
  .sticky-cta .btn { padding: .8rem .7rem; font-size: .82rem; }
  .map-card { bottom: calc(5.5rem + env(safe-area-inset-bottom)); }
}

/* Keep the clock in its own corner, clear of left-aligned captions and CTAs. */
.film-hud { left: auto; right: 1.5rem; align-items: flex-end; }
.hud-chapter { align-items: flex-end; }
@media (max-height: 750px) {
  .film-hud .hud-label, .film-hud .hud-bar { display: none; }
  .film-hud .hud-clock { font-size: 1.35rem; }
}
@media (prefers-reduced-motion: no-preference) {
  .beat-hero { padding-top: 6rem; padding-bottom: 8rem; }
  .beat-hero .hero-line { font-size: min(var(--text-hero), 8svh); }
  .beat-hero p.hero-brand { font-size: min(3rem, 5svh); }
  .beat-hero p.hero-tagline { font-size: min(1.5rem, 3svh); }
  .beat-hero .sub { font-size: min(var(--text-lg), 2.8svh); }
}
@media (max-width: 640px) and (prefers-reduced-motion: no-preference) {
  .film-hud { right: 1.25rem; }
  .beat-hero .hero-line { font-size: min(clamp(2rem, 8.5vw, 3rem), 6svh); }
  .beat-hero .sub { font-size: 1rem; }
}
@media (max-height: 500px) and (prefers-reduced-motion: no-preference) {
  .beat-hero { padding-top: 5rem; padding-bottom: 4rem; }
  .beat-hero .sub { display: none; }
}
