/* ==========================================================================
   BURT'S RV SERVICE AND REPAIR — "Alpine Expedition Luxury"
   Vanilla CSS. No frameworks, no build step.
   Palette sampled directly from the brand logo artwork.
   ========================================================================== */

/* ---------------------------------------------------------------
   1. TOKENS
   --------------------------------------------------------------- */
:root {
  /* Ink — from the logo wordmark */
  --pine-900: #0A222A;
  --pine-800: #0F3038;
  --pine-700: #18383F;
  --pine-600: #20413F;

  /* Teal — from the logo mountains */
  --teal-500: #2D656B;
  --teal-400: #3E7B78;
  --teal-300: #59837E;

  /* Forest — from the badge poster */
  --forest-700: #192823;
  --forest-500: #253C2D;
  --forest-400: #40685D;

  /* Amber — the motorhome body, the campfire. THE accent. */
  --amber-500: #E8AC31;
  --amber-400: #F0BE55;
  --amber-600: #C98F20;

  /* Warm neutrals */
  --cream-50: #FDFCFA;
  --cream-100: #F8F0DC;
  --cream-200: #EDE3CB;
  --sand-400: #C9BCA0;

  /* Semantic */
  --ok: #4E9A6B;
  --err: #C4553C;

  /* Text on dark ground */
  --ink-hi: var(--cream-50);
  --ink-mid: rgba(253, 252, 250, 0.78);
  --ink-low: rgba(253, 252, 250, 0.56);

  /* Text on cream ground (contrast-checked) */
  --ink-dark-hi: var(--pine-900);
  --ink-dark-mid: #34504F;
  --ink-dark-low: #4C6462;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Instrument Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --fs-display: clamp(2.75rem, 1.4rem + 6.2vw, 6.5rem);
  --fs-h1: clamp(2.25rem, 1.3rem + 4.2vw, 4.25rem);
  --fs-h2: clamp(1.75rem, 1.2rem + 2.4vw, 3rem);
  --fs-h3: clamp(1.25rem, 1.05rem + 0.9vw, 1.75rem);
  --fs-body: clamp(1rem, 0.96rem + 0.22vw, 1.125rem);
  --fs-sm: 0.9375rem;
  --fs-mono: 0.72rem;

  /* Space */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --section-y: clamp(5rem, 11vh, 9rem);
  --container: min(1240px, 92vw);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Depth — four-layer stacks, never a single shadow */
  --elev-1:
    0 1px 2px rgba(10, 34, 42, 0.28),
    0 2px 6px rgba(10, 34, 42, 0.22),
    0 8px 20px rgba(10, 34, 42, 0.18),
    inset 0 1px 0 rgba(253, 252, 250, 0.07);
  --elev-2:
    0 2px 3px rgba(10, 34, 42, 0.28),
    0 6px 14px rgba(10, 34, 42, 0.24),
    0 16px 34px rgba(10, 34, 42, 0.2),
    inset 0 1px 0 rgba(253, 252, 250, 0.08);
  --elev-3:
    0 2px 4px rgba(10, 34, 42, 0.30),
    0 8px 18px rgba(10, 34, 42, 0.26),
    0 24px 48px rgba(10, 34, 42, 0.22),
    0 48px 96px rgba(10, 34, 42, 0.18),
    inset 0 1px 0 rgba(253, 252, 250, 0.09);
  --elev-light:
    0 1px 2px rgba(15, 48, 56, 0.06),
    0 4px 10px rgba(15, 48, 56, 0.07),
    0 14px 30px rgba(15, 48, 56, 0.08),
    0 30px 60px rgba(15, 48, 56, 0.05);
  --glow-amber:
    0 0 0 1px rgba(232, 172, 49, 0.30),
    0 8px 32px rgba(232, 172, 49, 0.22),
    0 20px 60px rgba(232, 172, 49, 0.12);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 160ms;
  --dur-base: 320ms;
  --dur-slow: 620ms;

  /* z-index scale */
  --z-base: 1;
  --z-raised: 10;
  --z-sticky: 20;
  --z-header: 100;
  --z-dropdown: 300;
  --z-drawer: 800;
  --z-modal: 999;
  --z-toast: 9999;
}

/* ---------------------------------------------------------------
   2. RESET & BASE
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink-hi);
  background: var(--pine-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

/* Room for the mobile sticky action bar */
@media (max-width: 768px) {
  body { padding-bottom: 76px; }
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

h1, h2, h3, h4, h5 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.06; letter-spacing: -0.03em; font-variation-settings: "SOFT" 40, "WONK" 1, "opsz" 90; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--amber-500); color: var(--pine-900); }

/* Focus — visible on every interactive element */
:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: var(--z-toast);
  padding: 14px 26px;
  background: var(--amber-500);
  color: var(--pine-900);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top var(--dur-base) var(--ease-out);
}
.skip-link:focus { top: 0; }

.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;
}

