/* ==========================================================================
   Earth Electrical NSW — design system
   ========================================================================== */

/* ---------- Fonts ----------
   Self-hosted from Google Fonts (latin + latin-ext). Served same-origin with
   an immutable 1-year cache by netlify.toml, so no third-party connection is
   needed to render text. Inter is the variable font — one file covers 400–700.
   Barlow Condensed 500 is deliberately absent; nothing uses it. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/inter-variable-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/inter-variable-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/barlow-condensed-600-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/barlow-condensed-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/barlow-condensed-700-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/barlow-condensed-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Colour */
  --ink: #12160f;
  --ink-2: #2c332a;
  --muted: #5f6a5c;
  --forest: #1b3b2a;
  --forest-dk: #12281d;
  --forest-lt: #2d5a41;
  --amber: #e2a02c;
  /* --amber-dk clears 4.5:1 on white AND sand-2 (small text, WCAG 1.4.3).
     --amber-mid clears 3:1 for non-text graphics (WCAG 1.4.11). */
  --amber-dk: #8a5c0c;
  --amber-mid: #a67012;
  --sand: #f7f5f0;
  --sand-2: #efece4;
  --line: #ded9cd;
  --line-strong: #8f8677; /* 3.6:1 on white — form borders, WCAG 1.4.11 */
  --white: #ffffff;
  --danger: #a1341f;

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-display: "Barlow Condensed", "Inter", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;

  /* Space */
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(18, 22, 15, 0.05), 0 8px 24px -12px rgba(18, 22, 15, 0.18);
  --shadow-lg: 0 2px 4px rgba(18, 22, 15, 0.06), 0 24px 56px -24px rgba(18, 22, 15, 0.3);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 0 0 0.5em;
  font-weight: 600;
  text-wrap: balance;
}

h1 { font-size: clamp(2.35rem, 1.6rem + 3.2vw, 4.2rem); text-transform: uppercase; }
h2 { font-size: clamp(1.85rem, 1.4rem + 1.9vw, 2.85rem); text-transform: uppercase; }
h3 { font-size: clamp(1.2rem, 1.08rem + 0.55vw, 1.5rem); }
h4 { font-size: 1.05rem; }

p, ul, ol { margin: 0 0 1.15em; }
p { text-wrap: pretty; }

a { color: var(--forest-lt); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--amber-dk); }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

::selection { background: var(--amber); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--ink);
  border-radius: 3px;
}
/* On dark surfaces the amber ring carries it (6.9:1 on forest); on light and
   on amber surfaces the ink ring does (18.3:1 and 8.1:1). */
.section--forest :focus-visible,
.panel--dark :focus-visible,
.hero :focus-visible,
.page-head :focus-visible,
.site-footer :focus-visible,
.topbar :focus-visible {
  box-shadow: 0 0 0 2px var(--white);
}

