/* ==========================================================================
   Nest Cleaning Co. — visual system derived from the business cards
   Ground: warm cream (card front). Anchors: deep forest green (card back).
   Botanical leaf language, serif display over geometric sans.
   Palette sampled directly from 1.png and 2.png.
   ========================================================================== */

:root {
  /* grounds — card front #f8f1e1, card back #285533 */
  --cream: #f8f1e1;
  --cream-2: #f2ead6;
  --cream-3: #ebe2ca;
  --edge: #ddd3b8;

  /* greens */
  --green: #285533;
  --green-deep: #1c3a22;
  --green-mid: #446342;
  --olive: #588140;
  --sage: #668145;
  --sage-light: #84a869;

  /* warm neutral from the card back's type */
  --tan: #d3c7a1;
  --tan-soft: #e2d9bd;

  /* ink */
  --ink: #23301f;
  --ink-soft: #4a5544;
  --ink-faint: #5d6655;
  --sage-ink: #4c6733;

  /* feedback */
  --error: #9c3a24;
  --error-tint: #f6e7e1;
  --ok-tint: #e6eede;

  --radius: 18px;
  --radius-sm: 12px;
  --pill: 999px;

  --shadow-sm: 0 6px 18px -10px rgba(28, 58, 34, 0.35);
  --shadow: 0 18px 40px -22px rgba(28, 58, 34, 0.45);
  --shadow-lg: 0 30px 60px -30px rgba(28, 58, 34, 0.5);

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Poppins", "Segoe UI", Arial, sans-serif;

  --container: 74rem;
  --gutter: 1.25rem;
}

/* ------------------------------------------------------------------ base */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, p, figure, blockquote {
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--green-deep);
  text-wrap: balance;
}

a {
  color: var(--green);
}

strong {
  font-weight: 600;
  color: var(--green-deep);
}

::selection {
  background: var(--sage-light);
  color: var(--green-deep);
}

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

input, select, textarea {
  caret-color: var(--olive);
}

body {
  scrollbar-width: thin;
  scrollbar-color: var(--sage) var(--cream-2);
}

body::-webkit-scrollbar { width: 11px; }
body::-webkit-scrollbar-track { background: var(--cream-2); }
body::-webkit-scrollbar-thumb {
  background: var(--sage);
  border-radius: var(--pill);
  border: 3px solid var(--cream-2);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 300;
  background: var(--green);
  color: var(--cream);
  padding: 0.7rem 1.2rem;
  border-radius: var(--pill);
  font-size: 0.9rem;
  text-decoration: none;
  transition: top 160ms ease-out;
}

.skip-link:focus { top: 1rem; }

.container {
  width: min(var(--container), 100% - 2 * var(--gutter));
  margin-inline: auto;
}

/* ------------------------------------------------------------ typography */

.section-head { margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.section-head.center { text-align: center; margin-inline: auto; max-width: 46rem; }

.section-head h2 {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  margin-bottom: 1rem;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.06rem;
  max-width: 46rem;
}

.section-head.center p { margin-inline: auto; }

/* prose flow — h1..h4 and p are margin-reset above, so body prose needs
   its own rhythm: more space above a heading than below it */
.prose > * + * { margin-top: 1.1rem; }
.prose > * + h2,
.prose > * + h3 { margin-top: 2rem; }
.prose > h2 + *,
.prose > h3 + * { margin-top: 1rem; }

/* ---------------------------------------------------------------- leaves */
/* the cards' signature: filled leaves with a soft shadow, and line sprigs */

/* the cards render their leaves as real illustration — saturated fill with a
   soft drop shadow, cropped confidently by the edge — not as a watermark */
.leaf-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  color: var(--sage);
  opacity: 0.85;
  filter: drop-shadow(0 10px 14px rgba(28, 58, 34, 0.22));
}

.leaf-deco svg { display: block; width: 100%; height: auto; }

/* line-art sprigs carry no shadow on the card, only the filled leaves do */
.leaf-deco.is-line {
  filter: none;
  opacity: 0.7;
  color: var(--sage);
}

/* on the deep-green bands the leaves are tonal, lifted a step off the ground,
   exactly as the card back handles its corner botanicals */
.section-green .leaf-deco {
  color: var(--sage-light);
  opacity: 0.5;
  filter: none;
}

.section-green .leaf-deco.is-line {
  color: var(--sage-light);
  opacity: 0.45;
}

.site-foot .leaf-deco {
  color: var(--sage-light);
  opacity: 0.3;
  filter: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  padding: 0.95rem 1.9rem;
  border-radius: var(--pill);
  border: 1.5px solid transparent;
  transition: background 180ms ease-out, color 180ms ease-out,
              border-color 180ms ease-out, transform 180ms ease-out,
              box-shadow 180ms ease-out;
}

