/* =====================================================================
   Turf and Landscaping — north-west Melbourne
   Design system: mobile-first, green + neutral, trade-professional.
   Body copy stays on the system stack for speed; Poppins (self-hosted,
   latin subset only, ~24KB total) is used for headings, nav and buttons
   so the brand has a distinct voice without hurting LCP.
   ===================================================================== */

/* ---------- Display typeface (self-hosted, no external request) ---------- */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/poppins-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/poppins-700.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/poppins-800.woff2") format("woff2");
}

/* ---------- Design tokens ---------- */
:root {
  /* Brand greens (drawn from the logo: deep forest + fresh lime) */
  --green-900: #0e3b23;   /* darkest — footer, headings */
  --green-800: #12472b;
  --green-700: #17663a;   /* primary brand green (buttons) */
  --green-600: #1e7a3f;
  --green-500: #3f9d4f;   /* accent */
  --lime-500:  #6aa84f;   /* the "and" / grass accent */
  --lime-400:  #86c05a;

  /* Neutrals */
  --ink:    #1c2620;      /* body text */
  --slate:  #45544b;      /* secondary text (AA on white) */
  --mist:   #64736a;      /* muted labels */
  --line:   #dde5e0;      /* hairlines */
  --cloud:  #f4f7f4;      /* section tint */
  --sand:   #eef2ec;
  --paper:  #ffffff;

  /* Feedback */
  --gold:   #f5b301;      /* star colour */
  --error:  #b4231d;
  --ok:     #17663a;

  /* Layout */
  --wrap: 1140px;
  --gutter: clamp(1.1rem, 4vw, 2rem);
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(14,59,35,.06), 0 2px 8px rgba(14,59,35,.05);
  --shadow-md: 0 6px 18px rgba(14,59,35,.10), 0 2px 6px rgba(14,59,35,.06);
  --shadow-lg: 0 18px 44px rgba(14,59,35,.16);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Poppins", var(--font);

  --header-h: 76px;
  --bottombar-h: 62px;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 1.0625rem;         /* 17px base — comfortable on mobile */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* leave room for the sticky mobile bottom bar */
  padding-bottom: env(safe-area-inset-bottom);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-decoration-thickness: .08em; text-underline-offset: .15em; }