/* ---------------------------------------------------------------
   3. SITE TEXTURE — noise + topographic contours
   --------------------------------------------------------------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: var(--z-toast);
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
}

.topo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='620' height='620' viewBox='0 0 620 620'%3E%3Cg fill='none' stroke='%23F8F0DC' stroke-width='1.1'%3E%3Cpath d='M-40 300c90-70 190-70 280-10s180 60 270-20 150-70 210-20'/%3E%3Cpath d='M-40 350c90-70 190-70 280-10s180 60 270-20 150-70 210-20'/%3E%3Cpath d='M-40 402c90-70 190-70 280-10s180 60 270-20 150-70 210-20'/%3E%3Cpath d='M-40 456c90-70 190-70 280-10s180 60 270-20 150-70 210-20'/%3E%3Cpath d='M-40 512c90-70 190-70 280-10s180 60 270-20 150-70 210-20'/%3E%3Cpath d='M-40 570c90-70 190-70 280-10s180 60 270-20 150-70 210-20'/%3E%3Cpath d='M-40 244c90-70 190-70 280-10s180 60 270-20 150-70 210-20'/%3E%3Cpath d='M-40 190c90-70 190-70 280-10s180 60 270-20 150-70 210-20'/%3E%3Cpath d='M-40 138c90-70 190-70 280-10s180 60 270-20 150-70 210-20'/%3E%3Cpath d='M-40 88c90-70 190-70 280-10s180 60 270-20 150-70 210-20'/%3E%3Cpath d='M-40 40c90-70 190-70 280-10s180 60 270-20 150-70 210-20'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 620px 620px;
}
.topo--dark { opacity: 0.05; }
.sect--cream .topo {
  opacity: 0.10;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='620' height='620' viewBox='0 0 620 620'%3E%3Cg fill='none' stroke='%230F3038' stroke-width='1.1'%3E%3Cpath d='M-40 300c90-70 190-70 280-10s180 60 270-20 150-70 210-20'/%3E%3Cpath d='M-40 350c90-70 190-70 280-10s180 60 270-20 150-70 210-20'/%3E%3Cpath d='M-40 402c90-70 190-70 280-10s180 60 270-20 150-70 210-20'/%3E%3Cpath d='M-40 456c90-70 190-70 280-10s180 60 270-20 150-70 210-20'/%3E%3Cpath d='M-40 512c90-70 190-70 280-10s180 60 270-20 150-70 210-20'/%3E%3Cpath d='M-40 570c90-70 190-70 280-10s180 60 270-20 150-70 210-20'/%3E%3Cpath d='M-40 244c90-70 190-70 280-10s180 60 270-20 150-70 210-20'/%3E%3Cpath d='M-40 190c90-70 190-70 280-10s180 60 270-20 150-70 210-20'/%3E%3Cpath d='M-40 138c90-70 190-70 280-10s180 60 270-20 150-70 210-20'/%3E%3Cpath d='M-40 88c90-70 190-70 280-10s180 60 270-20 150-70 210-20'/%3E%3Cpath d='M-40 40c90-70 190-70 280-10s180 60 270-20 150-70 210-20'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---------------------------------------------------------------
   4. LAYOUT PRIMITIVES
   --------------------------------------------------------------- */
.container { width: var(--container); margin-inline: auto; }

.sect {
  position: relative;
  padding-block: var(--section-y);
  overflow: clip;
}
.sect--cream { background: var(--cream-100); color: var(--ink-dark-hi); }
.sect--forest { background: linear-gradient(170deg, var(--forest-700), var(--pine-900)); }
.sect--tight { padding-block: clamp(3rem, 6vh, 5rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-500);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--amber-500);
  flex: none;
}
.sect--cream .eyebrow { color: var(--amber-600); }
.sect--cream .eyebrow::before { background: var(--amber-600); }

.sect-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sect-head h2 { font-size: var(--fs-h2); }
.sect-head p {
  margin-top: var(--sp-4);
  color: var(--ink-mid);
  max-width: 60ch;
}
.sect--cream .sect-head p { color: var(--ink-dark-mid); }

.lead { font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.3125rem); line-height: 1.6; }
.muted { color: var(--ink-mid); }
.sect--cream .muted { color: var(--ink-dark-mid); }
.amber { color: var(--amber-500); }
.measure { max-width: 68ch; }

/* ---------------------------------------------------------------
   5. GLASS SURFACE
   --------------------------------------------------------------- */
.glass {
  position: relative;
  background: linear-gradient(150deg, rgba(253, 252, 250, 0.09), rgba(253, 252, 250, 0.03));
  border: 1px solid rgba(253, 252, 250, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--elev-1);
  isolation: isolate;
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .glass {
    -webkit-backdrop-filter: blur(22px) saturate(155%);
    backdrop-filter: blur(22px) saturate(155%);
  }
}
/* Opaque fallback where backdrop-filter is unsupported */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass { background: rgba(24, 56, 63, 0.94); }
}

/* Gradient-border sheen */
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(150deg, rgba(253, 252, 250, 0.34), rgba(253, 252, 250, 0) 42%, rgba(232, 172, 49, 0.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

/* Pointer-tracked sheen (set via JS custom props) */
.sheen::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 0%), rgba(232, 172, 49, 0.16), transparent 62%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
  pointer-events: none;
  z-index: 0;
}
.sheen:hover::after, .sheen:focus-within::after { opacity: 1; }

.glass--light {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 48, 56, 0.10);
  box-shadow: var(--elev-light);
  color: var(--ink-dark-hi);
}
.glass--light::before {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 42%, rgba(232, 172, 49, 0.24));
}

/* ---------------------------------------------------------------
   6. BUTTONS
   --------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.005em;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform var(--dur-base) var(--ease-spring),
    box-shadow var(--dur-base) var(--ease-out),
    background-color var(--dur-base) var(--ease-out),
    color var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out);
  will-change: transform;
}
.btn svg { flex: none; width: 18px; height: 18px; }

.btn--primary {
  background: linear-gradient(160deg, var(--amber-400), var(--amber-500) 55%, var(--amber-600));
  color: var(--pine-900);
  box-shadow: var(--elev-1);
}
.btn--primary:hover { box-shadow: var(--glow-amber), var(--elev-2); }

.btn--ghost {
  background: rgba(253, 252, 250, 0.05);
  color: var(--ink-hi);
  border: 1px solid rgba(253, 252, 250, 0.22);
}
.btn--ghost:hover {
  background: rgba(253, 252, 250, 0.11);
  border-color: rgba(232, 172, 49, 0.55);
}

.btn--dark {
  background: var(--pine-800);
  color: var(--cream-50);
  box-shadow: var(--elev-light);
}
.btn--dark:hover { background: var(--pine-900); }

.btn--outline-dark {
  border: 1px solid rgba(15, 48, 56, 0.28);
  color: var(--pine-800);
}
.btn--outline-dark:hover { border-color: var(--amber-600); background: rgba(232, 172, 49, 0.10); }

.btn--lg { min-height: 56px; padding: 16px 34px; font-size: 1rem; }
.btn--block { width: 100%; }

/* Arrow-slide micro-interaction */
.btn .arrow { transition: transform var(--dur-base) var(--ease-spring); }
.btn:hover .arrow { transform: translateX(4px); }

/* Text link with wiping underline */
.link-wipe {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--amber-500);
  padding-block: 2px;
}
.link-wipe::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.link-wipe:hover::after { transform: scaleX(1); }
.sect--cream .link-wipe { color: var(--amber-600); }

/* ---------------------------------------------------------------
   7. TOP BAR
   --------------------------------------------------------------- */