.btn-primary {
  background: var(--green);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary:disabled {
  background: var(--sage-light);
  color: var(--green-deep);
  cursor: default;
  transform: none;
}

.btn-outline {
  border-color: var(--green);
  color: var(--green);
  background: transparent;
}

.btn-outline:hover {
  background: var(--green);
  color: var(--cream);
  transform: translateY(-2px);
}

/* on deep-green grounds the roles invert to the card back's tan */
.on-green .btn-primary {
  background: var(--tan);
  color: var(--green-deep);
}

.on-green .btn-primary:hover { background: var(--cream); }

.on-green .btn-outline {
  border-color: var(--tan);
  color: var(--tan);
}

.on-green .btn-outline:hover {
  background: var(--tan);
  color: var(--green-deep);
}

.btn-lg { padding: 1.1rem 2.3rem; font-size: 1rem; }

/* ------------------------------------------------------------ top bar + nav */

.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--edge);
  transition: box-shadow 200ms ease-out;
}

.site-head.scrolled { box-shadow: 0 10px 30px -22px rgba(28, 58, 34, 0.5); }

.site-head .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 4.6rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  margin-right: auto;
}

.logo-tile {
  width: 52px;
  height: 52px;
  flex: none;
}

.logo-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--green-deep);
  white-space: nowrap;
}

.brand-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--sage-ink);
  white-space: nowrap;
}

.nav-links { display: none; }

.nav-item { position: relative; }

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 400;
  padding: 0.35rem 0;
  position: relative;
  transition: color 160ms ease-out;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--olive);
  transition: right 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { right: 0; }

/* dropdown menus, opened on hover and on focus/click for keyboards */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: 0;
  padding: 0.35rem 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  transition: color 160ms ease-out;
}

.nav-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--olive);
  transition: right 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item:hover .nav-toggle,
.nav-toggle[aria-expanded="true"] { color: var(--green); }

.nav-item:hover .nav-toggle::after,
.nav-toggle[aria-expanded="true"]::after { right: 0; }

.nav-toggle svg {
  width: 11px;
  height: 11px;
  transition: transform 200ms ease-out;
}

.nav-item:hover .nav-toggle svg,
.nav-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 16rem;
  background: var(--green);
  border: 1px solid var(--green-deep);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  display: grid;
  gap: 0.1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease-out, transform 180ms ease-out, visibility 180ms;
  z-index: 60;
}

.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu,
.nav-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* a hover bridge so the pointer can cross the gap without the menu closing */
.nav-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.7rem;
  height: 0.7rem;
}

.nav-menu a {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--cream);
  text-decoration: none;
  transition: background 150ms ease-out, color 150ms ease-out;
}

.nav-menu a::after { display: none; }

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: var(--green-mid);
  color: var(--cream);
}

.nav-menu a[aria-current="page"] {
  background: var(--green-deep);
  color: var(--cream);
}

/* mobile menu: nested group under a heading */
.mobile-group {
  padding: 0.9rem var(--gutter) 0.3rem;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-ink);
}



.nav-phone {
  display: none;
  text-decoration: none;
  color: var(--green-deep);
  font-weight: 500;
  white-space: nowrap;
}

.site-head .btn { padding: 0.7rem 1.35rem; font-size: 0.88rem; white-space: nowrap; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1.5px solid var(--edge);
  border-radius: var(--pill);
  color: var(--green-deep);
  cursor: pointer;
  flex: none;
}

.menu-toggle svg { width: 22px; height: 22px; overflow: visible; }

.menu-toggle .bar {
  transform-origin: center;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), opacity 140ms ease-out;
}

.menu-toggle[aria-expanded="true"] .bar-top { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .bar-mid { opacity: 0; }
.menu-toggle[aria-expanded="true"] .bar-bot { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 150ms ease-out, transform 150ms ease-out,
              display 150ms allow-discrete;
  position: fixed;
  left: 0;
  right: 0;
  top: var(--head-h, 4.6rem);
  bottom: 0;
  z-index: 90;
  background: var(--cream);
  border-top: 1px solid var(--edge);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 200ms ease-out, transform 200ms ease-out,
              display 200ms allow-discrete;
}

@starting-style {
  .mobile-menu.open {
    opacity: 0;
    transform: translateY(-8px);
  }
}

/* while the sheet is open the page behind it must not scroll */
body.menu-open { overflow: hidden; }

.mobile-menu a {
  display: block;
  padding: 0.72rem var(--gutter);
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--cream-3);
}

.mobile-menu > a:last-child { border-bottom: none; }

.mobile-menu .menu-cta {
  color: var(--green);
  font-weight: 600;
}

/* the service and about links sit two-up so the whole sheet fits one screen */
.mobile-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mobile-sub a {
  font-size: 0.93rem;
  padding-block: 0.68rem;
}

.mobile-sub a:nth-child(odd) { border-right: 1px solid var(--cream-3); }

/* on a short phone the sheet would need one nudge of scrolling to reach the
   last row, so the rows tighten rather than the list being cut off */
