/* ==========================================================================
   Hedge Trimmer Estimator — design system
   Self-hosted variable fonts, no external requests, no framework.
   ========================================================================== */

@font-face {
  font-family: 'Jakarta';
  src: url('/assets/fonts/jakarta.153fc85b.woff2') format('woff2-variations');
  font-weight: 500 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}
@font-face {
  font-family: 'InterVar';
  src: url('/assets/fonts/inter.3100e775.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}

:root {
  /* Greens taken from the two leaves in the logo mark. */
  --brand-900: #0E2A1B;
  --brand-800: #14472B;
  --brand-700: #1F7A3A;
  --brand-600: #2E9E4B;
  --brand-500: #45B356;
  --brand-400: #6FC978;
  --brand-200: #B7E6C1;
  --brand-100: #DCF2E1;
  --brand-50:  #F2FBF4;

  /* Gold, reserved strictly for the primary action. Used sparingly it
     reads as premium; used everywhere it reads as a discount store. */
  --gold-600: #B07A0A;
  --gold-500: #E5A100;
  --gold-400: #F4C430;
  --gold-100: #FFF6E0;

  --ink:       #16211B;
  --ink-soft:  #4C5B53;
  --ink-faint: #77877E;
  --line:      #E1E9E4;
  --line-soft: #EFF4F1;
  --bg:        #FFFFFF;
  --bg-soft:   #F7FAF8;

  --radius-sm: 10px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(14,42,27,.05), 0 1px 3px rgba(14,42,27,.04);
  --shadow-md: 0 6px 20px rgba(14,42,27,.08);
  --shadow-lg: 0 18px 50px rgba(14,42,27,.13);
  --shadow-gold: 0 4px 18px rgba(229,161,0,.32);

  --wrap: 1140px;
  --display: 'Jakarta', ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --body: 'InterVar', ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'cv05' 1, 'ss01' 1;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--brand-900);
}
h1 { font-size: clamp(1.9rem, 1.3rem + 2.5vw, 3rem); }
h2 { font-size: clamp(1.45rem, 1.15rem + 1.3vw, 2.05rem); margin-top: 2em; }
h3 { font-size: clamp(1.1rem, 1rem + .5vw, 1.3rem); margin-top: 1.7em; font-weight: 700; }
p  { margin: 0 0 1.1em; }

a { color: var(--brand-700); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--brand-600); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--brand-700); color: #fff; padding: 12px 18px; }
.skip-link:focus { left: 0; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--brand-500); outline-offset: 2px; border-radius: 4px;
}

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); }
@supports (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px)) {
  .site-header { background: rgba(255,255,255,.96); -webkit-backdrop-filter: saturate(180%) blur(12px); backdrop-filter: saturate(180%) blur(12px); }
}
.header-inner { display: flex; align-items: center; gap: 20px; min-height: 64px; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--brand-800); }
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand-text { font-family: var(--display); font-weight: 600; font-size: 1.06rem; letter-spacing: -.03em; white-space: nowrap; line-height: 1; }
.brand-text strong { font-weight: 800; color: var(--brand-700); }

.primary-nav { margin-left: auto; }
.primary-nav ul { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.primary-nav a {
  display: block; padding: 8px 13px; border-radius: var(--radius-sm);
  font-size: .92rem; font-weight: 500; color: var(--ink-soft); text-decoration: none;
  transition: background .15s, color .15s;
}
.primary-nav a:hover { background: var(--brand-50); color: var(--brand-700); }
.primary-nav a[aria-current="page"] { background: var(--brand-100); color: var(--brand-800); font-weight: 650; }

.nav-toggle { display: none; margin-left: auto; width: 42px; height: 42px; padding: 10px; background: none; border: 1px solid var(--line); border-radius: var(--radius-sm); cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .primary-nav { position: absolute; inset: 64px 0 auto; margin: 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); display: none; }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; gap: 0; padding: 8px 20px 16px; }
  .primary-nav a { padding: 12px 10px; font-size: 1rem; }
}

