/* ==========================================================================
   Grass Turf Near Me — design system CSS
   Source of truth: reference/mockup.dc.html (inline-style DC mockup)
   Ported into reusable classes for the static-site layout/pages to consume.
   ========================================================================== */

/* -- Fonts ----------------------------------------------------------------
   Loaded via <link rel="stylesheet"> in src/layout.mjs, NOT @import here.
   An @import is only discovered after this file downloads, serializing
   HTML -> site.css -> fonts.css -> font files and delaying first paint on a
   site whose whole value is organic ranking. Self-host later by dropping
   @font-face rules in here and removing the <link>; no class below changes. */

/* -- Brand tokens ---------------------------------------------------------- */
:root {
  /* Core brand palette (exact values — do not drift) */
  --green: #0A2E20;      /* deep turf green — primary surface / headings */
  --turf: #1E7A46;       /* turf green — links, accents */
  --lime: #93C020;       /* lime — highlight, CTA band */
  --amber: #F2A03C;      /* amber — primary CTA button */
  --amber-shadow: #C97E20; /* amber CTA hard bottom shadow */
  --amber-hover: #FFB55A;
  --sand: #F5F2E8;       /* alt section background */
  --ink: #14201B;        /* body copy ink */
  --border: #E6E4D9;     /* default hairline border */

  /* Supporting neutrals / accents lifted from the mockup */
  --white: #FFFFFF;
  --green-mid: #2FA05C;
  --green-pale: #F0F6E4;
  --green-tint-bg: #DCEBD9;
  --lime-bright: #B6E052;
  --on-green-body: #C9DCC7;
  --on-green-muted: #B4C8B2;
  --on-green-faint: #8FA790;
  --footer-muted: #A9BFA8;
  --text-muted: #5D6B61;
  --text-muted-2: #4C5A51;
  --text-faint: #6B7A70;
  --text-faint-2: #7D8A80;
  --hairline-alt: #EFEDE2;
  --border-alt: #E0DDD0;
  --border-input: #DDD9CB;
  --green-input-bg: #0F3A28;
  --green-input-border: #2A5843;
  --footer-rule: #1E4A32;
  --note-bg: #FDFCF7;
  --chip-text: #3E4C43;
  --cta-lede-text: #1E4A32;
  --shadow-color: rgba(10, 46, 32, 0.16);

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 20px;
  --container-max: 1240px;
}

/* -- Base reset ------------------------------------------------------------ */
html { scroll-behavior: smooth; }

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--turf); text-decoration: none; }
a:hover { color: var(--green); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  letter-spacing: -0.02em;
  text-wrap: pretty;
  font-weight: 800;
}

p { margin: 0; text-wrap: pretty; }
ul { margin: 0; padding: 0; list-style: none; }

summary { cursor: pointer; }
summary::-webkit-details-marker { display: none; }

input, select, textarea { font-family: var(--font-body); font-size: 16px; }

img { max-width: 100%; display: block; }

@keyframes gtFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* -- Accessibility ----------------------------------------------------------
   Required primitives: skip-link, visible focus ring, 48px touch targets. */
.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  background: var(--white);
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 20px rgba(10, 46, 32, 0.25);
  z-index: 999;
  transition: top 0.15s ease-out;
}
.skip-link:focus {
  top: 8px;
}

:focus-visible {
  outline: 3px solid var(--turf);
  outline-offset: 2px;
}

/* -- Layout primitives ------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Horizontal gutter is owned by .container alone. .section must NOT also pad
   horizontally or nested .container children get a doubled 48px gutter and
   misalign against the hero/CTA/footer, which put .container on the same
   element as their padding. */
.section { padding: 88px 0; background: var(--white); }
.section--alt { background: var(--sand); border-bottom: 1px solid var(--border); }
.section--dark { background: var(--green); color: var(--white); }
.section--tight { padding: 70px 0; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turf);
}
.section--dark .eyebrow { color: var(--lime); }

.section-head { max-width: 760px; }
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  font-weight: 800;
  margin-top: 14px;
  color: var(--green);
}
.section--dark .section-head h2 { color: var(--white); }

