/* North Jersey Car Buyers
   Theme: fixed brand theme, deep racing green + bone + gold. Locked page-wide.
   Radius system: interactive = pill (999px), containers/media = 20px, inputs = 12px.
   Z-scale: 90 loader, 80 grain, 70 sticky header, 60 mobile menu. Nothing else is layered. */

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url("assets/fonts/archivo-var.woff2") format("woff2");
}
@font-face {
  font-family: "Archivo";
  font-style: italic;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url("assets/fonts/archivo-var-italic.woff2") format("woff2");
}

:root {
  --bg: #0B1F17;
  --bg-deep: #071510;
  --bg-raise: #0F2820;
  --panel: #123227;
  --panel-deep: #0E271E;
  --ink: #EDF3EC;
  --ink-dim: #A9BFB0;
  --gold: #E4A93F;
  --gold-bright: #EFC069;
  --gold-ink: #14271D;
  --err: #E8836B;
  --err-text: #FFB3A5;
  --line: rgba(237, 243, 236, 0.14);
  --line-strong: rgba(237, 243, 236, 0.28);
  --line-gold: rgba(228, 169, 63, 0.26);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --r-box: 20px;
  --r-input: 12px;
  --head-h: 76px;
}

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

html {
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Archivo", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 240px 240px;
  opacity: 0.045;
}

img { display: block; max-width: 100%; height: auto; }
/* <picture> wrappers must not create a box: keeps percentage-height images
   (hero/scene/how backgrounds) sizing against their positioned containers */
picture { display: contents; }
a { color: inherit; }
ul, ol { padding: 0; list-style: none; }
button, input, textarea { font: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--gold-ink); }

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 95;
  background: var(--gold);
  color: var(--gold-ink);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: top 0.25s var(--ease);
}
.skip-link:focus-visible { top: 12px; }

.wrap {
  width: min(1320px, 100% - clamp(48px, 8vw, 128px));
  margin-inline: auto;
}

.section { padding-block: clamp(96px, 12vw, 168px); }
[id] { scroll-margin-top: calc(var(--head-h) + 24px); }

/* ---------- type ---------- */

.display {
  font-stretch: 118%;
  font-weight: 840;
  letter-spacing: -0.024em;
  line-height: 1.02;
  text-wrap: balance;
}

.h2 { font-size: clamp(2.2rem, 4.4vw, 3.7rem); max-width: 22ch; }

.lede {
  color: var(--ink-dim);
  font-size: clamp(1.08rem, 1.3vw, 1.2rem);
  max-width: 54ch;
  margin-top: 20px;
}

.accent { font-style: italic; color: var(--gold); padding-bottom: 0.06em; }

.ic { width: 20px; height: 20px; fill: currentColor; flex: none; }

/* ---------- loader ---------- */