@media (max-height: 720px) {
  .mobile-menu a { padding-block: 0.56rem; }
  .mobile-sub a { padding-block: 0.54rem; }
  .mobile-group { padding-block: 0.6rem 0.2rem; }
}

/* ---------------------------------------------------------------- sections */

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  position: relative;
  overflow: hidden;
}

.section-tint { background: var(--cream-2); }

.section-green {
  background: var(--green);
  color: var(--tan-soft);
}

.section-green h2,
.section-green h3 { color: var(--cream); }

.section-green p { color: var(--tan-soft); }

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

.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* the homepage hero puts the work itself behind the words: a photograph of
   cleaning in progress, veiled in the card-back green so cream type reads */
.hero-overlay {
  padding: 0;
  background: var(--green-deep);
}

.hero-overlay .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 42%;
}

.hero-overlay .hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to right, rgba(20, 42, 25, 0.93) 0%, rgba(20, 42, 25, 0.82) 38%, rgba(20, 42, 25, 0.42) 62%, rgba(20, 42, 25, 0.18) 100%),
    linear-gradient(to bottom, rgba(20, 42, 25, 0.34) 0%, rgba(20, 42, 25, 0.08) 45%, rgba(20, 42, 25, 0.5) 100%);
}

.hero-overlay .container {
  padding-block: clamp(3.25rem, 9vw, 6.5rem);
  min-height: clamp(30rem, 62vh, 40rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-overlay .hero-copy { max-width: 40rem; }

/* text-only page hero: one column, measured line length, no empty half */
.hero--text .container { display: block; }
.hero--text .hero-copy { max-width: 46rem; }
.hero--text h1 { font-size: clamp(2.2rem, 5.4vw, 3.6rem); }

.hero-overlay h1 { color: var(--cream); }
.hero.hero-overlay h1 em { color: var(--sage-light); }
.hero-overlay .hero-sub { color: var(--tan-soft); }

.hero-overlay .hero-points li { color: var(--tan-soft); }
.hero-overlay .hero-points svg { color: var(--sage-light); }

.hero-overlay .btn-primary {
  background: var(--tan);
  color: var(--green-deep);
}

.hero-overlay .btn-primary:hover { background: var(--cream); }

.hero-overlay .btn-outline {
  border-color: var(--tan);
  color: var(--tan);
}

.hero-overlay .btn-outline:hover {
  background: var(--tan);
  color: var(--green-deep);
}

/* the offer, set as a line of the headline treatment rather than a badge */
.hero-offer {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 2.4vw, 1.32rem);
  font-style: italic;
  color: var(--tan);
  margin-bottom: 0.9rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(211, 199, 161, 0.35);
  max-width: 30rem;
}

/* The offer sits below the headline, buttons and points (owner, 2026-09-15),
   so its divider moves above it to separate it from the list. */
.hero-points + .hero-offer {
  margin: 1.6rem 0 0;
  padding: 0.85rem 0 0;
  border-bottom: 0;
  border-top: 1px solid rgba(211, 199, 161, 0.35);
}

.hero-terms {
  font-size: 0.78rem;
  color: var(--tan-soft);
  opacity: 0.85;
  max-width: 32rem;
  margin-top: 1.25rem;
  line-height: 1.6;
}

.hero-offer strong {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 0.94em;
  letter-spacing: 0.01em;
  color: var(--cream);
}

/* the desktop scrim is a left-to-right wash, which on a phone leaves the
   whole frame dark because the copy spans the full width. Flatten it and
   lighten it there so the work still reads behind the type; cream on the
   lightened wash still measures well above 4.5:1. */
@media (max-width: 719px) {
  .hero-overlay .hero-scrim {
    background:
      linear-gradient(to bottom, rgba(20, 42, 25, 0.86) 0%, rgba(20, 42, 25, 0.7) 40%, rgba(20, 42, 25, 0.78) 100%);
  }

  .hero-overlay .hero-bg img { object-position: 62% 42%; }

  .hero-overlay .container { min-height: clamp(26rem, 74vh, 34rem); }
}

.hero h1 {
  font-size: clamp(2.3rem, 6.2vw, 4.1rem);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--olive);
}