.topbar {
  position: relative;
  z-index: var(--z-header);
  background: var(--forest-700);
  border-bottom: 1px solid rgba(253, 252, 250, 0.08);
  font-size: 0.8125rem;
}
.topbar__inner {
  width: var(--container);
  margin-inline: auto;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  flex-wrap: wrap;
  padding-block: 6px;
}
.topbar__group { display: flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap; }
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-mid);
  transition: color var(--dur-fast) var(--ease-out);
}
.topbar__item svg { width: 15px; height: 15px; color: var(--amber-500); flex: none; }
a.topbar__item:hover { color: var(--amber-500); }
.topbar__phone { font-family: var(--font-mono); letter-spacing: 0.06em; font-weight: 500; }

.socials { display: inline-flex; align-items: center; gap: 4px; }
.socials a {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--ink-mid);
  transition: color var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out), transform var(--dur-base) var(--ease-spring);
}
.socials a svg { width: 17px; height: 17px; }
.socials a:hover { color: var(--amber-500); background: rgba(232, 172, 49, 0.12); transform: translateY(-2px); }

.topbar__sep { width: 1px; height: 18px; background: rgba(253, 252, 250, 0.16); }

@media (max-width: 900px) {
  .topbar__inner { justify-content: center; gap: var(--sp-4); }
  .topbar__hide-sm { display: none; }
  .topbar__sep { display: none; }
}

/* ---------------------------------------------------------------
   8. HEADER / NAV
   --------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(10, 34, 42, 0.55);
  border-bottom: 1px solid rgba(253, 252, 250, 0.08);
  transition: background-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .header { -webkit-backdrop-filter: blur(20px) saturate(150%); backdrop-filter: blur(20px) saturate(150%); }
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .header { background: rgba(10, 34, 42, 0.97); }
}
.header.is-stuck {
  background: rgba(10, 34, 42, 0.92);
  box-shadow: var(--elev-2);
  border-bottom-color: rgba(232, 172, 49, 0.18);
}

.header__inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  height: 88px;
  transition: height var(--dur-base) var(--ease-out);
}
.header.is-stuck .header__inner { height: 66px; }

/* LOGO AREA — image only. No text wordmark, ever.
   The source artwork is dark ink on an OPAQUE near-white ground (not a
   transparent PNG), so it is presented on a cream "builder's plate" rather than
   colour-filtered — filtering it would flatten it to a solid white rectangle. */
.logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--cream-50), var(--cream-200));
  border: 1px solid rgba(232, 172, 49, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 2px rgba(10, 34, 42, 0.3),
    0 6px 16px rgba(10, 34, 42, 0.32),
    0 14px 34px rgba(10, 34, 42, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base) var(--ease-out);
}
.brand:hover { transform: translateY(-2px) scale(1.015); }
.brand:hover { box-shadow: var(--glow-amber); }
.brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: height var(--dur-base) var(--ease-out);
}
.header.is-stuck .brand img { height: 38px; }

/* Progress bar */
.progress {
  position: absolute;
  left: 0; bottom: -1px;
  height: 2px;
  width: 100%;
  transform: scaleX(var(--p, 0));
  transform-origin: left;
  background: linear-gradient(90deg, var(--amber-600), var(--amber-400));
  box-shadow: 0 0 12px rgba(232, 172, 49, 0.6);
}

/* Desktop nav */
.nav { display: flex; align-items: center; gap: 2px; }
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 10px 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-mid);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease-out);
  cursor: pointer;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 2px;
  background: var(--amber-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
  border-radius: 2px;
}
.nav__link:hover { color: var(--ink-hi); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--cream-50); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link .chev { width: 14px; height: 14px; transition: transform var(--dur-base) var(--ease-out); }

/* Mega dropdown */
.nav__item { position: relative; }
.nav__item--has-mega:hover .mega,
.nav__item--has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.nav__item--has-mega:hover .chev,
.nav__item--has-mega:focus-within .chev { transform: rotate(180deg); }

.mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(660px, 88vw);
  padding: var(--sp-5);
  background: rgba(15, 48, 56, 0.97);
  border: 1px solid rgba(253, 252, 250, 0.13);
  border-radius: var(--radius-lg);
  box-shadow: var(--elev-3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility var(--dur-base);
  z-index: var(--z-dropdown);
}
@supports (backdrop-filter: blur(1px)) {
  .mega { -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px); }
}
.mega__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mega__link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border-radius: var(--radius);
  transition: background-color var(--dur-fast) var(--ease-out), transform var(--dur-base) var(--ease-out);
  cursor: pointer;
}
.mega__link:hover { background: rgba(232, 172, 49, 0.10); transform: translateX(3px); }
.mega__num { font-family: var(--font-mono); font-size: 0.7rem; color: var(--amber-500); letter-spacing: 0.1em; padding-top: 3px; }
.mega__title { display: block; font-weight: 600; font-size: 0.9375rem; color: var(--cream-50); }
.mega__desc { display: block; font-size: 0.8125rem; color: var(--ink-low); line-height: 1.5; margin-top: 2px; }
.mega__foot {
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(253, 252, 250, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.header__cta { display: flex; align-items: center; gap: var(--sp-3); flex: none; }

/* Burger */
.burger {
  display: none;
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  place-items: center;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream-50);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-spring), opacity var(--dur-fast) var(--ease-out);
}
.burger span + span { margin-top: 6px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  background: rgba(10, 34, 42, 0.97);
  padding: 110px var(--sp-5) var(--sp-7);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base) var(--ease-out), visibility var(--dur-base);
}
@supports (backdrop-filter: blur(1px)) {
  .drawer { -webkit-backdrop-filter: blur(26px); backdrop-filter: blur(26px); }
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer__list { display: grid; gap: 2px; max-width: 560px; margin-inline: auto; }
.drawer__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-bottom: 1px solid rgba(253, 252, 250, 0.07);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
}
.drawer.is-open .drawer__list a { opacity: 1; transform: none; }
.drawer__list a:active, .drawer__list a:hover { background: rgba(232, 172, 49, 0.10); }
.drawer__list a[aria-current="page"] { color: var(--amber-500); }
.drawer__list .idx { font-family: var(--font-mono); font-size: 0.7rem; color: var(--amber-500); letter-spacing: 0.14em; }
.drawer__foot { max-width: 560px; margin: var(--sp-6) auto 0; display: grid; gap: var(--sp-3); }

@media (max-width: 1080px) {
  .nav, .header__cta .btn { display: none; }
  .burger { display: grid; }
}