/* ---------- Layout ---------- */
.wrap { width: min(100% - (var(--gutter) * 2), var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - (var(--gutter) * 2), var(--wrap-narrow)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--sand { background: var(--sand-2); }
.section--white { background: var(--white); }
.section--forest { background: var(--forest-dk); color: #d8e2d9; }
.section--forest h2, .section--forest h3 { color: var(--white); }
.section--forest a { color: var(--amber); }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber-dk);
  margin: 0 0 0.75rem;
}
.section--forest .eyebrow,
.hero .eyebrow,
.page-head .eyebrow { color: var(--amber); }

.lede { font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem); color: var(--muted); max-width: 62ch; }
.section--forest .lede { color: #b9c8ba; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease,
    border-color 0.15s ease, box-shadow 0.15s ease;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Note: these use a doubled class (.btn.btn--x) so they always beat the
   context link rules such as `.section--forest a { color: … }`. */
.btn.btn--primary { background: var(--amber); color: var(--ink); box-shadow: var(--shadow); }
.btn.btn--primary:hover { background: #f0b143; color: var(--ink); }

.btn.btn--dark { background: var(--forest); color: var(--white); }
.btn.btn--dark:hover { background: var(--forest-lt); color: var(--white); }

.btn.btn--ghost { border-color: currentColor; color: var(--forest); background: transparent; }
.btn.btn--ghost:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }

/* Ghost buttons sitting on any dark surface */
.section--forest .btn.btn--ghost,
.panel--dark .btn.btn--ghost,
.hero .btn.btn--ghost,
.page-head .btn.btn--ghost { color: #dde6de; border-color: rgba(255, 255, 255, 0.45); }
.section--forest .btn.btn--ghost:hover,
.panel--dark .btn.btn--ghost:hover,
.hero .btn.btn--ghost:hover,
.page-head .btn.btn--ghost:hover { background: var(--white); color: var(--forest-dk); border-color: var(--white); }

.btn--block { width: 100%; }
.btn--lg { font-size: 1.15rem; padding: 1rem 2rem; }

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

/* ---------- Header ---------- */
.topbar {
  background: var(--forest-dk);
  color: #c3d1c4;
  font-size: 0.85rem;
  padding: 0.45rem 0;
}
.topbar__inner { display: flex; flex-wrap: wrap; gap: 0.4rem 1.5rem; align-items: center; justify-content: space-between; }
.topbar a { color: var(--white); text-decoration: none; font-weight: 600; }
.topbar a:hover { color: var(--amber); }
.topbar__areas { color: #9fb2a1; }
@media (max-width: 48rem) {
  .topbar__inner { justify-content: center; }
  .topbar__areas { display: none; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
/* The supplied logo is already a circular badge — no synthetic disc behind it.
   Black artwork on light surfaces, white artwork on dark. */
.brand__mark {
  width: 46px; height: 46px; flex: 0 0 46px;
  display: grid; place-items: center;
}
.brand__mark img { width: 100%; height: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.32rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
}
@media (max-width: 26rem) {
  .brand__name { font-size: 1.05rem; white-space: nowrap; }
  .brand__mark { width: 38px; height: 38px; flex-basis: 38px; }
}
/* WCAG 1.4.10 Reflow — everything must fit 320px with no horizontal scroll */
@media (max-width: 22.5rem) {
  .brand { gap: 0.5rem; min-width: 0; }
  .brand__name { font-size: 0.95rem; }
  .brand__sub { display: none; }
  .nav-toggle { padding: 0.55rem 0.75rem; font-size: 0.92rem; }
  .site-header__inner { gap: 0.5rem; }
}
.brand__sub {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav a {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink-2);
  text-decoration: none;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-sm);
}
.nav a:hover, .nav a[aria-current="page"] { background: var(--sand-2); color: var(--forest); }

.nav-toggle {
  display: none;
  background: var(--forest);
  color: var(--white);
  border: 0;
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 62rem) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    inset: 100% 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--sand);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem var(--gutter) 1.2rem;
    box-shadow: var(--shadow);
  }
  .nav[hidden] { display: none; }
  .nav a { padding: 0.75rem 0.5rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav .btn { margin-top: 0.75rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(45, 90, 65, 0.55), transparent 60%),
    linear-gradient(160deg, #16301f 0%, #0d1c14 60%, #101a13 100%);
  color: #dbe4dc;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(120% 100% at 70% 0%, #000 20%, transparent 75%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 64rem) {
  .hero__inner { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
}

.hero__figure { margin: 0; }
.hero__figure picture { display: block; }
.hero__figure img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.75);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 20%;
}
.hero__figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9fb2a1;
}
@media (max-width: 63.999rem) {
  .hero__figure img { aspect-ratio: 3 / 2; object-position: 50% 22%; }
}

/* Full-width photo inside a section band */
.band-photo { margin: 0 0 clamp(2.5rem, 5vw, 4rem); }
.band-photo img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, 0.7);
}