.loader {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg-deep);
  align-items: center;
  justify-content: center;
}
.show-loader .loader { display: flex; }
.loader-mark { display: flex; flex-direction: column; align-items: center; overflow: hidden; }
.loader-top {
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.loader-main {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 850;
  font-stretch: 122%;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 6px;
}
.loader-rule {
  width: 120px;
  height: 2px;
  margin-top: 22px;
  background: var(--gold);
  transform-origin: left;
}

/* the intro beat is pure CSS so it starts at first paint, before any JS runs;
   main.js only removes the node afterwards */
@media (prefers-reduced-motion: no-preference) {
  .show-loader .loader-top,
  .show-loader .loader-main {
    animation: loader-rise 0.5s var(--ease) both;
  }
  .show-loader .loader-main { animation-delay: 0.06s; }
  .show-loader .loader-rule {
    animation: loader-rule 0.4s var(--ease) 0.28s both;
  }
  .show-loader .loader-mark {
    animation: loader-mark-out 0.35s cubic-bezier(0.7, 0, 0.84, 0) 0.85s both;
  }
  .show-loader .loader {
    animation: loader-lift 0.55s cubic-bezier(0.87, 0, 0.13, 1) 1.05s both;
  }
}
@keyframes loader-rise {
  from { transform: translateY(120%); opacity: 0; }
}
@keyframes loader-rule {
  from { transform: scaleX(0); }
}
@keyframes loader-mark-out {
  to { transform: translateY(-24%); opacity: 0; }
}
@keyframes loader-lift {
  to { transform: translateY(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .loader { display: none !important; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
    border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn .ic { width: 17px; height: 17px; transition: transform 0.25s var(--ease); }
.btn:active { transform: scale(0.98); }

.btn-gold { background: var(--gold); color: var(--gold-ink); }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-1px); }
.btn-gold:hover .ic { transform: translateX(3px); }

.btn-ghost {
  background: rgba(7, 21, 16, 0.25);
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-ghost .ic { color: var(--gold); }

.btn-sm { height: 44px; padding: 0 22px; font-size: 0.92rem; }

/* ---------- header ---------- */

.site-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  height: var(--head-h);
  border-bottom: 1px solid transparent;
  transition: transform 0.5s var(--ease), background-color 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.site-head.scrolled {
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.site-head.hide { transform: translateY(-100%); }

.head-row {
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-decoration: none;
}
.brand-top {
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.brand-main {
  font-size: 1.08rem;
  font-weight: 850;
  font-stretch: 122%;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.head-nav {
  display: flex;
  gap: clamp(18px, 2.4vw, 30px);
  margin-inline: auto;
}
.head-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 570;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 0;
  opacity: 0.82;
  transition: opacity 0.25s var(--ease);
}
.head-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.head-nav a:hover { opacity: 1; }
.head-nav a:hover::after { transform: scaleX(1); }

.head-actions { display: flex; align-items: center; gap: 18px; }

.head-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 680;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.head-phone .ic { width: 17px; height: 17px; color: var(--gold); }
.head-phone:hover { color: var(--gold-bright); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.burger span {
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  padding: calc(var(--head-h) + 36px) clamp(24px, 6vw, 40px) 40px;
  background: color-mix(in oklab, var(--bg-deep) 98%, black);
  overflow-y: auto;
}
.mobile-menu nav a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.7rem;
  font-weight: 820;
  font-stretch: 118%;
  letter-spacing: -0.018em;
  text-decoration: none;
}
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
body.menu-open { overflow: hidden; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: clip;
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg-inner { position: absolute; inset: 0; will-change: transform; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}
@media (prefers-reduced-motion: no-preference) {
  .js .hero-bg img { animation: kenburns 34s ease-in-out infinite alternate; }
}
@keyframes kenburns {
  from { transform: scale(1) translateX(0); }
  to { transform: scale(1.07) translateX(-1.4%); }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 21, 16, 0.62) 0%, rgba(7, 21, 16, 0.05) 26%),
    linear-gradient(76deg, rgba(7, 21, 16, 0.92) 6%, rgba(7, 21, 16, 0.55) 38%, rgba(7, 21, 16, 0.06) 68%),
    linear-gradient(0deg, rgba(7, 21, 16, 0.9) 0%, rgba(7, 21, 16, 0.32) 34%, rgba(7, 21, 16, 0) 58%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--head-h) + 24px);
  padding-bottom: clamp(60px, 10vh, 112px);
}

.hero-h {
  font-size: clamp(2.9rem, 7vw, 6.4rem);
  line-height: 0.99;
  max-width: 12ch;
}
.line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.line-in { display: inline-block; }

.hero-sub {
  color: var(--ink);
  opacity: 0.86;
  font-size: clamp(1.1rem, 1.4vw, 1.28rem);
  max-width: 44ch;
  margin-top: 30px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

/* hero entrance is pure CSS so the headline rises at first paint with no JS
   on the critical path; GSAP arrives later for scroll choreography only.
   .show-loader shifts the delays so the lines rise as the intro panel lifts. */
@media (prefers-reduced-motion: no-preference) {
  .js .hero-h .line-in {
    transform: translateY(114%);
    animation: line-up 1.15s var(--ease) 0.15s both;
  }
  .js .hero-h .line:nth-child(2) .line-in { animation-delay: 0.27s; }
  .js .hero-h .line:nth-child(3) .line-in { animation-delay: 0.39s; }
  .show-loader .hero-h .line-in { animation-delay: 0.7s; }
  .show-loader .hero-h .line:nth-child(2) .line-in { animation-delay: 0.82s; }
  .show-loader .hero-h .line:nth-child(3) .line-in { animation-delay: 0.94s; }
  .js .hero-sub {
    opacity: 0;
    transform: translateY(28px);
    animation: sub-in 0.9s var(--ease) 0.55s both;
  }
  .js .hero-ctas {
    opacity: 0;
    transform: translateY(28px);
    animation: ctas-in 0.9s var(--ease) 0.7s both;
  }
  .show-loader .hero-sub { animation-delay: 1.1s; }
  .show-loader .hero-ctas { animation-delay: 1.25s; }
  .js .hero-bg-inner { transform: scale(1.13); }
}
@keyframes line-up {
  to { transform: translateY(0); }
}
@keyframes sub-in {
  to { opacity: 0.86; transform: translateY(0); }
}
@keyframes ctas-in {
  to { opacity: 1; transform: translateY(0); }
}

/* hero copy fades out on scroll via a native scroll-driven animation:
   progress maps directly to scroll position, so it can never get stuck hidden */
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .js .hero-copy {
      animation: hero-fade linear both;
      animation-timeline: scroll(nearest block);
      animation-range: 0px 72dvh;
    }
    @keyframes hero-fade {
      to { opacity: 0; transform: translateY(-70px); }
    }
  }
}

/* ---------- proof strip ---------- */

.proof {
  border-block: 1px solid var(--line);
  padding-block: 34px;
  background: var(--bg);
}
.proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.proof-row li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.99rem;
  font-weight: 590;
  line-height: 1.35;
}
.proof-row .ic { width: 25px; height: 25px; color: var(--gold); }
.proof-row li + li { border-left: 1px solid var(--line); padding-left: 24px; }

/* ---------- how it works: pinned stage ---------- */

.how { padding-top: clamp(96px, 12vw, 168px); }
.how-head { padding-bottom: clamp(20px, 4vh, 48px); }

.how-stage { position: relative; }
.how-bg, .how-scrim { display: none; }
@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
  .how-stage { overflow: clip; }
  .how-bg { display: block; position: absolute; inset: 0; }
  .how-bg img { width: 100%; height: 100%; object-fit: cover; }
  .how-scrim {
    display: block;
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(7, 21, 16, 0.94) 0%, rgba(7, 21, 16, 0.78) 52%, rgba(7, 21, 16, 0.5) 100%),
      linear-gradient(0deg, rgba(7, 21, 16, 0.55), rgba(7, 21, 16, 0.25));
  }
  .how-frame { position: relative; z-index: 2; }
}
.how-frame {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.how-panel h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 790;
  font-stretch: 114%;
  letter-spacing: -0.018em;
}
.how-panel p {
  color: var(--ink-dim);
  font-size: 1.1rem;
  margin-top: 16px;
  max-width: 44ch;
}

