/* ============================================================
   Bellarine Plumbing & Gas — B1 Trades (Starter tier)
   Single stylesheet, CSS custom properties. Vanilla, no libs.
   ============================================================ */

/* ---- Tokens ------------------------------------------------ */
:root {
  --bg:          #f7f5f0;   /* warm off-white — never #fff */
  --surface:     #fffdf9;
  --ink:         #20241f;
  --ink-soft:    #5a5e54;
  --green:       #3d5a3f;   /* primary — trust, headers */
  --green-light: #5c7c5e;
  --green-dark:  #2c4430;
  --accent:      #c9742d;   /* warm ochre — CALL / QUOTE CTA */
  --accent-dark: #9c5821;   /* the button's "edge" */
  --rule:        #e3ded3;

  --maxw: 1180px;
  --pad:  clamp(20px, 5vw, 56px);
  --radius:    14px;
  --radius-lg: 22px;

  --ease-brand: cubic-bezier(.16, 1, .3, 1);

  --shadow-sm: 0 1px 2px rgba(32,36,31,.05), 0 2px 8px rgba(32,36,31,.04);
  --shadow-md: 0 6px 22px rgba(32,36,31,.08);
  --shadow-lg: 0 18px 50px rgba(32,36,31,.12);

  --font-head: "Nunito", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

/* ---- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--green-dark);
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---- Layout helpers --------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(56px, 9vw, 104px); }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); max-width: 60ch; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px;
  min-height: 52px;
  border: none; border-radius: 12px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem;
  text-decoration: none; white-space: nowrap;
  transition: transform .15s var(--ease-brand), box-shadow .15s var(--ease-brand),
              background-color .15s var(--ease-brand);
}
.btn svg { width: 20px; height: 20px; }

/* The ONE signature moment — 3D pushable button (KB §15d) */
.btn-3d {
  position: relative;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 5px 0 var(--accent-dark), var(--shadow-sm);
}
.btn-3d:hover  { transform: translateY(-2px); box-shadow: 0 7px 0 var(--accent-dark), var(--shadow-md); }
.btn-3d:active { transform: translateY(3px);  box-shadow: 0 2px 0 var(--accent-dark), var(--shadow-sm); }
.btn-3d:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

.btn-3d.green { background: var(--green); box-shadow: 0 5px 0 var(--green-dark), var(--shadow-sm); }
.btn-3d.green:hover  { box-shadow: 0 7px 0 var(--green-dark), var(--shadow-md); }
.btn-3d.green:active { box-shadow: 0 2px 0 var(--green-dark), var(--shadow-sm); }
.btn-3d.green:focus-visible { outline-color: var(--accent); }

.btn-ghost {
  background: transparent; color: var(--green-dark);
  border: 1.5px solid var(--rule);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--green-light); box-shadow: var(--shadow-md); }
.btn-ghost:active { transform: translateY(0); }
.btn-ghost:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  .btn, .btn-3d, .btn-ghost { transition: box-shadow .15s ease; }
  .btn-3d:hover, .btn-ghost:hover { transform: none; }
}

