/* =============================================================
   1-888-I AM JUNK
   Tokens, primitives, components, page sections.
   Light theme only: the use scene is a homeowner on a phone in a
   bright garage or driveway, and the brand is a lime truck in
   daylight. color-scheme is locked so form controls stay light.
   ============================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  color-scheme: light;

  /* Brand */
  --lime: #5deb0e;          /* their original brand green, reference only */
  --green: #5bd80c;         /* large fills, buttons, truck load */
  --green-hover: #52c40a;
  --green-ink: #3ba300;     /* large green text only (3.2:1 on white) */
  --green-text: #2c7a00;    /* small green text (5.4:1 on white) */
  --green-50: #eefbe6;
  --green-100: #ddf6c8;

  --ink: #161a1f;
  --ink-2: #2b2f36;
  --muted: #5b6470;
  --muted-2: #6e7784;      /* placeholders: 4.6:1 on white */

  --white: #fff;
  --surface: #f5f7f4;
  --surface-2: #eceff0;
  --line: #e2e7e0;
  --line-strong: #cfd6cb;

  /* Type */
  --font-display: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-ui: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Radius system: pill for interactive, 24 large panels, 16 cards, 12 inputs */
  --r-pill: 999px;
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 12px;

  /* Tinted shadows */
  --shadow-sm: 0 1px 2px rgba(22, 26, 31, .06), 0 2px 8px rgba(22, 26, 31, .05);
  --shadow-md: 0 2px 4px rgba(22, 26, 31, .05), 0 12px 30px rgba(22, 26, 31, .09);
  --shadow-lg: 0 4px 10px rgba(22, 26, 31, .05), 0 26px 60px rgba(22, 26, 31, .13);

  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --sec-y: clamp(56px, 7vw, 104px);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.6;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, picture, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.028em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

.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;
}
.skip-link {
  position: absolute; left: 12px; top: -80px; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px;
  border-radius: var(--r-sm); font-weight: 600; text-decoration: none;
  transition: top .18s var(--ease-out);
}
.skip-link:focus { top: 12px; }

