/* ============================================================
   MELBOURNE LAWN ENFORCEMENT V2
   Design System — Pure CSS, No JavaScript
   Aesthetic: Refined Botanical Elegance
   ============================================================ */

/* ── Google Fonts imported in HTML ── */

/* ── Custom Properties ── */
:root {
  /* Colours — 3-colour brand palette sampled from the logo.
     Forest green #024823 · Charcoal #161A1E · White #FFFFFF.
     All greens collapse to Forest; all warm backgrounds to White;
     all text/outlines to Charcoal. Hover/muted/border use
     transparency or lightness of those same three (derived shades). */
  --green-dark:    #024823;            /* Forest */
  --green:         #024823;            /* Forest */
  --green-mid:     #024823;            /* Forest */
  --green-light:   #024823;            /* Forest */
  --green-tint:    #FFFFFF;            /* was pale-green section bg → White */
  --green-darker:  #024823;            /* Forest (was self-referential/broken) */
  --green-darkest: #024823;            /* Forest (was self-referential/broken) */
  --orange:        #024823;            /* accent → Forest */
  --orange-light:  #0A5C2F;            /* accent hover → Forest, ~12% lighter */
  --cream:         #FFFFFF;            /* warm bg → White */
  --cream-dark:    #FFFFFF;            /* warm bg → White */
  --white:         #FFFFFF;            /* White */
  --ink:           #161A1E;            /* Charcoal */
  --ink-mid:       #161A1E;            /* Charcoal */
  --ink-light:     rgba(22,26,30,0.6); /* muted text → Charcoal @ 60% (derived) */
  --rule:          rgba(22,26,30,0.12);/* borders/dividers → Charcoal @ 12% (derived) */

  /* Typography */
  --font-display: 'Play', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.0625rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;

  /* Spacing */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;
  --space-5xl:  8rem;

  /* Layout */
  --container:  1200px;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(22,26,30,0.06), 0 1px 2px rgba(22,26,30,0.04);
  --shadow-md:  0 4px 12px rgba(22,26,30,0.08), 0 2px 4px rgba(22,26,30,0.04);
  --shadow-lg:  0 12px 40px rgba(22,26,30,0.12), 0 4px 12px rgba(22,26,30,0.06);

  /* Transitions */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration:   260ms;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-md);
  background: var(--green);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--duration) var(--ease);
}
.skip-link:focus { top: var(--space-md); }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-xl);
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.anim-fade-up {
  animation: fadeUp 0.7s var(--ease) both;
}
.anim-delay-1 { animation-delay: 0.12s; }
.anim-delay-2 { animation-delay: 0.24s; }
.anim-delay-3 { animation-delay: 0.36s; }
.anim-delay-4 { animation-delay: 0.48s; }

/* ── Typography Utilities ── */
.text-center { text-align: center; }
.text-sm     { font-size: var(--text-sm); }

/* ── Section Utility ── */
.section {
  padding-block: var(--space-4xl);
}
/* Safety net so a `hidden` attribute always wins over a section's display rules. */
[hidden] { display: none !important; }
/* Extra breathing room so a neighbouring section's heading doesn't peek into view.
   Scales with viewport height so the section stays isolated on tall monitors.
   The high-specificity definitions live next to `.home .section` (which they must override). */
.section--cream {
  background: var(--cream);
}
.section--tint {
  background: var(--green-tint);
}
.section--green {
  background: var(--green);
  color: var(--white);
}
.section--dark {
  background: var(--green-dark);
  color: var(--white);
}

/* ── Ornament / Section Label ── */
.ornament {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.ornament--center {
  justify-content: center;
}
.ornament__line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--orange);
}
.ornament__text {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0;              /* reset default heading margins (now an <h2>) */
  line-height: 1.2;
}
/* Larger ornament label — matches the home hero eyebrow ("Trusted…") size */
.ornament--lg .ornament__text {
  font-size: clamp(1.125rem, 2.52vw, 2.25rem);
  letter-spacing: 0.18em;
  /* Cap the heading width so long labels wrap into a tight block that the flex
     row hugs — otherwise the text box fills the column and the lines get pushed
     to the far edges, away from the words. 22ch keeps every service-page
     heading (H1/H2) to a maximum of 3 lines. */
  max-width: 22ch;
  text-align: center;
  text-wrap: balance;   /* even out multi-line headings instead of orphaning a word */
}
/* Long headings (e.g. the FAQ title) get a wider cap so they wrap to ~2 lines
   instead of a narrow 5-line stack — the flanking lines sit further apart. */
.ornament--lg.ornament--wide .ornament__text { max-width: 26ch; }
.ornament--lg .ornament__line {
  flex: none;      /* fixed 36px so lines never shrink to 0 beside a long heading */
  width: 36px;
  max-width: 36px;
}

/* ── Section Heading ── */
.section-heading {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.section-heading--lg  { font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl)); }
.section-heading--md  { font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl)); }
.section-heading--white { color: var(--white); }

.section-sub {
  font-size: var(--text-lg);
  color: var(--ink-light);
  max-width: 560px;
  line-height: 1.6;
  margin-top: var(--space-md);
}
.section-sub--white { color: rgba(255,255,255,0.75); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75em 1.75em;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: background var(--duration) var(--ease),
              color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--green);
  color: var(--white);
  border: 1.5px solid var(--green);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: var(--shadow-md);
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
  border: 1.5px solid var(--orange);
}
.btn--orange:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn--outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--lg {
  padding: 0.9em 2.2em;
  font-size: var(--text-base);
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 1px 0 rgba(22,26,30,0.04);
}

/* Mobile toggle input hidden */
#mobile-menu-toggle { display: none; }

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding-block: var(--space-md);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-xl);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0;
}
.logo__img {
  height: 72px;
  width: auto;
  flex-shrink: 0;
}
.logo__text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  text-transform: uppercase;
}
/* Logo badge stays a flat 72px at every width to match the footer badge. */

/* Wordmark beside the badge — Archivo Black. On phones/tablets (hamburger mode)
   it grows fluidly to fill the gap between the badge and the hamburger; at
   ≥1200px it's a fixed 1rem beside the nav; hidden only in the 1024–1199px band
   where the desktop nav + buttons leave no room for it. */
.logo__word {
  display: inline-block;
  font-family: 'Archivo Black', var(--font-display);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--ink);
  text-transform: uppercase;
  white-space: nowrap;
}
.logo__word-accent { color: var(--green); }
/* Hamburger mode: the badge is now a fixed 72px, so the wordmark no longer
   scales to fill a single line — it uses a readable size and wraps onto up to
   three lines (MELBOURNE / LAWN / ENFORCEMENT) when the badge + hamburger leave
   no room beside it. */
@media (max-width: 1023px) {
  /* Let the logo fill the row so the wordmark can centre in the gap between
     the badge and the hamburger. */
  .logo { flex: 1; }
  .logo__word {
    flex: 1;
    text-align: center;
    font-size: clamp(1.02rem, 3.84vw, 1.32rem);
    white-space: normal;
    line-height: 1.12;
  }
}
/* Desktop band where nav + buttons crowd the bar: hide the wordmark. */
@media (min-width: 1024px) and (max-width: 1199px) {
  .logo__word { display: none; }
}
/* Desktop (wordmark visible from 1200px): let the logo fill the gap up to the nav
   and centre the stacked words within it (between the badge and "Home"), 10% larger. */