/* ---------------------------------------------------------------
   9. HERO
   --------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(640px, 92vh, 940px);
  display: flex;
  align-items: center;
  padding-block: clamp(4rem, 9vh, 7rem);
  overflow: clip;
  background: radial-gradient(120% 90% at 78% 8%, #16414A 0%, var(--pine-900) 58%, #071A21 100%);
}

.hero__layers { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__layer { position: absolute; left: 0; right: 0; will-change: transform; }
.hero__ridge { bottom: -2px; width: 100%; }
.hero__ridge svg { width: 100%; height: auto; display: block; }

.hero__ember {
  position: absolute;
  right: 6%;
  top: 16%;
  width: min(720px, 74vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 172, 49, 0.26), rgba(232, 172, 49, 0.07) 42%, transparent 68%);
  filter: blur(28px);
  animation: breathe 9s var(--ease-out) infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.13); opacity: 1; }
}

.hero__inner {
  position: relative;
  z-index: var(--z-raised);
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero h1 {
  font-size: var(--fs-h1);
  font-variation-settings: "SOFT" 40, "WONK" 1, "opsz" 120;
  font-weight: 650;
  text-wrap: balance;
}
.hero h1 .line { display: block; }
.hero h1 .em {
  display: block;
  color: var(--amber-500);
  font-style: italic;
  font-variation-settings: "SOFT" 80, "WONK" 1, "opsz" 144;
}
.hero__sub {
  margin-top: var(--sp-5);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.hero__actions { margin-top: var(--sp-6); display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* Trust strip */
.trust {
  margin-top: clamp(2rem, 5vw, 3.25rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 2px;
  border-radius: var(--radius);
  overflow: hidden;
}
.trust__cell {
  padding: 18px 14px;
  text-align: center;
  background: rgba(253, 252, 250, 0.035);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trust__k {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--cream-50);
  line-height: 1;
}
.trust__v {
  margin-top: 8px;
  min-height: 2.4em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-low);
}
.stars { display: inline-flex; gap: 2px; color: var(--amber-500); }
.stars svg { width: 15px; height: 15px; }

/* Hero poster card */
.hero__poster { position: relative; perspective: 1200px; }
.poster-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transform: rotate(-4deg);
  transform-style: preserve-3d;
  box-shadow: var(--elev-3);
  border: 1px solid rgba(253, 252, 250, 0.16);
  will-change: transform;
}
.poster-card img { width: 100%; height: auto; display: block; }
.poster-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(253, 252, 250, 0.22), transparent 44%);
  pointer-events: none;
}
.poster-glow {
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 172, 49, 0.30), transparent 62%);
  filter: blur(46px);
  z-index: -1;
}

/* Floating badge on poster */
.poster-badge {
  position: absolute;
  left: -20px;
  bottom: -18px;
  z-index: var(--z-raised);
  padding: 12px 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: bob 6.5s var(--ease-out) infinite;
}
.poster-badge img { width: 20px; height: 20px; }
.poster-badge .n { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: var(--z-raised);
  display: grid;
  place-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-low);
}
.scroll-cue svg { width: 20px; height: 20px; animation: floatY 2.2s var(--ease-out) infinite; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(7px); opacity: 1; }
}

/* Ambient drifters */
.drifter { position: absolute; pointer-events: none; opacity: 0.16; z-index: var(--z-base); }
.drifter--a { top: 18%; left: 5%; width: 54px; animation: drift1 18s ease-in-out infinite; }
.drifter--b { bottom: 22%; left: 44%; width: 38px; animation: drift2 22s ease-in-out infinite; }
.drifter--c { top: 30%; right: 3%; width: 68px; animation: drift1 15s ease-in-out infinite reverse; }
@keyframes drift1 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(14px, -26px, 0) rotate(7deg); }
}
@keyframes drift2 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(-20px, -18px, 0) rotate(-6deg); }
}

/* Page hero (inner pages) */
.phero {
  position: relative;
  padding-block: clamp(4.5rem, 10vh, 8rem) clamp(3rem, 6vh, 5rem);
  background: radial-gradient(110% 100% at 76% 0%, #164049 0%, var(--pine-900) 62%, #071A21 100%);
  overflow: clip;
}
.phero__inner { position: relative; z-index: var(--z-raised); }
.phero h1 { font-size: var(--fs-h2); max-width: 20ch; text-wrap: balance; }
.phero p { margin-top: var(--sp-5); color: var(--ink-mid); max-width: 62ch; }
.phero__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.phero__art img { border-radius: var(--radius-lg); box-shadow: var(--elev-3); border: 1px solid rgba(253, 252, 250, 0.14); }

/* Breadcrumb */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-low);
  margin-bottom: var(--sp-5);
}
.crumbs a { transition: color var(--dur-fast) var(--ease-out); }
.crumbs a:hover { color: var(--amber-500); }
.crumbs [aria-current] { color: var(--amber-500); }
.crumbs .sep { opacity: 0.4; }