a:hover { color: var(--green-600); }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--green-900); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; font-weight: 800; }
h1 { font-size: clamp(2rem, 7vw, 3.4rem); }
h2 { font-size: clamp(1.65rem, 5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3.4vw, 1.45rem); }
p  { margin: 0 0 1rem; }

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3rem, 8vw, 5.5rem); }
.section--tint { background: var(--cloud); }
.section__head { max-width: 46rem; margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--font-display); font-size: .8rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green-600); margin-bottom: .7rem;
}
.lead { font-size: clamp(1.05rem, 2.4vw, 1.2rem); color: var(--slate); }
.center { text-align: center; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--green-900); color: #fff; padding: .7rem 1rem; border-radius: 8px;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; color:#fff; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700; line-height: 1.1; text-decoration: none;
  padding: .92rem 1.4rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .06s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  min-height: 48px;                 /* comfortable tap target */
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--green-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-800); color:#fff; }
.btn--call { background: var(--lime-500); color: var(--green-900); }
.btn--call:hover { background: var(--lime-400); color: var(--green-900); }
.btn--ghost { background: transparent; color: var(--green-900); border-color: var(--green-700); }
.btn--ghost:hover { background: var(--green-900); color: #fff; }
.btn--lime { background: var(--lime-500); color: var(--green-900); }
.btn--lime:hover { background: var(--lime-400); color: var(--green-900); }
.btn--ondark { background: #fff; color: var(--green-900); }
.btn--ondark:hover { background: var(--sand); color: var(--green-900); }
.btn--block { width: 100%; }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- Header (white, so the logo sits on its own ground) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  height: var(--header-h);
  display: flex; align-items: center; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; margin-right: auto; }
/* The logo is a wide lockup (~2.06:1) — size it by height and let width follow. */
.brand__logo { height: 58px; width: auto; display: block; }

.primary-nav { display: none; }
.header-cta { display: flex; align-items: center; gap: .6rem; }
.header-call {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--green-700); color: #fff; text-decoration: none;
  font-family: var(--font-display); font-weight: 700; padding: .58rem .9rem; border-radius: 999px; min-height: 44px;
  white-space: nowrap; box-shadow: var(--shadow-sm);
}
.header-call:hover { background: var(--green-800); color: #fff; }
.header-call svg { width: 1.05em; height: 1.05em; }
.header-call__num { font-size: .98rem; }

/* Mobile-only tap-to-call in the header (desktop gets the quote button). */
.header-phone {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--green-700); color: #fff; text-decoration: none;
  font-family: var(--font-display); font-weight: 700; padding: .55rem .85rem; border-radius: 999px; min-height: 44px;
  white-space: nowrap; font-size: .95rem; box-shadow: var(--shadow-sm);
}
.header-phone:hover { background: var(--green-800); color: #fff; }
.header-phone svg { width: 1.05em; height: 1.05em; flex: none; }

/* mobile nav toggle */
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border: 1px solid var(--line); background: #fff;
  border-radius: 10px; cursor: pointer; color: var(--green-900);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* mobile nav drawer */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: .5rem var(--gutter) 1.1rem;
}
.mobile-nav[data-open="true"] { display: block; }
.mobile-nav a {
  display: block; padding: .85rem .25rem; color: var(--green-900); font-family: var(--font-display); font-weight: 600;
  text-decoration: none; border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-of-type { border-bottom: 0; }
.mobile-nav .btn { margin-top: .9rem; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* The hero photo is already dark green, so keep the scrim light or the grass
   disappears. Mobile: a soft even wash. Desktop: weighted to the left, where
   the headline sits, leaving the right side of the photo clear. */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(9,38,23,.30) 0%, rgba(9,38,23,.38) 55%, rgba(9,38,23,.52) 100%);
}
@media (min-width: 820px) {
  .hero::after {
    background:
      linear-gradient(90deg, rgba(9,38,23,.62) 0%, rgba(9,38,23,.40) 42%, rgba(9,38,23,.12) 75%),
      linear-gradient(180deg, rgba(9,38,23,.10), rgba(9,38,23,.28));
  }
}
/* Hero: copy, then the trust points and quote form directly beneath the CTAs.
   On wide screens the form moves alongside so the hero stays a sensible height. */
.hero__inner { padding-block: clamp(2.6rem, 8vw, 4.6rem); display: grid; gap: 2rem; }
.hero__copy { max-width: 44rem; }
.hero h1 { color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.55), 0 1px 30px rgba(0,0,0,.35); }
.hero h1::after {
  content: ""; display: block; width: 3.25rem; height: 4px; margin-top: .9rem;
  background: var(--gold); border-radius: 999px;
}
.hero__sub { font-size: clamp(1.08rem, 2.6vw, 1.3rem); color: #eaf3ea; text-shadow: 0 1px 8px rgba(0,0,0,.5); margin-bottom: 1.7rem; max-width: 34rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__actions .btn { flex: 1 1 auto; min-width: 12rem; }
.hero__rating {
  display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.5rem; margin-bottom: 0;
  font-size: .9rem; font-weight: 600; color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.55);
}
.hero__rating .stars {
  display: inline-block; color: var(--gold); letter-spacing: .05em; line-height: 1;
  background: #fff; padding: .4rem .65rem; border-radius: 999px; box-shadow: var(--shadow-sm);
  text-shadow: none;
}

.hero__panel { max-width: 34rem; }
.hero__trust { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: .55rem; }
.hero__trust li {
  display: flex; align-items: center; gap: .55rem;
  color: #eaf3ea; font-weight: 600; font-size: .97rem;
}
.hero__trust svg { width: 1.25rem; height: 1.25rem; color: var(--lime-400); flex: none; }