/* City sub-pages reuse a smaller heading tier below the page's own H1 hero. */
.section-head--sm h2 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.14;
  margin-top: 0;
}

/* -- Utility bar ------------------------------------------------------------ */
.util-bar {
  background: var(--green);
  color: var(--green-tint-bg);
  font-size: 14px;
  padding: 9px 24px;
  display: flex;
  justify-content: center;
}
.util-bar__inner {
  width: 100%;
  max-width: var(--container-max);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.util-bar__status {
  display: flex;
  gap: 10px;
  align-items: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
}
.util-bar__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  display: inline-block;
}
.util-bar__right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.util-bar__note { font-size: 13px; }
.util-bar__phone {
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 15px;
  /* Standalone (non-prose) link: keep the tap target >= WCAG 2.5.8's 24px. */
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}

/* -- Header + nav ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 14px rgba(10, 46, 32, 0.06);
}
.site-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-height: 48px;
}
.brand__mark { display: block; }
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -0.03em;
  color: var(--green);
}
.brand__tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  color: var(--turf);
  margin-top: 3px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  justify-content: flex-end;
}
.nav__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}
.nav__link:hover { background: var(--sand); color: var(--ink); }

.nav__item { position: relative; }
.nav__dropdown-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 48px;
}
.nav__dropdown-btn:hover { background: var(--sand); }
.nav__caret { font-size: 10px; color: var(--turf); }

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px var(--shadow-color);
  padding: 10px;
  width: 330px;
  animation: gtFade 0.16s ease-out;
}
.nav__dropdown-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint-2);
  font-weight: 700;
  padding: 8px 12px 6px;
}
.nav__dropdown-item {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--ink);
  /* Explicit, so the target survives future copy changes rather than clearing
     48px only incidentally via its two stacked text lines. */
  min-height: 48px;
}
.nav__dropdown-item:hover { background: var(--sand); color: var(--green); }
.nav__dropdown-item-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.nav__dropdown-item-focus {
  font-size: 12.5px;
  color: var(--text-faint);
}

/* Mobile nav — the one explicit breakpoint in the system. */
@media (max-width: 760px) {
  .site-header__inner { flex-direction: column; align-items: stretch; }
  .nav {
    margin-left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  .nav__link,
  .nav__dropdown-btn,
  .nav__item,
  .nav .btn-amber {
    width: 100%;
    justify-content: flex-start;
  }
  .nav__dropdown {
    position: static;
    width: 100%;
    margin-top: 4px;
    box-shadow: none;
  }
  .util-bar__inner { justify-content: center; text-align: center; }
}

/* -- Buttons ------------------------------------------------------------
   Required classes: .btn-amber (primary CTA), .btn-outline (bordered CTA).
   .btn is the shared base; extra modifiers cover the other contexts the
   mockup uses the same visual language in (dark-surface outline, lime-band
   outline, footer/CTA solid-dark). */
.btn {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  border-radius: 11px;
  padding: 15px 28px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.05s ease;
}

.btn-amber {
  background: var(--amber);
  color: var(--ink);
  font-size: 16px;
  padding: 17px 30px;
  box-shadow: 0 6px 0 var(--amber-shadow);
}
.btn-amber:hover { background: var(--amber-hover); color: var(--ink); }
.btn-amber:active { transform: translateY(3px); box-shadow: 0 3px 0 var(--amber-shadow); }

/* Small amber CTA variant (nav bar / sidebar forms use a slightly tighter one) */
.btn-amber--sm { padding: 13px 22px; font-size: 14.5px; box-shadow: 0 5px 0 var(--amber-shadow); }
.btn-amber--sm:active { box-shadow: 0 2px 0 var(--amber-shadow); }

/* Default .btn-outline = light-on-dark, for use on the green hero/header. */
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  padding: 15px 28px;
}
.btn-outline:hover { border-color: var(--lime); color: var(--lime); }

/* Outline variant for the lime CTA band (dark border/text on lime bg). */
.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
  padding: 15px 28px;
}
.btn-outline-dark:hover { background: rgba(10, 46, 32, 0.08); }