/* ---------------------------------------------------------------
   10. SPECIALTY TILES
   --------------------------------------------------------------- */
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.spec {
  padding: var(--sp-6) var(--sp-5);
  border-radius: var(--radius-lg);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.spec:hover { transform: translateY(-8px); box-shadow: var(--glow-amber), var(--elev-2); border-color: rgba(232, 172, 49, 0.4); }
.spec__ico {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(232, 172, 49, 0.12);
  border: 1px solid rgba(232, 172, 49, 0.24);
  color: var(--amber-500);
  margin-bottom: var(--sp-4);
}
.spec__ico svg { width: 26px; height: 26px; }
.spec:hover .spec__ico svg path,
.spec:hover .spec__ico svg circle,
.spec:hover .spec__ico svg polyline { animation: draw 900ms var(--ease-out) forwards; }
@keyframes draw {
  from { stroke-dasharray: 90; stroke-dashoffset: 90; }
  to { stroke-dasharray: 90; stroke-dashoffset: 0; }
}
.spec h3 { font-size: 1.1875rem; margin-bottom: 8px; }
.spec p { font-size: 0.9rem; color: var(--ink-mid); line-height: 1.6; }

/* ---------------------------------------------------------------
   11. SERVICES — BENTO
   --------------------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(190px, auto);
  gap: var(--sp-4);
}
.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  will-change: transform;
}
.tile:hover { box-shadow: var(--glow-amber), var(--elev-3); border-color: rgba(232, 172, 49, 0.42); }
.tile__num {
  position: absolute;
  top: var(--sp-5); right: var(--sp-5);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: rgba(232, 172, 49, 0.75);
  z-index: 2;
}
.tile__ico { color: var(--amber-500); margin-bottom: auto; position: relative; z-index: 2; }
.tile__ico svg { width: 30px; height: 30px; }
.tile__body { position: relative; z-index: 2; transform: translateZ(24px); }
.tile h3 { font-size: var(--fs-h3); margin-bottom: 8px; }
.tile p { font-size: 0.9rem; color: var(--ink-mid); line-height: 1.6; max-width: 42ch; }
.tile__go {
  margin-top: var(--sp-4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-500);
}
.tile__go svg { width: 14px; height: 14px; transition: transform var(--dur-base) var(--ease-spring); }
.tile:hover .tile__go svg { transform: translateX(5px); }

.tile--feature { grid-column: span 2; grid-row: span 2; padding: var(--sp-6); }
.tile--feature h3 { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem); }
.tile--feature .tile__media { position: absolute; inset: 0; z-index: 0; }
.tile--feature .tile__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.30;
  transform: scale(1.04);
  transition: transform 9s var(--ease-out), opacity var(--dur-slow) var(--ease-out);
}
.tile--feature:hover .tile__media img { transform: scale(1.14); opacity: 0.38; }
.tile--feature .tile__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 34, 42, 0.55) 0%, rgba(10, 34, 42, 0.86) 62%, var(--pine-900) 100%);
}
.tile--tall { grid-row: span 2; }

/* Horizontal service rows (services.html) */
.srow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
}
.srow:nth-child(even) .srow__art { order: -1; }
.srow__art { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--elev-2); }
.srow__art img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.srow:hover .srow__art img { transform: scale(1.05); }
.srow h3 { font-size: var(--fs-h3); margin-bottom: var(--sp-3); }

/* ---------------------------------------------------------------
   12. CHECK LISTS / PROCESS
   --------------------------------------------------------------- */
.checks { display: grid; gap: 12px; margin-top: var(--sp-4); }
.checks li { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; font-size: 0.9375rem; color: var(--ink-mid); }
.checks svg { width: 19px; height: 19px; color: var(--amber-500); margin-top: 3px; flex: none; }
.sect--cream .checks li { color: var(--ink-dark-mid); }
.sect--cream .checks svg { color: var(--amber-600); }

.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; }

.steps { position: relative; display: grid; gap: var(--sp-5); }
.steps::before {
  content: "";
  position: absolute;
  left: 23px; top: 12px; bottom: 12px;
  width: 2px;
  background: rgba(253, 252, 250, 0.12);
}
.steps::after {
  content: "";
  position: absolute;
  left: 23px; top: 12px;
  width: 2px;
  height: var(--fill, 0%);
  background: linear-gradient(180deg, var(--amber-400), var(--amber-600));
  box-shadow: 0 0 14px rgba(232, 172, 49, 0.5);
  transition: height 900ms var(--ease-out);
}
.sect--cream .steps::before { background: rgba(15, 48, 56, 0.14); }
.step { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: var(--sp-4); align-items: start; }
.step__n {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--pine-800);
  border: 2px solid rgba(232, 172, 49, 0.4);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--amber-500);
  z-index: 2;
  flex: none;
}
.sect--cream .step__n { background: var(--cream-50); }
.step h3 { font-size: 1.1875rem; margin-bottom: 6px; }
.step p { font-size: 0.9375rem; color: var(--ink-mid); }
.sect--cream .step p { color: var(--ink-dark-mid); }

/* ---------------------------------------------------------------
   13. ABOUT — sticky poster
   --------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.about-art { position: relative; }
@media (min-width: 981px) {
  .about-art--sticky { position: sticky; top: 130px; }
}
.about-art__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: rotate(3deg);
  box-shadow: var(--elev-light);
  border: 1px solid rgba(15, 48, 56, 0.12);
  transition: transform var(--dur-slow) var(--ease-out);
}
.about-art:hover .about-art__frame { transform: rotate(0.5deg) scale(1.015); }
.about-art__frame img { width: 100%; height: auto; }
.about-art__counter {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--amber-500);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.dropcap::first-letter {
  float: left;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 90, "WONK" 1, "opsz" 144;
  font-size: 4.2em;
  line-height: 0.78;
  font-weight: 700;
  padding: 0.05em 0.12em 0 0;
  color: var(--amber-600);
}

.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); margin-top: var(--sp-6); }
.pillar {
  padding: var(--sp-5);
  border-radius: var(--radius);
  background: rgba(15, 48, 56, 0.05);
  border: 1px solid rgba(15, 48, 56, 0.10);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.pillar:hover { transform: translateY(-5px); box-shadow: var(--elev-light); }
.pillar h3 { font-size: 1.0625rem; margin-bottom: 6px; }
.pillar p { font-size: 0.875rem; color: var(--ink-dark-mid); }

/* ---------------------------------------------------------------
   14. REVIEWS
   --------------------------------------------------------------- */
.rv-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-5);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.rv-score { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.rv-score__num { font-family: var(--font-display); font-size: 3.25rem; font-weight: 700; line-height: 1; }
.rv-score__meta { display: grid; gap: 5px; }
.rv-score__meta .stars svg { width: 18px; height: 18px; }
.rv-score__label { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-low); }
.google-mark { height: 17px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }

/* Filter pills */
.filters {
  position: relative;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 5px;
  border-radius: 100px;
  margin-bottom: var(--sp-6);
}
.filters__pill {
  position: relative;
  z-index: 2;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-mid);
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out);
}
.filters__pill:hover { color: var(--ink-hi); background: rgba(253, 252, 250, 0.06); }
.filters__pill[aria-pressed="true"] { color: var(--pine-900); }
.filters__ind {
  position: absolute;
  top: 5px;
  left: 0;
  height: calc(100% - 10px);
  border-radius: 100px;
  background: linear-gradient(160deg, var(--amber-400), var(--amber-600));
  box-shadow: 0 4px 18px rgba(232, 172, 49, 0.4);
  transform: translateX(var(--x, 0px));
  width: var(--w, 0px);
  transition: transform var(--dur-base) var(--ease-spring), width var(--dur-base) var(--ease-spring);
  z-index: 1;
  pointer-events: none;
}