/* Photo inside a prose column */
.inline-photo { margin: 0 0 2.5rem; }
.inline-photo img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.inline-photo figcaption {
  margin-top: 0.65rem;
  font-size: 0.88rem;
  color: var(--muted);
}
@media (min-width: 60rem) {
  .inline-photo--portrait {
    float: right;
    width: 300px;
    margin: 0.5rem 0 1.5rem 2rem;
  }
}
.hero h1 { color: var(--white); max-width: 16ch; }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero__lede { font-size: clamp(1.1rem, 1rem + 0.55vw, 1.35rem); color: #b6c6b8; max-width: 54ch; margin-bottom: 2rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 2.25rem 0 0; padding: 0; list-style: none; }
.hero__badges li {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #cbd8cc;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
}

/* ---------- Page header (interior) ---------- */
.page-head {
  background: linear-gradient(165deg, #16301f, #101c15);
  color: #cfdbd0;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.page-head h1 { color: var(--white); margin-bottom: 0.35em; }
.page-head .lede { color: #b6c6b8; }

/* ---------- Breadcrumbs ---------- */
.crumbs { font-size: 0.85rem; margin-bottom: 1.25rem; color: #9fb2a1; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0; padding: 0; }
.crumbs li::after { content: "/"; margin-left: 0.4rem; opacity: 0.45; }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: inherit; text-decoration: none; }
.crumbs a:hover { color: var(--amber); text-decoration: underline; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 2.5vw, 1.85rem);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
a.card { text-decoration: none; color: inherit; }
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--forest-lt); }
.card h3 { margin-bottom: 0.25rem; }
.card p { color: var(--muted); margin-bottom: 0; font-size: 0.96rem; }
.card__more {
  margin-top: auto;
  padding-top: 0.9rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--forest-lt);
}
a.card:hover .card__more { color: var(--amber-dk); }

.card__icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--sand-2);
  display: grid; place-items: center;
  margin-bottom: 0.9rem;
  color: var(--forest);
}
.card__icon svg { width: 24px; height: 24px; }
a.card:hover .card__icon { background: var(--amber); color: var(--ink); }

/* ---------- Answer box (AEO) ---------- */
.answer {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--amber);
  border-radius: var(--radius-sm);
  padding: clamp(1.15rem, 2.5vw, 1.6rem) clamp(1.25rem, 3vw, 1.9rem);
  margin: 0 0 2rem;
  box-shadow: var(--shadow);
}
.answer p { margin: 0; font-size: 1.08rem; color: var(--ink-2); }
.answer strong { color: var(--ink); }

/* ---------- Prose ---------- */
.prose { max-width: 68ch; }
.prose h2 { margin-top: 2.5em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2em; }
.prose ul { padding-left: 1.15rem; }
.prose li { margin-bottom: 0.45rem; }
.prose ul.ticks { list-style: none; padding-left: 0; }
.prose ul.ticks li { position: relative; padding-left: 1.9rem; }
.prose ul.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 1.15rem; height: 1.15rem;
  background: var(--amber);
  border-radius: 4px;
  clip-path: polygon(14% 46%, 38% 70%, 86% 20%, 96% 32%, 38% 90%, 4% 56%);
}

/* ---------- Split ---------- */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (min-width: 60rem) {
  .split { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); }
  .split--even { grid-template-columns: 1fr 1fr; }
}

/* ---------- Sidebar ---------- */
.sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 6rem; }
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.panel--dark { background: var(--forest-dk); border-color: var(--forest); color: #c8d5c9; }
.panel--dark h3 { color: var(--white); }
.panel h3,
.panel .panel-head { font-size: 1.15rem; }
.panel .panel-head { font-family: var(--font-display); line-height: 1.08; margin: 0 0 0.5em; }
.panel ul { list-style: none; padding: 0; margin: 0; }
.panel li + li { border-top: 1px solid var(--line); }
.panel--dark li + li { border-top-color: rgba(255, 255, 255, 0.12); }
.panel li a { display: block; padding: 0.6rem 0; text-decoration: none; color: var(--ink-2); font-weight: 500; font-size: 0.96rem; }
/* Several links on one line, separated by middots — the block rule above would
   stack them and strand the separators on their own lines. */
.panel li .inline-links a { display: inline; padding: 0; }
.panel--dark li a { color: #c8d5c9; }
.panel li a:hover { color: var(--amber-dk); }
.panel--dark li a:hover { color: var(--amber); }

.phone-big {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.35rem);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: block;
  letter-spacing: 0.01em;
}
.phone-big:hover { color: var(--amber); }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 2.5vw, 1.85rem);
  display: flex;
  flex-direction: column;
}
.quote__stars { color: var(--amber-mid); letter-spacing: 0.18em; font-size: 1rem; margin-bottom: 0.75rem; }
.quote blockquote { margin: 0 0 1.1rem; font-size: 1rem; color: var(--ink-2); }
.quote__by { margin-top: auto; font-size: 0.88rem; color: var(--muted); }
.quote__by strong { color: var(--ink); display: block; font-size: 0.98rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr)); gap: 1.5rem; }
.stat__n {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 1.6rem + 2vw, 3.2rem);
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.stat__l { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; color: #a8b8aa; margin-top: 0.4rem; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.35rem 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 2.5rem 1.05rem 0;
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1rem + 0.35vw, 1.3rem);
  font-weight: 600;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 0.4rem; top: 50%;
  width: 0.65rem; height: 0.65rem;
  border-right: 2.5px solid var(--amber-mid);
  border-bottom: 2.5px solid var(--amber-mid);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq details > div { padding: 0 2.5rem 1.15rem 0; color: var(--muted); }