@media (min-width: 1200px) {
  .logo { flex: 1; }
  .logo__word {
    flex: 1;
    text-align: center;
    font-size: 1.30rem;
  }
}

/* Desktop nav */
.main-nav {
  display: none;
  margin-left: auto;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.nav-link {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--ink-mid);
  border-radius: var(--radius-sm);
  transition: color var(--duration) var(--ease), background var(--duration) var(--ease);
}
.nav-link:hover {
  color: var(--green);
  background: var(--green-tint);
}

/* Services dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px var(--space-md) var(--space-md);
  width: 230px;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}
.dropdown-link {
  display: block;
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--text-sm);
  color: var(--ink-mid);
  border-radius: var(--radius-sm);
  transition: color var(--duration) var(--ease), background var(--duration) var(--ease);
  break-inside: avoid;
}
.dropdown-link:hover {
  color: var(--green);
  background: var(--green-tint);
}

/* Header CTA & Call button */
.header-cta,
.header-call {
  flex-shrink: 0;
  display: none;
  height: 46px;
  padding-inline: 1.6em;
  font-size: var(--text-sm);
}

/* Hamburger */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-sm);
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background var(--duration);
}
.mobile-toggle:hover { background: var(--green-tint); }
.hamburger-twig {
  display: block;
  width: 29px;
  height: auto;
  transition: transform 0.3s var(--ease);
}

/* Twig icon nudges open when the menu is showing */
#mobile-menu-toggle:checked ~ .header-inner .hamburger-twig {
  transform: rotate(90deg);
}

/* Mobile nav panel */
.mobile-nav {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
  background: var(--white);
  border-top: 1px solid var(--rule);
}
#mobile-menu-toggle:checked ~ .mobile-nav {
  display: block;
  max-height: 600px;
}
.mobile-nav-list {
  padding: var(--space-md) var(--space-xl);
}
.mobile-nav-link {
  display: block;
  padding: 0.7rem 0;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--rule);
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { color: var(--green); }

/* Mobile services sub */
#mobile-services-toggle { display: none; }
.mobile-services-label {
  display: block;
  padding: 0.7rem 0;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
}
.mobile-services-label::after {
  content: ' ›';
  color: var(--green);
}
.mobile-services-sub {
  display: none;
  padding: var(--space-sm) 0 var(--space-sm) var(--space-lg);
}
#mobile-services-toggle:checked ~ .mobile-services-sub { display: block; }
.mobile-services-sub a {
  display: block;
  padding: 0.6rem 0;
  font-size: var(--text-sm);
  color: var(--ink-light);
}
.mobile-services-sub a:hover { color: var(--green); }
.mobile-nav-cta {
  display: block;
  margin: var(--space-lg) var(--space-xl);
  text-align: center;
}

/* Desktop overrides */
@media (min-width: 1024px) {
  .main-nav    { display: flex; }
  .header-cta  { display: inline-flex; }
  .header-call { display: inline-flex; }
  .mobile-toggle { display: none; }
  .mobile-nav  { display: none !important; }
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 65px);
  display: grid;
  grid-template-columns: 1fr;
  background: var(--cream);
}

/* Lawn-stripe texture + edge vignette */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 78% 62% at 50% 48%, transparent 42%, rgba(2,72,35,0.055) 100%),
    repeating-linear-gradient(
      -48deg,
      transparent 0px,
      transparent 52px,
      rgba(2,72,35,0.026) 52px,
      rgba(2,72,35,0.026) 53px
    );
  pointer-events: none;
  z-index: 0;
}

.hero__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
  max-width: 1100px;
  margin-inline: auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 0;
  margin-bottom: var(--space-lg);
}
/* Home hero eyebrow acts as the headline — 60% of the old hero title size.
   Centered with a line either side to match the section <h2> eyebrows. */
.hero--home .hero__eyebrow {
  font-size: clamp(1.125rem, 2.52vw, 2.25rem);
  align-self: center;
  justify-content: center;
  text-align: center;
}
.hero__eyebrow-line {
  width: 36px;
  height: 1.5px;
  background: var(--orange);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 6vw, var(--text-7xl));
  font-weight: 800;
  font-style: normal;
  line-height: 1.05;
  color: var(--green-dark);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
}
.hero__title em {
  display: block;
  margin-top: 0.18em;
  font-style: italic;
  font-weight: 800;
  color: var(--green-mid);
}

.hero__subtitle {
  font-size: clamp(var(--text-base), 1.5vw, var(--text-xl));
  color: var(--ink-light);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: var(--space-2xl);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* ── HOME HERO (two-column, left-aligned) ── */
.hero--home {
  min-height: auto;
  background: var(--cream);
}
.hero--home .hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-3xl);
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: var(--space-4xl) var(--space-xl);
}
.hero--home .hero__copy {
  text-align: left;
  align-items: flex-start;
  max-width: 600px;
  padding: 0;
  margin: 0;
}
.hero__eyebrow--green { color: var(--forest); }
.hero__eyebrow--green .hero__eyebrow-line { background: var(--forest); }
.hero__title--home {
  color: var(--ink);
  font-size: clamp(var(--text-3xl), 4.2vw, var(--text-6xl));
  letter-spacing: -0.01em;
  margin-bottom: var(--space-lg);
}
.hero--home .hero__subtitle {
  max-width: 560px;
  margin-bottom: var(--space-md);
}
.hero--home .hero__subtitle:last-of-type { margin-bottom: 0; }
/* Temporary: home hero with its photo removed — collapse the two-column grid
   to a single centred column so the copy doesn't sit in half a row.
   Delete this block when the new hero photo goes in. */
.hero--home.hero--no-media .hero__inner {
  grid-template-columns: 1fr;
}
.hero--home.hero--no-media .hero__copy {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  align-items: center;
}
.hero__media {
  position: relative;
  z-index: 1;
}
.hero__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  background: var(--green-tint);
}
@media (max-width: 900px) {
  .hero--home .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-3xl) var(--space-xl);
  }
}

/* ── WHY CHOOSE GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-3xl);
  grid-auto-rows: 1fr;     /* equalize every row to the tallest card — all boxes same size */
}
/* While a card is expanded, stop equalizing so only the open card grows
   (otherwise 1fr rows would stretch every box to match it). */
.why-grid:has(.why-card[open]) {
  grid-auto-rows: auto;
  align-items: start;
}
/* Each why-card is a click-to-expand accordion: icon + heading in the
   summary row, description revealed on open (native <details>, no JS). */