.hero-sub {
  font-size: clamp(1.02rem, 2.2vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.hero-points svg {
  width: 19px;
  height: 19px;
  flex: none;
  margin-top: 0.3rem;
  color: var(--olive);
}

.hero-figure { position: relative; }

.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* the card's leaf motif, kept on every viewport so the signature survives
   on the phone, where the brand has the least room to speak */
.hero-leaf-1 {
  top: -34px;
  right: -40px;
  width: 110px;
  transform: rotate(18deg);
}

.hero-leaf-2 { display: none; }

@media (min-width: 720px) {
  .hero-leaf-1 { top: 4px; right: 10px; width: 150px; }

  .hero-leaf-2 {
    display: block;
    bottom: 34px;
    left: -30px;
    width: 108px;
  }
}

/* ------------------------------------------- signal strip (rating + same-day) */

.signal-strip {
  background: var(--cream-2);
  border-bottom: 1px solid var(--edge);
  padding: 1.1rem 0;
}

.signal-strip .container {
  display: grid;
  gap: 1rem 2.5rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.signal-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.stars {
  display: inline-flex;
  gap: 0.15rem;
  color: var(--sage-light);
}

.stars svg { width: 18px; height: 18px; }

.signal-rating span {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.signal-same-day {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green);
  color: var(--cream);
  border-radius: var(--pill);
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}

.badge-pill svg { width: 14px; height: 14px; }

.signal-same-day p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: 34rem;
}

/* ------------------------------------------------------- trust strip */

/* six explained reasons on the card-back ground, evenly grouped — the old
   four-label strip read as floating phrases rather than evidence */
.trust-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.trust-point {
  background: var(--green-deep);
  border: 1px solid rgba(132, 168, 105, 0.3);
  border-radius: var(--radius);
  padding: 1.55rem 1.5rem 1.65rem;
}

.trust-point svg {
  display: block;
  width: 27px;
  height: 27px;
  color: var(--sage-light);
  margin-bottom: 1rem;
}

.trust-point h3 {
  color: var(--cream);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.trust-point p {
  color: var(--tan-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* -------------------------------------------------------- reasons grid */

.reasons {
  display: grid;
  gap: 1.5rem;
}

/* deliberately NOT a card: a ruled list, so it never reads as the same
   scaffold as the photo service cards further down the page */
.reason {
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--edge);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1rem;
  align-items: start;
}

.reason-icon {
  width: 42px;
  height: 42px;
  grid-row: span 2;
  display: grid;
  place-items: center;
  color: var(--olive);
}

.reason-icon svg { width: 30px; height: 30px; }

.reason h3 {
  font-size: 1.24rem;
  margin-bottom: 0.45rem;
  align-self: center;
}

.reason p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  grid-column: 2;
}

/* ------------------------------------------------------- service cards */

.services {
  display: grid;
  gap: 1.5rem;
}

.service {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
  .service:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
  }
}

.service-photo {
  position: relative;
  overflow: hidden;
}

.service-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
  .service:hover .service-photo img { transform: scale(1.05); }
}

.service-body { padding: 1.4rem 1.5rem 1.7rem; }

.service h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.service p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.service-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
}

.service-link svg { width: 15px; height: 15px; transition: transform 200ms ease-out; }
.service:hover .service-link svg { transform: translateX(4px); }

/* the stretched hit area: anywhere on the card follows this link */
.service-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.service:focus-within {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
}

.service-link:focus-visible { outline: none; }

/* ------------------------------------------------------ split feature */

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.split > *,
.about-grid > *,
.area-wrap > * { min-width: 0; }

.split-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.split h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 1.1rem;
}

.split p { margin-bottom: 1.1rem; }

.section-green .split p { color: var(--tan-soft); }

.benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.3rem;
}

.benefits li {
  padding-top: 1.3rem;
  border-top: 1px solid var(--edge);
}

.benefits li:first-child { padding-top: 0; border-top: 0; }

.benefits h3 {
  font-size: 1.24rem;
  color: var(--green-deep);
  margin-bottom: 0.45rem;
}

.benefits p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.check-list {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.98rem;
}

.check-list svg {
  width: 21px;
  height: 21px;
  flex: none;
  margin-top: 0.25rem;
  color: var(--olive);
}

.section-green .check-list li { color: var(--cream); }
.section-green .check-list svg { color: var(--sage-light); }

.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* --------------------------------------------------------- before/after */

.ba-grid { display: grid; gap: 2.25rem; }

.ba-pair { margin: 0; }

.ba-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.ba-shot {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.ba-shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ba-tag {
  position: absolute;
  left: 0.65rem;
  top: 0.65rem;
  background: rgba(28, 58, 34, 0.9);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: var(--pill);
}

.ba-tag.after { background: rgba(76, 103, 51, 0.94); }

.ba-pair figcaption {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.note-fine {
  margin-top: 1.75rem;
  font-size: 0.88rem;
  color: var(--ink-faint);
  text-align: center;
}

.section-green .note-fine { color: var(--tan); }

/* ------------------------------------------------- included vs add-ons */

.incl-grid {
  display: grid;
  gap: 1.5rem;
}

.incl-card {
  background: var(--cream);
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3.5vw, 2.2rem);
}

.incl-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.incl-card > p {
  font-size: 0.93rem;
  color: var(--ink-faint);
  margin-bottom: 1.2rem;
}

.incl-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.incl-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.97rem;
}

.incl-list svg {
  width: 19px;
  height: 19px;
  flex: none;
  margin-top: 0.28rem;
  color: var(--olive);
}

.incl-card.is-addon .incl-list svg { color: var(--sage); }

/* --------------------------------------------------------------- about */