.form__title { color: var(--green-900); font-size: 1.5rem; margin-bottom: .25rem; }
.form__intro { color: var(--slate); font-size: .97rem; margin-bottom: 1.2rem; }

/* ---------- Service cards ---------- */
.cards { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__media { aspect-ratio: 16 / 10; background: var(--sand); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 1.3rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .35rem; }
.card__desc { color: var(--slate); margin-bottom: .9rem; }
.card__list { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: .45rem; }
.card__list li { position: relative; padding-left: 1.5rem; color: var(--ink); font-size: .97rem; }
.card__list li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: .8rem; height: .8rem;
  background: var(--lime-500);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M16.7 5.3 8 14l-4.7-4.7 1.4-1.4L8 11.2l7.3-7.3z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M16.7 5.3 8 14l-4.7-4.7 1.4-1.4L8 11.2l7.3-7.3z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.card__link {
  margin-top: auto; font-weight: 700; text-decoration: none; color: var(--green-700);
  display: inline-flex; align-items: center; gap: .35rem;
}
.card__link:hover { gap: .55rem; }
.card__link svg { width: 1em; height: 1em; }

/* ---------- How it works ---------- */
.steps { display: grid; gap: 1.1rem; grid-template-columns: 1fr; counter-reset: step; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.3rem 1.3rem;
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: var(--green-700); color: #fff; font-weight: 800; font-size: 1.2rem;
  margin-bottom: .8rem;
}
.step h3 { margin-bottom: .3rem; }
.step p { color: var(--slate); margin: 0; }

/* ---------- Why us ---------- */
.reasons { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.reason { display: flex; gap: .85rem; align-items: flex-start; }
.reason__icon {
  flex: none; width: 2.6rem; height: 2.6rem; border-radius: 12px;
  background: var(--sand); color: var(--green-700);
  display: inline-flex; align-items: center; justify-content: center;
}
.reason__icon svg { width: 1.4rem; height: 1.4rem; }
.reason h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.reason p { color: var(--slate); margin: 0; font-size: .98rem; }

/* ---------- Reviews ---------- */
.reviews { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.review .stars { color: var(--gold); font-size: 1.05rem; letter-spacing: .06em; margin-bottom: .6rem; }
.review__text { color: var(--ink); margin-bottom: 1rem; }
.review__author { margin-top: auto; font-weight: 700; color: var(--green-900); }
.review__meta { color: var(--mist); font-size: .85rem; }
.reviews__cta { margin-top: 1.6rem; text-align: center; }

/* ---------- Gallery ---------- */
.gallery { display: grid; gap: .7rem; grid-template-columns: repeat(2, 1fr); }
.gallery figure { margin: 0; border-radius: var(--radius-sm); overflow: hidden; background: var(--sand); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .3s ease; }
.gallery figure:hover img { transform: scale(1.04); }

/* ---------- Areas we serve ---------- */
.areas { display: grid; gap: .7rem; grid-template-columns: repeat(2, 1fr); }
.area-link {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1rem 1.1rem; text-decoration: none; color: var(--green-900); font-weight: 700;
  transition: border-color .15s ease, background .15s ease;
}
.area-link:hover { border-color: var(--green-500); background: var(--cloud); color: var(--green-900); }
.area-link svg { width: 1.1em; height: 1.1em; color: var(--green-600); }

/* ---------- FAQ ---------- */
.faq { max-width: 46rem; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; margin-bottom: .7rem; overflow: hidden;
}
.faq details[open] { border-color: var(--green-500); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.05rem 1.2rem;
  font-weight: 700; color: var(--green-900); display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: none; width: 1.2rem; height: 1.2rem; color: var(--green-600); transition: transform .2s ease; }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq__answer { padding: 0 1.2rem 1.15rem; color: var(--slate); }
.faq__answer p:last-child { margin-bottom: 0; }

/* ---------- Closing CTA band ---------- */
.closing { background: var(--green-900); color: #dbeadf; }
.closing h2 { color: #fff; margin-bottom: .4rem; }
.closing p { margin: 0; color: #cfe0d3; font-size: 1.05rem; }
.closing__inner { display: grid; gap: 1.4rem; align-items: center; }
.closing__actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.eyebrow--light { color: var(--lime-400); }

/* ---------- Quote form ---------- */
.form {
  background: #fff; color: var(--ink); border-radius: var(--radius);
  padding: clamp(1.3rem, 4vw, 2rem); box-shadow: var(--shadow-lg);
}
.form__row { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-bottom: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-weight: 700; color: var(--green-900); font-size: .95rem; }
.field .req { color: var(--error); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: #fff;
  border: 1.5px solid var(--line); border-radius: 10px; padding: .8rem .9rem;
  min-height: 48px; width: 100%;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green-500); outline: 3px solid rgba(63,157,79,.25); outline-offset: 0;
}
.field select { appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2317663a'%3E%3Cpath d='M5.5 7.5 10 12l4.5-4.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .8rem center; background-size: 1.2rem; padding-right: 2.6rem;
}
.field--hp { position: absolute; left: -9999px; }  /* honeypot */
.form__consent { font-size: .82rem; color: var(--mist); margin: .2rem 0 1rem; }
.form__status { margin-top: 1rem; font-weight: 600; }
.form__status[data-state="ok"] { color: var(--ok); }
.form__status[data-state="error"] { color: var(--error); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: #c9dccd; padding-block: clamp(2.5rem, 6vw, 3.5rem); }
.site-footer a { color: #eaf3ea; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.brand--footer .brand__logo { height: 72px; }
.footer h4 { color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .9rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer__socials { display: flex; gap: .7rem; margin-top: 1rem; }
.footer__socials a {
  width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
}
.footer__socials a:hover { background: rgba(255,255,255,.16); }
.footer__socials svg { width: 20px; height: 20px; color: #eaf3ea; }
.footer__bottom {
  margin-top: 2.2rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between;
  font-size: .85rem; color: #9db8a4;
}

/* ---------- Sticky mobile bottom bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -4px 16px rgba(14,59,35,.12);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: var(--bottombar-h); font-weight: 800; text-decoration: none; font-size: 1rem;
}
.mobile-bar a svg { width: 1.15em; height: 1.15em; }
.mobile-bar .bar-call { background: var(--lime-500); color: var(--green-900); }
.mobile-bar .bar-quote { background: var(--green-700); color: #fff; }

/* ---------- Sub-page hero (services / suburbs) ---------- */
.page-hero { position: relative; color: #fff; isolation: isolate; }
.page-hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(9,38,23,.6), rgba(9,38,23,.8));
}
.page-hero__inner { padding-block: clamp(2.6rem, 9vw, 4.6rem); }
.page-hero__inner > * { max-width: 46rem; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #eaf3ea; font-size: clamp(1.05rem, 2.4vw, 1.2rem); margin-bottom: 1.3rem; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; }

.breadcrumb { font-size: .85rem; margin-bottom: .9rem; color: #cfe0d3; }
.breadcrumb a { color: #eaf3ea; }
.breadcrumb span { opacity: .7; padding: 0 .35rem; }

/* Prose (sub-page body) */
.prose { max-width: 44rem; }
.prose h2 { margin-top: 2rem; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 1.2rem; margin: 0 0 1.2rem; }
.prose li { margin-bottom: .45rem; }
.prose .lead { margin-bottom: 1.4rem; }

.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1.4rem; }
.chip {
  display: inline-block; background: var(--cloud); border: 1px solid var(--line);
  color: var(--green-900); border-radius: 999px; padding: .35rem .85rem; font-size: .9rem; font-weight: 600;
  text-decoration: none;
}
.chip:hover { border-color: var(--green-500); color: var(--green-900); }

.cta-band { background: var(--green-800); color: #fff; border-radius: var(--radius); padding: clamp(1.6rem,5vw,2.4rem); }
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: #dbeadf; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.1rem; }

/* ---------- Responsive ---------- */
/* Below the desktop breakpoint the sticky bottom bar already carries
   "Get a quote", so the header button is redundant — hide it and give the
   logo the room instead. */
@media (max-width: 819px) {
  .header-call { display: none; }
  .brand__logo { height: 64px; }
}
/* desktop: quote button only, phone lives in the footer + page CTAs */
@media (min-width: 820px) {
  .header-phone { display: none; }
}
@media (max-width: 559px) {
  .brand__logo { height: 60px; }
  .site-header__inner { gap: .5rem; }
}
@media (max-width: 359px) {
  .brand__logo { height: 52px; }
}

@media (min-width: 560px) {
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .areas { grid-template-columns: repeat(3, 1fr); }
  .form__row--2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 820px) {
  /* taller bar so the full logo lockup has breathing room */
  :root { --header-h: 90px; }

  .cards { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .reasons { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
  .hero__inner { grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: start; }
  .hero__panel { justify-self: end; width: 100%; }
  .hero__trust { grid-template-columns: repeat(3, auto); justify-content: start; gap: .5rem 1.3rem; }
  .hero__trust li { font-size: .92rem; }
  .closing__inner { grid-template-columns: 1.4fr auto; gap: 2rem; }
  .closing__actions { justify-content: flex-end; }

  /* header switches to full nav on desktop; hide mobile-only chrome */
  .primary-nav { display: flex; align-items: center; gap: 1.15rem; margin-right: 1.1rem; }
  .primary-nav a {
    text-decoration: none; color: var(--green-900); font-family: var(--font-display); font-weight: 600; font-size: .95rem;
    white-space: nowrap; padding: .35rem 0; border-bottom: 2px solid transparent;
    transition: color .15s ease, border-color .15s ease;
  }
  .primary-nav a:hover, .primary-nav a:focus-visible { color: var(--green-700); border-bottom-color: var(--gold); }
  .nav-toggle { display: none; }
  .header-call__label { display: inline; }
  .header-call__num { font-size: 1.02rem; }
  .brand__logo { height: 78px; }
  .mobile-bar { display: none; }
  body { padding-bottom: 0; }
  .areas { grid-template-columns: repeat(3, 1fr); }
}

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

/* Cards of services can sit 3-up but on the homepage we have 5 — let the grid wrap naturally */
@media (min-width: 820px) {
  .cards--services { grid-template-columns: repeat(3, 1fr); }
}

/* =====================================================================
   BELOW-THE-HERO REFINEMENTS
   Lifts the lower page to match the hero: stronger cards, a connected
   process line, quote-mark reviews and card-style suburb links.
   ===================================================================== */

/* --- Section rhythm --- */
.section__head--center { text-align: center; }
.section__head .lead { margin-bottom: 0; }

/* --- Service cards --- */
.card { border-radius: 16px; }
.card__media { position: relative; aspect-ratio: 16 / 11; }
.card__media::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 45%;
  background: linear-gradient(to top, rgba(14,59,35,.45), transparent);
}
.card__body { padding: 1.4rem; }
.card__body h3 { font-size: 1.28rem; }
.card__link {
  padding-top: .9rem; border-top: 1px solid var(--line); width: 100%;
  justify-content: space-between;
}
.card:hover { box-shadow: 0 14px 30px rgba(14,59,35,.14); }

/* --- How we work: numbered steps joined by a line --- */
.steps { position: relative; }
.step {
  border: 0; background: transparent; padding: 0; text-align: center;
}
.step__num {
  width: 3.4rem; height: 3.4rem; font-size: 1.35rem;
  margin: 0 auto .9rem; box-shadow: 0 0 0 7px #fff;
  position: relative; z-index: 1;
}
.step h3 { font-size: 1.15rem; }
.step p { font-size: .97rem; }

/* --- Reviews --- */
.review { border-radius: 16px; padding: 1.6rem 1.4rem; position: relative; }
.review::before {
  content: "\201C"; position: absolute; top: .1rem; right: 1.1rem;
  font-size: 4.2rem; line-height: 1; color: var(--sand); font-family: Georgia, serif;
}
.review__text { position: relative; z-index: 1; }
.review__author { font-size: 1.02rem; }

/* --- Areas we serve: card-style links --- */
.area-link { padding: 1.15rem 1.2rem; border-radius: 12px; font-size: 1.02rem; }
.area-link:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.area-link { transition: border-color .15s ease, background .15s ease, transform .12s ease, box-shadow .15s ease; }

/* --- FAQ --- */
.faq { max-width: 52rem; margin-inline: auto; }
.faq details { border-radius: 12px; }
.faq summary { padding: 1.15rem 1.3rem; font-size: 1.03rem; }

/* --- Gallery --- */
.gallery { gap: .85rem; }
.gallery figure { border-radius: 12px; }

@media (min-width: 820px) {
  /* connector line running behind the numbered steps */
  .steps::before {
    content: ""; position: absolute; top: 1.7rem; left: 12.5%; right: 12.5%;
    height: 2px; background: var(--line); z-index: 0;
  }
  .step { position: relative; z-index: 1; }
}

/* Hero: single prominent call button, with a nudge toward the form */
.btn--lg { padding: 1.05rem 1.7rem; font-size: 1.08rem; min-height: 56px; }
.hero__actions { align-items: center; }

/* --- Quote form: photo upload --- */
.field__opt { font-weight: 600; color: var(--mist); font-size: .85rem; }
.field__note { font-size: .82rem; color: var(--mist); margin: .1rem 0 0; }
.field__file {
  font: inherit; color: var(--slate); background: var(--cloud);
  border: 1.5px dashed var(--line); border-radius: 10px;
  padding: .7rem .9rem; width: 100%; min-height: 48px; cursor: pointer;
}
.field__file:hover { border-color: var(--green-500); background: var(--sand); }
.field__file::file-selector-button {
  font: inherit; font-weight: 700; cursor: pointer;
  background: var(--green-700); color: #fff; border: 0;
  border-radius: 999px; padding: .45rem 1rem; margin-right: .8rem;
}
.field__file::file-selector-button:hover { background: var(--green-800); }
.filelist { list-style: none; margin: .55rem 0 0; padding: 0; display: grid; gap: .3rem; }
.filelist li {
  font-size: .85rem; color: var(--green-900); background: var(--sand);
  border-radius: 8px; padding: .4rem .6rem; word-break: break-word;
}

/* Quote form heading set in caps */
.form__title { text-transform: uppercase; letter-spacing: .04em; font-size: 1.35rem; }

/* --- Two-step quote form --- */
.steps-bar {
  list-style: none; margin: 0 0 1.3rem; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
}
.steps-bar__item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem; font-weight: 700; color: var(--mist);
  padding-top: .6rem; border-top: 3px solid var(--line);
}
.steps-bar__item span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.5rem; height: 1.5rem; border-radius: 50%; flex: none;
  background: var(--line); color: var(--slate); font-size: .8rem;
}
.steps-bar__item.is-active { color: var(--green-900); border-top-color: var(--green-700); }
.steps-bar__item.is-active span { background: var(--green-700); color: #fff; }
.steps-bar__item.is-done { color: var(--green-700); border-top-color: var(--lime-500); }
.steps-bar__item.is-done span { background: var(--lime-500); color: var(--green-900); }

.form__nav { display: flex; gap: .7rem; }
.form__nav .btn--ghost { flex: 0 0 auto; }
.form__nav .btn--primary { flex: 1; }