/* default: static stacked flow (mobile, and any reduced-motion viewport) */
.how-left { display: none; }
.how-frame { grid-template-columns: minmax(0, 1fr); }
.how-panel {
  padding-block: 34px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: clamp(56px, 12vw, 90px) minmax(0, 1fr);
  column-gap: clamp(20px, 3vw, 36px);
}
.hp-num {
  display: block;
  grid-row: 1 / 3;
  font-size: clamp(2.6rem, 8vw, 4rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
}
@supports not (-webkit-text-stroke: 1px black) {
  .hp-num { color: var(--line-gold); }
}
.how-panel h3 { grid-column: 2; }
.how-panel p { grid-column: 2; }
.how-panel .link-cta { grid-column: 2; justify-self: start; margin-top: 20px; }

/* pinned cinematic stage: desktop with motion allowed */
@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
  .how-stage { height: 100dvh; }
  .how-frame {
    height: 100%;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  }
  .how-left {
    position: relative;
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 44px);
  }
  .how-nums {
    position: relative;
    flex: none;
    width: clamp(120px, 16vw, 240px);
    height: clamp(140px, 18vw, 260px);
  }
  .hn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    font-size: clamp(9rem, 15vw, 15rem);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px var(--gold);
  }
  @supports not (-webkit-text-stroke: 1px black) {
    .hn { color: var(--line-gold); }
  }
  .js .hn + .hn { opacity: 0; }
  .how-progress {
    width: 2px;
    height: clamp(140px, 18vw, 260px);
    background: var(--line);
    border-radius: 999px;
    overflow: hidden;
  }
  .how-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0.02);
    transform-origin: top;
  }
  .how-panels { position: relative; height: 100%; }
  .how-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 0;
    border-top: 0;
  }
  .js .how-panel + .how-panel { opacity: 0; visibility: hidden; }
  .hp-num { display: none; }
}