.about-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

/* a plate built like the card front: cream ground, leaves, the lockup */
.about-card {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(2rem, 5vw, 3rem);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1.1rem;
  text-align: center;
  aspect-ratio: 1 / 1;
  margin: 0;
}

.about-card img {
  width: min(210px, 62%);
  height: auto;
  position: relative;
  z-index: 1;
}

.about-card figcaption {
  position: relative;
  z-index: 1;
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--sage-ink);
  line-height: 1.7;
}

.about-card .leaf-deco.c1 { top: -22px; right: -20px; width: 116px; transform: rotate(24deg); }
.about-card .leaf-deco.c2 { bottom: -14px; left: -22px; width: 104px; }

.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.6rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--green-deep);
  border-left: 1px solid var(--sage-light);
  padding-left: 1.25rem;
  margin: 1.75rem 0;
}

.about-sign {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.about-sign strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

/* ----------------------------------------------------------- education */

.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem 1.7rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px;
  left: 1.6rem;
  width: 40px;
  height: 40px;
  border-radius: var(--pill);
  background: var(--green);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.1rem;
  display: grid;
  place-items: center;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ------------------------------------------------------------- FAQ */

.faq-group + .faq-group { margin-top: clamp(2.5rem, 5vw, 3.5rem); }

.faq-group > h3 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--edge);
}

.faq-list { display: grid; }

.faq-item { border-bottom: 1px solid var(--edge); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  background: none;
  border: 0;
  padding: 1.15rem 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--green-deep);
  transition: color 160ms ease-out;
}

.faq-q:hover { color: var(--green); }

.faq-icon {
  flex: none;
  width: 26px;
  height: 26px;
  margin-top: 0.1rem;
  border-radius: var(--pill);
  border: 1px solid var(--edge);
  display: grid;
  place-items: center;
  color: var(--olive);
  transition: background 180ms ease-out, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-icon svg { width: 13px; height: 13px; }

.faq-q[aria-expanded="true"] .faq-icon {
  background: var(--ok-tint);
  transform: rotate(45deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  /* closing: quicker than opening, so a dismissed answer gets out of the way */
  transition: grid-template-rows 160ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-a > div {
  overflow: hidden;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 110ms ease-out, transform 110ms ease-out;
}

/* opening: the row and the copy move together, so the text never appears
   sliced by the clip edge mid-transition */
.faq-item.open .faq-a {
  grid-template-rows: 1fr;
  transition: grid-template-rows 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-a > div {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease-out 40ms, transform 180ms ease-out 40ms;
}

.faq-a p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  padding-bottom: 1.25rem;
  max-width: 60ch;
}

.faq-a p + p { padding-top: 0.9rem; }

.faq-a .flagged {
  font-size: 0.88rem;
  color: var(--ink-faint);
  font-style: italic;
}

/* --------------------------------------------------------- testimonials */

/* one authored region held open for real reviews — not a row of empty cards
   pretending to be content */
.review-reserve {
  position: relative;
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
}

.review-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.5;
  color: var(--sage-light);
  margin-bottom: 1.25rem;
}

.review-reserve p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-soft);
}

.review-reserve .sub {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.93rem;
  color: var(--ink-faint);
  margin-top: 1rem;
}

/* ------------------------------------------- recurring discount tiers */

.tiers {
  display: grid;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.tier {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.tier-pct {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 3.1rem);
  line-height: 1;
  color: var(--green);
}

.tier-pct small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-ink);
  margin-top: 0.5rem;
}

.tier h3 {
  font-size: 1.24rem;
  margin: 1rem 0 0.45rem;
}

/* scoped to the description only — a bare ".tier p" outranks ".tier-pct"
   on specificity and was shrinking the percentage to body size */
.tier h3 + p {
  font-size: 0.94rem;
  color: var(--ink-soft);
}

/* the tiers are cream islands inside a green band, so the band's inherited
   colors have to be re-established or the heading goes cream-on-cream and the
   percentage picks up the band's tan (see CLAUDE.md, the island rule) */
.section-green .tier .tier-pct { color: var(--green); }
.section-green .tier .tier-pct small { color: var(--sage-ink); }
.section-green .tier h3 { color: var(--green-deep); }
.section-green .tier h3 + p { color: var(--ink-soft); }

@media (min-width: 720px) {
  .tiers { grid-template-columns: repeat(3, 1fr); }
}

/* ---------------------------------------------------------- referral */

.referral-card {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.referral-amounts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 3vw, 1.75rem);
  margin: 1.75rem 0;
  flex-wrap: wrap;
}

.referral-amount {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  color: var(--cream);
  line-height: 1;
}

.referral-amount small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  margin-top: 0.55rem;
}

.referral-plus {
  color: var(--sage-light);
  font-size: 1.5rem;
}

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