.rv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  align-items: start;
}
.rv-card {
  position: relative;
  padding: var(--sp-6);
  border-radius: var(--radius-lg);
  transform-style: preserve-3d;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
  will-change: transform;
}
.rv-card:nth-child(2) { transform: translateY(26px); }
.rv-card:nth-child(3) { transform: translateY(-14px); }
.rv-card:hover { box-shadow: var(--glow-amber), var(--elev-3); border-color: rgba(232, 172, 49, 0.4); }
.rv-card.is-hidden { display: none; }
.rv-card.is-fading { opacity: 0; transform: scale(0.96); }
.rv-card__quote {
  position: absolute;
  top: 16px; right: 22px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(232, 172, 49, 0.16);
  pointer-events: none;
}
.rv-card__tag {
  display: inline-block;
  margin-bottom: var(--sp-4);
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(232, 172, 49, 0.12);
  border: 1px solid rgba(232, 172, 49, 0.26);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--amber-500);
}
.rv-card__text { font-size: 0.9375rem; line-height: 1.72; color: var(--ink-mid); margin-block: var(--sp-3) var(--sp-5); }
.rv-card__who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.rv-avatar { position: relative; flex: none; }
.rv-avatar > img:first-child {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(232, 172, 49, 0.34);
  object-fit: cover;
}
.rv-avatar__g {
  position: absolute;
  right: -3px; bottom: -3px;
  width: 22px; height: 22px;
  padding: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.rv-card__name { font-weight: 600; font-size: 0.9375rem; }
.rv-card__date { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; color: var(--ink-low); text-transform: uppercase; }

.rv-empty {
  grid-column: 1 / -1;
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px dashed rgba(232, 172, 49, 0.32);
  background: rgba(232, 172, 49, 0.04);
}
.rv-empty h3 { font-size: 1.375rem; margin-bottom: 10px; }
.rv-empty p { color: var(--ink-mid); max-width: 46ch; margin: 0 auto var(--sp-5); }
.rv-empty.is-hidden { display: none; }

.rv-foot {
  margin-top: var(--sp-7);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.rv-note {
  margin-top: var(--sp-4);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-low);
}

/* Single embedded review (service pages) */
.rv-solo { display: grid; grid-template-columns: auto 1fr; gap: var(--sp-5); padding: var(--sp-6); border-radius: var(--radius-lg); align-items: start; }

/* ---------------------------------------------------------------
   15. CTA BAND / TRAIL DIVIDER
   --------------------------------------------------------------- */
.band {
  position: relative;
  padding-block: clamp(3.5rem, 8vh, 6rem);
  background: linear-gradient(140deg, var(--forest-700), var(--pine-800) 55%, var(--teal-500));
  overflow: clip;
}
.band__inner {
  position: relative;
  z-index: var(--z-raised);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.band h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem); max-width: 18ch; }
.band p { margin-top: var(--sp-3); color: var(--ink-mid); max-width: 46ch; }
.band__actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

.road {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  overflow: hidden;
}
.road::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, var(--amber-500) 0 34px, transparent 34px 74px);
  opacity: 0.5;
  animation: roll 6s linear infinite;
}
@keyframes roll {
  to { transform: translateX(-74px); }
}

/* ---------------------------------------------------------------
   16. SERVICE AREAS
   --------------------------------------------------------------- */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.areas-map { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: var(--sp-5); }
.areas-map svg { width: 100%; height: auto; }
.pin { transform-origin: center; }
.pin circle:first-child { animation: pulse 2.6s var(--ease-out) infinite; transform-box: fill-box; transform-origin: center; }
.pin:nth-child(2) circle:first-child { animation-delay: 0.4s; }
.pin:nth-child(3) circle:first-child { animation-delay: 0.8s; }
.pin:nth-child(4) circle:first-child { animation-delay: 1.2s; }
.pin:nth-child(5) circle:first-child { animation-delay: 1.6s; }
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0.85; }
  100% { transform: scale(2.6); opacity: 0; }
}

.towns { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 2px; }
.towns li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 4px;
  border-bottom: 1px solid rgba(253, 252, 250, 0.09);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ink-mid);
  transition: color var(--dur-fast) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.towns li:hover { color: var(--amber-500); transform: translateX(4px); }
.towns svg { width: 13px; height: 13px; color: var(--amber-500); flex: none; }
.sect--cream .towns li { border-bottom-color: rgba(15, 48, 56, 0.12); color: var(--ink-dark-mid); }

/* Areas strip on home */
.areas-strip { display: flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap; justify-content: center; }
.areas-strip span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.areas-strip .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--amber-500); }

/* ---------------------------------------------------------------
   17. FAQ ACCORDION
   --------------------------------------------------------------- */
.faq { display: grid; gap: 10px; }
.faq details {
  border-radius: var(--radius);
  border: 1px solid rgba(253, 252, 250, 0.12);
  background: rgba(253, 252, 250, 0.035);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out);
}
.faq details[open] { border-color: rgba(232, 172, 49, 0.4); background: rgba(232, 172, 49, 0.05); }
.sect--cream .faq details { border-color: rgba(15, 48, 56, 0.12); background: rgba(255, 255, 255, 0.6); }
.sect--cream .faq details[open] { border-color: rgba(232, 172, 49, 0.55); background: rgba(255, 255, 255, 0.92); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: 56px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.0625rem;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg {
  width: 20px; height: 20px;
  color: var(--amber-500);
  flex: none;
  transition: transform var(--dur-base) var(--ease-spring);
}
.faq details[open] summary svg { transform: rotate(180deg); }
.faq__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-base) var(--ease-out); }
.faq details[open] .faq__body { grid-template-rows: 1fr; }
.faq__body > div { overflow: hidden; }
.faq__body p { padding: 0 22px 22px; color: var(--ink-mid); font-size: 0.9375rem; max-width: 70ch; }
.sect--cream .faq__body p { color: var(--ink-dark-mid); }
.faq-group { margin-bottom: var(--sp-7); }
.faq-group > .eyebrow { margin-bottom: var(--sp-4); }

/* ---------------------------------------------------------------
   18. FORM
   --------------------------------------------------------------- */
.form-wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form-card { padding: clamp(1.75rem, 4vw, 2.75rem); border-radius: var(--radius-xl); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.field { position: relative; display: grid; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-low);
  margin-bottom: 8px;
}
.field .req { color: var(--amber-500); }