/* ---------- comparison: ledger table, stacks to cards on mobile ---------- */

.cmp { margin-top: clamp(40px, 5vw, 64px); }

@media (min-width: 1024px) {
  .cmp {
    display: grid;
    grid-template-columns: 1.05fr 1fr 1fr 1fr 1.3fr;
    grid-template-rows: repeat(7, auto);
    grid-auto-flow: column;
    column-gap: clamp(18px, 2.2vw, 34px);
  }
  .cmp-col { display: contents; }
  .cmp-head {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 18px 0 16px;
    font-size: 1.02rem;
    font-weight: 760;
    font-stretch: 113%;
    letter-spacing: -0.01em;
  }
  .cmp-head .ic {
    width: 14px;
    height: 14px;
    color: var(--ink-dim);
    opacity: 0.7;
    margin-bottom: 5px;
  }
  .cmp-cell {
    padding: 17px 0;
    border-top: 1px solid var(--line);
    color: var(--ink-dim);
    font-size: 0.97rem;
    line-height: 1.5;
  }
  .cmp-dims .cmp-cell {
    font-size: 0.88rem;
    font-weight: 660;
    color: var(--ink);
    opacity: 0.7;
    padding-right: 14px;
  }
  .cmp-pad { border-top: 0; padding: 0; }
  /* per-cell dimension labels: screen-reader-only on desktop (the dims
     column is decorative/aria-hidden; these carry the semantics) */
  .cmp-dim {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  /* the highlighted column reads as one continuous gold panel */
  .cmp-us .cmp-head,
  .cmp-us .cmp-cell {
    background: #14382A;
    border-left: 1px solid var(--line-gold);
    border-right: 1px solid var(--line-gold);
    padding-left: 22px;
    padding-right: 22px;
  }
  .cmp-us .cmp-head {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    border-top: 1px solid var(--line-gold);
    border-radius: var(--r-box) var(--r-box) 0 0;
    padding-top: 20px;
    font-size: 1.12rem;
  }
  .cmp-us .cmp-head img {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    border-radius: var(--r-input);
  }
  .cmp-us .cmp-cell { color: var(--ink); font-weight: 560; }
  .cmp-us .cmp-cta {
    border-bottom: 1px solid var(--line-gold);
    border-radius: 0 0 var(--r-box) var(--r-box);
    padding-top: 4px;
    padding-bottom: 24px;
  }
  .cmp-us .cmp-cta .link-cta { margin-top: 10px; }
}

@media (max-width: 1023px) {
  .cmp { display: flex; flex-direction: column; gap: 18px; }
  .cmp-dims,
  .cmp-pad { display: none; }
  .cmp-col {
    border: 1px solid var(--line);
    border-radius: var(--r-box);
    padding: 20px 22px 6px;
  }
  .cmp-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    font-size: 1.12rem;
    font-weight: 780;
    font-stretch: 113%;
    letter-spacing: -0.012em;
  }
  .cmp-head .ic { width: 15px; height: 15px; color: var(--ink-dim); opacity: 0.7; }
  .cmp-us .cmp-head { flex-direction: column; align-items: stretch; gap: 14px; }
  .cmp-us .cmp-head img {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    border-radius: var(--r-input);
  }
  .cmp-cell {
    padding: 11px 0 13px;
    border-top: 1px solid var(--line);
    color: var(--ink-dim);
    font-size: 0.98rem;
  }
  .cmp-dim {
    display: block;
    font-size: 0.76rem;
    font-weight: 680;
    letter-spacing: 0.03em;
    color: var(--ink-dim);
    opacity: 0.8;
    margin-bottom: 3px;
  }
  .cmp-us {
    background: #14382A;
    border-color: var(--line-gold);
  }
  .cmp-us .cmp-cell { color: var(--ink); }
  .cmp-us .cmp-cta { padding: 14px 0 18px; }
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  font-size: 1.04rem;
  font-weight: 730;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.link-cta .ic { width: 17px; height: 17px; transition: transform 0.25s var(--ease); }
.link-cta:hover { color: var(--gold-bright); }
.link-cta:hover .ic { transform: translateX(4px); }

.tile .link-cta { margin-top: 16px; font-size: 0.99rem; }
.area-cta { margin-top: clamp(28px, 4vw, 44px); }
.faq-cta { margin-top: 30px; color: var(--ink-dim); font-size: 1.03rem; }
.faq-cta a {
  color: var(--gold);
  font-weight: 720;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.faq-cta a:hover { color: var(--gold-bright); }

/* ---------- what we buy ---------- */

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: clamp(40px, 5vw, 64px);
}

.panel {
  border-radius: var(--r-box);
  padding: clamp(30px, 3.5vw, 48px);
}
.panel h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 780;
  font-stretch: 114%;
  margin-bottom: 20px;
}
.panel.buy {
  background: linear-gradient(160deg, #16402F, var(--panel-deep));
  border: 1px solid var(--line-gold);
}
.panel.pass { border: 1px solid var(--line); }

.tick-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding-block: 14px;
  font-weight: 540;
  font-size: 1.05rem;
}
.tick-list li + li { border-top: 1px solid var(--line); }
.tick-list .ic { width: 17px; height: 17px; transform: translateY(2px); }
.tick-list .ok { color: var(--gold); }
.tick-list .no { color: var(--ink-dim); }
.panel.pass .tick-list li { color: var(--ink-dim); }