.faq details > div p:last-child { margin-bottom: 0; }

/* ---------- Form ---------- */
.form { display: grid; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.field .hint { font-size: 0.82rem; color: var(--muted); font-weight: 400; }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  width: 100%;
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--forest-lt);
  outline: 3px solid rgba(226, 160, 44, 0.35);
  outline-offset: 0;
}
.field--row { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form__note { font-size: 0.85rem; color: var(--muted); }

/* ---------- Sticky mobile call bar ---------- */
.callbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 60;
  display: none;
  gap: 1px;
  background: var(--line);
  box-shadow: 0 -6px 24px -12px rgba(0, 0, 0, 0.4);
}
.callbar a {
  flex: 1;
  text-align: center;
  padding: 0.85rem 0.5rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.callbar a:first-child { background: var(--amber); color: var(--ink); }
.callbar a:last-child { background: var(--forest); color: var(--white); }
@media (max-width: 48rem) {
  .callbar { display: flex; }
  body { padding-bottom: 3.6rem; }
}

/* ---------- Area chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0; margin: 0; list-style: none; }
.chips a {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
}
.chips a:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }
.section--forest .chips a { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.16); color: #d3dfd4; }
.section--forest .chips a:hover { background: var(--amber); color: var(--ink); border-color: var(--amber); }

/* ---------- Instagram feed ---------- */
.ig-head {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.ig-head .btn { flex: 0 0 auto; white-space: nowrap; }

/* 2 rows of 4 on desktop, 2 columns on phones */
.ig-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(0.5rem, 1.2vw, 0.9rem);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 40rem) { .ig-grid { grid-template-columns: repeat(4, 1fr); } }

.ig-item { margin: 0; }
.ig-item a {
  position: relative;
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--sand);
  line-height: 0;
}
.ig-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.ig-item a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 22, 15, 0.35), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.ig-item a:hover img,
.ig-item a:focus-visible img { transform: scale(1.05); }
.ig-item a:hover::after,
.ig-item a:focus-visible::after { opacity: 1; }

.ig-item__badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(18, 22, 15, 0.6);
  color: #fff;
  z-index: 1;
}
.ig-item__badge svg { width: 0.9rem; height: 0.9rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--amber);
  color: var(--ink);
  padding-block: clamp(2.5rem, 5vw, 3.75rem);
}
.cta-band h2 { color: var(--ink); margin-bottom: 0.3em; }
.cta-band p { color: #4a3a12; max-width: 52ch; margin-bottom: 0; }
.cta-band__inner { display: flex; flex-wrap: wrap; gap: 1.75rem; align-items: center; justify-content: space-between; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #9aa79b; padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; font-size: 0.94rem; }
.site-footer .footer-head {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}
.site-footer a { color: #c3cec4; text-decoration: none; }
.site-footer a:hover { color: var(--amber); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }
.footer-brand p { max-width: 34ch; margin-top: 1rem; }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  font-size: 0.85rem;
}
/* Licence and ABN each wrap as a unit — a phone-width line break mid-way
   through the ABN reads as a typo on a legally required disclosure. */
/* No interpunct separator here on purpose: at phone widths the two items wrap
   onto separate lines and a leading dot starts the line. The gap carries it. */
.footer-bottom__legal { display: flex; flex-wrap: wrap; gap: 0.15rem 1.25rem; }
.footer-bottom__legal > span { white-space: nowrap; }

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 0.5rem; top: -4rem;
  background: var(--amber); color: var(--ink);
  padding: 0.75rem 1.25rem; border-radius: var(--radius-sm);
  z-index: 100; font-weight: 600; text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0.5rem; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