.why-card {
  display: flex;
  flex-direction: column;
  min-width: 0;            /* let the grid column shrink to fit — no mobile overflow */
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  transition: box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.why-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}
.why-card__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;  /* icon on top, heading below, chevron beneath */
  align-items: center;
  justify-content: center; /* balance any equalized slack above/below */
  text-align: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  flex: 1;                 /* fill the equalized card height; centers icon + heading */
  min-height: 0;
  box-sizing: border-box;
}
.why-card__summary::-webkit-details-marker { display: none; }
.why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.why-card__icon img,
.service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.why-card__title {
  flex: none;
  width: 100%;             /* heading spans the full width of the box */
  min-width: 0;            /* allow the heading to wrap instead of widening the column */
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;           /* hyphenate long words rather than break mid-word */
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.25;
  margin: 0;
}
.why-card__summary::after {
  content: '';
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
  transition: transform var(--duration) var(--ease);
}
.why-card[open] .why-card__summary::after { transform: rotate(-135deg); }
.why-card[open] .why-card__summary { border-bottom: 1px solid var(--rule); }
.why-card__text {
  margin: 0;
  padding: var(--space-sm) var(--space-md) var(--space-md);
  font-size: var(--text-sm);
  color: var(--ink-light);
  line-height: 1.6;
}
/* Shared card-grid breakpoints. Why-grid is condensed: 2 cols (2x3) on
   mobile, 3 cols (3x2) from 640px up. */
@media (min-width: 640px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── WHO WE SERVICE GRID ── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-3xl);
}
.who-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: var(--space-sm);
  min-width: 0;
  padding: var(--space-md);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  transition: box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.who-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}
.who-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.who-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.who-card__title {
  width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.25;
  margin: 0;
}
@media (min-width: 900px) {
  .who-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 900px) {
  .hero__copy {
    padding: var(--space-4xl) var(--space-3xl);
  }
}

@media (min-width: 1200px) {
  .hero__copy {
    padding: var(--space-5xl) var(--space-4xl);
  }
}

/* ── SERVICES SECTION ── */
.services-intro {
  max-width: 560px;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--green);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              border-top-color var(--duration) var(--ease);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-top-color: var(--orange);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--green-tint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  flex-shrink: 0;
}
.service-card__icon svg {
  width: 28px;
  height: 28px;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}
.service-card__text {
  font-size: var(--text-sm);
  color: var(--ink-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-lg);
}
.service-card__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  transition: color var(--duration) var(--ease), gap var(--duration) var(--ease);
}
.service-card:hover .service-card__link {
  color: var(--orange);
  gap: 8px;
}
.service-card__link::after { content: '→'; }

.services-footer {
  margin-top: var(--space-3xl);
  text-align: center;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}
@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  position: relative;
}
.testimonial-card__quote {
  font-size: var(--text-base);
  color: var(--ink-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}
.testimonial-card__author {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--ink);
}
.testimonial-card__location {
  font-size: var(--text-xs);
  color: var(--ink-light);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Star rating */
.testimonial-card__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: var(--space-md);
  line-height: 1;
}
.testimonial-card__stars span {
  color: var(--orange);
  font-size: 1.05rem;
  line-height: 1;
  display: inline-block;
}

/* Carousel: stacked grid on desktop, swipeable row + arrows on mobile */
.testimonials-carousel { position: relative; }
.testimonials-arrows { display: none; }

@media (max-width: 639px) {
  .testimonials-grid {
    display: flex;
    grid-template-columns: none;
    gap: var(--space-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonials-grid > .testimonial-card {
    flex: 0 0 90%;
    min-width: 0;
    scroll-snap-align: start;
  }

  .testimonials-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }
  .testimonials-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--rule);
    background: var(--white);
    color: var(--green-dark);
    cursor: pointer;
    transition: background var(--duration) var(--ease), color var(--duration) var(--ease), border-color var(--duration) var(--ease);
  }
  .testimonials-arrow:active {
    background: var(--green-dark);
    color: var(--white);
    border-color: var(--green-dark);
  }
}

/* ── CTA BAND ── */
.cta-band {
  padding-block: var(--space-4xl);
  background: linear-gradient(150deg, var(--green-darkest) 0%, var(--green-darker) 50%, var(--green-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -58deg,
    transparent 0px,
    transparent 55px,
    rgba(255,255,255,0.012) 55px,
    rgba(255,255,255,0.012) 56px
  );
  pointer-events: none;
  z-index: 0;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: 800;
  font-style: normal;
  color: var(--white);
  margin-bottom: var(--space-md);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.cta-band__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-2xl);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  /* Tight gap above the footer logo (was 6rem, which read as dead space). */
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 639px) {
  /* Quick Links + Services sit side by side; Contact spans full width below */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl) var(--space-lg); }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-lg);
}
.footer-col a {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-sm);
  transition: color var(--duration) var(--ease);
}
.footer-col a:hover { color: var(--white); }
.footer-col p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-top: var(--space-md);
}

.footer-logo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.footer-logo img {
  height: 72px;
  width: auto;
  background: var(--white);
  padding: 9px 14px;
  border-radius: var(--radius-md);
}
.footer-logo span {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
/* Archivo Black wordmark beside the footer badge (white footer → header colors).
   On phones (single-column footer) it grows fluidly to span the full row width,
   reaching across to the page edge; >=640px it's a fixed 1rem in the multi-col
   footer. (wordmark width ~= 19.6x font-size.) */
.footer-logo .footer-wordmark {
  display: inline-block;
  font-family: 'Archivo Black', var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: var(--ink);
  text-transform: uppercase;
  white-space: nowrap;
}
.footer-logo .footer-wordmark .logo__word-accent { color: var(--green); font: inherit; }
@media (max-width: 639px) {
  .footer-logo .footer-wordmark { font-size: calc(5.1vw - 6.3px); }
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  align-items: center;
  text-align: center;
  margin-top: var(--space-3xl);
  padding-block: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
@media (max-width: 639px) {
  /* Trim the dead space above the footer-bottom divider on phones */
  .footer-bottom { margin-top: var(--space-lg); }
}

/* ── MOBILE STICKY CTA ── */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: var(--space-sm);
  z-index: 80;
  padding: var(--space-sm) var(--space-md);
  padding-bottom: calc(var(--space-sm) + env(safe-area-inset-bottom, 0px));
  background: var(--white);
  border-top: 1px solid var(--rule);
}
.mobile-cta-bar__quote,
.mobile-cta-bar__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.875rem var(--space-lg);
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 999px;
}
.mobile-cta-bar__call {
  flex: 1;
  background: var(--green-dark);
}
.mobile-cta-bar__call:hover { background: var(--green); }
.mobile-cta-bar__call svg {
  flex-shrink: 0;
}
.mobile-cta-bar__quote {
  flex: 1;
  background: var(--white);
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
  white-space: nowrap;
}
.mobile-cta-bar__quote:hover { background: var(--green-tint); }
/* Keep the sticky Call/Quote bar through the tablet range so it persists
   until the desktop header CTAs appear at 1024px (no CTA dead zone). */
@media (min-width: 1024px) {
  .mobile-cta-bar { display: none; }
}
@media (max-width: 1023px) {
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); }
}