/* ---------- 3. Layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--sec-y); }
.section--tint { background: var(--surface); }
.section--flush-top { padding-top: clamp(36px, 4vw, 64px); }

.section-head { max-width: 62ch; margin-bottom: clamp(28px, 3.5vw, 48px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p {
  margin-top: 14px; color: var(--muted); font-size: 1.0625rem; max-width: 60ch;
}
.section-head--center p { margin-inline: auto; }

h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); font-stretch: 104%; font-weight: 800; letter-spacing: -.04em; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); font-stretch: 103%; font-weight: 800; letter-spacing: -.035em; }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); letter-spacing: -.02em; line-height: 1.18; }

.eyebrow {
  font-family: var(--font-ui);
  font-size: .8125rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green-text); margin-bottom: 18px;
}

.lede { font-size: clamp(1.0625rem, 1.35vw, 1.1875rem); color: var(--muted); max-width: 58ch; }

/* ---------- 4. Brand lockup ---------- */
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__type { display: flex; flex-direction: column; line-height: 1; }
.brand__prefix {
  font-family: var(--font-display); font-weight: 700; font-size: .8125rem;
  letter-spacing: .02em; color: var(--ink); margin-bottom: 3px;
}
.brand__word {
  font-family: var(--font-display); font-weight: 800; font-size: 1.45rem;
  letter-spacing: -.012em; color: var(--green-ink); font-stretch: 112%;
}
.brand--invert .brand__prefix { color: #fff; }
.brand--invert .brand__word { color: var(--green); }
.brand--lg .brand__mark { width: 56px; height: 56px; }
.brand--lg .brand__word { font-size: 1.8rem; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-ui); font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: var(--r-pill); border: 2px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .18s var(--ease-out), color .18s var(--ease-out),
              border-color .18s var(--ease-out), transform .16s var(--ease-out),
              box-shadow .18s var(--ease-out);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:active { transform: scale(.975); }

.btn--primary { background: var(--green); color: var(--ink); box-shadow: 0 6px 18px rgba(91, 216, 12, .28); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--sm { padding: 11px 20px; font-size: .9375rem; }
.btn--lg { padding: 18px 32px; font-size: 1.0625rem; }
.btn--block { width: 100%; }

@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover { background: var(--green-hover); box-shadow: 0 10px 26px rgba(91, 216, 12, .34); }
  .btn--ghost:hover { border-color: var(--ink); background: var(--white); }
  .btn--dark:hover { background: var(--ink-2); }
}

/* ---------- 6. Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  padding-block: 14px;
  transition: background-color .28s var(--ease-out), box-shadow .28s var(--ease-out);
}
.site-header.is-stuck {
  background: rgba(255, 255, 255, .93);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(22, 26, 31, .06);
}
@media (prefers-reduced-transparency: reduce) {
  .site-header.is-stuck { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.nav__pill {
  display: none; align-items: center; gap: 4px;
  background: var(--white); border-radius: var(--r-pill);
  padding: 7px 7px 7px 20px; box-shadow: var(--shadow-md);
}
.nav__phone {
  font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem;
  letter-spacing: -.01em; text-decoration: none; color: var(--ink);
  padding-right: 16px; margin-right: 8px; border-right: 1px solid var(--line);
  white-space: nowrap;
}
.nav__link {
  text-decoration: none; font-size: .9375rem; font-weight: 500; color: var(--ink-2);
  padding: 10px 13px; border-radius: var(--r-pill);
  transition: background-color .16s var(--ease-out), color .16s var(--ease-out);
  white-space: nowrap;
}
.nav__link[aria-current="page"] { color: var(--green-text); font-weight: 700; }
@media (hover: hover) and (pointer: fine) {
  .nav__link:hover { background: var(--surface); color: var(--ink); }
  .nav__phone:hover { color: var(--green-text); }
}
.nav__cta { margin-left: 6px; }

.nav__toggle {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); border: 0; border-radius: var(--r-pill);
  padding: 11px 18px 11px 16px; box-shadow: var(--shadow-md);
  font-weight: 700; font-size: .9375rem; cursor: pointer; color: var(--ink);
}
.nav__toggle svg { width: 18px; height: 18px; }
.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }
.nav__toggle[aria-expanded="true"] .icon-open { display: none; }

.nav__mobile {
  display: none; margin-top: 12px; background: var(--white);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 12px;
}
.nav__mobile.is-open { display: block; }
.nav__mobile a {
  display: block; text-decoration: none; font-weight: 600; font-size: 1.0625rem;
  padding: 14px 16px; border-radius: var(--r-sm); color: var(--ink-2);
}
.nav__mobile a[aria-current="page"] { color: var(--green-text); }
.nav__mobile .nav__mobile-cta { margin-top: 8px; display: grid; gap: 10px; }
.nav__mobile .btn { width: 100%; }

@media (min-width: 1120px) {
  .nav__pill { display: flex; }
  .nav__toggle { display: none; }
  .nav__mobile { display: none !important; }
}

/* ---------- 7. Hero ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; margin-top: -76px; padding-top: 76px; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; }
.hero__fade { position: absolute; inset: 0; z-index: -1; }
.hero__inner { position: relative; padding-block: clamp(48px, 7vw, 116px) clamp(300px, 34vw, 420px); }
.hero__copy { max-width: 620px; }
.hero__sub { margin-top: 20px; font-size: clamp(1.0625rem, 1.5vw, 1.25rem); color: var(--ink-2); max-width: 34ch; font-weight: 500; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__checks {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 30px;
}
.hero__checks li {
  display: flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: .9688rem; color: var(--ink-2);
}
.hero__checks svg { width: 20px; height: 20px; color: var(--green-text); flex: none; }

@media (min-width: 860px) {
  .hero__inner { padding-block: clamp(64px, 6vw, 104px) clamp(96px, 12vw, 168px); min-height: 620px; }
  .hero__media img { object-position: 58% 50%; }
  .hero__fade {
    background:
      linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,0) 190px),
      linear-gradient(96deg, #fff 0%, #fff 30%, rgba(255,255,255,.92) 44%, rgba(255,255,255,.55) 56%, rgba(255,255,255,0) 70%);
  }
}
@media (max-width: 859px) {
  .hero { margin-top: 0; padding-top: 0; }
  .hero__media { position: relative; inset: auto; z-index: 0; margin-top: 8px; }
  .hero__media img { height: clamp(230px, 58vw, 380px); }
  .hero__fade { display: none; }
  .hero__inner { padding-block: 28px 34px; }
  .hero__sub { max-width: 40ch; }
}

/* ---------- 8. Trust strip ---------- */
.trust {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--surface); padding-block: 22px;
}
.trust__grid {
  display: grid; gap: 16px 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.trust__item { display: flex; align-items: center; gap: 12px; }
.trust__item svg { width: 26px; height: 26px; color: var(--green-text); flex: none; }
.trust__item span { font-weight: 600; font-size: .9375rem; line-height: 1.3; color: var(--ink-2); }
@media (min-width: 880px) {
  .trust__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .trust__item span { font-size: .9688rem; }
}

/* ---------- 9. Estimator ---------- */
.estimator {
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  padding: clamp(20px, 3vw, 36px);
}
.estimator__top { display: grid; gap: clamp(24px, 3vw, 40px); }
@media (min-width: 1000px) { .estimator__top { grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr); align-items: start; } }

