/* ═══════════════════════════════════════════════════════
   Ringwood Tree Removal — styles
   ═══════════════════════════════════════════════════════ */

:root {
  --green-950: #0a2318;
  --green-900: #0d2b1e;
  --green-800: #123524;
  --green-700: #1a4a36;
  --green-600: #2a7d52;
  --green-100: #d9efe2;
  --cream: #f7f4ec;
  --cream-dark: #efe9db;
  --ink: #16261e;
  --ink-soft: #47584f;
  --orange: #ff8c1a;
  --orange-hot: #ff6a2a;
  --yellow: #ffd23f;
  --white: #ffffff;
  --radius: 18px;
  --shadow-lg: 0 24px 60px -18px rgba(10, 35, 24, .35);
  --shadow-md: 0 12px 32px -12px rgba(10, 35, 24, .25);
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; }

img, svg { display: block; max-width: 100%; }

.container { width: min(1180px, 92%); margin-inline: auto; }

.icon { width: 1.1em; height: 1.1em; fill: currentColor; flex: none; }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-head); font-weight: 700; text-decoration: none;
  border: 2px solid transparent; border-radius: 999px; cursor: pointer;
  padding: .8em 1.6em; font-size: 1rem; line-height: 1.2;
  transition: transform .25s cubic-bezier(.2,.8,.3,1.2), box-shadow .25s, background .25s, color .25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(.98); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hot) 100%);
  color: #fff; box-shadow: 0 10px 26px -8px rgba(255, 106, 42, .55);
}
.btn-primary:hover { box-shadow: 0 16px 34px -8px rgba(255, 106, 42, .65); }
.btn-outline { border-color: rgba(255,255,255,.4); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(6px); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.14); }
.btn-ghost { color: var(--green-900); background: transparent; }
.btn-ghost:hover { background: var(--green-100); }
.btn-sm { font-size: .9rem; padding: .6em 1.25em; }
.btn-lg { font-size: 1.08rem; padding: .95em 1.9em; }
.btn-block { width: 100%; }

