/* ==========================================================================
   FRESHTURF — Lawn Mowing & Outdoor Services
   freshturf.co.nz
   Brand: deep forest green + lime, black panels, yellow highlight flashes.
   Single stylesheet, no build step. Sections are ordered:
     1. Tokens   2. Reset   3. Typography   4. Buttons/atoms
     5. Header   6. Hero    7. Sections     8. Components   9. Footer
    10. Forms   11. Utilities/responsive
   ========================================================================== */

/* 1. TOKENS ================================================================ */
:root {
  /* Greens — pulled off the flyer wordmark */
  --forest-900: #0e2f10;
  --forest-800: #14401a;
  --forest-700: #1c5423;
  --forest-600: #24692b;
  --green-500:  #3f9438;
  --lime-500:   #8cc63f;
  --lime-400:   #a5d64f;
  --lime-300:   #c2e884;

  /* Supporting */
  --blue-500:   #1e9be0;   /* waterblasting */
  --slate-500:  #667a70;   /* rubbish removal */
  --bark-500:   #7a5c33;   /* tree cutting */
  --yellow-400: #ffe712;   /* highlight flashes */

  /* Neutrals */
  --ink:        #0b0e0b;
  --ink-soft:   #161c16;
  --grey-700:   #3d463d;
  --grey-500:   #6b756b;
  --grey-300:   #c9d1c9;
  --grey-100:   #eef2ec;
  --grey-50:    #f7f9f6;
  --white:      #ffffff;

  /* Semantic */
  --bg:          var(--white);
  /* Deliberately a visible step down from white, not var(--grey-50). At 3% off
     white the alternating bands read as one undifferentiated pale slab wherever
     two pale sections sit together. Faintly green so it stays on-brand. */
  --bg-alt:      #eef2ea;
  --text:        #1a211a;
  --text-muted:  var(--grey-500);
  --border:      #dfe6dd;

  /* Type */
  --font-display: "Archivo Black", "Arial Black", "Helvetica Neue", sans-serif;
  --font-flash:   "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body:    "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Space & shape */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --maxw: 1200px;
  --maxw-narrow: 780px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(11, 14, 11, .08);
  --shadow-md: 0 10px 30px rgba(11, 14, 11, .12);
  --shadow-lg: 0 24px 60px rgba(11, 14, 11, .18);

  --section-y: clamp(3.5rem, 7vw, 6.5rem);
}

/* 2. RESET ================================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--forest-600); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--green-500); }
ul, ol { padding-left: 1.25rem; }
button { font: inherit; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--forest-800); color: #fff;
  padding: .75rem 1.25rem; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* 3. TYPOGRAPHY ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.01em;
  text-wrap: balance;
}
/* Every h2 on the site is uppercase and the flyer is uppercase throughout, so
   sentence-case h1s were the one exception. Caps also wrap better here: at
   375px "SOUTH AUCKLAND'S OUTDOOR CREW" sets in three lines and 101px, where
   the sentence-case version took three lines and 118px. */
h1 {
  font-size: clamp(2rem, 6.2vw, 4.4rem);
  text-transform: uppercase;
}
h2 { font-size: clamp(1.85rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.0625rem; }

.upper { text-transform: uppercase; }
p { text-wrap: pretty; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--grey-700); }
.lead--light { color: rgba(255,255,255,.86); }

/* The italic condensed slogan treatment from the flyer */
.flash {
  font-family: var(--font-flash);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.05;
}

.eyebrow {
  font-family: var(--font-flash);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 1.05rem;
  color: var(--green-500);
  margin-bottom: .4rem;
}
.eyebrow--light { color: var(--lime-400); }

/* Yellow marker-pen underline, used sparingly like the flyer */
.mark-hl {
  background: linear-gradient(transparent 62%, rgba(255,231,18,.85) 62%);
  padding: 0 .1em;
}

.text-lime { color: var(--lime-500); }
.text-forest { color: var(--forest-700); }

/* 4. LAYOUT ATOMS & BUTTONS ================================================ */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--maxw-narrow); }
.section { padding-block: var(--section-y); }
.section--alt { background: var(--bg-alt); }
/* Two tinted bands in a row read as one block. Whichever comes second drops
   back to white so the alternation survives however pages are composed. */