.area-wrap {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.area-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.area-list svg {
  width: 14px;
  height: 14px;
  flex: none;
  color: var(--sage);
}

/* the wide standalone city grid on the checklist page */
.area-list.is-wide {
  margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: 0.65rem 1.5rem;
}

/* ------------------------------------------------ checklist table */

.ck-legend {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.6rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.ck-legend li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ck-key {
  display: grid;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: var(--pill);
  font-size: 0.9rem;
  line-height: 1;
}

.ck-key svg { width: 13px; height: 13px; }
.ck-key.is-yes { background: var(--ok-tint); color: var(--sage-ink); }
.ck-key.is-add { background: var(--cream-3); color: var(--ink-soft); }
.ck-key.is-no { background: var(--cream-2); color: var(--ink-faint); }

/* the table scrolls inside its own box rather than pushing the page wide */
.ck-wrap {
  overflow-x: auto;
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  background: var(--cream);
}

.ck-table {
  width: 100%;
  min-width: 20rem;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.ck-table thead th {
  position: sticky;
  top: 0;
  background: var(--green);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.75rem 0.4rem;
  line-height: 1.25;
}

.ck-table thead th:first-child { text-align: left; padding-left: 1rem; }

.ck-table thead a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(248, 241, 225, 0.4);
}

.ck-table thead a:hover { border-bottom-color: var(--cream); }
.ck-slash { padding: 0 0.05em; }

.ck-group th {
  background: var(--cream-3);
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  text-align: left;
  padding: 0.6rem 1rem;
}

.ck-table tbody th {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink-soft);
  text-align: left;
  padding: 0.7rem 0.9rem 0.7rem 1rem;
  line-height: 1.45;
}

.ck-table tbody tr + tr th,
.ck-table tbody tr + tr td { border-top: 1px solid var(--cream-3); }
.ck-table tbody .ck-group th { border-top: 1px solid var(--edge); }

.ck {
  width: 3.4rem;
  text-align: center;
  vertical-align: middle;
  padding: 0.7rem 0.2rem;
}

.ck svg { width: 16px; height: 16px; }
.ck.is-yes { color: var(--olive); }
.ck.is-add { color: var(--ink-soft); font-weight: 500; }
.ck.is-no { color: var(--ink-faint); opacity: 0.55; }

/* visually hidden, still read aloud */
.u-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.area-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--edge);
  aspect-ratio: 4 / 3;
  background: var(--cream-2);
}

.area-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.area-chips {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.area-chips li {
  background: var(--cream);
  border: 1px solid var(--edge);
  border-radius: var(--pill);
  padding: 0.5rem 1.15rem;
  font-size: 0.9rem;
  color: var(--green-deep);
}

.section-green .area-chips li {
  background: rgba(248, 241, 225, 0.1);
  border-color: rgba(211, 199, 161, 0.35);
  color: var(--cream);
}

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

.quote-band { position: relative; }

.quote-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

/* a select is as wide as its longest option unless told otherwise, which
   would push the whole column past the viewport on a phone */
.quote-grid > * { min-width: 0; }

.quote-contacts {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.quote-contacts li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.quote-contacts svg {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--sage-light);
}

.quote-contacts a {
  color: var(--cream);
  text-decoration: none;
  font-size: 1.06rem;
  font-weight: 500;
}

/* the column runs shorter than the form beside it; these fill the gap with
   the facts a visitor wants at the moment of asking */
.quote-assurances {
  list-style: none;
  margin: 1.9rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(132, 168, 105, 0.35);
  display: grid;
  gap: 1rem;
}

.quote-assurances li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--tan-soft);
}

.quote-assurances svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 0.15rem;
  color: var(--sage-light);
}

.quote-assurances strong {
  color: var(--cream);
  font-weight: 500;
}

.quote-contacts a:hover { text-decoration: underline; text-underline-offset: 0.2em; }

.quote-card {
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem);
}

/* the card is a cream island inside a green band, so the band's
   inherited colors have to be re-established here or they wash out */
.quote-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--green-deep);
}

.section-green .quote-card p { color: var(--ink-soft); }
.section-green .quote-card label { color: var(--green-deep); }
.section-green .quote-card .form-fine { color: var(--ink-faint); }

.section-green .quote-card .btn-primary {
  background: var(--green);
  color: var(--cream);
}

.section-green .quote-card .btn-primary:hover { background: var(--green-deep); }

.section-green .quote-card .btn-primary:disabled {
  background: var(--sage-light);
  color: var(--green-deep);
}

.section-green .quote-card .form-status.ok { color: var(--green-deep); }
.section-green .quote-card .form-status.err { color: var(--error); }
.section-green .quote-card .error-note { color: var(--error); }

.quote-card > p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}

.field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green-deep);
}

.field input,
.field select {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream-2);
  border: 1.5px solid var(--edge);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  transition: border-color 160ms ease-out, box-shadow 160ms ease-out, background 160ms ease-out;
}

.field input::placeholder { color: var(--ink-faint); }