/* Outline variant for dark surfaces that want the lime accent (process section). */
.btn-outline-lime {
  background: transparent;
  border: 2px solid var(--lime);
  color: var(--lime);
  padding: 14px 26px;
}
.btn-outline-lime:hover { background: var(--lime); color: var(--green); }

/* Solid dark button (CTA band primary action on lime bg). */
.btn-solid-dark {
  background: var(--green);
  color: var(--white);
  padding: 17px 30px;
}
.btn-solid-dark:hover { background: var(--ink); }

/* -- Hero ------------------------------------------------------------------ */
.hero {
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 72px 24px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(440px, 100%), 1fr));
  gap: 56px;
  align-items: center;
}
.hero--city .hero__inner { padding-top: 44px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(147, 192, 32, 0.16);
  border: 1px solid rgba(147, 192, 32, 0.45);
  color: var(--lime-bright);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 100px;
}

/* Page title on a LIGHT section (e.g. the contact page). Must come before
   .hero__title's white so the dark-hero rule can override it in context —
   see .hero .hero__title below. Reusing .hero__title on a white section is
   what made the contact H1 render white-on-white. */
.page-title {
  color: var(--green);
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.08;
  font-weight: 900;
  margin-top: 14px;
  text-transform: uppercase;
}

.hero__title {
  color: var(--white);
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.04;
  font-weight: 900;
  margin-top: 22px;
  text-transform: uppercase;
}
/* Body lede on a light section — replaces the inline color patches that were
   compensating for .hero__lede's on-dark color. */
.page-lede {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--text-muted-2);
  margin-top: 16px;
}

.hero__title mark,
.hero__title .hero__accent {
  color: var(--lime);
  background: none;
}

.hero__lede {
  color: var(--on-green-body);
  font-size: 19px;
  line-height: 1.6;
  margin-top: 22px;
  max-width: 620px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 34px;
}
.hero__checklist li {
  color: var(--lime-bright);
  font-size: 14.5px;
  font-weight: 600;
}

.hero__media {
  position: relative;
  min-width: 0;
}
.hero__media-frame {
  position: relative;
  width: 100%;
  min-width: 0;
  height: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.hero__media-frame img { width: 100%; height: 100%; object-fit: cover; }

.hero__badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  display: flex;
  gap: 14px;
  align-items: center;
}
.hero__badge-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  color: var(--turf);
}
.hero__badge-label {
  font-size: 13px;
  line-height: 1.35;
  color: var(--text-muted-2);
}

.breadcrumb {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 26px 24px 0;
  font-size: 13.5px;
  color: var(--on-green-faint);
}
.breadcrumb a {
  color: var(--on-green-faint);
  /* Breadcrumbs are navigation targets, not prose links — hold the WCAG 2.5.8
     24px minimum rather than relying on the inline-text exception. */
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}
.breadcrumb .breadcrumb__current { color: var(--lime); }

/* -- Stat bar ---------------------------------------------------------------- */
.stat-bar {
  background: var(--sand);
  border-bottom: 1px solid var(--border);
}
.stat-bar__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 26px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: 20px;
}
.stat-bar__item { display: flex; flex-direction: column; gap: 3px; }
.stat-bar__value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--green);
}
.stat-bar__label { font-size: 13.5px; color: var(--text-muted); }

/* -- Cards -------------------------------------------------------------------
   Required class: .card. Modifiers cover benefit / spec / city / note
   variants used across the home and city pages. */
.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { border-color: var(--lime); box-shadow: 0 12px 26px rgba(10, 46, 32, 0.08); }

.card--benefit .card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--turf);
  font-size: 16px;
}
.card__title { font-size: 20px; font-weight: 800; margin-top: 18px; color: var(--ink); }
.card__body { font-size: 15.5px; line-height: 1.6; color: var(--text-muted); margin-top: 10px; }

.card--spec,
.card--note {
  border-radius: var(--radius-md);
  padding: 20px 22px;
}
.card--note { background: var(--note-bg); padding: 22px; }
.card--spec .card__title,
.card--note .card__title { font-size: 18px; font-weight: 800; color: var(--green); }
.card--spec .card__body,
.card--note .card__body { font-size: 15.5px; margin-top: 7px; }