/* ── Focus visible ── */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   PAGE-LEVEL VARIABLE ALIASES
   --forest maps to --green-dark (#024823, Forest)
   --muted  maps to --ink-light  (Charcoal @ 60%)
   --radius maps to --radius-md  (8px)
   ============================================================ */
:root {
  --forest: var(--green-dark);
  --muted:  var(--ink-light);
  --radius: var(--radius-md);
  --blush:            #FFFFFF;  /* was homepage pink → White */
  --logo-green:       #024823;  /* exact green sampled from the logo → Forest */
  --logo-green-light: #0A5C2F;  /* hover state → Forest, ~12% lighter */
}

/* ============================================================
   SERVICE PAGE STYLES  (svc-content, svc-body, svc-grid, faq, etc.)
   Used by services.html and all 12 individual service pages
   ============================================================ */

/* ── SVC CONTENT LAYOUT ── */
.svc-content {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-xl);
  padding-block: var(--space-4xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
}
@media (min-width: 900px) {
  .svc-content { grid-template-columns: 1fr 320px; }
}
.svc-content.svc-content--narrow {
  grid-template-columns: 1fr;
  max-width: 860px;
}

/* Intro with a photo to the right of the copy + quote card */
/* Intro is a single centered column now: H1 → paragraph → H2 → gallery. */
.svc-content.svc-content--intro {
  grid-template-columns: 1fr;
  align-items: start;
  /* No hero on service pages — the intro sits right under the header,
     so trim the large top padding that otherwise reads as dead space. */
  padding-top: var(--space-xl);
}
.svc-content.svc-content--intro .svc-body {
  max-width: 760px;
  margin-inline: auto;
  text-align: left;
}
/* The "See Our … Work" title reuses .svc-intro-title but sits mid-page after the
   paragraph, so drop the header-clearance top padding to match the rest of the rhythm. */
.svc-content--intro + .svc-intro-title { padding-top: 0; }
/* "See Our … Work" gallery — a horizontal swipe rail at every breakpoint, so
   adding photos costs sideways room instead of page length.

   The photos are client-supplied before/after collages: some are 2-up
   landscape, some are stacked portrait, and the BEFORE/AFTER labels are burnt
   into the pixels. Cropping one to a uniform ratio would slice the comparison
   in half, so each tile is a fixed white frame and the image is *contained*
   inside it — the rail stays a uniform height and nothing is ever cut off. */
.svc-gallery {
  position: relative;
  max-width: var(--container);
  margin-inline: auto;
  margin-bottom: calc(var(--space-lg) / 2);   /* separate the gallery from the next section */
  padding-inline: var(--space-xl);
}
.svc-gallery__track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.svc-gallery__track::-webkit-scrollbar { display: none; }

.svc-gallery__item {
  flex: 0 0 88%;
  min-width: 0;
  margin: 0;
  scroll-snap-align: start;
}
@media (min-width: 640px) {
  .svc-gallery__item { flex-basis: 400px; }
}
/* A lone photo has nothing to swipe to, so centre it and let it breathe
   rather than stranding a narrow tile against the left edge. */
.svc-gallery__track:has(.svc-gallery__item:only-child) { justify-content: center; }
.svc-gallery__track:has(.svc-gallery__item:only-child) .svc-gallery__item {
  flex-basis: min(100%, 760px);
}

.svc-gallery__btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  cursor: zoom-in;
  transition: box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.svc-gallery__btn:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.svc-gallery__btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.svc-gallery__btn img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--white);
}
/* Green waste removal is the one service whose photos are all portrait — loaded
   trailers and truck beds, shot upright. In the standard 4:3 frame every tile
   would be mostly white mat, so that page's rail switches to 3:4 tiles. Still
   `contain`, so nothing is cropped; the frame just matches the photos. */
.svc-gallery--portrait .svc-gallery__btn img { aspect-ratio: 3 / 4; }
@media (min-width: 640px) {
  .svc-gallery--portrait .svc-gallery__item { flex-basis: 320px; }
}
.svc-gallery--portrait .svc-gallery__track:has(.svc-gallery__item:only-child) .svc-gallery__item {
  flex-basis: min(100%, 460px);
}

.svc-gallery__caption {
  margin-top: var(--space-xs);
  font-size: var(--text-sm);
  color: var(--muted);
  text-align: center;
}

/* Arrows sit under the rail, mirroring the testimonials carousel. JS removes
   them entirely when every photo already fits on screen. */
.svc-gallery__arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.svc-gallery__arrows[hidden] { display: none; }
.svc-gallery__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: var(--white);
  color: var(--green-dark);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.svc-gallery__arrow:hover,
.svc-gallery__arrow:active {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.svc-gallery__arrow:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

/* ── LIGHTBOX ──
   Built by js/gallery.js on first use, so no page carries duplicate markup. */
.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  background: rgba(12, 26, 16, 0.92);
}
.lightbox__figure {
  margin: 0;
  max-width: min(100%, 1100px);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}
.lightbox__img {
  display: block;
  max-width: 100%;
  /* Leave room for the caption and the close button above it. */
  max-height: calc(100vh - 9rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: var(--white);
}
.lightbox__caption {
  color: var(--white);
  font-size: var(--text-sm);
  text-align: center;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  cursor: pointer;
  transition: background var(--duration) var(--ease);
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.3); }
.lightbox__close:focus-visible,
.lightbox__nav:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.lightbox__close {
  top: var(--space-md);
  right: var(--space-md);
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  line-height: 1;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}
.lightbox__nav--prev { left: var(--space-sm); }
.lightbox__nav--next { right: var(--space-sm); }
.lightbox__nav[hidden] { display: none; }
@media (min-width: 640px) {
  .lightbox__nav--prev { left: var(--space-lg); }
  .lightbox__nav--next { right: var(--space-lg); }
}

/* ── SVC BODY ── */
.svc-body h1,
.svc-body h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  font-weight: 700;
  color: var(--forest);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}
.svc-body p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

/* ── SVC FEATURES ── */
.svc-features {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-md);
}
.svc-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--cream);
  border-radius: var(--radius);
}
.svc-feature__check {
  width: 20px;
  height: 20px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.svc-feature__text {
  font-size: var(--text-sm);
  color: var(--ink);
  font-weight: 500;
}

/* ── SVC SIDEBAR ── */
.svc-sidebar__card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
}
.svc-sidebar__card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: var(--space-md);
}
.svc-sidebar__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--space-sm);
  border-bottom: 1px solid var(--rule);
  font-size: var(--text-sm);
}
.svc-sidebar__item:last-child { border-bottom: none; }
.svc-sidebar__key { color: var(--muted); }
.svc-sidebar__val { font-weight: 600; color: var(--forest); }

/* ── SVC CTA CARD ── */
.svc-cta-card {
  background: linear-gradient(135deg, var(--forest) 0%, var(--green-darker) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  color: var(--white);
}
.svc-cta-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}
.svc-cta-card__text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-lg);
}
.svc-cta-card--inline {
  max-width: none;
  margin-top: var(--space-2xl);
  background: transparent;
  border: 1px solid var(--green-dark);
  color: var(--green-dark);
}
.svc-cta-card--inline .svc-cta-card__title { color: var(--green-dark); }
.svc-cta-card--inline .svc-cta-card__text  { color: var(--ink-mid); }