.field input:hover,
.field select:hover { border-color: var(--sage-light); }

.field input:focus,
.field select:focus {
  outline: none;
  background: var(--cream);
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(88, 129, 64, 0.16);
}

.field select {
  appearance: none;
  text-overflow: ellipsis;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8'%3E%3Cpath d='M1.5 1.5 6.5 6.5 11.5 1.5' fill='none' stroke='%23285533' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
  cursor: pointer;
}

.field .error-note {
  display: none;
  color: var(--error);
  font-size: 0.83rem;
}

.field.invalid input,
.field.invalid select,
.field input[aria-invalid="true"],
.field select[aria-invalid="true"] { border-color: var(--error); }

.field.invalid .error-note,
.field .error-note[data-fs-active] { display: block; }

.quote-card .btn { width: 100%; margin-top: 0.5rem; }

.form-fine {
  margin-top: 0.9rem;
  font-size: 0.83rem;
  color: var(--ink-faint);
  text-align: center;
}

.form-status {
  display: none;
  margin-top: 1.1rem;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  line-height: 1.5;
}

.form-status[data-fs-active] { display: block; }

.form-status.ok {
  background: var(--ok-tint);
  border: 1px solid var(--olive);
  color: var(--green-deep);
}

.form-status.err {
  background: var(--error-tint);
  border: 1px solid var(--error);
  color: var(--error);
}