/* ---------- Hero ----------
   Deliberately short. The calculator has to be reachable without scrolling,
   so the hero gets a headline, one line of context, and nothing else. */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(157deg, var(--brand-800) 0%, var(--brand-700) 58%, var(--brand-600) 100%);
  padding: 30px 0 88px;
  text-align: center;
  color: #fff;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 82% 6%, rgba(111,201,120,.34), transparent 70%),
    url("data:image/svg+xml,%3Csvg width='72' height='72' viewBox='0 0 72 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 46C14 32 24 22 38 22c0 14-10 24-24 24Z' fill='rgba(255,255,255,0.035)'/%3E%3Cpath d='M52 62c0-8 6-14 14-14 0 8-6 14-14 14Z' fill='rgba(255,255,255,0.025)'/%3E%3C/svg%3E");
}
.hero > .wrap { position: relative; }
.hero h1 { color: #fff; margin: 0 0 9px; max-width: 26ch; margin-inline: auto; font-size: clamp(1.85rem, 1.2rem + 2.2vw, 2.7rem); }
.hero h1 em { font-style: normal; color: var(--gold-400); }
.hero-sub { margin: 0 auto; max-width: 62ch; font-size: 1.02rem; line-height: 1.55; color: var(--brand-200); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px; margin: 0 0 14px;
  padding: 6px 15px; border-radius: 999px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
  font-size: .78rem; font-weight: 650; letter-spacing: .02em; color: var(--gold-400);
}
.hero-badge svg { flex: none; }

@media (max-width: 700px) {
  .hero { padding: 22px 0 80px; }
  .hero-badge { margin-bottom: 11px; padding: 5px 13px; font-size: .74rem; }
  .hero-sub { font-size: .96rem; }
  .calc-stage { margin-top: -62px; }
  .calc-form { padding: 20px 18px; border-radius: var(--radius); }
}

/* Page heroes that aren't the calculator: same family, less height. */
.hero-slim { padding: 40px 0 44px; }
.hero-slim h1 { max-width: 24ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border: 1px solid transparent; border-radius: var(--radius-sm);
  font-family: var(--display); font-size: 1rem; font-weight: 700; line-height: 1.2;
  text-decoration: none; cursor: pointer;
  transition: background .16s, box-shadow .16s, transform .08s, border-color .16s;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); color: var(--brand-900); box-shadow: var(--shadow-gold); }
.btn-gold:hover { color: var(--brand-900); box-shadow: 0 6px 24px rgba(229,161,0,.42); transform: translateY(-1px); }
.btn-primary { background: var(--brand-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-800); color: #fff; }
.btn-secondary { background: #fff; color: var(--brand-800); border-color: var(--line); }
.btn-secondary:hover { background: var(--brand-50); border-color: var(--brand-400); color: var(--brand-800); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 1.06rem; }

/* ---------- Sections and prose ---------- */
.section { padding: 60px 0; }
.section-tight { padding: 34px 0; }
.section-soft { background: var(--bg-soft); border-block: 1px solid var(--line-soft); }
.section-brand { background: var(--brand-50); border-block: 1px solid var(--brand-100); }

.prose { max-width: 72ch; }
.prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.prose li { margin-bottom: .45em; }
.prose > :first-child { margin-top: 0; }
.lede { font-size: 1.1rem; color: var(--ink-soft); }

.breadcrumb { padding: 14px 0 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; font-size: .84rem; color: var(--ink-faint); }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; color: var(--line); }
.breadcrumb a { color: var(--ink-faint); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand-700); text-decoration: underline; }

/* ==========================================================================
   Calculator — lifted over the hero so the inputs sit above the fold
   ========================================================================== */
.calc-stage { margin-top: -68px; position: relative; z-index: 2; }

.calc { display: grid; gap: 20px; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); align-items: start; }
@media (max-width: 960px) { .calc { grid-template-columns: 1fr; } }

.calc-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-lg);
}
.calc-heading { margin: 0 0 18px; font-size: 1.18rem; }
.calc-intro { margin: 0 0 20px; font-size: .88rem; color: var(--ink-faint); }
.calc-fields { display: grid; gap: 16px; }

.field > label, .label-text { display: block; margin-bottom: 6px; font-family: var(--display); font-weight: 650; font-size: .85rem; color: var(--brand-900); letter-spacing: -.01em; }
.field-hint { margin: 6px 0 0; font-size: .79rem; line-height: 1.5; color: var(--ink-faint); }
.field-split { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .field-split { grid-template-columns: 1fr; } }