.truck { width: 100%; height: auto; }
.truck__fill { transform-box: fill-box; transform-origin: left center; transform: scaleX(var(--fill, .5)); }
.truck__fill-anim { transition: transform .62s var(--ease-out); }
@media (prefers-reduced-motion: reduce) { .truck__fill-anim { transition: none; } }

.est-controls { margin-top: 22px; }
.est-slider-wrap { padding: 0 4px; }
.est-slider {
  -webkit-appearance: none; appearance: none; width: 100%; height: 34px;
  background: transparent; cursor: pointer; display: block;
}
.est-slider::-webkit-slider-runnable-track {
  height: 8px; border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 0 var(--pct, 50%), var(--surface-2) var(--pct, 50%) 100%);
}
.est-slider::-moz-range-track { height: 8px; border-radius: 999px; background: var(--surface-2); }
.est-slider::-moz-range-progress { height: 8px; border-radius: 999px; background: var(--green); }
.est-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 30px; height: 30px; margin-top: -11px;
  border-radius: 50%; background: var(--white); border: 3px solid var(--ink);
  box-shadow: var(--shadow-md);
}
.est-slider::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%; background: var(--white);
  border: 3px solid var(--ink); box-shadow: var(--shadow-md);
}
.est-slider:focus-visible { outline: none; }
.est-slider:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 4px var(--green-100); }
.est-slider:focus-visible::-moz-range-thumb { box-shadow: 0 0 0 4px var(--green-100); }

.est-tiers { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 6px; margin-top: 10px; }
.est-tiers input { position: absolute; opacity: 0; pointer-events: none; }
.est-tier {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 10px 4px; border-radius: var(--r-sm); cursor: pointer;
  border: 2px solid var(--line); background: var(--white);
  font-weight: 700; font-size: .9375rem; text-align: center; color: var(--ink-2);
  transition: border-color .16s var(--ease-out), background-color .16s var(--ease-out), color .16s var(--ease-out);
  min-height: 52px; justify-content: center;
}
.est-tier small { font-weight: 600; font-size: .75rem; color: var(--muted); }
.est-tiers input:checked + .est-tier {
  border-color: var(--ink); background: var(--ink); color: #fff;
}
.est-tiers input:checked + .est-tier small { color: var(--green); }
.est-tiers input:focus-visible + .est-tier { outline: 3px solid var(--green-text); outline-offset: 2px; }
@media (hover: hover) and (pointer: fine) {
  .est-tiers input:not(:checked) + .est-tier:hover { border-color: var(--line-strong); background: var(--surface); }
}