.quote-card .btn:disabled { cursor: progress; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.site-foot {
  background: var(--green-deep);
  color: var(--tan-soft);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  font-size: 0.94rem;
  position: relative;
  overflow: hidden;
}

.foot-grid {
  display: grid;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.foot-col h3 {
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.foot-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.foot-col a {
  color: var(--tan-soft);
  text-decoration: none;
  transition: color 160ms ease-out;
}

.foot-col a:hover { color: var(--cream); }

/* the sticky action bar carries both of these on a phone, so the panel is a
   tablet-and-up piece: it exists to close the wide footer grid */
.foot-cta {
  display: none;
  max-width: 26rem;
}

/* higher than the bare ".foot-cta p" below, which would otherwise win on
   source order and flatten the heading to body colour */
.foot-cta p.foot-cta-lead {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.foot-cta p {
  color: var(--tan-soft);
  line-height: 1.65;
}

.foot-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.foot-cta .btn {
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
}

.foot-cta .btn-primary {
  background: var(--tan);
  color: var(--green-deep);
}

.foot-cta .btn-primary:hover { background: var(--cream); }

.foot-cta .btn-outline {
  border-color: rgba(211, 199, 161, 0.55);
  color: var(--tan-soft);
}

.foot-cta .btn-outline:hover {
  background: var(--tan);
  color: var(--green-deep);
  border-color: var(--tan);
}

p.foot-cta-note {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(226, 217, 189, 0.85);
}

.foot-cta-note span { padding: 0 0.25rem; }

.foot-rule {
  border: none;
  border-top: 1px solid rgba(211, 199, 161, 0.22);
  margin: 2.5rem 0 1.25rem;
  position: relative;
  z-index: 1;
}

.foot-fine {
  display: grid;
  gap: 0.6rem;
  color: rgba(226, 217, 189, 0.85);
  font-size: 0.82rem;
  position: relative;
  z-index: 1;
}

.foot-leaf { bottom: -46px; right: -34px; width: 210px; }

/* card-back framing: a sprig in the corner of every deep-green band */
.band-leaf-tl { top: -18px; left: -26px; width: 120px; transform: rotate(-8deg); }
.band-leaf-br { bottom: 26px; right: -18px; width: 132px; transform: rotate(6deg); }

@media (max-width: 719px) {
  .band-leaf-br { width: 96px; bottom: 18px; right: -24px; }
  .band-leaf-tl { width: 90px; }
}

/* --------------------------------------------------------- breakpoints */

@media (min-width: 560px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
}

@media (min-width: 720px) {
  :root { --gutter: 2rem; }

  .services { grid-template-columns: 1fr 1fr; }
  .reasons { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .ba-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .incl-grid { grid-template-columns: 1fr 1fr; }
  .signal-strip .container { grid-template-columns: auto 1fr; justify-items: start; text-align: left; }
  .area-list { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: repeat(2, minmax(0, 14rem)); gap: 2.5rem 5rem; }
  .foot-cta {
    display: block;
    grid-column: 1 / -1;
    max-width: 34rem;
    border-top: 1px solid rgba(211, 199, 161, 0.22);
    padding-top: 2.2rem;
  }

  .foot-fine {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

@media (min-width: 960px) {
  .hero .container { grid-template-columns: 1.05fr 0.95fr; }
  .split { grid-template-columns: 1fr 1fr; }
  .split.flip .split-photo { order: 2; }
  .about-grid { grid-template-columns: 0.85fr 1.15fr; }
  .area-wrap { grid-template-columns: 1fr 1fr; }
  .quote-grid { grid-template-columns: 0.9fr 1.1fr; }
  .foot-grid { grid-template-columns: minmax(0, 14rem) minmax(0, 14rem) 1fr; }
  .foot-cta {
    grid-column: 3;
    margin-left: auto;
    max-width: 26rem;
    border-top: 0;
    padding-top: 0;
  }
  .reasons { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .ck-table { font-size: 0.95rem; }
  .ck-table thead th { font-size: 0.9rem; padding: 0.9rem 0.6rem; }
  .ck-table tbody th { font-size: 0.95rem; padding: 0.85rem 1rem; }
  .ck { width: 8rem; }
  .services { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1060px) {
  .nav-links {
    display: flex;
    gap: 1.75rem;
    margin-right: 1.5rem;
  }

  .nav-phone { display: inline-block; margin-right: 0.9rem; }
  .menu-toggle, .mobile-menu { display: none !important; }
}

/* narrow phones: keep the header on one row */
@media (max-width: 420px) {
  :root { --gutter: 1rem; }

  .logo-tile { width: 44px; height: 44px; }
  .brand-name { font-size: 1.05rem; }
  .brand-sub { display: none; }
  .site-head .container > .btn { display: none; }
  .menu-toggle { width: 42px; height: 42px; }
  .ba-imgs { gap: 0.4rem; }
}

/* ------------------------------------------------------ mobile action bar */
/* a phone-driven service business cannot bury the phone number behind a
   hamburger for 15,000px of scrolling */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem calc(0.6rem + env(safe-area-inset-bottom));
  background: var(--cream);
  border-top: 1px solid var(--edge);
  box-shadow: 0 -8px 24px -18px rgba(28, 58, 34, 0.5);
}

.mobile-bar .btn {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
}

@media (min-width: 720px) {
  .mobile-bar { display: none; }
}

/* keep the fixed bar from covering the end of the page */
@media (max-width: 719px) {
  .site-foot { padding-bottom: 6.5rem; }
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  /* nothing loops or plays on its own, so animations can go entirely */
  *, *::before, *::after { animation-duration: 0.01ms !important; }

  /* transitions are narrowed to the properties that carry meaning: colour,
     background, border and opacity. Everything positional becomes instant. */
  .btn,
  .service,
  .service-photo img,
  .service-link svg,
  .nav-links a,
  .nav-links a::after,
  .nav-toggle,
  .nav-toggle::after,
  .nav-toggle svg,
  .nav-menu,
  .nav-menu a,
  .mobile-menu,
  .menu-toggle .bar,
  .site-head,
  .skip-link,
  .faq-q,
  .faq-icon,
  .faq-a,
  .faq-a > div,
  .foot-col a,
  .field input,
  .field select {
    transition-property: opacity, color, background-color, border-color, box-shadow;
    transition-duration: 120ms;
    transition-timing-function: ease-out;
  }

  /* and the movement itself is dropped, not merely made instant */
  .btn-primary:hover,
  .btn-outline:hover,
  .service:hover,
  .service:hover .service-photo img,
  .service:hover .service-link svg { transform: none; }

  .faq-a > div,
  .mobile-menu,
  .mobile-menu.open { transform: none; }

  /* the dropdown keeps its centring translate and loses only the settle */
  .nav-menu,
  .nav-item:hover .nav-menu,
  .nav-item:focus-within .nav-menu,
  .nav-menu.open { transform: translateX(-50%); }
}


/* ============================ legal pages ============================== */
/* Privacy, terms, accessibility and 404: long-form body copy, set on a
   narrower measure than the marketing sections so it stays readable. .prose
   supplies the vertical rhythm; everything here is the measure, the list
   styling that .prose does not cover, and the heading scale. */

.legal {
  max-width: 44rem;
  margin-inline: auto;
  color: var(--ink-soft);
}

.legal h2 {
  font-size: clamp(1.25rem, 2.8vw, 1.6rem);
  color: var(--green);
}

.legal h3 {
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 600;
}

.legal strong { color: var(--ink); font-weight: 600; }

.legal ul {
  padding-left: 1.15rem;
  display: grid;
  gap: 0.55rem;
}

.legal li { padding-left: 0.15rem; }
.legal li::marker { color: var(--sage-ink); }

.legal a {
  color: var(--sage-ink);
  text-underline-offset: 3px;
}

.legal a:hover { color: var(--green); }

/* the "last updated" line: a quiet date stamp, not a heading */
.legal-updated {
  font-size: 0.85rem;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--edge);
}

/* ---------------------------------------------------- footer legal links */
/* Sits inside .foot-fine, which is a grid on phones and a flex row from
   720px up, so this only has to lay its own links out. */

.foot-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}

.foot-legal a {
  color: rgba(226, 217, 189, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(226, 217, 189, 0.55);
}

.foot-legal a:hover,
.foot-legal a:focus-visible {
  color: var(--cream);
  text-decoration-color: currentColor;
}