.what-note {
  color: var(--ink-dim);
  max-width: 64ch;
  margin-top: 32px;
  font-size: 1.05rem;
}

/* ---------- situations bento ---------- */

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: clamp(40px, 5vw, 64px);
}
.span7 { grid-column: span 7; }
.span5 { grid-column: span 5; }
.span12 { grid-column: span 12; }
@media (min-width: 1024px) {
  .span12 .tile-media { aspect-ratio: 21 / 8; }
}

.tile-media {
  border-radius: var(--r-box);
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  transform: translateZ(0);
}
.tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.tile:hover .tile-media img { transform: scale(1.045); }

.tile figcaption { padding: 22px 6px 0; }
.tile h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 780;
  font-stretch: 114%;
  letter-spacing: -0.014em;
}
.tile p { color: var(--ink-dim); font-size: 1.02rem; margin-top: 10px; max-width: 52ch; }

/* ---------- quote ---------- */

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
}
.quote blockquote::before {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  margin-bottom: 40px;
}
.quote-text {
  font-size: clamp(1.65rem, 3.1vw, 2.7rem);
  font-weight: 700;
  font-stretch: 110%;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.quote-text .qw { opacity: 1; }
.quote footer { margin-top: 34px; }
.quote-name { display: block; font-weight: 700; font-size: 1.05rem; }
.quote-meta { display: block; color: var(--ink-dim); font-size: 0.96rem; margin-top: 4px; }

.quote-media {
  border-radius: var(--r-box);
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.quote-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- service area ---------- */

.scene {
  position: relative;
  min-height: min(78vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.scene-bg { position: absolute; inset: -12% 0; will-change: transform; }
.scene-bg img { width: 100%; height: 100%; object-fit: cover; }
.scene-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 21, 16, 0.66) 0%, rgba(7, 21, 16, 0.1) 30%),
    linear-gradient(0deg, rgba(7, 21, 16, 0.94) 4%, rgba(7, 21, 16, 0.4) 40%, rgba(7, 21, 16, 0.08) 70%);
}
.scene-copy {
  position: relative;
  z-index: 2;
  padding-block: clamp(56px, 9vh, 104px);
}
.scene-h {
  font-size: clamp(2.6rem, 5.6vw, 4.9rem);
  max-width: 15ch;
}

.area-solid { padding-block: clamp(64px, 8vw, 112px) 0; }

.county-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: clamp(14px, 2vw, 26px);
  row-gap: 8px;
  margin-top: clamp(36px, 5vw, 56px);
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  font-weight: 840;
  font-stretch: 122%;
  letter-spacing: -0.02em;
}
.county-row .slash {
  color: var(--gold);
  font-weight: 380;
  font-stretch: 100%;
  font-size: 0.8em;
}