/* ── SVC RICH SECTIONS (What's Included / Why Choose / Audience / FAQ) ── */
.svc-section__head {
  max-width: 760px;
  margin-bottom: var(--space-2xl);
}
.svc-section__head--center {
  margin-inline: auto;
  text-align: center;
}
.svc-section__head--center .ornament { justify-content: center; }

/* Card grid — used for What's Included and Why Choose */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .svc-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.svc-tile {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.svc-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.svc-tile__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}
.svc-tile__icon svg { width: 22px; height: 22px; }
.svc-tile__body { min-width: 0; }

/* Icon to the left of the text, vertically centred in the tile
   (scoped via body.svc-icons-left so only that page is affected) */
.svc-icons-left .svc-tile {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.svc-icons-left .svc-tile__icon { margin-bottom: 0; }

.svc-tile__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: var(--space-sm);
}
.svc-tile__text {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.7;
}

/* Audience band (For Homes, Rentals…) */
.svc-audience__body {
  max-width: 820px;
}
.svc-audience__body p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

/* ── FAQ ACCORDION ── */
.faq {
  max-width: 860px;
  margin-inline: auto;
}
.faq-item {
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  background: var(--white);
  margin-bottom: var(--space-md);
  overflow: hidden;
}
.faq-item:last-child { margin-bottom: 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-lg) var(--space-xl);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg);
  transition: transform var(--duration) var(--ease);
  margin-top: -4px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 2px; }
.faq-item[open] summary { color: var(--orange); }
.faq-item__body {
  padding: 0 var(--space-xl) var(--space-lg);
}
.faq-item__body p {
  color: var(--muted);
  line-height: 1.75;
  font-size: var(--text-sm);
}

/* ============================================================
   CONTACT PAGE STYLES
   ============================================================ */

/* ── CONTACT LAYOUT ── */
.contact-layout {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-xl);
  padding-block: var(--space-4xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: start;
  scroll-margin-top: 80px;
}
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 340px; }
}

/* ── CONTACT FORM ── */
.contact-form__heading {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
  font-weight: 700;
  color: var(--forest);
  margin-bottom: var(--space-sm);
}
@media (min-width: 900px) {
  .contact-form__heading { font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl)); }
}
.contact-form__subtext {
  font-size: var(--text-sm);
  color: var(--ink);
  margin-bottom: var(--space-xl);
}
.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.contact-form__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.01em;
}
.contact-form__label--required::after { content: ' *'; color: var(--orange); }

/* Keeps the label text and its help tooltip on one line inside the
   column-flex .contact-form__group */
.contact-form__label-row {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
}

/* Inline help tooltip — question-mark hover/focus bubble beside a label */
.field-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  vertical-align: middle;
  cursor: help;
}
.field-tip__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.field-tip__bubble {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: max-content;
  max-width: 220px;
  padding: 8px 10px;
  background: var(--ink);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
  z-index: 20;
  pointer-events: none;
  text-align: left;
}
.field-tip__bubble::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ink);
}
.field-tip:hover .field-tip__bubble,
.field-tip:focus .field-tip__bubble,
.field-tip:focus-within .field-tip__bubble {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--green-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--duration) var(--ease);
  outline: none;
}
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus { border-color: var(--forest); }
.contact-form__textarea { resize: vertical; min-height: 65px; }
.contact-form__file { padding: 0.6rem 1rem; font-size: var(--text-sm); cursor: pointer; }
.contact-form__file::file-selector-button {
  margin-right: var(--space-md);
  padding: 0.4rem 0.9rem;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--green-tint);
  color: var(--forest);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
}
#form-status:not(:empty) { margin-top: var(--space-md); font-size: var(--text-sm); font-weight: 500; }
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
@media (max-width: 600px) {
  .contact-form__row { grid-template-columns: 1fr; }
}

/* ── PREFERRED CONTACT METHOD ── */
.contact-method {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--green-dark);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}
.contact-method__option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.85rem 0.75rem;
  cursor: pointer;
  color: var(--ink);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
  border-left: 1px solid var(--green-dark);
}
.contact-method__option:first-child { border-left: none; }
.contact-method__input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 2px solid var(--forest);
  border-radius: 50%;
  flex: 0 0 auto;
  cursor: pointer;
  transition: box-shadow var(--duration) var(--ease);
}
.contact-method__input:checked {
  background: var(--forest);
  box-shadow: inset 0 0 0 3px var(--white);
}
.contact-method__icon { display: inline-flex; color: var(--forest); }
.contact-method__option:has(.contact-method__input:checked) {
  background: var(--green-tint);
}
.contact-method__option:hover { background: var(--green-tint); }
.contact-method__input:focus-visible { outline: 2px solid var(--forest); outline-offset: 2px; }
@media (max-width: 600px) {
  .contact-method { grid-template-columns: 1fr; }
  .contact-method__option { justify-content: flex-start; border-left: none; border-top: 1px solid var(--green-dark); }
  .contact-method__option:first-child { border-top: none; }
}

/* ── CALENDLY BOOKING BUTTON ── */
.contact-calendly {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
  padding: 0.95rem 1.1rem;
  margin-bottom: var(--space-xl);
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.contact-calendly:hover { background: var(--green-tint); border-color: var(--forest); }
.contact-calendly__icon { display: inline-flex; color: var(--forest); flex: 0 0 auto; }
.contact-calendly__text { flex: 1 1 auto; }
.contact-calendly__chevron { display: inline-flex; color: var(--ink-light); flex: 0 0 auto; }

/* ── CONTACT SIDEBAR ── */
.contact-sidebar__card {
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
}
.contact-sidebar__card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--white);
}
.contact-sidebar__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding-block: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-sidebar__item:last-child { border-bottom: none; }
.contact-sidebar__icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-sidebar__label { font-size: var(--text-xs); color: rgba(255,255,255,0.55); margin-bottom: 2px; }
.contact-sidebar__value { font-weight: 600; font-size: var(--text-sm); color: var(--white); overflow-wrap: anywhere; }
.contact-sidebar__item > :not(.contact-sidebar__icon) { min-width: 0; }
.contact-sidebar__value a { color: var(--white); }

/* ── CONTACT HOURS ── */
.contact-hours {
  background: var(--white);
  border: 1px solid var(--green-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}
.contact-hours h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: var(--space-lg);
}
.contact-hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--space-sm);
  border-bottom: 1px solid var(--rule);
  font-size: var(--text-sm);
}
.contact-hours__row:last-child { border-bottom: none; }
.contact-hours__day { color: var(--ink-mid); }
.contact-hours__time { font-weight: 600; color: var(--forest); }
.contact-hours__closed { color: var(--ink-mid); }

/* ============================================================
   CONTACT PAGE — compact, single-viewport layout
   Scoped to .contact-layout (unique to contact.html) so the whole
   form, including "Send My Quote Request", fits without scrolling.
   ============================================================ */