.card--city {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 0;
}
.card--city:hover { box-shadow: 0 16px 32px rgba(10, 46, 32, 0.1); }
.card__media {
  width: 100%;
  min-width: 0;
  height: 190px;
  position: relative;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card--city .card__body-wrap { padding: 24px; }
.card--city .card__title { font-size: 23px; color: var(--green); margin-top: 0; }
.card--city .card__body { margin-top: 9px; }
.card__link-label {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14.5px;
  color: var(--turf);
}

/* Grid wrappers reused across sections */
.grid-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 22px; margin-top: 44px; }
.grid-specs { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.grid-cities { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 24px; margin-top: 42px; }
.grid-notes { display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
.grid-2up { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr)); gap: 56px; align-items: center; }
.grid-2up--content { grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr)); align-items: start; }

/* -- Media block (materials/specs section image) ---------------------------- */
.media-frame {
  width: 100%;
  min-width: 0;
  height: 440px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-alt);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* -- Process steps ------------------------------------------------------------
   Required class: .step */
.grid-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  gap: 18px;
  margin-top: 46px;
}
.step { border-top: 3px solid var(--lime); padding-top: 20px; }
.step__label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  color: var(--lime);
  letter-spacing: 0.1em;
}
.step__title { font-size: 19px; font-weight: 800; margin-top: 10px; color: var(--white); }
.step__body { font-size: 15px; line-height: 1.6; color: var(--on-green-muted); margin-top: 9px; }

/* -- Cost table ----------------------------------------------------------------
   Required class: .cost-table */
.cost-table {
  margin-top: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cost-table__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.4fr);
  padding: 20px 24px;
  border-top: 1px solid var(--hairline-alt);
  font-size: 16px;
  align-items: center;
}
.cost-table__row:first-child { border-top: 0; }
.cost-table__head {
  background: var(--sand);
  padding: 16px 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--green);
  letter-spacing: 0.02em;
  border-top: 0;
}
.cost-table__label { font-weight: 700; color: var(--ink); }
.cost-table__price {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--turf);
}
.cost-table__includes { color: var(--text-muted); }
.cost-table__note {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text-muted-2);
  margin-top: 20px;
  font-style: italic;
}
.cost-table__note strong { font-style: normal; color: var(--green); }

/* Narrow screens: three tracks in ~280px clip mid-word because .cost-table has
   overflow:hidden. Stack to labelled rows instead of scrolling, so the table
   stays readable without a horizontal scroller. */
@media (max-width: 640px) {
  .cost-table__row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 18px;
  }
  /* The header row's labels are carried by each cell's ::before below. */
  .cost-table__head { display: none; }
  .cost-table__price::before {
    content: 'Estimated cost per sq. ft.';
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-faint-2);
  }
  .cost-table__includes::before {
    content: "What's included";
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-faint-2);
    margin-top: 6px;
  }
}

/* -- Chips (neighborhood tags) --------------------------------------------------
   Required class: .chip */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.chip {
  background: var(--white);
  border: 1px solid var(--border-alt);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 14.5px;
  color: var(--chip-text);
  display: inline-block;
}

/* -- FAQ -------------------------------------------------------------------------
   Required class: .faq */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.faq {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  background: var(--white);
}
.faq__q {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--green);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  align-items: center;
}
.faq__icon { color: var(--lime); }
.faq__a { font-size: 16px; line-height: 1.65; color: var(--text-muted); margin-top: 14px; }

/* -- CTA band ---------------------------------------------------------------------
   Required class: .cta-band */