.marquee {
  margin-top: clamp(48px, 7vw, 76px);
  border-block: 1px solid var(--line);
  padding-block: 19px;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
}
.js .marquee-track { animation: marq 80s linear infinite; }
html:not(.js) .marquee-track { flex-wrap: wrap; width: auto; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track li {
  white-space: nowrap;
  color: var(--ink-dim);
  font-size: 0.98rem;
  font-weight: 540;
  letter-spacing: 0.04em;
}
.marquee-track li::after {
  content: "/";
  margin-left: 48px;
  color: var(--line-gold);
}
@keyframes marq {
  to { transform: translateX(-50%); }
}
.marquee.is-static { padding-inline: clamp(20px, 4vw, 48px); }
.marquee.is-static .marquee-track {
  animation: none;
  flex-wrap: wrap;
  width: auto;
  gap: 12px 32px;
  justify-content: center;
}
.marquee.is-static .marquee-track li::after { margin-left: 32px; }

/* ---------- faq ---------- */

.faq-wrap { max-width: 840px; }
.faq-list { margin-top: clamp(32px, 4vw, 52px); border-bottom: 1px solid var(--line); }

.faq-item { border-top: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 25px;
  font-size: clamp(1.06rem, 1.4vw, 1.2rem);
  font-weight: 680;
  cursor: pointer;
  list-style: none;
  transition: color 0.25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-bright); }
.faq-item summary .ic {
  width: 16px;
  height: 16px;
  color: var(--gold);
  transition: transform 0.35s var(--ease);
}
.faq-item[open] summary .ic { transform: rotate(180deg); }

.faq-body p {
  color: var(--ink-dim);
  max-width: 62ch;
  padding-bottom: 26px;
  font-size: 1.03rem;
}

@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
  .faq-item::details-content {
    height: 0;
    overflow: clip;
    opacity: 0;
    transition: height 0.4s var(--ease), opacity 0.35s var(--ease),
      content-visibility 0.4s allow-discrete;
  }
  .faq-item[open]::details-content { height: auto; opacity: 1; }
}

/* ---------- offer ---------- */

.offer { padding-bottom: clamp(96px, 12vw, 168px); }

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  align-items: stretch;
}