/* ── Top bar ─────────────────────────────── */
.topbar { background: var(--green-950); color: #cfe8d9; font-size: .82rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: .45rem 0; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: .45em; }
.topbar-phone { color: var(--yellow); font-weight: 600; text-decoration: none; }
.topbar-phone:hover { text-decoration: underline; }

/* ── Nav ─────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100; height: var(--nav-h);
  background: rgba(247, 244, 236, .82); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13, 43, 30, .08);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 8px 30px -12px rgba(10,35,24,.18); }
.nav-inner { display: flex; align-items: center; gap: 2rem; height: var(--nav-h); }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--green-800); }
.brand-mark { width: 34px; height: 34px; color: var(--green-600); }
.brand-text { font-family: var(--font-head); font-size: 1.05rem; letter-spacing: -.01em; color: var(--ink); }
.brand-text strong { display: block; font-size: .8em; letter-spacing: .14em; text-transform: uppercase; color: var(--green-600); }
.nav-links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav-links a {
  font-size: .92rem; font-weight: 500; color: var(--ink-soft); text-decoration: none;
  position: relative; padding: .3em 0; white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--orange); border-radius: 2px; transition: width .25s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; gap: .6rem; align-items: center; }
.nav-cta .btn { white-space: nowrap; }
@media (max-width: 1100px) { .nav-cta .btn-ghost { display: none; } }
.nav-burger { display: none; }

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative; min-height: calc(100svh - var(--nav-h) - 34px);
  display: flex; align-items: center;
  background: var(--green-900); color: #fff; overflow: hidden;
  perspective: 1000px;
}
.hero-scene { position: absolute; inset: 0; }
.scene-svg { width: 100%; height: 100%; object-fit: cover; }
.hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,26,18,.88) 0%, rgba(8,26,18,.62) 38%, rgba(8,26,18,.1) 70%, rgba(8,26,18,0) 100%),
    linear-gradient(0deg, rgba(8,26,18,.55) 0%, rgba(8,26,18,0) 30%);
}
.hero-content { position: relative; z-index: 2; padding: clamp(3rem, 8vh, 6rem) 0; }
.hero-copy { max-width: 620px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--yellow); background: rgba(255, 210, 63, .1);
  border: 1px solid rgba(255, 210, 63, .3); border-radius: 999px;
  padding: .5em 1.1em; margin-bottom: 1.4rem;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: pulse 1.8s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, .6); }
  60% { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.1rem); font-weight: 800; letter-spacing: -.025em;
  margin-bottom: 1.2rem; text-wrap: balance;
}
.hero h1 em {
  font-style: normal; color: transparent;
  background: linear-gradient(100deg, var(--yellow), var(--orange));
  -webkit-background-clip: text; background-clip: text;
}
.hero-sub { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: #d5e8dc; max-width: 34em; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 2.6rem; }

.hero-trust { display: flex; gap: clamp(1.2rem, 3vw, 2.6rem); list-style: none; flex-wrap: wrap; }
.hero-trust li { display: flex; flex-direction: column; }
.hero-trust strong { font-family: var(--font-head); font-size: 1.5rem; color: var(--yellow); }
.hero-trust span { font-size: .8rem; color: #b9d4c4; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3;
  width: 28px; height: 46px; border: 2px solid rgba(255,255,255,.4); border-radius: 16px;
}
.scroll-hint span {
  position: absolute; left: 50%; top: 8px; width: 4px; height: 9px; margin-left: -2px;
  border-radius: 2px; background: #fff; animation: scrollhint 1.8s infinite;
}
@keyframes scrollhint { 0% { opacity: 1; transform: translateY(0); } 70% { opacity: 0; transform: translateY(16px); } 100% { opacity: 0; } }

/* ── Hero scene animations ───────────────── */
.cloud-1 { animation: drift 46s linear infinite; }
.cloud-2 { animation: drift 64s linear infinite reverse; }
@keyframes drift { from { transform: translateX(-140px); } to { transform: translateX(1500px); } }

.tree-sway { transform-origin: 730px 760px; animation: sway 7s ease-in-out infinite; }
@keyframes sway { 0%, 100% { transform: rotate(-.5deg); } 50% { transform: rotate(.6deg); } }

.rig-swing { transform-origin: 742px 256px; animation: swing 4.4s ease-in-out infinite; }
@keyframes swing { 0%, 100% { transform: rotate(-3.4deg); } 50% { transform: rotate(3.4deg); } }
.rig-lower { animation: lower 9s ease-in-out infinite; }
@keyframes lower { 0%, 12% { transform: translateY(-56px); } 55%, 78% { transform: translateY(26px); } 100% { transform: translateY(-56px); } }
/* rope stays anchored to the pulley: stretch it in sync with the log */
.rig-rope { transform-origin: 742px 256px; animation: ropelen 9s ease-in-out infinite; }
@keyframes ropelen { 0%, 12% { transform: scaleY(.678); } 55%, 78% { transform: scaleY(1.149); } 100% { transform: scaleY(.678); } }

.leaf { animation: leaffall 7.5s linear infinite; opacity: 0; }
.leaf-2 { animation-delay: 1.8s; animation-duration: 9s; }
.leaf-3 { animation-delay: 3.5s; }
.leaf-4 { animation-delay: 5.2s; animation-duration: 8.2s; }
@keyframes leaffall {
  0% { opacity: 0; transform: translate(0, 0) rotate(0); }
  8% { opacity: .9; }
  100% { opacity: 0; transform: translate(-90px, 420px) rotate(320deg); }
}

/* parallax layers are moved via JS transform on [data-depth] */
[data-depth] { will-change: transform; }

/* ── Sections shared ─────────────────────── */
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-head { max-width: 640px; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin-top: .9rem; }
.kicker {
  display: inline-block; font-family: var(--font-head); font-size: .78rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--orange-hot); margin-bottom: .8rem;
}
.kicker-light { color: var(--yellow); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 800; letter-spacing: -.02em; color: var(--green-900); text-wrap: balance; }