.section--alt + .section--alt { background: #fff; }
.section--dark { background: var(--forest-900); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-flash);
  font-weight: 700; font-style: italic; text-transform: uppercase;
  font-size: 1.15rem; letter-spacing: .02em;
  padding: .85rem 1.6rem;
  border: 0; border-radius: var(--radius-pill);
  cursor: pointer; text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn--primary { background: var(--lime-500); color: var(--forest-900); box-shadow: 0 6px 0 var(--forest-700); }
.btn--primary:hover { background: var(--lime-400); color: var(--forest-900); box-shadow: 0 8px 0 var(--forest-700); }
.btn--primary:active { box-shadow: 0 3px 0 var(--forest-700); }

.btn--dark { background: var(--forest-800); color: #fff; box-shadow: 0 6px 0 #071c09; }
.btn--dark:hover { background: var(--forest-700); color: #fff; }

.btn--ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

.btn--ghost-dark { background: transparent; color: var(--forest-800); box-shadow: inset 0 0 0 2px var(--forest-800); }
.btn--ghost-dark:hover { background: var(--forest-800); color: #fff; }

.btn--lg { font-size: 1.3rem; padding: 1.05rem 2.1rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* Checklist — circled ticks, straight off the flyer cards */
.ticks { list-style: none; padding: 0; display: grid; gap: .55rem; }
/* Absolutely positioned tick rather than a two-column grid on the <li>.
   With `display: grid` any inline child — an <a> or a <strong> — becomes its
   own grid item and gets dumped into the 1.4rem icon column, which shattered
   list items like "Sale and <a>open home prep</a>" into one word per line. */
.ticks li {
  position: relative;
  padding-left: 2.05rem;
  line-height: 1.45;
}
.ticks li::before {
  content: "";
  position: absolute; left: 0; top: .12rem;
  width: 1.4rem; height: 1.4rem;
  border-radius: 50%;
  background: var(--lime-500) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e2f10' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / .85rem no-repeat;
}
.ticks--light li { color: rgba(255,255,255,.9); }
.ticks--two { grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (max-width: 560px) { .ticks--two { grid-template-columns: 1fr; } }

/* Pills */
.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-flash); font-weight: 700; font-style: italic;
  text-transform: uppercase; font-size: .95rem; letter-spacing: .04em;
  padding: .3rem .85rem; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.14); color: #fff;
}
.pill--yellow { background: var(--yellow-400); color: var(--ink); }
.pill--outline { background: transparent; box-shadow: inset 0 0 0 2px rgba(255,255,255,.35); }

/* 5. HEADER =============================================================== */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.82);
  font-size: .95rem;
}
.topbar__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .5rem 1.5rem; padding-block: .5rem;
}
.topbar__list { display: flex; flex-wrap: wrap; gap: 1.25rem; list-style: none; padding: 0; margin: 0; }
.topbar__list a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: .45rem; }
.topbar__list a:hover { color: var(--lime-400); }
.topbar__list svg { width: 1rem; height: 1rem; color: var(--lime-500); flex: none; }
.topbar__note {
  font-family: var(--font-flash); font-style: italic; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; color: var(--lime-400);
}
/* On phones the topbar wrapped to three lines and pushed the hero off screen.
   Keep the phone number only — email and the strapline are both repeated below. */
@media (max-width: 700px) {
  .topbar__inner { justify-content: center; padding-block: .4rem; }
  .topbar__list li:not(:first-child) { display: none; }
  .topbar__note { display: none; }
}

/* --- Language picker ------------------------------------------------------
   Our own control driving Google Translate's hidden widget. Google's default
   gadget is a branded dropdown that shoves the whole page down by ~40px and
   ignores the site's styling, so it's hidden and we render this instead. */
.langpick { display: inline-flex; align-items: center; gap: .45rem; }
.langpick svg { width: 1rem; height: 1rem; color: var(--lime-500); flex: none; }
.langpick select {
  font: inherit; font-size: .92rem;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-pill);
  padding: .2rem 1.7rem .2rem .7rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .5rem center;
  background-size: .6rem;
}
.langpick select:hover { background-color: rgba(255,255,255,.18); }
.langpick select option { background: var(--ink); color: #fff; }
.langpick[data-busy="true"] select { opacity: .55; cursor: progress; }

/* Google injects a banner iframe and pushes <body> down. Undo both. */
#google_translate_element { display: none; }
iframe.skiptranslate, .goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
.goog-te-gadget { font-size: 0 !important; }
/* It also highlights translated text with a yellow background on hover. */
.goog-text-highlight { background: none !important; box-shadow: none !important; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--forest-900);
  border-bottom: 4px solid var(--lime-500);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-block: .7rem;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; flex: none; }