.est-readout {
  background: var(--surface); border-radius: var(--r-md); padding: clamp(20px, 2.4vw, 28px);
}
.est-readout__label { font-weight: 700; font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.est-readout__price {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.04em;
  font-size: clamp(3.2rem, 6vw, 4.2rem); line-height: 1; margin-top: 6px; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.est-readout__meta { margin-top: 8px; font-weight: 600; color: var(--ink-2); }
.est-readout__meta b { color: var(--ink); }
.est-fits { margin-top: 20px; display: grid; gap: 8px; }
.est-fits__label { font-weight: 700; font-size: .875rem; color: var(--ink); }
.est-fits li { display: flex; gap: 10px; align-items: flex-start; font-size: .9375rem; color: var(--ink-2); }
.est-fits li svg { width: 17px; height: 17px; margin-top: 3px; color: var(--green-text); flex: none; }
.est-readout .btn { margin-top: 22px; }
.est-note { margin-top: 14px; font-size: .8125rem; color: var(--muted); line-height: 1.5; }

.est-picker { margin-top: clamp(26px, 3vw, 38px); padding-top: clamp(24px, 3vw, 32px); border-top: 1px solid var(--line); }
.est-picker__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; }
.est-picker__head h3 { font-size: 1.25rem; }
.est-picker__head p { color: var(--muted); font-size: .9375rem; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.chip-input { position: absolute; opacity: 0; pointer-events: none; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  padding: 11px 18px; border-radius: var(--r-pill); border: 2px solid var(--line);
  background: var(--white); font-weight: 600; font-size: .9375rem; color: var(--ink-2);
  transition: border-color .16s var(--ease-out), background-color .16s var(--ease-out), color .16s var(--ease-out);
  min-height: 44px;
}
.chip__tick { width: 16px; height: 16px; opacity: 0; transition: opacity .16s var(--ease-out); flex: none; }
.chip-input:checked + .chip { border-color: var(--green-text); background: var(--green-50); color: var(--ink); }
.chip-input:checked + .chip .chip__tick { opacity: 1; color: var(--green-text); }
.chip-input:focus-visible + .chip { outline: 3px solid var(--green-text); outline-offset: 2px; }
@media (hover: hover) and (pointer: fine) {
  .chip-input:not(:checked) + .chip:hover { border-color: var(--line-strong); background: var(--surface); }
}

.est-suggest {
  margin-top: 18px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px;
  background: var(--green-50); border-radius: var(--r-md); padding: 16px 20px;
  font-weight: 600; color: var(--ink);
}
.est-suggest[hidden] { display: none; }
.est-suggest p { font-size: .9688rem; }
.est-dense { margin-top: 12px; font-size: .875rem; color: var(--muted); }
.est-dense[hidden] { display: none; }

/* ---------- 10. Services bento ---------- */
.bento { display: grid; gap: 16px; grid-template-columns: repeat(12, minmax(0, 1fr)); }
.bento__cell {
  grid-column: span 12; position: relative; overflow: hidden;
  border-radius: var(--r-md); background: var(--white);
  border: 1px solid var(--line); display: flex; flex-direction: column;
  min-height: 220px; text-decoration: none;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .bento__cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  .bento__cell:hover .bento__img img { transform: scale(1.04); }
}
.bento__img { position: relative; overflow: hidden; flex: 1 1 auto; min-height: 180px; }
.bento__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.bento__body { padding: 20px 22px 22px; }
.bento__body p { margin-top: 8px; color: var(--muted); font-size: .9375rem; }
.bento__cell--tint { background: var(--green-50); border-color: var(--green-100); }
.bento__icon {
  width: 46px; height: 46px; border-radius: var(--r-sm); background: var(--white);
  display: grid; place-items: center; margin: 22px 22px 0; box-shadow: var(--shadow-sm);
}
.bento__icon svg { width: 24px; height: 24px; color: var(--green-text); }
.bento__cell--tint { justify-content: center; }
.bento__cell--tint .bento__icon { margin-bottom: 4px; }
.bento__cell--tint .bento__body { padding-top: 14px; padding-bottom: 24px; }
.bento__more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  font-weight: 700; font-size: .9375rem; color: var(--green-text);
}
.bento__more svg { width: 15px; height: 15px; transition: transform .2s var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .bento__cell:hover .bento__more svg { transform: translateX(3px); } }

@media (min-width: 720px) {
  .bento__cell--a { grid-column: span 7; }
  .bento__cell--b { grid-column: span 5; }
  .bento__cell--c, .bento__cell--d, .bento__cell--e { grid-column: span 4; }
  .bento__cell--a .bento__img, .bento__cell--b .bento__img { min-height: 250px; }
}

/* ---------- 11. Steps ---------- */
.steps-layout { display: grid; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (min-width: 900px) { .steps-layout { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); } }
.steps-photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.steps-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.steps { display: grid; gap: 4px; }
.step { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 18px; padding-bottom: 26px; position: relative; }
.step:last-child { padding-bottom: 0; }
.step::before {
  content: ""; position: absolute; left: 22px; top: 48px; bottom: 4px; width: 2px;
  background: linear-gradient(180deg, var(--green-100), var(--line)); border-radius: 2px;
}
.step:last-child::before { display: none; }
.step__num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: var(--green);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800;
  font-size: 1.0625rem; position: relative; z-index: 1;
}
.step__body h3 { margin-bottom: 7px; }
.step__body p { color: var(--muted); font-size: .9688rem; }

/* ---------- 12. What we take ---------- */
.take-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 620px) { .take-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 940px) { .take-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.take {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 18px 16px; display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s var(--ease-out), transform .2s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) { .take:hover { border-color: var(--green-text); transform: translateY(-2px); } }
.take svg { width: 26px; height: 26px; color: var(--green-text); }
.take span { font-weight: 600; font-size: .9375rem; line-height: 1.3; }

.notice {
  margin-top: 22px; display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface); border-radius: var(--r-md); padding: 20px 22px;
}
.notice svg { width: 22px; height: 22px; color: var(--ink); flex: none; margin-top: 2px; }
.notice p { font-size: .9375rem; color: var(--ink-2); }
.notice b { color: var(--ink); }