/* reveal-on-scroll */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ── Services cards ──────────────────────── */
.services { background: var(--cream); }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 2rem 1.8rem;
  border: 1px solid rgba(13,43,30,.07); box-shadow: var(--shadow-md);
  transform-style: preserve-3d; position: relative;
  transition: box-shadow .3s;
}
.card:hover { box-shadow: var(--shadow-lg); }
.card-icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  margin-bottom: 1.3rem; transform: translateZ(36px);
}
.card-icon svg { width: 28px; height: 28px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.16rem; margin-bottom: .6rem; color: var(--green-900); transform: translateZ(26px); }
.card p { font-size: .95rem; color: var(--ink-soft); transform: translateZ(16px); }
.card-featured { background: linear-gradient(160deg, #143c2b, var(--green-900)); border-color: transparent; }
.card-featured h3 { color: #fff; }
.card-featured p { color: #c4dccd; }
.card-featured .card-icon { background: linear-gradient(135deg, var(--orange), var(--orange-hot)); }
.card-badge {
  position: absolute; top: 1.1rem; right: 1.1rem; font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--yellow);
  border: 1px solid rgba(255,210,63,.4); border-radius: 999px; padding: .3em .8em;
}

/* ── Specialty section ───────────────────── */
.specialty {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(42,125,82,.35), transparent 60%),
    linear-gradient(165deg, var(--green-800), var(--green-950));
  color: #e7f3ec; overflow: hidden;
}
.specialty h2 { color: #fff; }
.specialty h2 em { font-style: normal; color: var(--yellow); }
.specialty-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.specialty-copy > p { color: #c4dccd; margin: 1rem 0 2rem; font-size: 1.05rem; }
.method-steps { list-style: none; display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 2.4rem; }
.method-steps li { display: flex; gap: 1.2rem; align-items: flex-start; }
.step-num {
  font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--yellow);
  border: 1.5px solid rgba(255,210,63,.45); border-radius: 12px;
  width: 46px; height: 46px; display: grid; place-items: center; flex: none;
}
.method-steps h3 { font-size: 1.08rem; color: #fff; margin-bottom: .25rem; }
.method-steps p { font-size: .93rem; color: #b3cebd; }

.specialty-visual { position: relative; }
.specialty-svg {
  width: 100%; background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1); border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.sp-log { animation: splower 7s ease-in-out infinite; }
@keyframes splower { 0%, 15% { transform: translateY(-40px); } 60%, 82% { transform: translateY(30px); } 100% { transform: translateY(-40px); } }
.sp-rope-v { transform-origin: 340px 190px; animation: sprope 7s ease-in-out infinite; }
@keyframes sprope { 0%, 15% { transform: scaleY(.429); } 60%, 82% { transform: scaleY(1.429); } 100% { transform: scaleY(.429); } }
.sp-rope { animation: ropedash 1.6s linear infinite; }
@keyframes ropedash { to { stroke-dashoffset: -28; } }

.stat-float {
  position: absolute; z-index: 2; background: rgba(255,255,255,.96); color: var(--green-900);
  border-radius: 16px; padding: .9rem 1.2rem; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; line-height: 1.25;
  animation: floaty 5.5s ease-in-out infinite;
}
.stat-float strong { font-family: var(--font-head); font-size: 1.5rem; color: var(--orange-hot); }
.stat-float span { font-size: .78rem; color: var(--ink-soft); max-width: 12em; }
.stat-float-1 { top: -22px; right: 8%; }
.stat-float-2 { bottom: -20px; left: -4%; animation-delay: 2.2s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ── Safety ──────────────────────────────── */
.safety { background: var(--cream-dark); }
.safety-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; margin-bottom: 3rem; }
.safety-item {
  background: var(--white); border-radius: var(--radius); padding: 1.7rem 1.5rem;
  border-top: 4px solid var(--green-600); box-shadow: var(--shadow-md);
  transition: transform .3s, box-shadow .3s;
}
.safety-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.safety-icon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: var(--green-100); margin-bottom: 1.1rem;
}
.safety-icon svg { width: 26px; height: 26px; fill: var(--green-600); }
.safety-item h3 { font-size: 1.05rem; margin-bottom: .5rem; color: var(--green-900); }
.safety-item p { font-size: .9rem; color: var(--ink-soft); }

.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  background: linear-gradient(135deg, var(--green-800), var(--green-950));
  border-radius: 22px; padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-lg);
}
.stat { text-align: center; color: #fff; }
.stat strong { display: block; font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; color: var(--yellow); }
.stat span { font-size: .85rem; color: #b9d4c4; }

/* ── Reviews / standards ─────────────────── */
.standards { background: var(--cream); }
.reviews { background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review {
  background: var(--white); border-radius: var(--radius); padding: 1.9rem 1.7rem;
  border: 1px solid rgba(13,43,30,.07); box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 1rem; transform-style: preserve-3d;
}
.stars { color: var(--orange); letter-spacing: .15em; font-size: 1.05rem; transform: translateZ(24px); }
.review blockquote { font-size: .97rem; color: var(--ink); transform: translateZ(18px); }
.review figcaption { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.review figcaption span:last-child { display: block; font-size: .8rem; color: var(--ink-soft); }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  color: #fff; font-family: var(--font-head); font-weight: 700; flex: none;
}

/* ── Areas ───────────────────────────────── */
.areas { background: var(--cream-dark); }
.areas-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
.areas p { color: var(--ink-soft); margin-top: 1rem; }
.suburbs { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.6rem 0; }
.suburbs li {
  background: var(--white); border: 1px solid rgba(13,43,30,.1); border-radius: 999px;
  padding: .45em 1.1em; font-size: .9rem; font-weight: 500; color: var(--green-800);
  transition: transform .2s, background .2s, color .2s;
}
.suburbs li:hover { transform: translateY(-3px); background: var(--green-600); color: #fff; }
.areas-note a { color: var(--orange-hot); font-weight: 600; }
.map-card { filter: drop-shadow(0 30px 50px rgba(10,35,24,.3)); }
.map-svg { width: 100%; border-radius: 20px; }
.map-pin { animation: pindrop 3s ease-in-out infinite; transform-origin: 210px 200px; }
@keyframes pindrop { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ── FAQ ─────────────────────────────────── */
.faq { background: var(--cream); }
.faq-container { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  background: var(--white); border: 1px solid rgba(13,43,30,.08); border-radius: 14px;
  overflow: hidden; transition: box-shadow .3s;
}
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  cursor: pointer; list-style: none; padding: 1.15rem 1.4rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--green-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev {
  flex: none; width: 26px; height: 26px; border-radius: 50%; position: relative;
  background: var(--green-100); transition: transform .3s, background .3s;
}
.faq-chev::before {
  content: ""; position: absolute; left: 8px; top: 10px; width: 8px; height: 8px;
  border-right: 2px solid var(--green-800); border-bottom: 2px solid var(--green-800);
  transform: rotate(45deg); transform-origin: center;
}
.faq-item[open] .faq-chev { transform: rotate(180deg); background: var(--orange); }
.faq-item[open] .faq-chev::before { border-color: #fff; }
.faq-item p { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); font-size: .95rem; }

/* ── Quote ───────────────────────────────── */
.quote {
  background:
    radial-gradient(900px 460px at 12% 0%, rgba(42,125,82,.4), transparent 60%),
    linear-gradient(150deg, var(--green-900), var(--green-950));
  color: #e7f3ec;
}
.quote h2 { color: #fff; }
.quote-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.quote-copy > p { color: #c4dccd; margin: 1rem 0 1.8rem; }
.quote-phone {
  display: inline-flex; align-items: center; gap: 1rem; text-decoration: none;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px; padding: 1rem 1.4rem; color: #fff; margin-bottom: 1rem;
  transition: background .25s, transform .25s;
}
.quote-phone:hover { background: rgba(255,255,255,.13); transform: translateY(-3px); }
.quote-phone .icon { width: 1.8em; height: 1.8em; color: var(--yellow); }
.quote-phone span { display: block; font-size: .78rem; color: #b9d4c4; }
.quote-phone strong { font-family: var(--font-head); font-size: 1.35rem; }
.quote-email { display: block; color: #9fd8b8; text-decoration: none; margin-bottom: 1.6rem; font-size: .95rem; }
.quote-email:hover { text-decoration: underline; }
.quote-points { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.quote-points li { position: relative; padding-left: 1.7em; font-size: .95rem; color: #c4dccd; }
.quote-points li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--yellow); font-weight: 700;
}

.quote-form {
  background: var(--white); border-radius: 22px; padding: clamp(1.6rem, 3.5vw, 2.4rem);
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 1.1rem;
  color: var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.quote-form label { display: flex; flex-direction: column; gap: .4rem; font-size: .85rem; font-weight: 600; color: var(--green-900); }
.quote-form input, .quote-form select, .quote-form textarea {
  font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  border: 1.5px solid rgba(13,43,30,.15); border-radius: 12px;
  padding: .75em 1em; background: var(--cream); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(42,125,82,.15); background: #fff;
}
.quote-form textarea { resize: vertical; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-note { text-align: center; font-size: .8rem; color: var(--ink-soft); }

/* ── Footer ──────────────────────────────── */
.footer { background: var(--green-950); color: #a8c5b4; font-size: .92rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2.5rem;
  padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem;
}
.brand-footer { color: #fff; margin-bottom: 1rem; }
.brand-footer .brand-text { color: #fff; }
.brand-footer .brand-mark { color: var(--green-600); }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer a { color: #a8c5b4; text-decoration: none; }
.footer a:hover { color: var(--yellow); }
.abn { margin-top: .8rem; font-size: .8rem; opacity: .7; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.09); padding: 1.3rem 0; font-size: .8rem; opacity: .75;
}

/* ── Mobile sticky CTA ───────────────────── */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: .7rem; padding: .7rem 4%;
  background: rgba(10, 35, 24, .92); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-cta .btn { flex: 1; }

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .specialty-grid, .areas-grid, .quote-grid { grid-template-columns: 1fr; }
  .specialty-visual { max-width: 560px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .topbar-hours { display: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    margin-left: auto; background: none; border: 0; cursor: pointer; padding: 10px;
  }
  .nav-burger span { width: 24px; height: 2.5px; border-radius: 2px; background: var(--green-900); transition: transform .3s, opacity .3s; }
  .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid rgba(13,43,30,.1);
    box-shadow: var(--shadow-lg); padding: .6rem 0;
  }
  .nav-links.open a { padding: .9rem 6%; font-size: 1rem; }
  .nav-links.open a::after { display: none; }

  .cards-grid, .reviews-grid, .safety-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 70px; }
  .hero { min-height: 88svh; }
  .hero-vignette {
    background:
      linear-gradient(0deg, rgba(8,26,18,.92) 0%, rgba(8,26,18,.66) 55%, rgba(8,26,18,.3) 100%);
  }
  .stat-float-1 { right: 0; }
  .stat-float-2 { left: 0; }
  .scroll-hint { display: none; }
}

/* ── Suburb subpages ─────────────────────── */
.suburbs a { color: inherit; text-decoration: none; }
.subhero {
  background:
    radial-gradient(900px 460px at 80% -10%, rgba(42,125,82,.45), transparent 60%),
    linear-gradient(160deg, var(--green-800), var(--green-950));
  color: #e7f3ec; padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}
.subhero h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); font-weight: 800; letter-spacing: -.02em; color: #fff; margin: .5rem 0 1rem; text-wrap: balance; }
.subhero .hero-sub { margin-bottom: 1.8rem; }
.breadcrumb { font-size: .82rem; color: #9fd8b8; }
.breadcrumb a { color: #9fd8b8; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.service-pills { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.service-pills li a {
  display: block; background: var(--white); border: 1px solid rgba(13,43,30,.1); border-radius: 999px;
  padding: .5em 1.15em; font-size: .9rem; font-weight: 500; color: var(--green-800); text-decoration: none;
  transition: transform .2s, background .2s, color .2s;
}
.service-pills li a:hover { transform: translateY(-3px); background: var(--green-600); color: #fff; }
.article-body { max-width: 760px; }
.article-body h3 { color: var(--green-900); font-size: 1.15rem; margin: 1.7rem 0 .5rem; }
.article-body p { color: var(--ink-soft); margin-bottom: 1rem; }
.article-body ul { margin: 0 0 1rem 1.3rem; color: var(--ink-soft); }
.article-body li { margin-bottom: .45rem; }
.cta-band {
  background: linear-gradient(135deg, var(--green-800), var(--green-950));
  border-radius: 22px; padding: clamp(1.8rem, 4vw, 2.8rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  color: #fff; box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.cta-band p { color: #b9d4c4; margin-top: .3rem; }
.cta-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ── Reduced motion ──────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