.brand img { height: 46px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-size: 1.5rem; color: #fff; letter-spacing: -.02em; }
.brand__name span { color: var(--lime-500); }
.brand__tag {
  font-family: var(--font-flash); font-weight: 600; text-transform: uppercase;
  font-size: .68rem; letter-spacing: .12em; color: rgba(255,255,255,.6); margin-top: .18rem;
}

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav__list { display: flex; align-items: center; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.nav__list > li { position: relative; }
.nav__link {
  color: rgba(255,255,255,.88); text-decoration: none;
  font-weight: 600; font-size: 1rem;
  display: inline-flex; align-items: center; gap: .3rem;
  padding-block: .5rem;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--lime-400); }
.nav__link[aria-current="page"] { border-bottom: 3px solid var(--lime-500); }
.nav__caret { width: .7rem; height: .7rem; transition: transform .18s ease; }
.nav__item--has-menu:hover .nav__caret, .nav__item--has-menu:focus-within .nav__caret { transform: rotate(180deg); }

.nav__menu {
  position: absolute; top: 100%; left: -1rem; min-width: 15rem;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: .5rem; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  border-top: 4px solid var(--lime-500);
}
.nav__item--has-menu:hover .nav__menu,
.nav__item--has-menu:focus-within .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__menu a {
  display: block; padding: .55rem .8rem; border-radius: 8px;
  color: var(--text); text-decoration: none; font-weight: 600;
}
.nav__menu a:hover { background: var(--grey-100); color: var(--forest-700); }
/* Groups the dropdown: the three ways to buy, then the individual jobs. */
.nav__menu-sep { margin-top: .4rem; padding-top: .4rem; border-top: 1px solid var(--border); }

.nav-toggle {
  display: none; background: transparent; border: 2px solid rgba(255,255,255,.35);
  color: #fff; border-radius: 10px; padding: .5rem .7rem; cursor: pointer;
}
.nav-toggle svg { width: 1.5rem; height: 1.5rem; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(22rem, 88vw);
    background: var(--forest-900); flex-direction: column; align-items: stretch;
    padding: 5.5rem 1.5rem 2rem; gap: .25rem;
    transform: translateX(100%); transition: transform .25s ease;
    overflow-y: auto; box-shadow: var(--shadow-lg);
  }
  .nav[data-open="true"] { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 1.1rem; }
  .nav__link[aria-current="page"] { border-bottom-color: var(--lime-500); }
  .nav__menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; box-shadow: none; border-top: 0;
    padding: 0 0 .5rem .9rem;
  }
  .nav__menu a { color: rgba(255,255,255,.75); padding: .5rem 0; }
  .nav__menu a:hover { background: transparent; color: var(--lime-400); }
  .nav .btn { margin-top: 1rem; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 99;
    opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s;
  }
  .nav-backdrop[data-open="true"] { opacity: 1; visibility: visible; }
}

/* 6. HERO ================================================================= */
.hero {
  position: relative;
  background: var(--forest-900);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(9,32,12,.94) 0%, rgba(9,32,12,.82) 45%, rgba(9,32,12,.35) 100%),
    radial-gradient(120% 80% at 15% 0%, rgba(140,198,63,.18), transparent 60%);
}
.hero__inner {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}
.hero h1 { color: #fff; }
.hero h1 .line-2 { color: var(--lime-500); display: block; }
.hero__slogan {
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  color: var(--yellow-400);
  margin-top: .9rem;
}
.hero__sub { margin-top: .35rem; font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: rgba(255,255,255,.85); font-weight: 500; }
.hero .btn-row { margin-top: 1.9rem; }
.hero__pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.6rem; }

/* Rosette — the "FREE QUOTES & BOOKINGS" badge */
.rosette {
  width: clamp(9rem, 16vw, 12.5rem); aspect-ratio: 1;
  display: grid; place-content: center; text-align: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--lime-400), var(--green-500) 70%);
  color: var(--forest-900);
  box-shadow: 0 0 0 6px rgba(255,255,255,.15), var(--shadow-lg);
  transform: rotate(-8deg);
  padding: 1rem;
}
.rosette strong { font-family: var(--font-display); font-size: clamp(1.35rem, 2.6vw, 2rem); line-height: .95; display: block; }
.rosette span {
  font-family: var(--font-flash); font-weight: 700; font-style: italic;
  text-transform: uppercase; font-size: clamp(.8rem, 1.2vw, .95rem);
  letter-spacing: .05em; line-height: 1.15; display: block; margin-top: .25rem;
}

.hero__aside { display: grid; justify-items: center; gap: 1.5rem; }
.hero__card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  backdrop-filter: blur(6px);
  width: 100%;
}
.hero__card h2 { font-size: 1.15rem; color: #fff; margin-bottom: .75rem; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__aside { justify-items: start; }
  .rosette { transform: rotate(-6deg); }
}

/* Phone hero. Stacked, this section ran to 1065px on an 812px screen — more
   than a full swipe before the visitor reached a single service. Two blocks
   earn their removal because the lime trust strip immediately below repeats
   them: the pills (3 of 4 labels are identical) and the FREE QUOTES rosette. */