/* ---------- 13. Photo band with inset panel ---------- */
.photoband { position: relative; isolation: isolate; }
.photoband__img { position: absolute; inset: 0; z-index: -1; }
.photoband__img img { width: 100%; height: 100%; object-fit: cover; }
.photoband__inner { padding-block: clamp(40px, 6vw, 88px); display: flex; }
.photoband__panel {
  background: var(--ink); color: #fff; border-radius: var(--r-lg);
  padding: clamp(26px, 3.4vw, 44px); max-width: 560px; box-shadow: var(--shadow-lg);
}
.photoband__panel h2 { color: #fff; }
.photoband__panel p { color: rgba(255, 255, 255, .82); margin-top: 16px; font-size: 1.0313rem; }
.photoband__list { margin-top: 22px; display: grid; gap: 12px; }
.photoband__list li { display: flex; gap: 11px; align-items: flex-start; color: rgba(255, 255, 255, .9); font-size: .9688rem; }
.photoband__list svg { width: 19px; height: 19px; color: var(--green); flex: none; margin-top: 3px; }

/* ---------- 14. Split (business) ---------- */
.split { display: grid; gap: clamp(28px, 4vw, 60px); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: repeat(2, minmax(0, 1fr)); } .split--rev .split__media { order: 2; } }
.split__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split__body h2 { margin-bottom: 16px; }
.split__body > p { color: var(--muted); }
.who { margin-top: 24px; display: grid; gap: 10px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.who li { display: flex; gap: 10px; align-items: flex-start; font-size: .9375rem; font-weight: 600; color: var(--ink-2); }
.who svg { width: 17px; height: 17px; color: var(--green-text); flex: none; margin-top: 3px; }
.split__body .btn { margin-top: 28px; }

/* ---------- 15. Service area ---------- */
.area-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.area-pills li {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 9px 16px; font-size: .9063rem; font-weight: 500; color: var(--ink-2);
}
.area-pills li:first-child { background: var(--ink); color: #fff; border-color: var(--ink); font-weight: 700; }
.area-foot { margin-top: 24px; font-size: .9375rem; color: var(--muted); }

/* ---------- 16. FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem); letter-spacing: -.015em; line-height: 1.3;
  color: var(--ink);
}
.faq__icon {
  width: 34px; height: 34px; border-radius: 50%; background: var(--surface);
  display: grid; place-items: center; flex: none;
  transition: background-color .2s var(--ease-out), transform .3s var(--ease-out);
}
.faq__icon svg { width: 15px; height: 15px; }
.faq__q[aria-expanded="true"] .faq__icon { background: var(--green); transform: rotate(45deg); }
@media (hover: hover) and (pointer: fine) { .faq__q:hover .faq__icon { background: var(--green-100); } }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s var(--ease-out); }
.faq__q[aria-expanded="true"] + .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 60px 24px 4px; color: var(--muted); font-size: 1rem; }
@media (prefers-reduced-motion: reduce) { .faq__a { transition: none; } }

/* ---------- 17. Reviews (renders only when filled) ---------- */
.reviews-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px; }
.review__stars { display: flex; gap: 3px; color: var(--green-text); margin-bottom: 14px; }
.review__stars svg { width: 17px; height: 17px; }
.review p { font-size: 1rem; color: var(--ink-2); }
.review__who { margin-top: 16px; font-weight: 700; font-size: .9375rem; }
.review__where { color: var(--muted); font-weight: 500; }

/* ---------- 18. CTA band ---------- */
.cta-band { background: var(--green); padding-block: clamp(48px, 6vw, 80px); }
.cta-band__inner { display: grid; gap: 28px; align-items: center; }
@media (min-width: 920px) { .cta-band__inner { grid-template-columns: minmax(0, 1fr) auto; gap: 48px; } }
.cta-band h2 { color: var(--ink); font-size: clamp(2rem, 4.2vw, 3.2rem); }
.cta-band p { margin-top: 14px; color: var(--ink-2); font-weight: 600; font-size: 1.0625rem; max-width: 48ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-band .btn--ghost { border-color: rgba(22, 26, 31, .28); }
@media (hover: hover) and (pointer: fine) { .cta-band .btn--ghost:hover { background: rgba(255,255,255,.9); border-color: var(--ink); } }

/* ---------- 19. Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .74); padding-block: clamp(48px, 6vw, 72px) 32px; }
.footer-grid { display: grid; gap: 36px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1040px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; } }
.footer-about p { margin-top: 18px; font-size: .9375rem; max-width: 34ch; }
.footer-col h3 { color: #fff; font-size: .875rem; letter-spacing: .1em; text-transform: uppercase; font-family: var(--font-ui); font-weight: 700; margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; font-size: .9375rem; }
.footer-col a { text-decoration: none; transition: color .16s var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .footer-col a:hover { color: var(--green); } }
.footer-contact strong { color: #fff; font-weight: 700; display: block; font-family: var(--font-display); font-size: 1.1875rem; letter-spacing: -.02em; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, .09); color: #fff;
  transition: background-color .18s var(--ease-out);
}
.footer-social svg { width: 18px; height: 18px; }
@media (hover: hover) and (pointer: fine) { .footer-social a:hover { background: var(--green); color: var(--ink); } }
.footer-bottom {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  font-size: .8438rem; color: rgba(255, 255, 255, .58);
}

/* ---------- 20. Page hero (inner pages) ---------- */
.page-hero { position: relative; background: var(--surface); border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero__inner { padding-block: clamp(40px, 5.5vw, 76px) clamp(36px, 5vw, 68px); position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 18ch; }
.page-hero .lede { margin-top: 20px; }

/* ---------- 21. Pricing tiers ---------- */
.tier-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.tier-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 24px 22px; display: flex; flex-direction: column;
}
.tier-card--feature { border-color: var(--ink); box-shadow: var(--shadow-md); }
.tier-card__flag {
  display: inline-block; background: var(--green); color: var(--ink); font-size: .75rem;
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap;
  padding: 5px 12px; border-radius: var(--r-pill); margin-bottom: 12px; align-self: flex-start;
}
.tier-card--feature { padding-top: 20px; }
.tier-card__frac { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -.03em; }
.tier-card__price {
  font-family: var(--font-display); font-weight: 800; font-size: 2.5rem; letter-spacing: -.04em;
  margin-top: 10px; line-height: 1; font-variant-numeric: tabular-nums;
}
.tier-card__yards { margin-top: 8px; font-size: .875rem; color: var(--muted); font-weight: 600; }
.tier-card ul { margin: 18px 0 24px; display: grid; gap: 8px; }
.tier-card li { display: flex; gap: 9px; font-size: .875rem; color: var(--ink-2); align-items: flex-start; }
.tier-card li svg { width: 15px; height: 15px; color: var(--green-text); flex: none; margin-top: 3px; }
.tier-card .btn { margin-top: auto; align-self: stretch; }


/* ---------- 22. Booking form ---------- */
.book-layout { display: grid; gap: clamp(20px, 3vw, 24px); align-items: start; }
@media (min-width: 980px) {
  .book-layout {
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, .95fr);
    grid-template-areas: "main summary" "main aside";
    grid-template-rows: auto 1fr;
    column-gap: clamp(28px, 4vw, 48px);
  }
  .book-main { grid-area: main; }
  .book-summary { grid-area: summary; }
  .book-aside { grid-area: aside; }
}

.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 38px); box-shadow: var(--shadow-md);
}
.fieldset { border: 0; padding: 0; margin: 0 0 30px; }
.fieldset:last-of-type { margin-bottom: 0; }
.fieldset > legend {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1875rem;
  letter-spacing: -.02em; padding: 0; margin-bottom: 4px;
}
.fieldset__hint { color: var(--muted); font-size: .9063rem; margin-bottom: 18px; }
.field-grid { display: grid; gap: 16px; }
@media (min-width: 620px) { .field-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .field-grid--3 { grid-template-columns: 1.4fr 1fr; } }
.field { display: grid; gap: 7px; align-content: start; }
.field label { font-weight: 700; font-size: .875rem; color: var(--ink); }
.field label .opt { font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--r-sm);
  border: 2px solid var(--line); background: var(--white); color: var(--ink);
  font-size: 1rem; min-height: 50px;
  transition: border-color .16s var(--ease-out), box-shadow .16s var(--ease-out);
}
.field textarea { min-height: 110px; resize: vertical; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-text); box-shadow: 0 0 0 4px var(--green-50);
}
.field .help { font-size: .8125rem; color: var(--muted); }
.field .error { font-size: .8125rem; color: #b3261e; font-weight: 600; display: none; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #b3261e; }
.field.is-invalid .error { display: block; }

.file-drop {
  border: 2px dashed var(--line-strong); border-radius: var(--r-sm); padding: 20px;
  text-align: center; color: var(--muted); font-size: .9375rem; cursor: pointer;
  display: block; transition: border-color .16s var(--ease-out), background-color .16s var(--ease-out);
}
.file-drop:hover, .file-drop:focus-within { border-color: var(--green-text); background: var(--green-50); }
.file-drop svg { width: 24px; height: 24px; margin: 0 auto 8px; color: var(--green-text); }
.file-drop input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.file-previews { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.file-previews img { width: 84px; height: 84px; object-fit: cover; border-radius: var(--r-sm); border: 1px solid var(--line); }

.form-foot { margin-top: 28px; display: grid; gap: 14px; }
.form-foot .privacy { font-size: .8438rem; color: var(--muted); display: flex; gap: 9px; align-items: flex-start; }
.form-foot .privacy svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--green-text); }
.form-status { font-size: .9375rem; font-weight: 600; }
.form-status[hidden] { display: none; }
.form-status--error { color: #b3261e; }
.btn[aria-busy="true"] { opacity: .75; pointer-events: none; }

.aside-card { background: var(--surface); border-radius: var(--r-lg); padding: clamp(22px, 2.6vw, 30px); }
.note-block { font-size: .8438rem; line-height: 1.6; color: var(--muted); font-weight: 500; }
.note-block a { color: var(--green-text); font-weight: 700; }

.aside-card + .aside-card { margin-top: 16px; }
.aside-card h2, .aside-card h3 { font-size: 1.25rem; margin-bottom: 14px; }
.aside-card ol { display: grid; gap: 16px; counter-reset: s; }
.aside-card ol li { display: grid; grid-template-columns: 30px 1fr; gap: 13px; font-size: .9375rem; color: var(--ink-2); }
.aside-card ol li::before {
  counter-increment: s; content: counter(s);
  width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: var(--green);
  display: grid; place-items: center; font-weight: 700; font-size: .8125rem; font-family: var(--font-display);
}
.aside-card .phone-link {
  display: flex; align-items: center; gap: 11px; text-decoration: none; font-family: var(--font-display);
  font-weight: 800; font-size: 1.375rem; letter-spacing: -.02em; color: var(--ink); margin-top: 4px;
}
.aside-card .phone-link svg { width: 20px; height: 20px; color: var(--green-text); }

.load-summary {
  background: var(--ink); color: #fff; border-radius: var(--r-lg);
  padding: clamp(22px, 2.6vw, 28px); margin-bottom: 16px;
}
.load-summary[hidden] { display: none; }
.load-summary__label { font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.62); font-weight: 700; }
.load-summary__price { font-family: var(--font-display); font-weight: 800; font-size: 2.75rem; letter-spacing: -.04em; line-height: 1; margin-top: 8px; }
.load-summary__meta { margin-top: 8px; color: rgba(255,255,255,.8); font-size: .9375rem; }
.load-summary a { color: var(--green); font-weight: 700; font-size: .875rem; text-decoration: none; display: inline-block; margin-top: 14px; }