.contact-layout { padding-block: var(--space-xl); }
/* Shrink the small "Contact Us" eyebrow heading; keep the main h2 */
.contact-layout h1.contact-form__heading {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: var(--space-xs);
}
.contact-layout h2.contact-form__heading { margin-bottom: var(--space-xs); }
.contact-layout .contact-form__subtext { margin-bottom: var(--space-md); }
/* Tighter field rhythm */
.contact-layout .contact-form__row { margin-bottom: var(--space-md); }
.contact-layout .contact-form__group { gap: 0.2rem; }
.contact-layout .contact-form__input,
.contact-layout .contact-form__select { padding: 0.55rem 0.85rem; }
.contact-layout .contact-form__textarea { min-height: 80px; padding: 0.55rem 0.85rem; }
.contact-layout .contact-form__file { padding: 0.5rem 0.85rem; }
.contact-layout .contact-method__option { padding: 0.6rem 0.6rem; }
.contact-layout .contact-calendly { padding: 0.7rem 1rem; margin-bottom: var(--space-md); }

/* ============================================================
   LEGAL PAGES (Privacy Policy, Terms of Service)
   ============================================================ */

/* ── LEGAL CONTENT ── */
.legal-content__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--ink-light);
  margin-bottom: var(--space-lg);
}
.legal-content__breadcrumb a { color: var(--green-dark); text-decoration: none; }
.legal-content__breadcrumb a:hover { color: var(--green); }
.legal-content__breadcrumb-sep { color: var(--ink-light); }
.legal-content__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}
.legal-content__lead {
  font-size: var(--text-lg);
  color: var(--ink-mid);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--green-dark);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.legal-content ul {
  list-style: disc;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}
.legal-content ul li {
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: var(--space-xs);
}
.legal-content a {
  color: var(--green);
  text-decoration: underline;
  transition: color var(--duration) var(--ease);
}
.legal-content a:hover { color: var(--orange); }

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  /* Hide navigation, CTAs, and interactive elements */
  .site-header,
  .mobile-nav,
  .mobile-cta-bar,
  .cta-band,
  .skip-link,
  .header-cta,
  .header-call,
  .mobile-toggle,
  .btn,
  .hero__actions,
  .svc-cta-card,
  #form-success { display: none !important; }

  /* Reset backgrounds and colors for print */
  body {
    background: white;
    color: black;
    font-size: 12pt;
    line-height: 1.5;
  }

  /* Remove dark backgrounds */
  .hero,
  .section--dark,
  .cta-band {
    background: white !important;
    color: black !important;
    min-height: auto !important;
    padding: 1rem 0 !important;
  }

  .hero__title {
    color: black !important;
  }

  .hero__subtitle {
    color: #333 !important;
  }

  /* Footer — simple print version */
  .site-footer {
    background: white !important;
    color: black !important;
    border-top: 1px solid #ccc;
    padding: 1rem 0;
  }
  .site-footer a { color: black !important; }
  .footer-col h4 { color: #666 !important; }

  /* Ensure links show URL */
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }
  a[href^="tel"]::after,
  a[href^="mailto"]::after { content: none; }

  /* Remove shadows and transforms */
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }

  /* Page breaks */
  .service-card,
  .testimonial-card { break-inside: avoid; }
  h1, h2, h3 { break-after: avoid; }
}

/* ============================================================
   HOMEPAGE BLUSH BACKGROUND + LOGO-GREEN CTA BUTTONS
   ============================================================ */
/* Homepage uses a warm blush background; header stays white.
   Scoped to body.brand so other pages are unaffected. */
body.brand { background: var(--blush); }
.brand .hero--home { background: var(--blush); }
.brand .section--cream { background: var(--blush); }
.brand .section--tint { background: var(--blush); }

/* Header "Call Now" + "Get a Free Quote" in the exact logo green */
.header-cta {
  background: var(--logo-green);
  border-color: var(--logo-green);
  color: var(--white);
}
.header-cta:hover {
  background: var(--logo-green-light);
  border-color: var(--logo-green-light);
}
.header-call {
  color: var(--logo-green);
  border-color: var(--logo-green);
}
.header-call:hover {
  background: var(--logo-green);
  color: var(--white);
}

/* Slide-out mobile nav CTA + mobile sticky bar — same logo green */
.mobile-nav-cta {
  background: var(--logo-green);
  border-color: var(--logo-green);
  color: var(--white);
}
.mobile-nav-cta:hover {
  background: var(--logo-green-light);
  border-color: var(--logo-green-light);
}
.mobile-cta-bar__call { background: var(--logo-green); }
.mobile-cta-bar__call:hover { background: var(--logo-green-light); }
.mobile-cta-bar__quote {
  color: var(--logo-green);
  border-color: var(--logo-green);
}

/* ============================================================
   HOMEPAGE RECOLOR — green headings, black body text,
   orange->green, dusty-pink CTA, white footer (scoped to .home)
   ============================================================ */

/* Headings -> logo green */
.brand .hero__title--home,
.brand .section-heading,
.brand .why-card__title,
.brand .service-card__title,
.brand .cta-band__title { color: var(--logo-green); }

/* Eyebrow + ornament labels -> logo green */
.brand .hero__eyebrow--green,
.brand .ornament__text { color: var(--logo-green); }
.brand .hero__eyebrow--green .hero__eyebrow-line,
.brand .ornament__line { background: var(--logo-green); }

/* Descriptive / body text -> black */
.brand .hero__subtitle,
.brand .section-sub,
.brand .why-card__text,
.brand .service-card__text,
.brand .testimonial-card__quote,
.brand .cta-band__sub { color: var(--ink); }

/* Remove remaining orange accents -> logo green */
.brand .btn--orange {
  background: var(--logo-green);
  border-color: var(--logo-green);
  color: var(--white);
}
.brand .btn--orange:hover {
  background: var(--logo-green-light);
  border-color: var(--logo-green-light);
}
.brand .service-card__link { color: var(--logo-green); }
.brand .service-card:hover .service-card__link { color: var(--logo-green-light); }
.brand .testimonial-card__stars span { color: var(--logo-green); }

/* CTA band -> dusty pink */
.brand .cta-band { background: var(--blush); }
.brand .cta-band::before { display: none; }

/* Footer -> white background, reversed (dark) colours */
.brand .site-footer {
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--rule);
}
.brand .site-footer .footer-col h4 { color: var(--logo-green); }
.brand .site-footer .footer-col a { color: var(--ink); }
.brand .site-footer .footer-col a:hover { color: var(--logo-green); }
.brand .site-footer .footer-col p { color: var(--ink); }
.brand .site-footer .footer-logo img { background: transparent; padding: 0; }
.brand .site-footer .footer-bottom {
  border-top: 1px solid var(--rule);
  color: var(--ink);
}
.brand .site-footer .footer-bottom a { color: var(--ink); }
.brand .site-footer .footer-bottom a:hover { color: var(--logo-green); }

/* ============================================================
   SERVICES — image-left rows (homepage "Services We Offer")
   ============================================================ */