@media (max-width: 700px) {
  .hero__inner { padding-block: 2.25rem 2.5rem; gap: 1.75rem; }
  .hero__pills, .hero .rosette { display: none; }
  .hero__slogan { margin-top: .6rem; }
  .hero .btn-row { margin-top: 1.4rem; gap: .65rem; }
  .hero .btn-row .btn { width: 100%; }
  .hero .btn--lg { font-size: 1.15rem; padding: .9rem 1.4rem; }
  .hero__card { padding: 1.1rem 1.2rem; }
}

/* Compact page hero for interior pages */
.page-hero {
  position: relative; background: var(--forest-900); color: #fff; isolation: isolate; overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(9,32,12,.95), rgba(9,32,12,.72));
}
.page-hero__inner { padding-block: clamp(2.75rem, 6vw, 4.75rem); max-width: 48rem; }
.page-hero h1 { color: #fff; }
.page-hero p { margin-top: .85rem; color: rgba(255,255,255,.85); font-size: clamp(1.05rem, 1.6vw, 1.2rem); }

.breadcrumbs { font-size: .92rem; margin-bottom: .9rem; color: rgba(255,255,255,.65); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; padding: 0; margin: 0; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: .45rem; color: rgba(255,255,255,.35); }
.breadcrumbs a { color: var(--lime-400); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

/* 7. TRUST STRIP ========================================================== */
.trust {
  background: var(--lime-500);
  color: var(--forest-900);
}
.trust__list {
  display: grid; grid-template-columns: repeat(4, 1fr);
  list-style: none; margin: 0; padding: 0;
}
.trust__list li {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem .75rem; text-align: center;
  font-family: var(--font-flash); font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: .03em; font-size: 1.08rem;
}
.trust__list li + li { border-left: 2px solid rgba(14,47,16,.18); }
.trust__list svg { width: 1.4rem; height: 1.4rem; flex: none; }
@media (max-width: 860px) {
  .trust__list { grid-template-columns: repeat(2, 1fr); }
  .trust__list li:nth-child(odd) { border-left: 0; }
  .trust__list li:nth-child(n+3) { border-top: 2px solid rgba(14,47,16,.18); }
}
/* Stay 2x2 right down to the narrowest phones — stacking these four short
   labels into one column cost 250px of vertical space for no gain. */
@media (max-width: 560px) {
  .trust__list li { padding: .7rem .4rem; font-size: .92rem; gap: .4rem; }
  .trust__list svg { width: 1.1rem; height: 1.1rem; }
}

/* 7b. CATEGORY CARDS ======================================================
   The three ways people buy: regular care, a one-off catch-up, or getting a
   property presentable. Deliberately icon-led rather than photo-led so they
   read as *categories*, distinct from the photo-led capability cards below. */
.cat-grid {
  display: grid; gap: clamp(1.25rem, 2.5vw, 1.75rem);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 940px) { .cat-grid { grid-template-columns: 1fr; } }

.cat-card {
  --accent: var(--green-500);
  display: flex; flex-direction: column; gap: 1rem;
  background: #fff; border: 1px solid var(--border);
  border-top: 6px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  box-shadow: var(--shadow-md);
  transition: transform .18s ease, box-shadow .18s ease;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cat-card--oneoff { --accent: var(--lime-500); }
.cat-card--ready  { --accent: var(--blue-500); }

.cat-card__icon {
  width: 3.4rem; height: 3.4rem; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-content: center; flex: none;
}
.cat-card__icon svg { width: 1.8rem; height: 1.8rem; }
.cat-card h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); text-transform: uppercase; }
.cat-card__lead { color: var(--grey-700); font-size: 1.02rem; }
.cat-card .ticks { font-size: .98rem; }
.cat-card__foot { margin-top: auto; padding-top: .5rem; }

/* 7b-ii. ANSWER CARD ======================================================
   Sits at the top of every situation page: a direct, self-contained answer to
   the question the page is named after, before any preamble.

   Two reasons it's built this way. A visitor who arrived from a search wants
   the answer, not a warm-up. And AI assistants summarising the page will lift
   the first substantive block — if that block is a complete, factual answer
   naming the business and the service area, the summary is accurate. If it's
   marketing throat-clearing, the summary is useless. */
.answer-card {
  background: #f2f9e8;
  border: 1px solid var(--lime-500);
  border-left: 6px solid var(--lime-500);
  border-radius: var(--radius);
  padding: clamp(1.1rem, 2.2vw, 1.5rem);
  margin-bottom: 2rem;
}
.answer-card p { font-size: 1.08rem; line-height: 1.6; }
.answer-card p + p { margin-top: .7rem; }
.answer-card strong { color: var(--forest-700); }

/* Extractable key-value facts. Deliberately a real table: it survives being
   scraped into a summary far better than a styled list of divs. */
.facts { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 1rem; }
.facts th, .facts td { text-align: left; padding: .7rem .9rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.facts th { width: 34%; color: var(--forest-700); font-weight: 700; background: var(--grey-50); }
.facts tr:last-child th, .facts tr:last-child td { border-bottom: 0; }
@media (max-width: 560px) {
  .facts, .facts tbody, .facts tr, .facts th, .facts td { display: block; width: 100%; }
  .facts th { border-bottom: 0; padding-bottom: .2rem; }
  .facts td { padding-top: .2rem; }
}

/* Cross-links to sibling situation pages. */
.related { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; padding: 0; margin: 1rem 0 0; }
.related li a {
  display: inline-block; padding: .45rem 1rem;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-pill);
  text-decoration: none; color: var(--forest-700); font-weight: 600; font-size: .97rem;
}
.related li a:hover { border-color: var(--lime-500); background: #f2f9e8; }

/* 7c. SITUATION GRID ======================================================
   "When you might need us" — the demand-generating section. Each tile names a
   moment the visitor may not have realised was a reason to call. Kept small and
   scannable on purpose: this is a list to skim, not to read. */
.sit-grid {
  display: grid; gap: .85rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1040px) { .sit-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .sit-grid { grid-template-columns: repeat(2, 1fr); } }
/* Sixteen tiles in one column is a 1,400px scroll. On the narrowest phones drop
   the supporting line and keep two columns — the titles alone still say what
   each one is, and the section stays a list you skim rather than read. */
@media (max-width: 480px) {
  .sit-grid { gap: .6rem; }
  .sit { padding: .7rem .75rem; gap: .55rem; }
  .sit__note { display: none; }
  .sit__title { font-size: .95rem; }
  .sit__icon { width: 1.3rem; height: 1.3rem; }
}

.sit {
  display: flex; align-items: flex-start; gap: .7rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: .9rem 1rem;
  text-decoration: none; color: inherit;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
a.sit:hover { border-color: var(--lime-500); transform: translateY(-3px); box-shadow: var(--shadow-sm); color: inherit; }
.section--dark .sit { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: #fff; }
.section--dark a.sit:hover { background: rgba(255,255,255,.12); border-color: var(--lime-500); }

.sit__icon { width: 1.55rem; height: 1.55rem; flex: none; color: var(--green-500); margin-top: .1rem; }
.section--dark .sit__icon { color: var(--lime-400); }
.sit__text { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.sit__title { font-weight: 700; font-size: 1rem; line-height: 1.25; }
.sit__note { font-size: .88rem; color: var(--text-muted); line-height: 1.35; }
.section--dark .sit__note { color: rgba(255,255,255,.65); }

/* 8. SERVICE CARDS ======================================================== */
/* Four cards: 4-up on desktop, a clean 2x2 on tablet, stacked on phones.
   auto-fit alone gives an ugly 3+1 orphan around 800px, hence the explicit steps. */
.cards { display: grid; gap: clamp(1.25rem, 2.5vw, 1.75rem); grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1080px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .cards { grid-template-columns: 1fr; } }

.cards--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .cards--3 { grid-template-columns: 1fr; } }

.svc-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform .18s ease, box-shadow .18s ease;
  /* --accent is set per-card inline or by modifier */
  --accent: var(--green-500);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.svc-card--water  { --accent: var(--blue-500); }
.svc-card--rubbish{ --accent: var(--slate-500); }
.svc-card--tree   { --accent: var(--bark-500); }

/* min-height keeps the coloured headers level when one title wraps to two lines,
   so the images below them line up across the row. */
.svc-card__head {
  display: flex; align-items: center; gap: .75rem;
  background: var(--accent); color: #fff;
  padding: .9rem 1.15rem; min-height: 4.5rem;
}
.svc-card__icon {
  width: 2.6rem; height: 2.6rem; flex: none;
  background: rgba(255,255,255,.9); border-radius: 50%;
  display: grid; place-content: center;
}
.svc-card__icon svg { width: 1.5rem; height: 1.5rem; color: var(--accent); }
.svc-card__title { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.05; text-transform: uppercase; }
.svc-card__extra {
  display: block; font-family: var(--font-flash); font-style: italic; font-weight: 700;
  font-size: .82rem; letter-spacing: .06em; color: var(--yellow-400);
}

.svc-card__media { position: relative; aspect-ratio: 16 / 10; background: var(--grey-100); }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; }

.svc-card__body { padding: 1.15rem 1.25rem 1.4rem; display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.svc-card__body p { color: var(--grey-700); font-size: .99rem; }
.svc-card__link {
  margin-top: auto; align-self: flex-start;
  font-family: var(--font-flash); font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: .03em; font-size: 1.05rem;
  color: var(--forest-700); text-decoration: none;
  display: inline-flex; align-items: center; gap: .4rem;
}
.svc-card__link svg { width: 1em; height: 1em; transition: transform .15s ease; }
.svc-card__link:hover svg { transform: translateX(4px); }

/* "EXTRA COST" corner sticker — lives inside .svc-card__media so it can't
   land on top of a card title. */
.sticker {
  position: absolute; top: .6rem; right: .6rem; z-index: 2;
  background: var(--yellow-400); color: var(--ink);
  font-family: var(--font-display); font-size: .7rem; letter-spacing: .04em;
  text-transform: uppercase; padding: .35rem .6rem; border-radius: 6px;
  transform: rotate(4deg); box-shadow: var(--shadow-sm);
}

/* 9. BEFORE / AFTER ======================================================= */
.ba-grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr)); }
.ba {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.ba__pair { position: relative; display: grid; grid-template-columns: 1fr 1fr; }
.ba__half { position: relative; aspect-ratio: 4 / 3; background: var(--grey-100); }
.ba__half img { width: 100%; height: 100%; object-fit: cover; }
.ba__tag {
  position: absolute; top: .5rem; left: .5rem;
  font-family: var(--font-display); font-size: .68rem; letter-spacing: .08em;
  text-transform: uppercase; padding: .28rem .55rem; border-radius: 5px;
}
.ba__half--before .ba__tag { background: var(--ink); color: #fff; }
.ba__half--after  .ba__tag { background: var(--lime-500); color: var(--forest-900); left: auto; right: .5rem; }
.ba__arrow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: var(--lime-500); color: var(--forest-900);
  display: grid; place-content: center;
  box-shadow: 0 0 0 4px #fff;
  z-index: 2;
}
.ba__arrow svg { width: 1.3rem; height: 1.3rem; }
.ba__caption { padding: .85rem 1.1rem; font-weight: 600; color: var(--grey-700); font-size: .97rem; }

/* 10. TESTIMONIALS ======================================================== */
.quotes { display: grid; gap: clamp(1.25rem, 2.5vw, 1.75rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.quote {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.25rem;
  position: relative;
}
.section:not(.section--dark) .quote { background: #fff; border-color: var(--border); box-shadow: var(--shadow-sm); }
.quote__mark { font-family: var(--font-display); font-size: 3rem; line-height: .6; color: var(--lime-500); display: block; margin-bottom: .5rem; }
.quote p { font-size: 1.02rem; }
.quote__by {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  margin-top: 1rem; padding-top: .85rem; border-top: 1px solid currentColor;
  border-top-color: rgba(128,128,128,.25);
  font-family: var(--font-flash); font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: .05em;
}
.stars { color: #ffb400; letter-spacing: .1em; font-size: 1rem; font-style: normal; }

/* 11. PRIDE BANNER ======================================================== */
/* Deep forest band with a lime kicker. Sits between two light sections, so it
   needs to be dark to register as a break — the lime trust strip is already
   doing the bright-green job further up the page. */
.pride {
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(140,198,63,.22), transparent 65%),
    linear-gradient(180deg, var(--forest-800), var(--forest-900));
  color: #fff;
  text-align: center;
  padding-block: clamp(1.75rem, 4vw, 2.75rem);
  border-block: 5px solid var(--lime-500);
}
.pride p {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.35rem, 3.6vw, 2.5rem); line-height: 1.05;
}
.pride span {
  font-family: var(--font-flash); font-style: italic; font-weight: 800;
  display: block; margin-top: .3rem; font-size: .8em; color: var(--lime-400);
}

/* 12. SPLIT / FEATURE ROWS ================================================ */
.split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center;
}
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }
.split--reverse .split__media { order: 2; }
@media (max-width: 700px) { .split--reverse .split__media { order: 0; } }

/* Contact page. The quote form is roughly three times the height of the
   contact-details column, so the default `align-items: center` floated that
   column down the middle and left a large empty block above it. Top-align
   instead, give the form the wider track, and let the details stick so the
   phone number stays on screen while the visitor works down the form. */
.split--form {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}
@media (min-width: 981px) {
  .split--form > :first-child { position: sticky; top: 7rem; align-self: start; }
}
@media (max-width: 980px) {
  .split--form { grid-template-columns: minmax(0, 1fr); }
}

.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.stat { text-align: center; }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--lime-500); line-height: 1; }
.stat span { font-family: var(--font-flash); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .92rem; color: var(--grey-700); }
.section--dark .stat span { color: rgba(255,255,255,.72); }