.success-card { text-align: center; padding: clamp(32px, 5vw, 64px) clamp(22px, 4vw, 48px); }
.success-card[hidden] { display: none; }
.success-card__mark {
  width: 72px; height: 72px; border-radius: 50%; background: var(--green);
  display: grid; place-items: center; margin: 0 auto 24px;
}
.success-card__mark svg { width: 34px; height: 34px; color: var(--ink); }
.success-card h2 { font-size: clamp(1.75rem, 3.2vw, 2.4rem); }
.success-card p { margin-top: 16px; color: var(--muted); max-width: 46ch; margin-inline: auto; }
.success-card .btn { margin-top: 28px; }
.success-summary {
  margin-top: 28px; text-align: left; background: var(--surface); border-radius: var(--r-md);
  padding: 22px; font-size: .9375rem; color: var(--ink-2); display: grid; gap: 8px;
}
.success-summary b { color: var(--ink); }

/* ---------- 23. Mobile action bar (fixed, phone only) ---------- */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: grid; grid-template-columns: 1.12fr 1fr;
  box-shadow: 0 -4px 24px rgba(22, 26, 31, .18);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.action-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 62px; padding: 12px 8px; text-decoration: none;
  font-weight: 700; font-size: .875rem; letter-spacing: -.01em;
  line-height: 1.1; text-align: center; white-space: nowrap;
}
.action-bar svg { width: 18px; height: 18px; flex: none; }
@media (max-width: 359px) { .action-bar a { font-size: .8125rem; gap: 6px; } }
.action-bar__call { background: var(--ink); color: #fff; }
.action-bar__book { background: var(--green); color: var(--ink); }
.action-bar__call:active, .action-bar__book:active { filter: brightness(.94); }
@media (min-width: 860px) { .action-bar { display: none; } }
@media (max-width: 859px) { body { padding-bottom: calc(62px + env(safe-area-inset-bottom, 0px)); } }

/* ---------- 24. Pull quote ---------- */
.pullquote { padding-block: clamp(60px, 8.5vw, 132px); }
.pullquote blockquote {
  margin: 0; border-left: 3px solid var(--green); padding-left: clamp(20px, 3vw, 40px);
}
.pullquote p {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -.028em;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem); line-height: 1.18; color: var(--ink-2);
  max-width: 26ch;
}
.pullquote p + p { margin-top: 22px; }
.pullquote strong { color: var(--ink); font-weight: 700; }
@media (min-width: 900px) { .pullquote blockquote { margin-left: 8vw; } }