.svc-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}
.svc-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  background: var(--white);
  border: 1.5px solid rgba(2, 72, 35, 0.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.svc-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.svc-row__media {
  display: block;
  overflow: hidden;
}
.svc-row__media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.svc-row:hover .svc-row__media img { transform: scale(1.04); }
.svc-row__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-xl);
}
.svc-row__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xl);
  line-height: 1.15;
  color: var(--logo-green);
  margin-bottom: var(--space-sm);
}
.svc-row__text {
  font-size: var(--text-base);
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}
.svc-row__btn {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
  margin-top: auto;
  padding: 0.8rem 1.1rem;
  border: 1.5px solid var(--logo-green);
  border-radius: var(--radius-md);
  color: var(--logo-green);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}
.svc-row__btn:hover { background: var(--logo-green); color: var(--white); }
.svc-row__btn-leaf,
.svc-row__btn-arrow { display: inline-flex; flex: 0 0 auto; }
.svc-row__btn-leaf svg,
.svc-row__btn-arrow svg { width: 18px; height: 18px; }
.svc-row__btn-arrow { margin-left: auto; }

@media (max-width: 560px) {
  .svc-row { grid-template-columns: 1fr; }
  .svc-row__media img { min-height: 200px; max-height: 240px; }
}

/* Services page "Services We Offer" section header in brand green */
.svc-offer .section-heading { color: var(--logo-green); }
.svc-offer .ornament__text { color: var(--logo-green); }
.svc-offer .ornament__line { background: var(--logo-green); }

/* Alternating service rows — image on the right */
.svc-row--reverse { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
.svc-row--reverse .svc-row__media { order: 2; }
.svc-row--reverse .svc-row__body { order: 1; }
@media (max-width: 560px) {
  .svc-row--reverse { grid-template-columns: 1fr; }
  .svc-row--reverse .svc-row__media { order: 0; }
  .svc-row--reverse .svc-row__body { order: 0; }
}

/* ============================================================
   HOMEPAGE — tighten vertical rhythm so each section fits in
   one viewport (heading + both card rows, no overhang).
   Scoped to .home (index only) so About/Services/Contact keep
   their roomier spacing.
   ============================================================ */
/* Hero: flat blush (drop the vignette/stripe tint) + pull content up */
.home .hero::before { display: none; }
/* Hero bottom (0.75rem) + What We Do section top (0.75rem) = --space-lg, so the
   gap above "What We Do" matches the --space-lg gap below its eyebrow. */
.home .hero--home .hero__inner { padding-block: var(--space-xl) calc(var(--space-lg) / 2); }
/* Uniform home spacing: every gap between sections equals --space-lg (1.5rem).
   Each section contributes half above + half below, so adjacent paddings sum to 1.5rem. */
.home .section { padding-block: calc(var(--space-lg) / 2); }
/* Spacious utilities must win over the compact .home .section padding above.
   Tightened site-wide so sections separate cleanly without cavernous dead space. */
.section.section--spacious { padding-block: clamp(3rem, 6vh, 5rem); }
.section.section--pad-bottom-lg { padding-bottom: clamp(3rem, 6vh, 5rem); }
/* Home overrides: keep the spacious/pad-bottom sections on the same 1.5rem rhythm. */
.home .section.section--spacious { padding-block: calc(var(--space-lg) / 2); }
.home .section.section--pad-bottom-lg { padding-bottom: calc(var(--space-lg) / 2); }
/* About page has no hero; trim the 6rem section padding to a tight,
   homepage-like rhythm so there's no cavernous dead space between sections
   (or under the header). Placed after the spacious rules so it wins uniformly. */
.about-page .section { padding-block: calc(var(--space-lg) / 2); }
/* Match the home page's top gap under the header (its hero uses --space-xl on top). */
.about-page #main-content > .section:first-of-type { padding-top: var(--space-xl); }
/* Service detail pages: same tight rhythm as home/about. The default 6rem
   section padding plus the intro's 6rem bottom + 4rem stacked gap read as
   cavernous dead space between every block. Placed after the spacious rules
   so it wins uniformly (incl. the testimonials section--spacious). */
.svc-page .section { padding-block: calc(var(--space-lg) / 2); }
/* Intro sits on the same compact rhythm as every .section (matching the home
   page's calc(var(--space-lg)/2) sections) so gaps above/below headings stay
   balanced and section-to-section spacing is uniform. */
.svc-page .svc-content--intro { padding-top: 0; padding-bottom: calc(var(--space-lg) / 2); gap: var(--space-lg); }
.svc-page .svc-section__head { margin-bottom: var(--space-lg); }
/* Service page H1 — centered ornament heading with a line either side,
   matching the home section eyebrows ("Who We Service", etc.). */
.svc-intro-title {
  max-width: var(--container);
  margin-inline: auto;
  padding: var(--space-xl) var(--space-xl) 0;
  text-align: center;
}
/* The H1 gets a slightly wider cap than other headings (22ch) so it wraps to
   2 lines rather than 3 — flanking lines sit a touch further apart. */
.svc-intro-title .ornament__text { max-width: 24ch; }
/* On phones the block padding + flanking lines + gaps eat ~half the width, so a
   long H1 (e.g. "Professional Hedge Trimming Service") wraps to 3 lines. Free
   that space on small screens so the H1 stays 2 lines down to ~360px. */
@media (max-width: 480px) {
  .svc-intro-title { padding-inline: 0; }
  .svc-intro-title .ornament { gap: 10px; }
  .svc-intro-title .ornament__line { width: 24px; max-width: 24px; }
}
/* The "See Our Lawn Mowing Work" ornament sits in the intro media column,
   which isn't a .services-intro block — centre it so it hugs like the section
   headings (text-wrap: balance shrinks the text to a compact block on its own). */
.svc-intro__media { text-align: center; }
.home .section-heading--lg { font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl)); }
.home .services-intro .section-sub { margin-bottom: 0; }
/* Section eyebrow labels are centered <h2>s with lines either side — center the
   intro block across the container so they sit mid-page like the Testimonials row. */
.home .services-intro,
.svc-page .services-intro { max-width: none; margin-inline: auto; text-align: center; }
/* Consistent line length either side of every H1/H2 eyebrow (matches the 36px
   hero lines) — stops the non-lg "Get In Touch" ornament from running long. */
.home .ornament__line,
.svc-page .ornament__line { flex: none; width: 36px; max-width: 36px; }
.home .why-grid,
.home .services-grid,
.home .who-grid,
.home .testimonials-grid,
.svc-page .why-grid,
.svc-page .who-grid,
.svc-page .testimonials-grid,
.about-page .why-grid,
.about-page .team-grid,
.about-page .testimonials-grid { margin-top: var(--space-lg); }
.home .service-card { padding: var(--space-lg); }
.home .service-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: var(--space-sm);
}
.home .service-card__icon svg { width: 24px; height: 24px; }
.home .services-footer { margin-top: var(--space-lg); }
.home .service-card__text {
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

/* Home "Services We Offer" cards: icon inline with the title, text full-width below */
.home .service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--space-md);
  align-items: center;
}
.home .service-card__icon {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}
.home .service-card__title {
  grid-column: 2;
  grid-row: 1;
}
.home .service-card__text,
.home .service-card__link {
  grid-column: 1 / -1;
}
.home .service-card__text { margin-top: var(--space-sm); }