/* 13. AREAS =============================================================== */
.areas__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.areas__list li {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: .4rem 1rem; font-weight: 600; font-size: .97rem; color: var(--grey-700);
}
.section--dark .areas__list li { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.9); }
.areas__list li strong { color: var(--forest-700); }

/* 14. STEPS =============================================================== */
.steps { counter-reset: step; display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }
.step { position: relative; padding-top: 3.75rem; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--lime-500); color: var(--forest-900);
  font-family: var(--font-display); font-size: 1.35rem;
  display: grid; place-content: center;
}
.step h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.step p { color: var(--grey-700); font-size: .99rem; }
.section--dark .step p { color: rgba(255,255,255,.8); }

/* 15. FAQ ================================================================= */
.faq { display: grid; gap: .75rem; }
.faq details {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.05rem 3rem 1.05rem 1.25rem;
  font-weight: 700; font-size: 1.05rem; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 1.15rem; top: 50%;
  width: 1rem; height: 1rem; transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233f9438' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .18s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(135deg); }
.faq details > div { padding: 0 1.25rem 1.2rem; color: var(--grey-700); }
.faq details > div > * + * { margin-top: .75rem; }

/* 16. CTA BAND ============================================================ */
.cta-band {
  background:
    linear-gradient(100deg, rgba(9,32,12,.96), rgba(28,84,35,.9)),
    var(--forest-800);
  color: #fff;
  /* The reviews band is also dark green, so on pages where it sits directly
     above this one the two merged into a single slab. Same lime rule .pride
     uses, so the CTA always reads as its own band whatever precedes it. */
  border-top: 5px solid var(--lime-500);
}
.cta-band__inner {
  display: grid; grid-template-columns: minmax(0,1.3fr) minmax(0,1fr);
  gap: clamp(1.75rem, 4vw, 3rem); align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.cta-band h2 { color: #fff; }
@media (max-width: 820px) { .cta-band__inner { grid-template-columns: 1fr; } }

.contact-tiles { display: grid; gap: .85rem; }
.contact-tile {
  display: flex; align-items: center; gap: .9rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: .9rem 1.1rem;
  color: #fff; text-decoration: none;
  transition: background-color .15s ease, transform .15s ease;
}
.contact-tile:hover { background: rgba(255,255,255,.16); color: #fff; transform: translateX(3px); }
.contact-tile__icon {
  width: 2.5rem; height: 2.5rem; flex: none; border-radius: 50%;
  background: var(--lime-500); color: var(--forest-900);
  display: grid; place-content: center;
}
.contact-tile__icon svg { width: 1.3rem; height: 1.3rem; }
.contact-tile__label { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.6); font-weight: 600; }
.contact-tile__value { font-family: var(--font-display); font-size: 1.15rem; word-break: break-word; }

/* 17. FORMS =============================================================== */
.form-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem); color: var(--text);
  border-top: 6px solid var(--lime-500);
}
.form-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field--full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

/* Grouped sections of the quote form. The form asks a lot of questions so that
   most jobs can be priced without a site visit — grouping keeps that from
   reading as a wall of inputs. */
.form-block {
  border: 0; padding: 0; margin: 0;
  border-top: 1px solid var(--border); padding-top: 1.25rem;
}
.form-block legend {
  padding: 0;
  font-family: var(--font-flash); font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: .06em;
  font-size: 1.05rem; color: var(--forest-700);
  margin-bottom: .75rem;
}
.form-block .hint.mb-1 { display: block; margin-bottom: .85rem; }

.field { display: grid; gap: .35rem; }
.field__label { font-weight: 700; font-size: .95rem; }
.field label { font-weight: 700; font-size: .95rem; }
.field label .req { color: #c0392b; }
.field .hint { font-size: .85rem; color: var(--text-muted); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--text);
  padding: .7rem .85rem;
  border: 2px solid var(--border); border-radius: 10px;
  background: var(--grey-50);
  transition: border-color .15s ease, background-color .15s ease;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--lime-500); background: #fff;
}
.field textarea { min-height: 7.5rem; resize: vertical; }
.field--invalid input, .field--invalid select, .field--invalid textarea { border-color: #c0392b; background: #fdf3f2; }
.field__error { color: #c0392b; font-size: .87rem; font-weight: 600; display: none; }
.field--invalid .field__error { display: block; }

.checkgroup { display: flex; flex-wrap: wrap; gap: .5rem; }
.checkgroup label {
  display: inline-flex; align-items: center; gap: .45rem;
  border: 2px solid var(--border); border-radius: var(--radius-pill);
  padding: .4rem .9rem; cursor: pointer; font-weight: 600; font-size: .95rem;
  background: var(--grey-50);
  transition: all .15s ease;
}
.checkgroup input { accent-color: var(--green-500); width: 1.05rem; height: 1.05rem; }
.checkgroup label:has(input:checked) { border-color: var(--lime-500); background: #f2f9e8; color: var(--forest-700); }

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

.form-status { display: none; border-radius: var(--radius); padding: .9rem 1.1rem; font-weight: 600; margin-bottom: 1rem; }
.form-status[data-state="error"] { display: block; background: #fdecea; color: #922b21; border: 1px solid #f5b7b1; }
.form-status[data-state="success"] { display: block; background: #eafaf1; color: #1d7a45; border: 1px solid #a9dfbf; }
.form-status[data-state="sending"] { display: block; background: var(--grey-100); color: var(--grey-700); }

/* 18. FOOTER ============================================================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); }
/* Explicit tracks, not auto-fit. `repeat(auto-fit, minmax(min(100%,10rem),1fr))`
   alongside an explicit first column resolved to just two ~147px tracks on a
   phone, which is narrower than the wordmark — so the logo overflowed its cell
   and landed on top of the Services column. */
.site-footer__main {
  display: grid; gap: clamp(1.75rem, 3vw, 2.5rem);
  grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr));
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
@media (max-width: 1080px) {
  .site-footer__main { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .site-footer__main > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  /* Brand block gets its own full-width row; the link lists share two. */
  .site-footer__main { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  /* Keep Services | Company side by side — stacking all four blocks made the
     footer about a thousand pixels tall. Only the contact block needs the full
     width, because the email address doesn't fit in half of a 375px screen. */
  .site-footer__main { gap: 1.75rem 1.25rem; }
  .site-footer__main > :last-child { grid-column: 1 / -1; }
  .site-footer a { overflow-wrap: anywhere; }
}
.site-footer h2 {
  font-size: 1rem; color: #fff; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 1rem;
  font-family: var(--font-flash); font-weight: 700; font-style: italic;
}
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.site-footer a { color: rgba(255,255,255,.75); text-decoration: none; }
.site-footer a:hover { color: var(--lime-400); }
.site-footer .brand__name { font-size: 1.7rem; }
.footer-blurb { margin-top: 1rem; max-width: 30ch; font-size: .98rem; }

.socials { display: flex; gap: .6rem; margin-top: 1.25rem; }
.socials a {
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: rgba(255,255,255,.1); display: grid; place-content: center;
  transition: background-color .15s ease, transform .15s ease;
}
.socials a:hover { background: var(--lime-500); transform: translateY(-2px); }
.socials svg { width: 1.3rem; height: 1.3rem; color: #fff; }
.socials a:hover svg { color: var(--forest-900); }

.site-footer__bar {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 1.1rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  align-items: center; justify-content: space-between;
  font-size: .9rem;
}
.footer-slogan {
  background: var(--lime-500); color: var(--forest-900); text-align: center;
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(.85rem, 2.2vw, 1.35rem); letter-spacing: .01em;
  line-height: 1.3; text-wrap: balance;
  /* Without inline padding the second line runs edge to edge on a phone. */
  padding: .85rem var(--gutter);
}

/* 19. STICKY MOBILE CALL BAR ============================================== */
.callbar { display: none; }
@media (max-width: 700px) {
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr;
    position: fixed; inset: auto 0 0 0; z-index: 95;
    box-shadow: 0 -6px 20px rgba(0,0,0,.25);
  }
  .callbar a {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .95rem .5rem; text-decoration: none;
    font-family: var(--font-flash); font-weight: 700; font-style: italic;
    text-transform: uppercase; font-size: 1.1rem; letter-spacing: .03em;
  }
  .callbar__call { background: var(--lime-500); color: var(--forest-900); }
  .callbar__quote { background: var(--forest-800); color: #fff; }
  .callbar svg { width: 1.2rem; height: 1.2rem; }
  body { padding-bottom: 3.6rem; }
}

/* 20. UTILITIES =========================================================== */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.center { text-align: center; }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { margin-top: 2.25rem; }
.prose h3 { margin-top: 1.75rem; }
.prose ul { display: grid; gap: .4rem; }

/* Reveal-on-scroll (progressive enhancement — no JS means always visible) */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

@media print {
  .site-header, .topbar, .callbar, .nav-backdrop, .cta-band, .site-footer__main { display: none; }
  body { color: #000; }
}