/* ---------- 25. Why us (hairline row, no cards) ---------- */
.why-row { display: grid; gap: 0; }
.why-item { padding: 26px 0; border-top: 1px solid var(--line); }
.why-item:first-child { border-top: 0; padding-top: 0; }
.why-item svg { width: 26px; height: 26px; color: var(--green-text); }
.why-item h3 { margin: 14px 0 8px; font-size: clamp(1.125rem, 1.5vw, 1.3rem); }
.why-item p { color: var(--muted); font-size: .9375rem; }
@media (min-width: 760px) {
  .why-row { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 44px; }
  .why-item { border-top: 1px solid var(--line); padding: 30px 0; }
  .why-item:nth-child(-n+2) { border-top: 0; padding-top: 0; }
}
@media (min-width: 1080px) {
  .why-row { grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: 0; }
  .why-item { border-top: 0; border-left: 1px solid var(--line); padding: 0 30px; }
  .why-item:first-child { padding-left: 0; border-left: 0; }
  .why-item:last-child { padding-right: 0; }
  .why-item:nth-child(-n+2) { padding-top: 0; }
}

/* ---------- 26. Before / after gallery ---------- */
.gallery { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.gallery[hidden] { display: none; }
.ba {
  margin: 0; border-radius: var(--r-md); overflow: hidden;
  background: var(--white); border: 1px solid var(--line);
}
.ba__stage { position: relative; overflow: hidden; touch-action: pan-y; }
.ba__stage > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.ba__before {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}
.ba__tag {
  position: absolute; top: 12px; z-index: 2; pointer-events: none;
  background: rgba(22, 26, 31, .84); color: #fff;
  font-size: .6875rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-pill);
}
.ba__tag--before { left: 12px; }
.ba__tag--after { right: 12px; background: rgba(91, 216, 12, .95); color: var(--ink); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px; z-index: 3;
  background: #fff; transform: translateX(-1.5px); pointer-events: none;
  box-shadow: 0 0 0 1px rgba(22, 26, 31, .18);
}
.ba__knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow-md);
  transition: box-shadow .18s var(--ease-out);
}
.ba__knob svg { width: 20px; height: 20px; color: var(--ink); }
.ba__range {
  position: absolute; inset: 0; z-index: 4; width: 100%; height: 100%;
  margin: 0; padding: 0; background: transparent; border: 0;
  -webkit-appearance: none; appearance: none; cursor: ew-resize; opacity: 0;
}
.ba__range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 46px; height: 100%; }
.ba__range::-moz-range-thumb { width: 46px; height: 100%; border: 0; border-radius: 0; }
.ba__range:focus-visible { outline: none; }
.ba__range:focus-visible ~ .ba__handle .ba__knob { box-shadow: 0 0 0 4px var(--green), var(--shadow-md); }
.ba figcaption { padding: 16px 20px 18px; font-size: .9688rem; font-weight: 700; color: var(--ink); }
.ba figcaption span { display: block; font-weight: 500; color: var(--muted); font-size: .875rem; margin-top: 4px; }
.gallery-noscript { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.gallery-noscript img { width: 100%; border-radius: var(--r-md); }

/* ---------- 27. Reassurance micro-copy ---------- */
.mini-note {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .8438rem; line-height: 1.5; color: var(--muted); font-weight: 500;
}
.mini-note svg { width: 15px; height: 15px; color: var(--green-text); flex: none; margin-top: 3px; }
.mini-note--center { justify-content: center; text-align: center; }
.cta-band .mini-note { color: var(--ink-2); font-weight: 600; }
.cta-band .mini-note svg { color: var(--ink); }

/* ---------- 28. Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .66s var(--ease-out), transform .66s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-in { opacity: 1; transform: none; transition: none; }
}
.no-js .reveal { opacity: 1; transform: none; }

/* Estimator disclaimer spans the full panel width under the readout row */
.est-note--wide { margin-top: 20px; max-width: 80ch; }