.cta-band {
  background: var(--lime);
  padding: 56px 24px;
}
.cta-band__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.cta-band__title {
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
  color: var(--green);
  text-transform: uppercase;
}
.cta-band__lede { font-size: 17px; color: var(--cta-lede-text); margin-top: 10px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* -- Footer -------------------------------------------------------------------------
   Required class: .site-footer */
.site-footer {
  background: var(--green);
  color: var(--footer-muted);
  padding: 60px 24px 30px;
}
.site-footer__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 36px;
}
.site-footer__brand-row { display: flex; align-items: center; gap: 12px; }
.site-footer__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.site-footer__blurb { font-size: 15px; line-height: 1.65; margin-top: 16px; max-width: 340px; }
.site-footer__col-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-footer__list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.site-footer__list a {
  color: var(--footer-muted);
  font-size: 15px;
  /* Listed (non-prose) links: >= WCAG 2.5.8 24px tap target on mobile. */
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}
.site-footer__list a:hover { color: var(--lime); }
.site-footer__phone {
  color: var(--white);
  font-size: 17px;
  font-family: var(--font-display);
  font-weight: 800;
}
.site-footer__bottom {
  max-width: var(--container-max);
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--footer-rule);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: 13.5px;
}
.site-footer__legal-links { display: flex; gap: 18px; }

/* -- Forms -------------------------------------------------------------------------
   Sidebar quote card (dark, on city pages) + full contact form (light card). */
.quote-card {
  align-self: start;
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
}
.quote-card__title { font-size: 22px; font-weight: 800; }
.quote-card__lede { font-size: 15px; line-height: 1.6; color: var(--on-green-muted); margin-top: 10px; }
.quote-card__fields { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.quote-card__actions { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.quote-card__disclaimer { font-size: 12.5px; color: var(--on-green-faint); margin-top: 14px; line-height: 1.5; }

.field-dark {
  background: var(--green-input-bg);
  border: 1px solid var(--green-input-border);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--white);
  font-size: 15px;
  min-height: 48px;
  width: 100%;
}
.field-dark::placeholder { color: var(--on-green-muted); }

.field-light {
  border: 1px solid var(--border-input);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-size: 15px;
  min-height: 48px;
  width: 100%;
  background: var(--white);
  color: var(--ink);
}
textarea.field-light { min-height: 96px; resize: vertical; }

.contact-card {
  background: var(--white);
  border: 1px solid var(--border-alt);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact-card__title { font-size: 22px; font-weight: 800; color: var(--green); }
.contact-card__fields { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.contact-card__lede { font-size: 15.5px; line-height: 1.6; color: var(--text-muted); margin-top: 10px; }
.contact-card__actions { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.contact-card__hint { font-size: 14.5px; line-height: 1.6; color: var(--text-muted); margin-top: 18px; }
.contact-card__disclaimer { font-size: 12px; line-height: 1.5; color: var(--text-faint-2); margin-top: 14px; }

/* Full-width CTA inside the narrow lead cards. */
.btn-block { width: 100%; justify-content: center; text-align: center; }

/* Outline CTA on a LIGHT surface (the contact card) — .btn-outline is white-on-dark. */
.btn-outline-green {
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
  font-size: 15px;
}
.btn-outline-green:hover { background: var(--sand); color: var(--green); }

.contact-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 18px;
  margin-top: 34px;
}
.contact-meta-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--green);
}

/* -- Utility --------------------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* -- Prose (legal / utility pages) ------------------------------------------ */
.prose { max-width: 760px; }
.prose__meta {
  font-size: 14px;
  color: var(--text-faint-2);
  margin-top: 18px;
}
.prose__block { margin-top: 34px; }
.prose__h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  line-height: 1.2;
}
.prose__p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-muted-2);
  margin-top: 12px;
}
.prose__p a { text-decoration: underline; }

/* -- Lead form -------------------------------------------------------------- */
.lead-form { margin-top: 18px; }
.field-row { margin: 0 0 12px; }
.field-row:last-of-type { margin-bottom: 0; }

/* Honeypot: off-screen rather than display:none, so bots that skip hidden
   inputs still see it, while humans and screen readers never reach it
   (the wrapper is aria-hidden and the inputs are tabindex="-1"). */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form__status {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
}
.lead-form__status.is-ok { background: var(--green-pale); color: var(--green); }
.lead-form__status.is-error { background: #FDECEC; color: #8A1F1F; }
/* On the dark sidebar the light panels above would vanish into the card. */
.quote-card .lead-form__status.is-ok { background: rgba(147, 192, 32, 0.18); color: var(--lime-bright); }
.quote-card .lead-form__status.is-error { background: rgba(255, 255, 255, 0.12); color: #FFD9D9; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