input[type="number"], input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; padding: 11px 13px; font: inherit; font-size: .95rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .15s, box-shadow .15s;
}
select {
  appearance: none; padding-right: 38px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%234C5B53' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
}
input:focus, select:focus, textarea:focus { border-color: var(--brand-500); box-shadow: 0 0 0 3px rgba(69,179,86,.18); outline: none; }

.input-unit { position: relative; }
.input-unit input { padding-right: 46px; }
.input-unit .unit { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); font-size: .85rem; font-weight: 650; color: var(--ink-faint); pointer-events: none; }

.field-check .check { display: flex; align-items: flex-start; gap: 10px; font-size: .93rem; cursor: pointer; }
.check input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--brand-700); flex: none; }

/* Region picker as segmented pills — faster than a select and it shows
   the currency, which is the thing people actually scan for. */
.region-row { display: flex; flex-wrap: wrap; gap: 6px; }
.region-pill { position: relative; flex: 1 1 auto; }
.region-pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.region-pill span {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 10px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 600; color: var(--ink-soft); cursor: pointer;
  background: #fff; transition: all .15s; white-space: nowrap;
}
.region-pill span b { font-weight: 700; color: var(--ink-faint); }
.region-pill input:checked + span { background: var(--brand-100); border-color: var(--brand-500); color: var(--brand-800); }
.region-pill input:checked + span b { color: var(--brand-700); }
.region-pill input:focus-visible + span { outline: 3px solid var(--brand-500); outline-offset: 2px; }

