/* =========================================================
   Lawns and More Landscaping — lawnsandmore.com.au
   Design language follows the "coastal-lawns" template:
     · Bebas Neue display + Playfair Display accents + Plus Jakarta body
     · Warm off-white/cream canvas, layered greens, wave dividers, blobs
   Improved for a landscaping/hardscaping brand (paving, limestone,
   retic, turf), multi-page, accessible, and "not dark" — deep green
   in place of black. Engineering patterns (a11y nav, Web3Forms flow,
   SEO, reveal-on-scroll) applied throughout.
   ========================================================= */

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

:root {
  --off-white:   oklch(97% 0.008 120);
  --cream:       oklch(95% 0.014 95);
  /* Darker, richer "astro" green palette. */
  --green-dark:  oklch(33% 0.10 150);
  --green-deep:  oklch(27% 0.085 152);   /* footer / deepest band (green, not black) */
  --green-mid:   oklch(41% 0.12 150);
  --green-bright:oklch(48% 0.14 150);
  --green-light: oklch(70% 0.125 150);
  --green-pale:  oklch(89% 0.07 146);
  --green-wash:  oklch(95% 0.03 146);
  --sand:        oklch(80% 0.055 78);   /* warm limestone accent */
  --sand-soft:   oklch(93% 0.03 82);
  --clay:        oklch(58% 0.12 55);    /* warm terracotta accent (sparing) */
  --ink:         oklch(24% 0.02 145);
  --ink-2:       oklch(42% 0.03 145);
  --ink-3:       oklch(55% 0.03 145);
  --white:       #ffffff;
  --line:        oklch(88% 0.02 130);

  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-serif:   "Playfair Display", Georgia, serif;
  --font-body:    "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1440px;
  --gutter: clamp(20px, 5vw, 60px);
  --section-y: clamp(64px, 8vw, 104px);

  /* Sharper corners than a typical rounded UI — landscaping/hardscape reads
     cleaner with crisper edges. Kept just soft enough to not feel harsh. */
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 8px;
  --r-xl: 10px;
  --r-pill: 100px;

  --shadow-sm: 0 2px 8px rgba(20,50,30,.06), 0 1px 3px rgba(20,50,30,.05);
  --shadow-md: 0 8px 30px rgba(20,50,30,.1), 0 2px 8px rgba(20,50,30,.06);
  --shadow-lg: 0 18px 52px rgba(20,50,30,.14), 0 4px 14px rgba(20,50,30,.08);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
  overflow-x: clip;
  overscroll-behavior-x: none;
}
body {
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}
@supports not (overflow: clip) { html, body { overflow-x: hidden; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--green-mid); color: #fff; }
:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 3px; border-radius: 4px; }

/* ---------- shared type ---------- */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.005em;
  text-wrap: balance;
  color: var(--ink);
}
.display em { font-style: normal; color: var(--green-mid); }
.script {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: var(--green-mid);
  letter-spacing: -0.01em;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-bright);
  display: inline-block;
}
.eyebrow--light { color: var(--green-light); }

h1 { font-size: clamp(3rem, 6.5vw, 5.4rem); }
h2 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }

.head { max-width: 720px; margin-bottom: 52px; }
.head .eyebrow { margin-bottom: 14px; }
.head--center { margin-inline: auto; text-align: center; }
.head p { margin-top: 16px; color: var(--ink-2); font-size: 1.02rem; }
/* header with a heading on the left and a small action on the right */
.head--split { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px 32px; }
.head--split > div { max-width: 720px; }
@media (max-width: 720px){ .head--split { flex-direction: column; align-items: flex-start; } }

/* ---------- skip link ---------- */
.skip { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.skip:focus {
  position: fixed; left: 16px; top: 16px; width: auto; height: auto; overflow: visible; clip-path: none;
  z-index: 300; background: var(--green-deep); color: #fff; padding: 12px 20px; border-radius: var(--r-sm);
}

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

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: .82rem;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 6px; border: 2px solid transparent; cursor: pointer;
  transition: background .22s, color .22s, border-color .22s,
    transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .22s; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--green-dark); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-bright); box-shadow: var(--shadow-md); }