/* ---- Header ----------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease-brand), box-shadow .3s var(--ease-brand);
}
.site-header.scrolled { border-bottom-color: var(--rule); box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  min-height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--green); color: #fff; flex: none;
  box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name strong { font-family: var(--font-head); font-weight: 800; font-size: 1.06rem; color: var(--green-dark); }
.brand-name span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  text-decoration: none; font-weight: 500; font-size: .98rem; color: var(--ink);
  padding: 6px 2px; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--accent); border-radius: 2px; transition: right .3s var(--ease-brand);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-links a[aria-current="page"] { color: var(--green-dark); font-weight: 600; }

.phone-pill {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  text-decoration: none; font-weight: 700; font-family: var(--font-head);
  color: var(--green-dark); font-size: 1rem;
  padding: 9px 14px; border-radius: 10px;
  transition: background-color .2s var(--ease-brand);
}
.phone-pill svg { width: 18px; height: 18px; color: var(--accent); }
.phone-pill:hover { background: color-mix(in srgb, var(--accent) 12%, transparent); }
.header-actions .btn { padding: 11px 20px; min-height: 46px; font-size: .96rem; }

.nav-toggle { display: none; }

/* ---- Hero -------------------------------------------------- */
.hero { position: relative; padding-top: clamp(36px, 6vw, 64px); padding-bottom: clamp(48px, 8vw, 88px); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero h1 { font-size: clamp(2.3rem, 5.4vw, 3.8rem); }
.hero h1 .ink { color: var(--ink); }
.hero .lead { margin-top: 20px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.trust-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--rule);
  padding: 9px 15px; border-radius: 999px;
  font-size: .9rem; font-weight: 500; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.chip svg { width: 16px; height: 16px; color: var(--green-light); }

/* Hero image */
.hero-media {
  position: relative; aspect-ratio: 4 / 4.4; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  background: #dfe6da;
  border: 1px solid var(--rule);
}
.hero-media > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 60% 50%;
}
.hero-media .media-badge {
  position: absolute; right: 18px; top: 18px;
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: 14px; padding: 14px 16px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px; max-width: 220px;
}
.hero-media .media-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: #46a05a; flex: none; box-shadow: 0 0 0 4px rgba(70,160,90,.18); }
.hero-media .media-badge strong { font-family: var(--font-head); display: block; font-size: .92rem; color: var(--green-dark); }
.hero-media .media-badge span { font-size: .78rem; color: var(--ink-soft); }

/* ---- Reveal animation (KB §15b IO fade-up) ---------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease-brand), transform .9s var(--ease-brand); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- Section heads ---------------------------------------- */
.section-head { max-width: 64ch; margin-bottom: clamp(34px, 5vw, 52px); }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.section-head .lead { margin-top: 14px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }

/* ---- Services strip --------------------------------------- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.service-card {
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm); text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .25s var(--ease-brand), box-shadow .25s var(--ease-brand), border-color .25s var(--ease-brand);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--green-light) 50%, var(--rule)); }
.service-card:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.service-ico {
  width: 52px; height: 52px; border-radius: 13px; flex: none;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--green) 10%, var(--surface));
  color: var(--green); border: 1px solid color-mix(in srgb, var(--green) 16%, var(--rule));
}
.service-ico svg { width: 26px; height: 26px; }

/* Service card with photo */
.service-card.has-photo { padding: 0; overflow: hidden; }
.service-card .card-photo {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #e3e7dd;
}
.service-card .card-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease-brand);
}
.service-card.has-photo:hover .card-photo img { transform: scale(1.04); }
.service-card .card-photo .service-ico {
  position: absolute; left: 16px; bottom: -22px; z-index: 1;
  background: var(--surface); box-shadow: var(--shadow-sm);
}
.service-card.has-photo .card-body {
  padding: 30px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1;
}
.service-card h3 { font-size: 1.18rem; }
.service-card p { color: var(--ink-soft); font-size: .96rem; }
.service-more { margin-top: auto; font-weight: 700; font-family: var(--font-head); color: var(--accent); font-size: .92rem; display: inline-flex; align-items: center; gap: 6px; }
.service-card:hover .service-more svg { transform: translateX(3px); }
.service-more svg { width: 16px; height: 16px; transition: transform .25s var(--ease-brand); }