.offer-visual {
  position: relative;
  border-radius: var(--r-box);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 560px;
}
.offer-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 21, 16, 0.94) 8%, rgba(7, 21, 16, 0.45) 46%, rgba(7, 21, 16, 0.05) 74%);
}
.offer-visual-copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: clamp(28px, 3.5vw, 48px);
}
.offer-visual-copy .lede { margin-top: 12px; color: var(--ink); opacity: 0.85; max-width: 34ch; }

.offer-phone {
  display: inline-block;
  margin-top: 26px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-stretch: 122%;
  font-weight: 850;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -0.015em;
  transition: color 0.25s var(--ease);
}
.offer-phone:hover { color: var(--gold-bright); }
.offer-hours { color: var(--ink-dim); font-size: 0.97rem; margin-top: 8px; }

.offer-form-panel {
  background: linear-gradient(150deg, #153A2B, var(--panel-deep));
  border: 1px solid var(--line-gold);
  border-radius: var(--r-box);
  padding: clamp(28px, 3.5vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-form { display: flex; flex-direction: column; gap: 20px; }

/* honeypot: off-screen (not display:none, which some bots skip) */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-consent {
  font-size: 0.82rem;
  color: var(--ink-dim);
  line-height: 1.5;
  margin-top: 2px;
}

.form-progress { display: flex; gap: 16px; }
.fp-seg {
  flex: 1;
  position: relative;
  font-size: 0.85rem;
  font-weight: 640;
  color: var(--ink-dim);
  padding-bottom: 9px;
  transition: color 0.25s var(--ease);
}
.fp-seg::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--line);
  transition: background-color 0.25s var(--ease);
}
.fp-seg.is-active { color: var(--ink); }
.fp-seg.is-active::after { background: var(--gold); }
.fp-seg.is-done::after { background: var(--line-gold); }

.form-step { flex-direction: column; gap: 18px; }
.js .form-step { display: none; }
.js .form-step.is-active { display: flex; }
html:not(.js) .form-step { display: flex; }
html:not(.js) .btn-next,
html:not(.js) .btn-back,
html:not(.js) .form-progress { display: none; }
@media (prefers-reduced-motion: no-preference) {
  .js .form-step.is-active { animation: step-in 0.4s var(--ease); }
}
@keyframes step-in {
  from { opacity: 0; transform: translateX(18px); }
}

.form-nav { display: flex; align-items: center; gap: 18px; margin-top: 6px; }
.form-nav .btn { flex: 1; }
.btn-back {
  background: transparent;
  border: 0;
  padding: 10px 4px;
  color: var(--ink-dim);
  font-weight: 650;
  font-size: 0.98rem;
  cursor: pointer;
  transition: color 0.25s var(--ease);
}
.btn-back:hover { color: var(--ink); }

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

.form-row { display: grid; gap: 16px; }
.form-row.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.form-row.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.field { display: flex; flex-direction: column; min-width: 0; }
.field input { width: 100%; }
.field label {
  font-size: 0.9rem;
  font-weight: 640;
  margin-bottom: 8px;
}
.field .opt { color: var(--ink-dim); font-weight: 480; }

.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-input);
  padding: 13px 15px;
  font-size: 1rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23E4A93F' d='M216.49,104.49l-80,80a12,12,0,0,1-17,0l-80-80a12,12,0,0,1,17-17L128,159l71.51-71.52a12,12,0,0,1,17,17Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 13px;
  padding-right: 38px;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(228, 169, 63, 0.22);
}
.field input.invalid,
.field select.invalid { border-color: var(--err); }

.field-hint { font-size: 0.82rem; color: var(--ink-dim); margin-top: 7px; }
.field-err { font-size: 0.82rem; color: var(--err-text); margin-top: 7px; display: none; }
.field-err.show { display: block; }

.form-fail {
  background: rgba(232, 131, 107, 0.12);
  border: 1px solid rgba(232, 131, 107, 0.4);
  border-radius: var(--r-input);
  padding: 13px 16px;
  font-size: 0.95rem;
}
.form-fail a { color: var(--ink); font-weight: 680; }