.btn--light { background: #fff; color: var(--green-dark); box-shadow: var(--shadow-sm); }
.btn--light:hover { background: var(--green-wash); }
.btn--ghost { border-color: var(--green-mid); color: var(--green-dark); }
.btn--ghost:hover { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }
.btn--ghost-light { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--sm { padding: 11px 20px; font-size: .74rem; }
.btn--pill { border-radius: var(--r-pill); }
.arrow { width: 15px; height: 15px; flex: none; }

/* underline-style text link (from template's .btn-ghost) */
.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .82rem; letter-spacing: .07em; text-transform: uppercase;
  color: var(--green-dark); border-bottom: 2px solid var(--green-mid); padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}
.tlink:hover { color: var(--green-bright); border-color: var(--green-bright); }

/* ---------- wave dividers ---------- */
.wave { display: block; line-height: 0; font-size: 0; margin-bottom: -1px; }
.wave svg { display: block; width: 100%; height: auto; }
/* remove sub-pixel seams */
.wave + section, .wave + footer { margin-top: -1px; }

/* ---------- top contact bar (sticky) ---------- */
.topbar {
  position: sticky; top: 0; z-index: 200;
  background: var(--green-deep); color: var(--green-light); font-size: .8rem;
}
.topbar__in {
  max-width: var(--wrap); margin-inline: auto; padding: 8px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  min-height: 38px;
}
.topbar a { color: #fff; display: inline-flex; align-items: center; gap: 7px; font-weight: 500; }
.topbar a:hover { color: var(--green-light); }
.topbar__left, .topbar__meta { display: inline-flex; align-items: center; gap: 18px; }
.topbar__est { color: #fff; font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }
.topbar__est svg { color: var(--green-light); }
.topbar svg { width: 14px; height: 14px; opacity: .9; }
.topbar__sep { opacity: .4; }
@media (max-width: 860px){ .topbar__est { display: none; } }
@media (max-width: 720px){
  .topbar__meta a:not(.topbar__abn) { display: none; }  /* Facebook + Maps: desktop only */
  .topbar__left { order: 2; }   /* phone number -> right */
  .topbar__meta { order: 1; }   /* ABN -> left */
  .topbar__in { gap: 10px; }
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 38px; z-index: 100;
  background: rgba(252,251,247,.82);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.nav.is-stuck { background: rgba(252,251,247,.95); box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 6px 26px rgba(20,50,30,.06); border-bottom-color: var(--line); }
.nav__in { max-width: var(--wrap); margin-inline: auto; padding: 12px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 18px; position: relative; }

.brand { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
/* "Lawns and More" is the small line; "Landscaping" is the big word so nobody
   mistakes them for a mowing-only outfit. */
.brand__name { font-family: var(--font-body); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--green-bright); font-weight: 700; margin-bottom: 3px; }
.brand__sub { font-family: var(--font-display); font-size: 1.68rem; letter-spacing: .03em; color: var(--green-dark); }

.nav__links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav__links > li { position: relative; }
.nav__links a, .nav__trigger {
  font-family: var(--font-body); font-weight: 500; font-size: .84rem; letter-spacing: .01em;
  color: var(--ink-2); padding: 8px 15px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  background: none; border: none; transition: color .2s, background .2s;
}
.nav__links a:hover, .nav__links a[aria-current="page"], .nav__trigger:hover { color: var(--green-dark); background: var(--green-wash); }
.nav__trigger svg { width: 10px; height: 10px; color: var(--ink-3); transition: transform .24s; }
.nav__item.is-open .nav__trigger svg { transform: rotate(180deg); }
.nav__item.is-open .nav__trigger { color: var(--green-dark); background: var(--green-wash); }

.nav__right { display: inline-flex; align-items: center; gap: 12px; }

/* dropdown menu */
.menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 270px; list-style: none;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  padding: 8px; display: grid; gap: 2px; z-index: 130;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.nav__item--right .menu { left: auto; right: 0; }
.nav__item.is-open .menu { opacity: 1; visibility: visible; transform: none; }
@media (hover: hover) and (min-width: 981px){
  .nav__item:hover .menu { opacity: 1; visibility: visible; transform: none; }
  .nav__item:hover .nav__trigger svg { transform: rotate(180deg); }
}
.menu a {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 11px 14px; border-radius: var(--r-sm); font-size: .86rem; font-weight: 500; color: var(--ink);
  white-space: nowrap; transition: background .16s, color .16s;
}
.menu a[aria-current="page"], .menu a:hover, .menu a:focus-visible { background: var(--green-wash); color: var(--green-dark); }
.menu a span { font-size: .72rem; color: var(--ink-3); font-weight: 400; }

/* hamburger (two bars → X, right side) */
.nav__toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  align-items: center; justify-content: flex-end; padding-right: 12px; flex: none;
}
.nav__toggle span { position: relative; display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--green-dark); transform: translateY(-3.5px); transition: transform .3s cubic-bezier(.4,0,.2,1); }
.nav__toggle span::after { content: ""; position: absolute; right: 0; top: 7px; width: 13px; height: 2px; border-radius: 2px; background: var(--green-dark); transition: transform .3s cubic-bezier(.4,0,.2,1), width .3s, top .3s; }
.nav__toggle[aria-expanded="true"] span { transform: translateY(0) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { top: 0; width: 20px; transform: rotate(-90deg); }

/* mobile dropdown panel */
.nav__panel { display: none; }
@media (max-width: 980px){
  .nav__links, .nav__right .btn { display: none; }
  .nav__toggle { display: flex; }
  .nav__panel {
    position: absolute; left: var(--gutter); right: var(--gutter); top: calc(100% + 2px);
    background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
    padding: 14px; max-height: min(64vh, 540px); overflow-y: auto; z-index: 120;
  }
  .nav__panel.is-open { display: block; }
  .nav__mlist { list-style: none; display: grid; gap: 2px; }
  .nav__mlist > li > a { display: block; padding: 13px 14px; border-radius: var(--r-sm); font-size: .98rem; font-weight: 500; color: var(--ink); }
  .nav__mlist > li > a:hover { background: var(--green-wash); color: var(--green-dark); }
  .nav__mgroup summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 13px 14px; border-radius: var(--r-sm); font-size: .98rem; font-weight: 500; color: var(--ink); }
  .nav__mgroup summary::-webkit-details-marker { display: none; }
  .nav__mgroup summary::after { content: ""; width: 8px; height: 8px; border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3); transform: rotate(45deg) translate(-2px,-2px); transition: transform .22s; }
  .nav__mgroup details[open] summary { color: var(--green-dark); }
  .nav__mgroup details[open] summary::after { transform: rotate(-135deg) translate(-2px,-2px); border-color: var(--green-bright); }
  .nav__mgroup ul { list-style: none; display: grid; gap: 2px; padding-left: 10px; border-left: 1px solid var(--line); margin: 4px 0 8px 14px; }
  .nav__mgroup ul a { display: block; font-size: .9rem; font-weight: 400; color: var(--ink-2); padding: 10px 12px; }
  .nav__mgroup ul a span { display: none; }
  .nav__panel .btn { display: flex; width: 100%; margin-top: 12px; }
  .nav__panel.is-open > * > li, .nav__panel.is-open > .btn { animation: navIn .42s cubic-bezier(.22,1,.36,1) both; }
  .nav__panel.is-open > * > li:nth-child(1){ animation-delay: .03s; }
  .nav__panel.is-open > * > li:nth-child(2){ animation-delay: .07s; }
  .nav__panel.is-open > * > li:nth-child(3){ animation-delay: .11s; }
  .nav__panel.is-open > * > li:nth-child(4){ animation-delay: .15s; }
  .nav__panel.is-open > * > li:nth-child(5){ animation-delay: .19s; }
  .nav__panel.is-open > * > li:nth-child(6){ animation-delay: .23s; }
  .nav__panel.is-open > .btn { animation-delay: .27s; }
}
@keyframes navIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }

/* ---------- hero (full-bleed image, ~4/5 of the fold) ---------- */
/* When a real photo is ready, set the image on .hero__photo:
     <div class="hero__photo" style="--hero-img:url('hero.jpg')"> */
.hero { position: relative; }
.hero__photo {
  position: relative;
  min-height: min(82vh, 780px);
  background: var(--hero-img, linear-gradient(118deg, var(--green-deep) 0%, var(--green-mid) 58%, var(--green-bright) 118%)) center/cover no-repeat;
  overflow: hidden;
}
/* faint texture only shows when no photo is set */
.hero__photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 24px, transparent 24px 48px);
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(96deg, rgba(14,38,24,.86) 0%, rgba(14,38,24,.6) 42%, rgba(14,38,24,.2) 74%, rgba(14,38,24,.05) 100%);
}
.hero__overlay { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; }
.hero__overlay .wrap { width: 100%; }
.hero__content { max-width: 720px; }
.hero__eyebrow { margin-bottom: 16px; color: #cfe6c6; }
.hero h1 { color: #fff; margin-bottom: 0; }
.hero__script { font-family: var(--font-serif); font-style: italic; font-weight: 700; font-size: clamp(1.3rem,2.4vw,1.75rem); color: #d7ecce; display: block; margin-top: 14px; letter-spacing: -0.01em; }
.hero__desc { margin-top: 22px; font-size: 1.04rem; line-height: 1.62; color: rgba(255,255,255,.9); max-width: 50ch; }
.hero__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__trust { margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2); display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px; }
.hero__rating { display: inline-flex; align-items: center; gap: 9px; font-size: .9rem; color: rgba(255,255,255,.9); }
.hero__rating .gmark { width: 22px; height: 22px; }
.hero__rating b { color: #fff; font-weight: 700; }
.hero__since { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: #fff; }
.hero__since svg { width: 19px; height: 19px; color: #d7ecce; }
.hero__note { position: absolute; right: 14px; bottom: 11px; z-index: 2; font-size: .62rem; letter-spacing: .04em; color: rgba(255,255,255,.5); }
@media (max-width: 680px){ .hero__photo { min-height: min(88vh, 660px); } }

/* ---------- review ticker strip (slim bar between hero and services) ---------- */
.ticker { background: #fff; border-bottom: 1px solid var(--line); overflow: hidden; }
.ticker__track { display: flex; width: max-content; animation: ticker 46s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item { display: inline-flex; align-items: center; gap: 12px; padding: 12px 46px; white-space: nowrap; font-size: .9rem; color: var(--ink-2); }
.ticker__item .gmark { width: 18px; height: 18px; }
.ticker__item .stars { color: #e8a13c; letter-spacing: 1px; flex: none; }
.ticker__item q { font-style: italic; color: var(--ink); quotes: "\201C" "\201D"; }
.ticker__item b { color: var(--green-dark); font-weight: 600; }
.ticker__sep { color: var(--green-pale); }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){
  .ticker__track { animation: none; }
  .ticker { overflow-x: auto; }
}

/* ---------- image placeholders ---------- */
.ph {
  position: relative; width: 100%; height: 100%; min-height: 170px;
  background: repeating-linear-gradient(45deg, transparent 0 20px, oklch(78% .09 140 / .16) 20px 21px), var(--green-pale);
  display: grid; place-content: center; justify-items: center; gap: 8px; padding: 22px; text-align: center; color: var(--green-mid); overflow: hidden;
}
.ph svg { width: 30px; height: 30px; color: var(--green-mid); opacity: .8; position: relative; z-index: 1; }
.ph__label { position: relative; z-index: 1; font-size: .78rem; font-weight: 600; color: var(--green-dark); line-height: 1.4; max-width: 26ch; }
.ph__file { position: relative; z-index: 1; font-size: .66rem; color: var(--ink-3); }
.ph--round { border-radius: 50%; aspect-ratio: 1; }

/* ---------- callout (big headline + 2x2 cards) ---------- */
.callout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,60px); align-items: center; }
.callout__text .script { display: block; font-size: clamp(1.5rem,2.6vw,2rem); margin-bottom: 8px; }
.callout__text .display { font-size: clamp(3rem,6.5vw,6rem); color: var(--green-dark); }
.callout__text .display em { color: var(--green-bright); }
.callout__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.callout__card { aspect-ratio: 4/3; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s; }
.callout__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.callout__card .ph { min-height: 100%; }

/* ---------- info strip + icon row ---------- */
.infostrip { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,56px); }
.infocol h3 { font-family: var(--font-body); font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.infocol__hi { font-size: 1.05rem; font-weight: 600; color: var(--green-bright); margin-bottom: 6px; }
.infocol p { font-size: .92rem; line-height: 1.65; color: var(--ink-2); max-width: 52ch; }
.infocol a { color: var(--green-dark); font-weight: 500; }
/* Trust "seal" badges — circular green medallions with a white ring, so they
   read as designed badges rather than a default line-icon strip. */
.iconrow { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px 14px; margin-top: 36px; }
.iconcell { display: flex; flex-direction: column; align-items: center; gap: 13px; text-align: center; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--green-deep); padding: 0; }
.iconcell svg {
  width: 62px; height: 62px; padding: 17px; box-sizing: border-box; flex: none;
  background: radial-gradient(130% 130% at 30% 18%, var(--green-mid), var(--green-deep));
  color: #fff; border-radius: 50%; border: 4px solid var(--paper);
  box-shadow: 0 6px 16px rgba(20,50,30,.18), 0 0 0 1px var(--line);
  transition: transform .28s cubic-bezier(.34,1.4,.64,1), box-shadow .28s ease;
}
.iconcell:hover svg { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(20,50,30,.24), 0 0 0 1px var(--green-pale); }
@media (max-width: 720px){ .iconrow { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px){ .iconrow { grid-template-columns: 1fr; } }

/* ---------- services grid (numbered cards) ---------- */
.services { position: relative; overflow: hidden; }
/* light variant (bright, hardscaping) */
.services--light { background: var(--cream); }
.svcgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.svc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 22px 28px;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow .25s, transform .22s ease, border-color .25s;
}
.svc:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--green-pale); }
.svc__media { width: 100%; aspect-ratio: 4 / 3; border-radius: var(--r-sm); margin-bottom: 20px; overflow: hidden; }
.svc__media .ph { min-height: 100%; }
.svc__num { font-family: var(--font-display); font-size: 1.05rem; color: var(--green-bright); letter-spacing: .1em; margin-bottom: 4px; display: block; }
.svc h3 { font-family: var(--font-display); font-size: 1.85rem; letter-spacing: .02em; color: var(--ink); margin-bottom: 9px; line-height: 1; }
.svc p { font-size: .92rem; line-height: 1.62; color: var(--ink-2); }
.svc p .kw { color: var(--green-dark); font-weight: 600; }
.svc__more { margin-top: 18px; align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: .78rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--green-dark); background: none; border: none; padding: 0; cursor: pointer; }
.svc__more svg { width: 14px; height: 14px; transition: transform .22s; }
.svc__more:hover svg { transform: translate(3px,-3px); }
.svc__blob { position: absolute; top: -120px; right: -120px; width: 460px; height: 460px; background: oklch(60% .12 148 / .1); border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%; pointer-events: none; z-index: 0; }

/* ---------- service rows (services page): picture card + copy, alternating ---------- */
.srow { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(28px, 4vw, 60px); align-items: center; scroll-margin-top: 120px; }
.srow + .srow { margin-top: clamp(48px, 6vw, 88px); }
.srow--rev .srow__media { order: 2; }
.srow__media { aspect-ratio: 4 / 3; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); }
.srow--rev .srow__media { aspect-ratio: 5 / 4; }   /* slight asymmetry between rows */
.srow__media .ph { min-height: 100%; }
.srow__num { display: inline-block; font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .1em; color: var(--green-bright); margin-bottom: 6px; }
.srow__body h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 2.9rem); color: var(--ink); line-height: 1; margin-bottom: 12px; }
.srow__lead { font-size: 1.06rem; line-height: 1.55; color: var(--ink); font-weight: 500; margin-bottom: 18px; }
.srow__points { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px 18px; margin: 0 0 20px; }
.srow__points li { display: flex; gap: 9px; font-size: .9rem; color: var(--ink-2); }
.srow__points svg { width: 18px; height: 18px; color: var(--green-mid); flex: none; margin-top: 2px; }
.srow__body p { font-size: .95rem; line-height: 1.72; color: var(--ink-2); margin-bottom: 20px; }
.srow__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.srow__cta .btn svg { width: 14px; height: 14px; }
@media (max-width: 860px){
  .srow, .srow--rev { grid-template-columns: 1fr; }
  .srow--rev .srow__media { order: 0; }
  .srow__points { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){ .srow__points { grid-template-columns: 1fr; } }

/* ---------- feature/why cards ---------- */
.why { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.feat { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feat__ic { width: 50px; height: 50px; border-radius: 13px; background: var(--green-wash); color: var(--green-dark); display: grid; place-items: center; margin-bottom: 18px; }
.feat__ic svg { width: 24px; height: 24px; }
.feat h3 { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: .02em; margin-bottom: 8px; color: var(--ink); }
.feat p { font-size: .88rem; line-height: 1.6; color: var(--ink-2); }

/* ---------- work slider ---------- */
.work { background: var(--off-white); overflow: hidden; }
.slider { position: relative; overflow: hidden; padding: 6px 0 16px; }
.work__track { display: flex; gap: 22px; padding-inline: var(--gutter); transition: transform .6s cubic-bezier(.25,.46,.45,.94); will-change: transform; }
.work__slide { flex: 0 0 calc(50% - 11px); aspect-ratio: 16 / 10; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); flex-shrink: 0; }
@media (max-width: 760px){ .work__slide { flex: 0 0 calc(100% - 0px); } }
.work__slide .ph { min-height: 100%; }
.slider__controls { display: flex; justify-content: center; gap: 16px; align-items: center; padding: 26px var(--gutter) 0; }
.slider__btn { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--green-mid); background: #fff; color: var(--green-dark); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .22s, color .22s, transform .18s cubic-bezier(.34,1.56,.64,1); flex-shrink: 0; box-shadow: var(--shadow-sm); }
.slider__btn:hover { background: var(--green-dark); color: #fff; transform: scale(1.08); }
.slider__btn svg { width: 18px; height: 18px; }
.slider__count { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .06em; color: var(--ink-3); min-width: 54px; text-align: center; }

/* ---------- team ---------- */
.team-sec { background: var(--cream); }
.team { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.tcard { background: #fff; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); transition: box-shadow .25s, transform .25s cubic-bezier(.34,1.56,.64,1); }
.tcard:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.tcard__photo { aspect-ratio: 4/5; }
.tcard__photo .ph { min-height: 100%; }
.tcard__info { padding: 22px 22px 24px; }
.tcard__info h3 { font-family: var(--font-serif); font-weight: 700; font-size: 1.3rem; color: var(--ink); margin-bottom: 3px; }
.tcard__role { font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--green-bright); display: block; margin-bottom: 10px; }
.tcard__info p { font-size: .88rem; line-height: 1.6; color: var(--ink-2); }

/* ---------- reviews (green band + slider) ---------- */
.reviews { background: var(--green-dark); position: relative; overflow: hidden; }
/* subtle topographic contour lines — landscape-design language, not lawn */
.reviews::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='170' viewBox='0 0 260 170'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.045' stroke-width='1.5'%3E%3Cpath d='M0 32 C65 8 195 56 260 32'/%3E%3Cpath d='M0 74 C65 50 195 98 260 74'/%3E%3Cpath d='M0 116 C65 92 195 140 260 116'/%3E%3Cpath d='M0 158 C65 134 195 182 260 158'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 260px 170px;
}
.reviews > * { position: relative; z-index: 1; }
.reviews .eyebrow { color: var(--green-light); }
.reviews h2 { color: #fff; }
.reviews h2 em { color: var(--green-light); }
.reviews__rating { display: flex; align-items: center; gap: 11px; margin-top: 16px; }
.reviews__rating .gmark { width: 26px; height: 26px; }
.reviews__rating b { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: .04em; color: #fff; }
.reviews__rating span { font-size: .82rem; color: var(--green-light); }
.rcard__top .gmark { width: 24px; height: 24px; }
.reviews__track { display: flex; gap: 20px; padding-inline: var(--gutter); transition: transform .55s cubic-bezier(.25,.46,.45,.94); will-change: transform; }
.rcard { flex: 0 0 calc(33.333% - 14px); background: oklch(37% .095 150); border: 1px solid oklch(45% .11 150); border-radius: var(--r-lg); padding: 26px; flex-shrink: 0; display: flex; flex-direction: column; min-height: 250px; box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.rcard__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.rcard__stars { color: #f2b53c; letter-spacing: 2px; font-size: 1rem; margin-bottom: 12px; }
.rcard__q { font-family: var(--font-serif); font-size: 1.8rem; line-height: .8; color: var(--green-light); }
.rcard blockquote { font-size: .92rem; line-height: 1.62; color: oklch(93% .02 140); flex-grow: 1; }
.rcard__foot { display: flex; align-items: center; gap: 12px; padding-top: 16px; margin-top: 18px; border-top: 1px solid oklch(44% .095 150); }
.rcard__avatar { width: 40px; height: 40px; border-radius: 50%; background: oklch(48% .12 150); color: #fff; display: grid; place-items: center; font-weight: 600; font-size: .85rem; flex: none; }
.rcard__name { font-weight: 600; font-size: .9rem; color: #fff; display: block; }
.rcard__meta { font-size: .76rem; color: var(--green-light); display: block; }
.reviews__controls { display: flex; gap: 12px; align-items: center; padding: 26px var(--gutter) 0; }
.reviews__controls .slider__btn { border-color: oklch(55% .1 147); color: #fff; background: transparent; }
.reviews__controls .slider__btn:hover { background: #fff; color: var(--green-dark); }
.reviews__controls .slider__count { color: var(--green-light); }

/* simple review strip (location pages) */
.review-strip { display: flex; align-items: center; gap: 22px; max-width: 940px; margin-inline: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 26px; box-shadow: var(--shadow-sm); }
.review-strip__score { display: flex; align-items: center; gap: 9px; flex: none; padding-right: 22px; border-right: 1px solid var(--line); }
.review-strip__score .stars { color: #e8a13c; }
.review-strip__score .gmark { width: 22px; height: 22px; }
.review-strip__score b { font-family: var(--font-display); font-size: 1.3rem; color: var(--green-dark); }
.subhero__rating .gmark { width: 20px; height: 20px; }
.review-strip__q { font-size: .9rem; line-height: 1.6; color: var(--ink-2); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.review-strip__who { font-size: .78rem; color: var(--ink-3); margin-top: 4px; }
.review-strip__who b { color: var(--green-dark); }
@media (max-width: 860px){ .review-strip { flex-wrap: wrap; gap: 12px 14px; } .review-strip__score { border-right: none; padding-right: 0; } .review-strip__body { flex: 1 1 100%; } }

/* ---------- projects gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(12,1fr); gap: 16px; }
.gcard { position: relative; grid-column: span 4; border-radius: var(--r-md); overflow: hidden; min-height: 260px; box-shadow: var(--shadow-sm); }
.gcard--wide { grid-column: span 8; }
.gcard--tall { min-height: 420px; }
.gcard .ph { min-height: 100%; }
.gcard__tag { position: absolute; left: 14px; top: 14px; z-index: 2; font-size: .7rem; font-weight: 600; letter-spacing: .04em; background: rgba(255,255,255,.94); color: var(--green-dark); padding: 7px 13px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm); }
@media (max-width: 860px){ .gcard, .gcard--wide { grid-column: span 6; } }
@media (max-width: 560px){ .gcard, .gcard--wide { grid-column: span 12; } }

/* ---------- quote CTA strip ---------- */
.qcta { max-width: 900px; margin-inline: auto; text-align: center; background: var(--sand-soft); border: 1px solid var(--sand); border-radius: var(--r-lg); padding: 34px 28px; }
.qcta__line { font-family: var(--font-serif); font-weight: 700; font-size: clamp(1.4rem,2.4vw,1.9rem); color: var(--green-dark); margin-bottom: 6px; }
.qcta__sub { font-size: .94rem; color: var(--ink-2); margin-bottom: 22px; }
.qcta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.qcta__or { font-size: .84rem; font-weight: 500; color: var(--ink-3); align-self: center; }
@media (max-width: 520px){ .qcta__actions .btn { flex: 1 1 100%; } .qcta__or { flex: 1 1 100%; text-align: center; } }

/* ---------- locations grid ---------- */
.locs { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.loc { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px; display: flex; flex-direction: column; gap: 12px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s, border-color .25s; }
.loc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-pale); }
.loc__pin { width: 42px; height: 42px; border-radius: 12px; background: var(--green-wash); color: var(--green-dark); display: grid; place-items: center; }
.loc__pin svg { width: 19px; height: 19px; }
.loc h3 { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .02em; }
.loc__subs { font-size: .84rem; color: var(--ink-2); }
.loc__go { margin-top: auto; padding-top: 12px; display: inline-flex; align-items: center; gap: 8px; font-size: .76rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--green-dark); }
.loc__go svg { width: 14px; height: 14px; transition: transform .22s; }
.loc:hover .loc__go svg { transform: translate(3px,-3px); }
.loc__link::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }

/* ---------- contact ---------- */
.contact { background: var(--off-white); position: relative; overflow: hidden; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,80px); align-items: start; }
.contact h2 { color: var(--ink); }
.cdetail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.cdetail__ic { width: 48px; height: 48px; border-radius: 50%; background: var(--green-wash); border: 1px solid var(--green-pale); display: grid; place-items: center; flex: none; color: var(--green-dark); }
.cdetail__ic svg { width: 19px; height: 19px; }
.cdetail strong { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 3px; }
.cdetail a, .cdetail span { font-size: .96rem; color: var(--ink); line-height: 1.5; }
.cdetail a:hover { color: var(--green-bright); }
.hours { display: grid; grid-template-columns: auto auto; gap: 3px 20px; justify-content: start; margin-top: 4px; }
.hours span { font-size: .88rem; color: var(--ink-2); }

/* ---------- form card (Web3Forms) ---------- */
.formcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(26px,4vw,40px); box-shadow: var(--shadow-md); }
.formcard h3 { font-family: var(--font-serif); font-weight: 700; font-size: 1.5rem; color: var(--ink); margin-bottom: 4px; }
.formcard > p { font-size: .9rem; color: var(--ink-2); margin-bottom: 8px; }
.qform { display: grid; gap: 16px; margin-top: 20px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .74rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); }
.field label .opt { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--ink-3); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--font-body); font-size: .92rem; color: var(--ink); background: var(--off-white);
  transition: border-color .2s, box-shadow .2s, background .2s; outline: none;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-mid); background: #fff; box-shadow: 0 0 0 3px oklch(72% .14 148 / .18); }
.field input:not(:placeholder-shown):invalid { border-color: oklch(58% .16 30); }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--ink-2) 50%), linear-gradient(135deg, var(--ink-2) 50%, transparent 50%); background-position: calc(100% - 18px) 55%, calc(100% - 13px) 55%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 38px; }
.qform__bot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip-path: inset(50%) !important; opacity: 0; pointer-events: none; }
.qform .btn { width: 100%; }
.qform__alt { font-size: .8rem; color: var(--ink-3); text-align: center; }
.qform__alt a { color: var(--green-dark); font-weight: 600; }
.qform__done { text-align: center; padding: 16px 6px 6px; }
.qform__tick { width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 50%; background: var(--green-wash); color: var(--green-dark); display: grid; place-items: center; }
.qform__tick svg { width: 24px; height: 24px; }
.qform__done h3 { margin-bottom: 8px; }
.qform__done p { font-size: .88rem; margin-bottom: 20px; color: var(--ink-2); }
.qform__done .btn { width: 100%; }
.qform__error { font-size: .82rem; color: oklch(52% .16 30); text-align: center; }
.qform__error a { font-weight: 600; color: inherit; text-decoration: underline; }

/* ---------- service detail modal ---------- */
.modal { width: min(760px, calc(100vw - 32px)); max-height: min(84vh, 880px); padding: 0; border: none; border-radius: var(--r-lg); background: #fff; box-shadow: 0 30px 90px rgba(20,50,30,.32); overflow: hidden; margin: auto; }
.modal::backdrop { background: oklch(27% .09 148 / .55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.modal[open] { animation: modalIn .28s cubic-bezier(.22,1,.36,1); }
@keyframes modalIn { from { opacity: 0; transform: translateY(14px) scale(.985); } }
.modal__head { position: sticky; top: 0; z-index: 2; background: #fff; border-bottom: 1px solid var(--line); padding: 26px 30px 20px; display: flex; align-items: flex-start; gap: 20px; }
.modal__tag { align-self: flex-start; font-size: .66rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--green-bright); background: var(--green-wash); border-radius: var(--r-pill); padding: 6px 13px; margin-bottom: 12px; display: inline-block; }
.modal__head h2 { font-family: var(--font-display); font-size: 2.2rem; line-height: 1; color: var(--green-dark); }
.modal__head p { font-size: .88rem; margin-top: 9px; max-width: 52ch; color: var(--ink-2); }
.modal__close { flex: none; margin-left: auto; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--ink-2); cursor: pointer; display: grid; place-items: center; transition: background .18s, color .18s, border-color .18s, transform .18s; }
.modal__close:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; transform: rotate(90deg); }
.modal__close svg { width: 16px; height: 16px; }
.modal__body { padding: 26px 30px 32px; overflow-y: auto; max-height: calc(84vh - 150px); overscroll-behavior: contain; }
.modal__body h3 { font-family: var(--font-serif); font-weight: 700; font-size: 1.1rem; margin: 24px 0 8px; color: var(--ink); }
.modal__body h3:first-child { margin-top: 0; }
.modal__body p { font-size: .92rem; line-height: 1.72; color: var(--ink-2); }
.modal__body ul { margin: 8px 0 0; padding-left: 20px; }
.modal__body li { font-size: .92rem; line-height: 1.65; color: var(--ink-2); margin-bottom: 5px; }
.modal__foot { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
@media (max-width: 680px){ .modal { width: calc(100vw - 20px); } .modal__head { padding: 20px; } .modal__head h2 { font-size: 1.8rem; } .modal__body { padding: 20px; } .modal__foot .btn { flex: 1 1 100%; } }

/* ---------- location page: subhero ---------- */
.subhero { position: relative; background: var(--green-dark) url('subhero.jpg') center/cover no-repeat; overflow: hidden; }
/* scrim keeps the white headline readable over the photo */
.subhero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(96deg, rgba(14,38,24,.9) 0%, rgba(14,38,24,.74) 46%, rgba(14,38,24,.46) 100%), radial-gradient(50% 44% at 88% 8%, oklch(52% .16 148 / .3), transparent 60%), radial-gradient(44% 40% at 6% 96%, oklch(58% .12 55 / .18), transparent 60%); }
.subhero__in { position: relative; z-index: 1; padding-block: clamp(40px,6vw,72px); }
.subhero h1 { color: #fff; max-width: 18ch; font-size: clamp(2.8rem,6vw,4.6rem); margin-bottom: 14px; }
.subhero__in > p { color: var(--green-light); max-width: 54ch; margin-top: 0; font-size: 1.02rem; }
.crumbs { display: flex; align-items: center; gap: 9px; font-size: .8rem; color: var(--green-light); margin-bottom: 20px; flex-wrap: wrap; }
.crumbs a:hover { color: #fff; }
.crumbs span { opacity: .5; }
.subhero__actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }
.subhero__proof { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; margin-top: 24px; }
.subhero__rating { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: var(--r-pill); padding: 9px 17px; color: #fff; font-size: .84rem; }
.subhero__rating .stars { color: #f2b53c; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.pill { font-size: .82rem; font-weight: 500; color: #fff; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-pill); padding: 9px 17px; }
.jump { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 7px; margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); }
.jump__label { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--green-light); margin-right: 4px; }
.jump a { font-size: .76rem; font-weight: 500; color: #fff; padding: 6px 12px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,.2); transition: background .18s, border-color .18s, transform .18s; }
.jump a:hover { background: var(--green-bright); border-color: var(--green-bright); transform: translateY(-2px); }

/* location page: prose + aside */
.split { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(36px,5vw,72px); align-items: start; }
.prose { max-width: 68ch; }
.prose h2 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(1.7rem,2.8vw,2.3rem); color: var(--green-dark); line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.01em; }
.prose h3 { font-family: var(--font-serif); font-weight: 700; font-size: 1.35rem; color: var(--green-dark); margin: 40px 0 6px; }
.prose h4 { font-family: var(--font-body); font-weight: 700; font-size: .98rem; letter-spacing: .01em; color: var(--ink); margin: 20px 0 6px; }
.prose p { font-size: .97rem; line-height: 1.72; color: var(--ink-2); }
.prose p + p { margin-top: 15px; }
.prose a { color: var(--green-dark); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--green-pale); transition: color .18s, text-decoration-color .18s; }
.prose a:hover { color: var(--green-bright); text-decoration-color: var(--green-bright); }
.prose__list { list-style: none; display: grid; gap: 12px; margin: 20px 0; }
.prose__list li { display: flex; gap: 11px; font-size: .95rem; color: var(--ink); }
.prose__list svg { width: 20px; height: 20px; color: var(--green-mid); flex: none; margin-top: 2px; }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 30px; position: sticky; top: 100px; box-shadow: var(--shadow-md); }
.aside-card h3 { font-family: var(--font-serif); font-weight: 700; font-size: 1.4rem; color: var(--ink); margin-bottom: 6px; }
.aside-card > p { font-size: .87rem; color: var(--ink-2); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 0 26px; transition: border-color .2s, box-shadow .2s; }
.faq__item[open] { border-color: var(--green-pale); box-shadow: var(--shadow-sm); }
.faq__item:hover { border-color: var(--green-pale); }
.faq__item summary { cursor: pointer; list-style: none; padding: 22px 40px 22px 0; font-weight: 600; font-size: .98rem; color: var(--green-dark); position: relative; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: ""; position: absolute; right: 4px; top: 50%; width: 9px; height: 9px; border-right: 2px solid var(--green-bright); border-bottom: 2px solid var(--green-bright); transform: translateY(-70%) rotate(45deg); transition: transform .22s; }
.faq__item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq__a { padding: 0 0 24px; border-top: 1px solid var(--line); padding-top: 16px; }
.faq__a p { font-size: .92rem; line-height: 1.7; color: var(--ink-2); max-width: 72ch; }

/* ---------- pledge / guarantee ---------- */
.pledge { max-width: 900px; margin-inline: auto; background: var(--sand-soft); border: 1px solid var(--sand); border-radius: var(--r-xl); padding: clamp(36px,5vw,64px); text-align: center; }
.pledge__mark { width: 40px; height: 40px; color: var(--clay); margin: 0 auto 18px; }
.pledge blockquote { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.4rem,2.4vw,2rem); line-height: 1.35; color: var(--green-dark); max-width: 26ch; margin-inline: auto; }
.pledge figcaption { margin-top: 20px; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }

/* ---------- "don't see your suburb" ---------- */
.no-area { max-width: 640px; margin: 40px auto 0; text-align: center; background: #fff; border: 1px dashed var(--green-mid); border-radius: var(--r-lg); padding: 30px 28px; }
.no-area h3 { font-family: var(--font-serif); font-weight: 700; font-size: 1.3rem; color: var(--ink); margin-bottom: 8px; }
.no-area p { font-size: .89rem; max-width: 48ch; margin: 0 auto 22px; color: var(--ink-2); }
.no-area__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
@media (max-width: 680px){ .no-area__actions .btn { flex: 1 1 100%; } }
.other-locs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 8px; }
.other-locs a { font-size: .84rem; font-weight: 500; color: var(--green-dark); background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 10px 20px; transition: border-color .18s, transform .18s; }
.other-locs a:hover { border-color: var(--green-dark); transform: translateY(-2px); }

/* ---------- big CTA banner ---------- */
.cta { background: linear-gradient(155deg, var(--green-mid), var(--green-deep)); border-radius: var(--r-xl); padding: clamp(40px,5vw,64px); display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; position: relative; overflow: hidden; }
.cta::after { content: ""; position: absolute; width: 360px; height: 360px; right: -120px; bottom: -170px; border-radius: 50%; background: rgba(255,255,255,.08); }
.cta h2 { color: #fff; max-width: 16ch; }
.cta__text p { color: rgba(255,255,255,.9); margin-top: 14px; max-width: 42ch; }
.cta__phone { display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; color: #fff; }
.cta__phone b { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: .03em; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }

/* ---------- footer (deep green, not black) ---------- */
.footer { background: var(--green-deep); color: var(--green-light); padding-block: clamp(52px,6vw,80px) 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand__name { color: var(--green-light); }
.footer .brand__sub { color: #fff; }
.footer__blurb { font-size: .88rem; margin-top: 20px; max-width: 34ch; color: var(--green-light); }
.social { display: flex; gap: 14px; margin-top: 20px; }
.social a { color: var(--green-light); display: inline-flex; transition: color .18s, transform .18s; }
.social a:hover { color: #fff; transform: translateY(-2px); }
.social svg { width: 30px; height: 30px; }
.footer h3 { color: #fff; font-family: var(--font-body); font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer a { font-size: .88rem; color: var(--green-light); transition: color .18s; }
.footer a:hover { color: #fff; }
.footer__grid ul a span { display: none; }
.footer__contact li { font-size: .88rem; line-height: 1.6; }
.footer__contact strong { color: #fff; font-weight: 500; }
.footer__hours { opacity: .8; font-size: .82rem; }
.footer__bar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; padding-block: 24px; font-size: .78rem; }
.footer__bar > :first-child { justify-self: start; }
.footer__bar > :nth-child(2) { justify-self: center; text-align: center; }
.footer__bar > :last-child { justify-self: end; text-align: right; }
.footer__bar p { color: var(--green-light); }
.footer__bar a { color: var(--green-light); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,.25); transition: color .18s; }
.footer__bar a:hover { color: #fff; }
.credit a { color: #fff; font-weight: 600; text-decoration: none; }
@media (max-width: 860px){ .footer__bar { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 10px; } .footer__bar > :first-child, .footer__bar > :last-child { justify-self: center; text-align: center; } }

/* ---------- 404 / legal ---------- */
.mid { min-height: 60vh; display: grid; place-content: center; justify-items: center; text-align: center; gap: 22px; padding-block: 80px; }
.legal { padding-block: 52px 68px; }
.legal .wrap { max-width: 820px; }
.legal h1 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(2rem,4vw,2.7rem); color: var(--green-dark); margin-bottom: 6px; }
.legal__date { color: var(--ink-3); font-size: .9rem; margin-bottom: 26px; }
.legal h2 { font-family: var(--font-serif); font-weight: 700; font-size: 1.3rem; color: var(--ink); margin: 32px 0 10px; }
.legal p { margin: 0 0 12px; font-size: .95rem; line-height: 1.75; color: var(--ink-2); }
.legal ul { margin: 0 0 16px; padding-left: 22px; color: var(--ink-2); }
.legal li { margin-bottom: 5px; font-size: .95rem; line-height: 1.7; }
.legal a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }
.crumbs--light { color: var(--ink-3); margin-bottom: 22px; }
.crumbs--light a { color: var(--ink-2); }
.crumbs--light a:hover { color: var(--green-bright); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1080px){
  .svcgrid, .why { grid-template-columns: repeat(2,1fr); }
  .team { grid-template-columns: repeat(2,1fr); }
  .locs { grid-template-columns: repeat(2,1fr); }
  .rcard { flex: 0 0 calc(50% - 10px); }
  .contact__grid, .split, .cta, .callout, .infostrip { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .hero__in { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 560px; }
}
@media (max-width: 680px){
  .svcgrid, .why, .team, .locs { grid-template-columns: 1fr; }
  .rcard { flex: 0 0 calc(100% - 0px); }
  .frow { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
  .hero__actions .btn, .cta__actions .btn, .subhero__actions .btn { flex: 1 1 100%; }
  .hero__media { height: clamp(320px,80vw,440px); }
}
@media (prefers-reduced-motion: reduce){
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .work__track, .reviews__track { transition: none; }
}

/* ---------- homepage services: 7th wide card + mobile slider ---------- */
.svcwrap__controls { display: none; }
.svc--wide { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: clamp(20px, 3vw, 40px); }
.svc--wide .svc__media { flex: 0 0 42%; aspect-ratio: 16 / 10; margin-bottom: 0; }
.svc__wbody { flex: 1; min-width: 0; }
.svc__wbody .svc__num { margin: 0 0 4px; }
.svc__wbody h3 { margin: 0 0 9px; }
@media (max-width: 680px){
  .svcgrid { display: flex; }
  .svc { flex: 0 0 100%; }
  .svc--wide { flex-direction: column; grid-column: auto; align-items: stretch; }
  .svc--wide .svc__media { flex: none; aspect-ratio: 4 / 3; margin-bottom: 20px; }
  .svcwrap__controls { display: flex; }
}

/* service numbering removed per client */
.svc__num, .srow__num { display: none; }

/* review ticker: 10% faster on mobile only */
@media (max-width: 680px){
  .ticker__track { animation-duration: 36.3s; }
}

/* location pages: raise the "The area" section on mobile only (hero untouched) */
@media (max-width: 680px){
  .loc-intro { padding-top: 8px; }
}

/* ---------- projects filter chips ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.filter { font-family: var(--font-body); font-size: .8rem; font-weight: 600; letter-spacing: .04em; padding: 9px 18px; border-radius: var(--r-pill); border: 1.5px solid var(--line); background: #fff; color: var(--green-dark); cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .18s; }
.filter:hover { border-color: var(--green-mid); transform: translateY(-1px); }
.filter.is-active { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }

/* keep the project filters in view while scrolling */
.filters {
  position: sticky;
  top: 100px;
  z-index: 60;
  background: var(--off-white);
  padding: 14px var(--gutter);
  margin: 0 calc(var(--gutter) * -1) 22px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 980px){ .filters { top: 92px; } }
/* release buffer so the bar scrolls off cleanly at the end of the gallery */
[data-projects] { padding-bottom: clamp(24px, 5vw, 56px); }

/* "I'm not a robot" tick box on quote forms */
.qform__check { display: flex; align-items: center; gap: 10px; font-size: .86rem; font-weight: 500; color: var(--ink-2); cursor: pointer; padding: 4px 0; }
.qform__check input { width: 18px; height: 18px; flex: none; accent-color: var(--green-dark); cursor: pointer; }