.radio-row { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-pill span { display: block; padding: 9px 17px; border: 1.5px solid var(--line); border-radius: 999px; font-size: .9rem; font-weight: 550; cursor: pointer; background: #fff; transition: all .15s; }
.radio-pill input:checked + span { background: var(--brand-100); border-color: var(--brand-500); color: var(--brand-800); font-weight: 650; }
.radio-pill input:focus-visible + span { outline: 3px solid var(--brand-500); outline-offset: 2px; }

/* ---------- Result card ---------- */
.calc-result { position: sticky; top: 80px; }
@media (max-width: 960px) { .calc-result { position: static; } }

.result-card {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--brand-800), var(--brand-900) 85%);
  color: #DDEDE3; border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-lg);
}
.result-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(69,179,86,.28), transparent 68%);
}
.result-card > * { position: relative; }
.result-label { margin: 0 0 2px; font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--brand-400); font-weight: 650; }
.result-range {
  margin: 0 0 8px; font-family: var(--display); font-weight: 800;
  font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.55rem); line-height: 1.05;
  color: #fff; letter-spacing: -.035em;
}
.result-sub { margin: 0; font-size: .91rem; color: #A9C8B6; }

.result-breakdown { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); }
.result-breakdown h3 { margin: 0 0 11px; font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--brand-400); font-weight: 650; font-family: var(--body); }
.result-breakdown dl { margin: 0; display: grid; gap: 8px; }
.result-breakdown dl > div { display: flex; justify-content: space-between; gap: 14px; font-size: .9rem; }
.result-breakdown dt { color: #A9C8B6; }
.result-breakdown dd { margin: 0; font-weight: 650; color: #fff; white-space: nowrap; }
.result-note { margin: 11px 0 0; font-size: .8rem; color: var(--brand-400); }
.result-note:empty { display: none; }

.result-annual { margin-top: 16px; padding: 13px 15px; border-radius: var(--radius-sm); background: rgba(255,255,255,.08); font-size: .9rem; }
.result-annual p { margin: 0; color: #CFE4D8; }
.result-annual strong { color: var(--gold-400); font-size: 1.12rem; font-family: var(--display); }

.result-actions { margin-top: 18px; display: grid; gap: 9px; }
.result-actions .btn-ghost {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff;
  padding: 11px 18px; border-radius: var(--radius-sm); font-family: var(--display);
  font-size: .92rem; font-weight: 650; cursor: pointer; transition: background .15s;
}
.result-actions .btn-ghost:hover { background: rgba(255,255,255,.18); }
.result-disclaimer { margin: 13px 0 0; font-size: .77rem; line-height: 1.5; color: #7FA48D; }

/* ==========================================================================
   Quote CTA + lead modal
   The form is never on the page by default. It appears once someone has an
   estimate in front of them, which is the only moment it is welcome.
   ========================================================================== */
.quote-cta { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); }
.quote-cta[hidden] { display: none !important; }
.quote-cta .btn { width: 100%; }
.quote-cta-note { margin: 10px 0 0; font-size: .78rem; color: #7FA48D; text-align: center; }
.quote-cta-note a { color: #CFE4D8; }

.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  background: rgba(14,42,27,.72);
  opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
}
@supports (backdrop-filter: blur(4px)) { .modal-overlay { -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); } }
.modal-overlay.is-open { opacity: 1; visibility: visible; }

.modal {
  position: relative; width: 100%; max-width: 480px; max-height: 92vh; overflow-y: auto;
  background: #fff; border-radius: var(--radius-lg); padding: 32px 28px 26px;
  box-shadow: 0 24px 64px rgba(0,0,0,.32);
  transform: translateY(22px) scale(.97); transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.modal-overlay.is-open .modal { transform: none; }
.modal::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; background: linear-gradient(90deg, var(--gold-500), var(--gold-400), var(--brand-500)); }
.modal h2 { margin: 0 0 8px; font-size: 1.4rem; }
.modal h2 em { font-style: normal; color: var(--gold-600); }
.modal-sub { margin: 0 0 16px; font-size: .93rem; color: var(--ink-soft); }

.modal-close {
  position: absolute; top: 14px; right: 14px; width: 32px; height: 32px;
  display: grid; place-items: center; border: none; border-radius: 50%;
  background: var(--line-soft); color: var(--ink-soft); cursor: pointer; transition: background .15s;
}
.modal-close:hover { background: var(--line); color: var(--ink); }

.modal-estimate {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 16px; margin-bottom: 18px; border-radius: var(--radius-sm);
  background: var(--brand-50); border: 1px solid var(--brand-100);
}
.modal-estimate .label { font-size: .78rem; color: var(--ink-faint); }
.modal-estimate .value { font-family: var(--display); font-size: 1.25rem; font-weight: 800; color: var(--brand-700); }

.modal-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 16px; font-size: .77rem; color: var(--ink-faint); }
.modal-trust span { display: inline-flex; align-items: center; gap: 5px; }
.modal-decline { display: block; width: 100%; margin-top: 13px; background: none; border: none; font: inherit; font-size: .81rem; color: var(--ink-faint); cursor: pointer; text-decoration: underline dotted; }
.modal-decline:hover { color: var(--ink-soft); }
.modal-phone { margin: 14px 0 0; text-align: center; font-size: .84rem; color: var(--ink-faint); }
.modal-phone a { font-weight: 650; }

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(262px, 1fr)); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: border-color .16s, box-shadow .16s, transform .16s; }
a.card { display: block; text-decoration: none; color: inherit; }
a.card:hover { border-color: var(--brand-400); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card h3 { margin-top: 0; font-size: 1.08rem; }
.card p { margin-bottom: 0; font-size: .93rem; color: var(--ink-soft); }
.card-icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 14px; border-radius: 11px; background: var(--brand-100); color: var(--brand-700); }
.card-more { display: inline-block; margin-top: 12px; font-size: .89rem; font-weight: 650; color: var(--brand-700); font-family: var(--display); }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 26px; grid-template-columns: repeat(3, 1fr); max-width: 920px; margin-inline: auto; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; gap: 20px; } }
.step { text-align: center; }
.step-num {
  display: grid; place-items: center; width: 46px; height: 46px; margin: 0 auto 14px;
  border-radius: 50%; background: var(--brand-700); color: #fff;
  font-family: var(--display); font-weight: 800; font-size: 1.05rem;
}
.step h3 { margin: 0 0 6px; font-size: 1.02rem; }
.step p { margin: 0; font-size: .91rem; color: var(--ink-soft); }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; margin: 0 0 1.5em; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: .94rem; background: #fff; }
th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line-soft); }
thead th { background: var(--brand-700); color: #fff; font-family: var(--display); font-weight: 650; font-size: .81rem; text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; }
tbody tr:nth-child(even) td { background: var(--bg-soft); }
tbody tr:last-child td { border-bottom: 0; }

/* ---------- Callouts ---------- */
.callout { padding: 18px 20px; margin: 0 0 1.5em; border-radius: var(--radius); background: var(--brand-50); border: 1px solid var(--brand-100); border-left: 4px solid var(--brand-500); }
.callout > :last-child { margin-bottom: 0; }
.callout h3 { margin-top: 0; font-size: 1rem; }
.callout-warn { background: var(--gold-100); border-color: #F3E2B8; border-left-color: var(--gold-500); }

/* ---------- FAQ ---------- */
.faq { max-width: 78ch; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 10px; background: #fff; transition: border-color .15s, box-shadow .15s; }
.faq-item[open] { border-color: var(--brand-200); box-shadow: var(--shadow-sm); }
.faq-item summary { padding: 16px 48px 16px 20px; font-family: var(--display); font-weight: 650; cursor: pointer; position: relative; list-style: none; color: var(--brand-900); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; position: absolute; right: 20px; top: 50%; width: 9px; height: 9px; border-right: 2px solid var(--ink-faint); border-bottom: 2px solid var(--ink-faint); transform: translateY(-70%) rotate(45deg); transition: transform .2s; }
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-item[open] summary { color: var(--brand-700); }
.faq-answer { padding: 0 20px 17px; color: var(--ink-soft); }
.faq-answer > :last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { margin-top: 72px; padding: 48px 0 26px; background: var(--brand-900); color: #AFC7B8; font-size: .91rem; }
.footer-grid { display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.footer-heading { margin: 0 0 12px; font-size: .76rem; text-transform: uppercase; letter-spacing: .09em; color: #fff; font-family: var(--body); font-weight: 650; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #AFC7B8; text-decoration: none; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-base { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); font-size: .84rem; color: #7FA48D; }
.footer-base p { margin: 0; }

/* ---------- Mobile sticky estimate ---------- */
.calc-sticky { display: none; }
.calc-sticky[data-at-result] { opacity: 0; visibility: hidden; transform: translateY(100%); }
@media (max-width: 960px) {
  .calc-sticky {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
    padding: 11px 18px calc(11px + env(safe-area-inset-bottom));
    background: var(--brand-900); color: #fff;
    box-shadow: 0 -4px 20px rgba(14,42,27,.24);
    transition: opacity .2s, transform .2s, visibility .2s;
  }
  .calc-sticky-inner { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
  .calc-sticky-label { font-size: .66rem; text-transform: uppercase; letter-spacing: .09em; color: var(--brand-400); font-weight: 650; }
  .calc-sticky-value { font-family: var(--display); font-size: 1.16rem; font-weight: 800; white-space: nowrap; }
  .calc-sticky-link { flex: none; padding: 10px 17px; border-radius: 999px; background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); color: var(--brand-900); font-family: var(--display); font-size: .85rem; font-weight: 700; text-decoration: none; border: none; cursor: pointer; }
  .site-footer { padding-bottom: 88px; }
}

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Coverage map ---------- */
.coverage { background: var(--brand-900); color: #BBD4C4; }
.coverage h2 { color: #fff; }
.coverage-sub { max-width: 58ch; margin: 0 auto 26px; text-align: center; font-size: .97rem; color: #9FBFAE; }
.coverage-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin-bottom: 28px; }
.coverage-tab {
  padding: 9px 18px; border-radius: 999px; cursor: pointer;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: #CFE4D8;
  font-family: var(--display); font-size: .88rem; font-weight: 650; transition: all .16s;
}
.coverage-tab:hover { background: rgba(255,255,255,.16); color: #fff; }
.coverage-tab.is-active { background: #fff; border-color: #fff; color: var(--brand-800); }
.coverage-map { max-width: 760px; margin: 0 auto; min-height: 180px; }
.coverage-map img { display: block; width: 100%; height: auto; }

/* ---------- Form fields inside the lead modal ---------- */
.lead-form .field-split { gap: 12px; margin-bottom: 12px; }
.lead-form .field { margin-bottom: 12px; }
.lead-form textarea { resize: vertical; min-height: 62px; }
.field-optional { font-weight: 400; color: var(--ink-faint); font-size: .78rem; }
.form-note { margin: 11px 0 0; font-size: .78rem; line-height: 1.5; color: var(--ink-faint); text-align: center; }

/* Honeypot. Offscreen rather than display:none, which some bots skip, and
   never type="hidden", which they read straight off the attribute. */
.hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto; width: 1px; height: 1px; overflow: hidden;
}

/* ---------- US-only content ----------
   Hidden by default and revealed only on a positive match, so the number is
   never shown to anyone outside the US even if detection fails. */
[data-us-only] { display: none !important; }
html.is-us [data-us-only] { display: revert !important; }