/* ============================================================
   BRAND THEME — inner pages (service / contact / legal)
   Extends body.brand so service, contact and legal pages match
   the homepage palette (blush background, logo-green accents).
   ============================================================ */

/* Remap the orange accent to logo green everywhere on branded pages.
   One declaration recolours every var(--orange) usage — CTA buttons,
   open FAQ summaries, links, form required asterisks, accent borders. */
body.brand {
  --orange:       var(--logo-green);
  --orange-light: var(--logo-green-light);
}

/* Display headings → logo green (match homepage headings) */
.brand .svc-body h1,
.brand .svc-body h2,
.brand .faq-item summary,
.brand .contact-form__heading,
.brand .legal-content h2 { color: var(--logo-green); }

/* Body copy → ink (match homepage card/section text).
   Targets the paragraph-level selectors so it beats the more specific
   `.svc-body p` / `.svc-audience__body p` rules that set --muted. */
.brand .svc-body p,
.brand .svc-audience__body p,
.brand .svc-tile__text,
.brand .faq-item__body,
.brand .faq-item__body p { color: var(--ink); }

/* ============================================================
   ABOUT PAGE (v3) — prose + "Meet the Team" read-more cards
   Matches the homepage palette (body.brand).
   ============================================================ */

/* Readable prose column (Our Story, Why Choose) */
.about-prose { max-width: 760px; }
.about-prose--centered { margin-inline: auto; }
.about-prose .section-heading { margin-bottom: var(--space-lg); }
.about-prose p {
  color: var(--ink-mid);
  font-size: var(--text-base);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}
.about-prose p:last-child { margin-bottom: 0; }

/* Meet the Team */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  align-items: start;
}
@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
.team-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}
.team-card__head {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.team-card__avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rule);
  background: var(--green-tint);
}
.team-card__head-text { min-width: 0; }
.team-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--logo-green);
  margin-bottom: 2px;
}
.team-card__role {
  font-style: italic;
  font-size: var(--text-sm);
  color: var(--ink-light);
  margin-bottom: var(--space-md);
}
.team-card__intro,
.team-card__extra p {
  color: var(--ink-mid);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.team-card__extra p:last-child { margin-bottom: 0; }

/* Clamp the collapsed intro so every card defaults to the same compact
   height (Rob's card). Un-clamps to the full text once "Read more" opens. */
.team-card__intro {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.team-card:has(.team-card__more[open]) .team-card__intro {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

/* Read more / less (native <details>, no JS) */
.team-card__more .team-card__extra { margin-top: var(--space-xs); }
.team-card__toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  list-style: none;
  color: var(--logo-green);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: color var(--duration) var(--ease);
}
.team-card__toggle::-webkit-details-marker { display: none; }
.team-card__toggle:hover { color: var(--logo-green-light); }
.team-card__toggle::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--duration) var(--ease);
  margin-bottom: 3px;
}
.team-card__more[open] .team-card__toggle::after { transform: rotate(-135deg); margin-bottom: -2px; }
.team-card__toggle-less { display: none; }
.team-card__more[open] .team-card__toggle-more { display: none; }
.team-card__more[open] .team-card__toggle-less { display: inline; }

/* When expanded, drop the toggle ("Read less") to the bottom, below the extra copy */
.team-card__more[open] {
  display: flex;
  flex-direction: column;
}
.team-card__more[open] .team-card__extra { order: 1; margin-top: 0; }
.team-card__more[open] .team-card__toggle {
  order: 2;
  align-self: flex-start;
  margin-top: var(--space-md);
}

/* ============================================================
   ABOUT — two-column text + image splits
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-3xl);
  align-items: start;
}
.about-split__text { max-width: 760px; }
/* Temporary: Our Story with its photo removed — collapse to a single centred
   column. Delete this rule when the new photo goes in. */
.about-split--no-media { grid-template-columns: 1fr; }
.about-split--no-media .about-split__text { margin-inline: auto; }
/* Our Story (short copy): vertically centre the text against the taller image */
.about-split:not(.about-split--reverse) .about-split__text { align-self: center; }
.about-split__media {
  position: sticky;
  top: 96px;
}
.about-split__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
/* Reverse: image on the left, text on the right */
.about-split--reverse { grid-template-columns: 0.95fr 1.05fr; }
.about-split--reverse .about-split__text { order: 2; }
.about-split--reverse .about-split__media { order: 1; }

@media (max-width: 860px) {
  .about-split,
  .about-split--reverse { grid-template-columns: 1fr; gap: var(--space-xl); }
  .about-split__media { position: static; }
  /* Our Story: text then image. Why Choose (reverse): image on top so it isn't buried under long copy. */
  .about-split--reverse .about-split__media { order: -1; }
  .about-split--reverse .about-split__text { order: 0; }
  .about-split__media img { aspect-ratio: 16 / 10; }
}

/* Embedded lead-form block (testimonials + quote form at the bottom of pages) */
.lead-form { max-width: 720px; margin-inline: auto; }

/* ============================================================
   LEAD CTA — wide two-column quote section (info panel + form card)
   ============================================================ */
.lead-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  justify-items: center;
}
.lead-cta__info { text-align: center; }
/* Eyebrow sits directly above the form — the grid gap handles the spacing,
   so drop the ornament's own bottom margin to avoid a double gap. */
.lead-cta__info .ornament { margin-bottom: 0; }
.lead-cta .section-heading--lg { font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl)); }
.lead-cta__lead {
  color: var(--ink);
  font-size: var(--text-lg);
  line-height: 1.6;
  margin-top: var(--space-md);
  max-width: 460px;
}
.lead-cta__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}
.lead-cta__point { display: flex; align-items: center; gap: var(--space-md); }
.lead-cta__point > :last-child { min-width: 0; }
.lead-cta__point-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--green-tint);
  color: var(--logo-green);
}
.lead-cta__point-icon svg { width: 20px; height: 20px; }
.lead-cta__point-label {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-light);
  font-weight: 600;
  margin-bottom: 1px;
}
.lead-cta__point-value {
  font-weight: 700;
  color: var(--ink);
  font-size: var(--text-base);
  text-decoration: none;
  overflow-wrap: anywhere;
}
a.lead-cta__point-value:hover { color: var(--logo-green); }
.lead-cta__form {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 640px;
}
.lead-cta__form-title.contact-form__heading {
  font-size: var(--text-xl);
  margin-bottom: var(--space-lg);
}
@media (max-width: 560px) {
  .lead-cta__form { padding: var(--space-lg); }
}

/* ============================================================
   MOBILE GUTTERS — tighten the 32px side padding on small phones
   so text columns aren't needlessly narrow. Placed last so it wins
   source-order over per-component padding-inline declarations.
   ============================================================ */
@media (max-width: 600px) {
  .container,
  .header-inner,
  .hero--home .hero__inner,
  .svc-content,
  .contact-layout {
    padding-inline: var(--space-md);
  }
}