/* Text-like controls only — checkboxes and radios must not inherit the
   50px min-height / padding intended for text inputs. */
.field input:not([type="checkbox"]):not([type="radio"]),
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  background: rgba(253, 252, 250, 0.05);
  border: 1px solid rgba(253, 252, 250, 0.16);
  color: var(--cream-50);
  font-size: 1rem;
  transition: border-color var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.field textarea { min-height: 128px; resize: vertical; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: rgba(253, 252, 250, 0.32); }
.field input:not([type="checkbox"]):not([type="radio"]):hover, .field select:hover, .field textarea:hover { border-color: rgba(253, 252, 250, 0.3); }
.field input:not([type="checkbox"]):not([type="radio"]):focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--amber-500);
  background: rgba(253, 252, 250, 0.08);
  box-shadow: 0 0 0 3px rgba(232, 172, 49, 0.18);
}
.field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23E8AC31' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}
.field select option { background: var(--pine-800); color: var(--cream-50); }

.field[data-invalid="true"] input:not([type="checkbox"]),
.field[data-invalid="true"] select,
.field[data-invalid="true"] textarea { border-color: var(--err); box-shadow: 0 0 0 3px rgba(196, 85, 60, 0.18); }
.field .err {
  display: none;
  margin-top: 7px;
  font-size: 0.8125rem;
  color: #EFA090;
}
.field[data-invalid="true"] .err { display: block; }
.field.shake { animation: shake 400ms var(--ease-out); }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-7px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(2px); }
}

.radio-row { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-chip { position: relative; }
.radio-chip input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.radio-chip span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid rgba(253, 252, 250, 0.18);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}
.radio-chip input:checked + span {
  background: rgba(232, 172, 49, 0.16);
  border-color: var(--amber-500);
  color: var(--amber-400);
}
.radio-chip input:focus-visible + span { outline: 3px solid var(--amber-500); outline-offset: 3px; }

/* Higher specificity than `.field label` so the mono/uppercase label styling
   does not leak into the consent sentence. */
.field label.consent,
.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 0;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink-mid);
  cursor: pointer;
}
.consent input {
  width: 20px; height: 20px;
  margin: 2px 0 0;
  accent-color: var(--amber-500);
  cursor: pointer;
  flex: none;
}
.consent span { min-width: 0; }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.btn .spin { display: none; width: 18px; height: 18px; animation: spin 800ms linear infinite; }
.btn.is-loading .spin { display: block; }
.btn.is-loading .btn-label { opacity: 0.7; }
.btn.is-loading .arrow { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-ok {
  display: none;
  margin-top: var(--sp-5);
  padding: var(--sp-5);
  border-radius: var(--radius);
  border: 1px solid rgba(78, 154, 107, 0.42);
  background: rgba(78, 154, 107, 0.10);
}
.form-ok.is-on { display: block; animation: rise var(--dur-slow) var(--ease-out); }
.form-ok h3 { font-size: 1.125rem; margin-bottom: 6px; color: var(--ok); }
.form-ok p { font-size: 0.9rem; color: var(--ink-mid); }
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* Contact info card */
.info-card { padding: clamp(1.5rem, 3.5vw, 2.25rem); border-radius: var(--radius-xl); display: grid; gap: var(--sp-5); }
.info-row { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.info-row .ic {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(232, 172, 49, 0.12);
  border: 1px solid rgba(232, 172, 49, 0.24);
  color: var(--amber-500);
  flex: none;
}
.info-row .ic svg { width: 19px; height: 19px; }
.info-row dt {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-low);
  margin-bottom: 3px;
}
.info-row dd { margin: 0; font-weight: 600; font-size: 0.9375rem; }
.info-row dd a { transition: color var(--dur-fast) var(--ease-out); }
.info-row dd a:hover { color: var(--amber-500); }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(253, 252, 250, 0.14); box-shadow: var(--elev-2); }
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block; filter: grayscale(0.35) contrast(1.06); }

/* ---------------------------------------------------------------
   19. FOOTER
   --------------------------------------------------------------- */
.footer { position: relative; background: var(--pine-900); overflow: clip; border-top: 1px solid rgba(253, 252, 250, 0.08); }
.footer__inner { position: relative; z-index: var(--z-raised); padding-block: clamp(3.5rem, 7vh, 5.5rem) var(--sp-6); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(2rem, 4vw, 3.5rem); }
.footer__brand .logo-plate { margin-bottom: var(--sp-5); padding: 10px 16px; }
.footer__brand img { height: 74px; width: auto; mix-blend-mode: multiply; }
.footer__brand p { font-size: 0.875rem; color: var(--ink-low); line-height: 1.68; max-width: 40ch; margin-bottom: var(--sp-5); }
.footer h3 {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-500);
  margin-bottom: var(--sp-4);
}
.footer__links { display: grid; gap: 2px; }
.footer__links a {
  display: inline-block;
  padding: 7px 0;
  font-size: 0.875rem;
  color: var(--ink-low);
  transition: color var(--dur-fast) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.footer__links a:hover { color: var(--amber-500); transform: translateX(4px); }
.footer address { font-style: normal; font-size: 0.875rem; color: var(--ink-low); line-height: 1.75; }
.footer address a { transition: color var(--dur-fast) var(--ease-out); }
.footer address a:hover { color: var(--amber-500); }

.footer__bar {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(253, 252, 250, 0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--ink-low);
}
.credit a {
  position: relative;
  color: var(--amber-500);
  font-weight: 600;
}
.credit a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1.5px;
  background: var(--amber-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.credit a:hover::after { transform: scaleX(1); }

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: var(--z-sticky);
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 48, 56, 0.92);
  border: 1px solid rgba(232, 172, 49, 0.34);
  color: var(--amber-500);
  box-shadow: var(--elev-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility var(--dur-base);
  cursor: pointer;
}
.to-top.is-on { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--amber-500); color: var(--pine-900); }
.to-top svg { width: 20px; height: 20px; }
@media (max-width: 768px) { .to-top { bottom: 90px; } }

/* ---------------------------------------------------------------
   20. MOBILE STICKY ACTION BAR
   --------------------------------------------------------------- */
.mbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-sticky);
  display: none;
  gap: 1px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  background: rgba(10, 34, 42, 0.93);
  border-top: 1px solid rgba(253, 252, 250, 0.12);
  box-shadow: var(--elev-3);
  transform: translateY(130%);
  transition: transform var(--dur-base) var(--ease-out);
}
@supports (backdrop-filter: blur(1px)) {
  .mbar { -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); }
}
.mbar.is-on { transform: none; }
.mbar.is-off { transform: translateY(130%); }
.mbar a {
  flex: 1;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 4px;
}
.mbar a svg { width: 19px; height: 19px; }
.mbar__call { position: relative; background: var(--amber-500); color: var(--pine-900); }
.mbar__call::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid var(--amber-500);
  animation: ring 8s var(--ease-out) infinite;
  pointer-events: none;
}
@keyframes ring {
  0%, 88%, 100% { transform: scale(1); opacity: 0; }
  90% { transform: scale(1); opacity: 0.8; }
  99% { transform: scale(1.16); opacity: 0; }
}
.mbar__wa { background: #25D366; color: #06251A; }
@media (max-width: 768px) { .mbar { display: flex; } }

/* ---------------------------------------------------------------
   21. PROMO POPUP
   --------------------------------------------------------------- */
.pop-backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: var(--sp-5);
  background: rgba(10, 34, 42, 0.74);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base) var(--ease-out), visibility var(--dur-base);
}
@supports (backdrop-filter: blur(1px)) {
  .pop-backdrop { -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
}
.pop-backdrop.is-open { opacity: 1; visibility: visible; }

.pop {
  position: relative;
  width: min(540px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(2rem, 5vw, 2.75rem);
  border-radius: var(--radius-xl);
  text-align: center;
  background: linear-gradient(160deg, rgba(22, 62, 71, 0.97), rgba(10, 34, 42, 0.98));
  border: 1px solid rgba(232, 172, 49, 0.34);
  box-shadow: var(--elev-3), var(--glow-amber);
  transform: scale(0.92) translateY(24px);
  opacity: 0;
  transition: transform var(--dur-slow) var(--ease-spring), opacity var(--dur-base) var(--ease-out);
}
.pop-backdrop.is-open .pop { transform: none; opacity: 1; }
.pop::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(150deg, rgba(232, 172, 49, 0.7), transparent 44%, rgba(232, 172, 49, 0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.pop .logo-plate { margin: 0 auto var(--sp-5); padding: 10px 16px; }
.pop__logo { height: 74px; width: auto; mix-blend-mode: multiply; }
.pop h2 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem); margin-bottom: var(--sp-4); text-wrap: balance; }
.pop p { font-size: 0.9375rem; color: var(--ink-mid); line-height: 1.7; max-width: 42ch; margin-inline: auto; }
.pop strong { color: var(--amber-500); }
.pop__timer {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: var(--sp-5) 0;
  padding: 9px 18px;
  border-radius: 100px;
  background: rgba(232, 172, 49, 0.10);
  border: 1px solid rgba(232, 172, 49, 0.3);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-500);
}
.pop__timer .blip { width: 7px; height: 7px; border-radius: 50%; background: var(--amber-500); animation: blip 1.6s var(--ease-out) infinite; }
@keyframes blip { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.pop__actions { display: grid; gap: 10px; margin-top: var(--sp-3); }
.pop__later { min-height: 44px; font-size: 0.875rem; color: var(--ink-low); cursor: pointer; transition: color var(--dur-fast) var(--ease-out); }
.pop__later:hover { color: var(--ink-hi); }
.pop__x {
  position: absolute;
  top: 12px; right: 12px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--ink-low);
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
}
.pop__x:hover { color: var(--cream-50); background: rgba(253, 252, 250, 0.1); }
.pop__x svg { width: 20px; height: 20px; }

body.is-locked { overflow: hidden; }

/* ---------------------------------------------------------------
   22. SCROLL-TRIGGERED ENTRANCES
   --------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.reveal.in-view { opacity: 1; transform: none; }

/* No-JS safety: if JS never runs, content must still be visible */
.no-js .reveal { opacity: 1; transform: none; }

/* ---------------------------------------------------------------
   23. RESPONSIVE
   --------------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--sp-7); }
  .hero__poster { max-width: 460px; margin-inline: auto; width: 100%; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile--feature { grid-column: span 2; grid-row: span 1; min-height: 320px; }
  .tile--tall { grid-row: span 1; }
  .rv-grid { grid-template-columns: repeat(2, 1fr); }
  .rv-card:nth-child(2), .rv-card:nth-child(3) { transform: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .phero__grid { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .form-wrap, .areas-grid { grid-template-columns: 1fr; }
  .srow { grid-template-columns: 1fr; }
  .srow:nth-child(even) .srow__art { order: 0; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .rv-solo { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  :root { --radius-lg: 20px; --radius-xl: 24px; }
  .poster-badge { left: 8px; bottom: -16px; }
  .brand img { height: 42px; }
  .header.is-stuck .brand img { height: 34px; }
  .logo-plate { padding: 5px 10px; border-radius: 12px; }
  .bento, .rv-grid { grid-template-columns: 1fr; }
  .tile--feature { grid-column: span 1; }
  .form-grid, .check-grid, .pillars { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .band__inner { flex-direction: column; align-items: flex-start; }
  .rv-head { flex-direction: column; align-items: flex-start; }
  .footer__bar { flex-direction: column; text-align: center; }
  .about-art__counter { inset: 12px -12px -12px 12px; }
}

@media (max-width: 520px) {
  .spec-grid { grid-template-columns: 1fr; }
  .hero__actions .btn, .band__actions .btn { width: 100%; }
  .filters { padding: 4px; }
  .filters__pill { padding: 10px 15px; font-size: 0.8125rem; }
}

/* ---------------------------------------------------------------
   24. REDUCED MOTION — mandatory gate
   --------------------------------------------------------------- */
@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;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .poster-card { transform: rotate(-4deg) !important; }
  .rv-card:nth-child(2), .rv-card:nth-child(3) { transform: none !important; }
  .hero__layer { transform: none !important; }
}

/* ---------------------------------------------------------------
   25. PRINT
   --------------------------------------------------------------- */
@media print {
  .topbar, .header, .mbar, .pop-backdrop, .to-top, .grain, .drifter, .scroll-cue { display: none !important; }
  body { background: #fff; color: #000; }
  .sect { padding-block: 1.5rem; }
}