/* ---- Why-us / stats --------------------------------------- */
.whyus { background: var(--green); color: #eef2ea; }
.whyus h2 { color: #fff; }
.whyus .lead { color: color-mix(in srgb, #fff 80%, var(--green)); }
.whyus .eyebrow { color: color-mix(in srgb, var(--accent) 75%, #fff); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.stat {
  background: color-mix(in srgb, #fff 7%, var(--green));
  border: 1px solid color-mix(in srgb, #fff 14%, transparent);
  border-radius: var(--radius); padding: 30px 26px;
}
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.4rem); color: #fff; line-height: 1; letter-spacing: -.02em; }
.stat .num .suffix { color: var(--accent); }
.stat .label { margin-top: 10px; color: color-mix(in srgb, #fff 78%, var(--green)); font-size: .98rem; }

/* ---- Service area ----------------------------------------- */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.suburb-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin-top: 26px; }
.suburb-list li {
  display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--ink);
  padding: 11px 14px; background: var(--surface); border: 1px solid var(--rule);
  border-radius: 10px;
}
.suburb-list li svg { width: 16px; height: 16px; color: var(--green-light); flex: none; }
.area-note { margin-top: 20px; font-size: .92rem; color: var(--ink-soft); }

.area-map {
  position: relative; aspect-ratio: 5 / 4.6; border-radius: var(--radius-lg);
  border: 1px solid var(--rule); overflow: hidden; box-shadow: var(--shadow-md);
  background: #dde5d8;
}
.area-map > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.area-pin {
  position: absolute; transform: translate(-50%, -100%);
  display: grid; place-items: center; color: var(--accent);
}
.area-pin svg { width: 30px; height: 30px; filter: drop-shadow(0 4px 6px rgba(32,36,31,.18)); }
.area-pin.hq { color: var(--green); }
.area-pin.hq svg { width: 40px; height: 40px; }

/* ---- Reviews ---------------------------------------------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review {
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px;
}
.stars { display: flex; gap: 3px; color: var(--accent); }
.stars svg { width: 18px; height: 18px; }
.review p { font-size: 1.02rem; color: var(--ink); }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review .avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800;
  color: #fff; background: var(--green-light); font-size: 1rem; overflow: hidden;
}
.review .avatar img { width: 100%; height: 100%; object-fit: cover; }
.review .who strong { display: block; font-family: var(--font-head); font-size: .98rem; color: var(--green-dark); }
.review .who span { font-size: .85rem; color: var(--ink-soft); }

/* ---- CTA band --------------------------------------------- */
.cta-band {
  background: linear-gradient(165deg, var(--green-dark), var(--green));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 64px);
  display: grid; grid-template-columns: 1.4fr auto; gap: 30px; align-items: center;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px;
  border-radius: 50%; background: radial-gradient(circle, rgba(201,116,45,.28), transparent 70%);
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.cta-band p { margin-top: 12px; color: color-mix(in srgb, #fff 82%, var(--green)); max-width: 46ch; }
.cta-band .cta-actions { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.cta-band .phone-big { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; justify-content: center; }
.cta-band .phone-big svg { width: 22px; height: 22px; color: var(--accent); }

/* ---- Footer ----------------------------------------------- */
.site-footer { background: var(--green-dark); color: color-mix(in srgb, #fff 72%, var(--green-dark)); padding-block: clamp(48px, 7vw, 72px) 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; letter-spacing: .02em; }
.site-footer a { color: color-mix(in srgb, #fff 78%, var(--green-dark)); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-links { display: flex; flex-direction: column; gap: 11px; font-size: .96rem; }
.footer-brand .brand-mark { background: var(--accent); }
.footer-brand p { margin-top: 16px; font-size: .94rem; max-width: 34ch; }
.footer-contact { display: flex; flex-direction: column; gap: 11px; font-size: .96rem; }
.footer-contact .line { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 3px; }
.footer-bottom {
  margin-top: clamp(36px, 5vw, 52px); padding-top: 22px;
  border-top: 1px solid color-mix(in srgb, #fff 14%, transparent);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: .85rem; color: color-mix(in srgb, #fff 58%, var(--green-dark));
}

/* ---- Mobile sticky call bar ------------------------------- */
.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  display: none; gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  backdrop-filter: blur(10px); border-top: 1px solid var(--rule);
  box-shadow: 0 -6px 24px rgba(32,36,31,.1);
  transform: translateY(110%); transition: transform .4s var(--ease-brand);
}
.call-bar.show { transform: none; }
.call-bar .btn { flex: 1; min-height: 50px; }
@media (prefers-reduced-motion: reduce) { .call-bar { transition: none; } }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.page-hero { padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(24px, 4vw, 40px); }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); }
.page-hero .lead { margin-top: 16px; }

.svc-detail { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(28px, 5vw, 56px); align-items: center;
  padding: clamp(36px, 5vw, 56px) 0; border-top: 1px solid var(--rule); }
.svc-detail:first-of-type { border-top: none; padding-top: clamp(8px, 2vw, 20px); }
.svc-detail:nth-of-type(even) .svc-media { order: 2; }
.svc-media {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md); border: 1px solid var(--rule); background: #e3e7dd;
}
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-brand); }
.svc-detail:hover .svc-media img { transform: scale(1.03); }
.svc-content { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.svc-detail .svc-ico-lg {
  width: 60px; height: 60px; border-radius: 15px; margin-bottom: 14px;
  display: grid; place-items: center; background: color-mix(in srgb, var(--green) 9%, var(--surface));
  color: var(--green); border: 1px solid color-mix(in srgb, var(--green) 16%, var(--rule));
}
.svc-detail .svc-ico-lg svg { width: 30px; height: 30px; }
.svc-detail h2 { font-size: clamp(1.5rem, 2.4vw, 1.8rem); }
.svc-detail .svc-body { max-width: 56ch; }
.svc-detail .svc-body p { color: var(--ink-soft); margin-top: 10px; }
.svc-included { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.svc-included li { display: inline-flex; align-items: center; gap: 7px; font-size: .9rem; font-weight: 500;
  background: var(--surface); border: 1px solid var(--rule); padding: 7px 13px; border-radius: 999px; }
.svc-included li svg { width: 15px; height: 15px; color: var(--green-light); }
.svc-detail .svc-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.honesty-note {
  margin-top: 8px; background: color-mix(in srgb, var(--accent) 8%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--rule));
  border-radius: var(--radius); padding: 22px 24px; display: flex; gap: 16px; align-items: flex-start;
}
.honesty-note svg { width: 26px; height: 26px; color: var(--accent); flex: none; }
.honesty-note h3 { color: var(--green-dark); font-size: 1.12rem; }
.honesty-note p { color: var(--ink-soft); margin-top: 6px; font-size: .98rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.quote-form { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-md); }
.quote-form h2 { font-size: 1.5rem; }
.quote-form > p { color: var(--ink-soft); margin-top: 8px; margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-family: var(--font-head); font-size: .92rem; color: var(--green-dark); margin-bottom: 7px; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--rule); border-radius: 10px;
  padding: 13px 15px; min-height: 50px;
  transition: border-color .2s var(--ease-brand), box-shadow .2s var(--ease-brand);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-light);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--green-light) 22%, transparent);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form .btn-3d { width: 100%; margin-top: 6px; }
.form-note { font-size: .84rem; color: var(--ink-soft); margin-top: 14px; text-align: center; }
.form-success {
  display: none; text-align: center; padding: 14px 0;
}
.form-success.show { display: block; }
.form-success .check {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px;
  display: grid; place-items: center; background: color-mix(in srgb, var(--green) 12%, var(--surface));
  color: var(--green); border: 1px solid color-mix(in srgb, var(--green) 24%, var(--rule));
}
.form-success .check svg { width: 34px; height: 34px; }
.form-success h3 { font-size: 1.4rem; }
.form-success p { color: var(--ink-soft); margin-top: 10px; }

.contact-aside { display: flex; flex-direction: column; gap: 18px; }
.info-card { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm); }
.info-card.call { background: linear-gradient(160deg, var(--green-dark), var(--green)); color: #fff; border: none; }
.info-card.call h3, .info-card.call .phone-big { color: #fff; }
.info-card h3 { font-size: 1.12rem; margin-bottom: 14px; }
.info-card .phone-big { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; color: #fff; }
.info-card.call p { color: color-mix(in srgb, #fff 80%, var(--green)); margin-top: 8px; font-size: .95rem; }
.info-card .btn-3d { width: 100%; margin-top: 18px; }
.hours-list { display: flex; flex-direction: column; gap: 10px; }
.hours-list .row { display: flex; justify-content: space-between; gap: 16px; font-size: .96rem; padding-bottom: 10px; border-bottom: 1px solid var(--rule); }
.hours-list .row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-list .row span:last-child { font-weight: 600; color: var(--green-dark); }
.hours-list .row.emergency span:last-child { color: var(--accent); }
.abn-line { font-size: .9rem; color: var(--ink-soft); }
.abn-line strong { color: var(--ink); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .header-actions .btn-quote { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { aspect-ratio: 5 / 3.4; max-height: 360px; order: -1; }
  .area-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .svc-detail { grid-template-columns: 1fr; gap: 24px; }
  .svc-detail:nth-of-type(even) .svc-media { order: -1; }
  .svc-media { aspect-ratio: 16 / 10; }
}
@media (max-width: 640px) {
  .services-grid, .reviews-grid, .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .suburb-list { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .call-bar { display: flex; }
  body { padding-bottom: 76px; }
  .stat { padding: 24px 22px; }
}
@media (max-width: 380px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}