.btn-submit { width: 100%; margin-top: 4px; }
.btn-submit.is-loading { pointer-events: none; opacity: 0.85; }
.btn-submit.is-loading .ic { display: none; }
.btn-submit.is-loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(20, 39, 29, 0.35);
  border-top-color: var(--gold-ink);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.offer-success { align-self: center; padding: clamp(28px, 3.5vw, 52px); }
.offer-success .big { width: 44px; height: 44px; color: var(--gold); }
.offer-success h3 { font-size: 1.7rem; margin-top: 18px; }
.offer-success p { color: var(--ink-dim); margin-top: 12px; max-width: 44ch; }
.offer-success a { color: var(--ink); font-weight: 680; }

/* ---------- footer ---------- */

.site-foot { border-top: 1px solid var(--line); overflow: hidden; }

.foot-sign {
  font-size: min(6.2vw, 5.6rem);
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(237, 243, 236, 0.2);
  padding-block: clamp(44px, 6vw, 72px) 0;
  user-select: none;
}
@supports not (-webkit-text-stroke: 1px black) {
  .foot-sign { color: rgba(237, 243, 236, 0.12); }
}

.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 56px);
  padding-top: clamp(52px, 7vw, 76px);
}
.foot-brand p {
  color: var(--ink-dim);
  font-size: 0.96rem;
  max-width: 34ch;
  margin-top: 18px;
}
.foot-col h3 {
  font-size: 0.98rem;
  font-weight: 730;
  margin-bottom: 16px;
}
.foot-col a,
.foot-col span {
  display: block;
  color: var(--ink-dim);
  font-size: 0.95rem;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.25s var(--ease);
}
.foot-col a:hover { color: var(--gold-bright); }

.foot-legal {
  margin-top: clamp(40px, 5vw, 56px);
  border-top: 1px solid var(--line);
  padding-block: 26px;
  color: var(--ink-dim);
  font-size: 0.85rem;
}

/* ---------- reveal on scroll ---------- */

@media (prefers-reduced-motion: no-preference) {
  .js .rv {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    transition-delay: calc(var(--d, 0) * 95ms);
  }
  .js .rv.in { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 1199px) {
  .head-phone-num { display: none; }
  .head-phone { padding: 10px; }
}

@media (max-width: 1023px) {
  .head-nav, .head-actions .btn { display: none; }
  .burger { display: flex; }
  .head-phone-num { display: inline; }
  .head-row { justify-content: space-between; }
  .head-nav { margin-inline: 0; }

  .hero { min-height: 92dvh; }
  .hero-h { max-width: 11ch; }

  .proof-row { grid-template-columns: 1fr 1fr; gap: 20px 24px; }
  .proof-row li + li { border-left: 0; padding-left: 0; }

  .what-grid { grid-template-columns: 1fr; }

  .span7, .span5 { grid-column: span 12; }

  .quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .quote-media { max-width: 420px; aspect-ratio: 4 / 3; }

  .offer-grid { grid-template-columns: 1fr; }
  .offer-visual { min-height: 440px; }

  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 519px) {
  .head-phone-num { display: none; }
  .head-phone .ic { width: 21px; height: 21px; }
}

@media (max-width: 639px) {
  body { font-size: 1rem; }
  .form-row.three, .form-row.two { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .proof-row { grid-template-columns: 1fr; }
  .proof-row li { font-size: 0.94rem; }
  .offer-visual { min-height: 380px; }
  .scene { min-height: 66vh; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; flex-wrap: wrap; width: auto; }
  .tile-media img, .btn, .btn .ic, .head-nav a::after,
  .faq-item summary .ic, .burger span, .site-head { transition: none; }
  .tile:hover .tile-media img { transform: none; }
  .btn-gold:hover, .btn-ghost:hover { transform: none; }
  .site-head.hide { transform: none; }
  html { scroll-behavior: auto; }
}
