/* ==========================================================================
   JBS Roofing – mockup stylesheet
   Implements 03-design/design-system.md exactly: tokens, type scale,
   colour, the standing-seam motif, and all components.
   border-radius: 0 globally. No backdrop-filter. No ambient animation.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* raw palette */
  --galv-white:    #F6F7F8;
  --coil-grey:     #EBEDEF;
  --zinc-line:     #D5D9DD;
  --steel-300:     #A7AFB6;
  --steel-500:     #6B7480;
  --slate-700:     #3A424B;
  --monument:      #23282E;
  --roof-black:    #15181C;
  --oxide-red:     #B23A1E;
  --oxide-red-dk:  #8E2D14;
  --oxide-tint:    #F3E2DC;
  --perth-sky:     #E4ECF1;
  --patina:        #3E6E73;
  --dark-raise:    #1F242A;
  --focus-blue:    #2E73C4;

  /* semantic */
  --bg:           var(--galv-white);
  --surface:      var(--coil-grey);
  --surface-2:    var(--perth-sky);
  --ink:          var(--monument);
  --ink-strong:   var(--roof-black);
  --body:         var(--slate-700);
  --muted:        var(--steel-500);
  --muted-2:      var(--steel-300);
  --line:         var(--zinc-line);
  --accent:       var(--oxide-red);
  --accent-press: var(--oxide-red-dk);
  --accent-tint:  var(--oxide-tint);
  --accent-2:     var(--patina);
  --ink-invert:   var(--galv-white);
  --dark-bg:      var(--roof-black);
  --dark-surface: var(--dark-raise);
  --focus:        var(--focus-blue);

  /* 4px base spacing scale */
  --space-1: 0.25rem;  /* 4  */
  --space-2: 0.5rem;   /* 8  */
  --space-3: 0.75rem;  /* 12 */
  --space-4: 1rem;     /* 16 */
  --space-5: 1.5rem;   /* 24 */
  --space-6: 2rem;     /* 32 */
  --space-7: 3rem;     /* 48 */
  --space-8: 4rem;     /* 64 */
  --space-9: 6rem;     /* 96 */

  /* layout */
  --container: 1200px;
  --container-narrow: 760px;
  --gutter: var(--space-5);

  /* type families */
  --font-display: "Saira Condensed", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Asap", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* type scale */
  --fs-display:  clamp(2.5rem, 1.6rem + 4vw, 4.5rem);
  --fs-h1:       clamp(2.125rem, 1.6rem + 2.3vw, 3.25rem);
  --fs-h2:       clamp(1.75rem, 1.4rem + 1.5vw, 2.375rem);
  --fs-h3:       clamp(1.375rem, 1.2rem + 0.8vw, 1.625rem);
  --fs-h4:       clamp(1.1875rem, 1.1rem + 0.4vw, 1.3125rem);
  --fs-h5:       1.0625rem;
  --fs-h6:       0.9375rem;
  --fs-lead:     clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
  --fs-body:     1rem;
  --fs-small:    0.875rem;
  --fs-xs:       0.8125rem;
  --fs-overline: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);

  /* misc */
  --maxline: 68ch;
  --border: 1px solid var(--line);
  --border-strong: 2px solid var(--ink);
  --t-fast: 120ms;
  --t-base: 160ms;
  --t-slow: 250ms;
  --ease: cubic-bezier(.2, .6, .2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --shadow: 0 2px 0 0 var(--line);          /* flat offset, no blur halo */
  --shadow-raise: 0 6px 0 -2px var(--line); /* slightly lifted, still flat */
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-radius: 0;          /* GLOBAL: no rounded corners anywhere */
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.5em;
  font-weight: 700;
  line-height: 1.06;
}
h1 { font-size: var(--fs-h1); line-height: 1.02; letter-spacing: -0.005em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 600; line-height: 1.12; }
h4 { font-size: var(--fs-h4); font-weight: 600; line-height: 1.2; letter-spacing: 0.005em; }
h5 { font-family: var(--font-body); font-weight: 700; font-size: var(--fs-h5);
     line-height: 1.3; letter-spacing: 0.01em; color: var(--ink); margin: 0 0 0.5em; }
h6 { font-family: var(--font-body); font-weight: 700; font-size: var(--fs-h6);
     line-height: 1.35; letter-spacing: 0.02em; color: var(--ink); margin: 0 0 0.5em; }

p { margin: 0 0 1em; max-width: var(--maxline); }
.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--body); max-width: 54ch; }

.overline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-overline);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: var(--space-3);
}

a { color: var(--accent); text-decoration: underline;
    text-underline-offset: 3px; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--accent-press); }

strong { color: var(--ink); font-weight: 700; }

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

ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
li { margin-bottom: var(--space-2); }

.tnum { font-variant-numeric: tabular-nums; }

/* --------------------------------------------------------------------------
   4. Layout helpers
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container);
             margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--space-9); }
.section--tight { padding-block: var(--space-8); }
.section--surface { background: var(--surface); }
.section--sky { background: var(--surface-2); }
.section--dark { background: var(--dark-bg); color: var(--ink-invert); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 {
  color: var(--ink-invert);
}
.section--dark p { color: var(--steel-300); }
.section--dark .lead { color: var(--galv-white); }

.section__head { max-width: 720px; margin-bottom: var(--space-7); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .lead { margin-inline: auto; }

.stack > * + * { margin-top: var(--space-4); }

/* Heading tick (seam end) */
.seam-tick {
  padding-left: var(--space-3);
  border-left: 4px solid var(--accent);
}

/* Seam divider: a steel hairline with one oxide ridge-cap segment */
.seam-divider {
  border: 0;
  height: 1px;
  background: var(--line);
  position: relative;
  margin: var(--space-7) 0;
}
.seam-divider::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 56px;
  height: 3px;
  background: var(--accent);
}

/* heavy ridge divider between major zones */
.ridge-divider {
  height: 6px; border: 0; margin: 0;
  background:
    repeating-linear-gradient(90deg,
      var(--ink) 0, var(--ink) 28px,
      var(--accent) 28px, var(--accent) 32px);
}

/* --------------------------------------------------------------------------
   5. Skip link + accessibility
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute; left: var(--space-3); top: -4rem;
  background: var(--ink); color: var(--ink-invert);
  padding: var(--space-3) var(--space-4); z-index: 1000;
  font-family: var(--font-body); font-weight: 600; text-decoration: none;
  transition: top var(--t-fast) var(--ease);
}
.skip-link:focus-visible { top: var(--space-3); }

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
:focus:not(:focus-visible) { outline: none; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   6. Utility bar + header nav
   -------------------------------------------------------------------------- */
.utility-bar {
  background: var(--ink-strong);
  color: var(--ink-invert);
  font-size: var(--fs-small);
}
.utility-bar .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 40px; gap: var(--space-4);
}
.utility-bar a { color: var(--ink-invert); text-decoration: none; }
.utility-bar__hours { color: var(--steel-300); }
.utility-bar__phone {
  font-weight: 700; font-variant-numeric: tabular-nums;
  display: inline-flex; align-items: center; gap: var(--space-2);
  min-height: 44px;
  padding-inline: var(--space-2);
}
.utility-bar__phone:hover { color: var(--accent-tint); }

/* Primary header */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: var(--bg);
  border-bottom: var(--border);
  transition: box-shadow var(--t-base) var(--ease),
              min-height var(--t-base) var(--ease);
}
.site-header .container {
  display: flex; align-items: center; gap: var(--space-5);
  min-height: 72px;
  transition: min-height var(--t-base) var(--ease);
}
/* condensed on scroll */
.site-header.is-condensed { box-shadow: 0 2px 0 0 var(--line); }
.site-header.is-condensed .container { min-height: 60px; }

.site-logo { display: inline-flex; align-items: center; text-decoration: none; }
.site-logo svg { height: 40px; width: auto; display: block; }
.site-header.is-condensed .site-logo svg { height: 34px; }

.primary-nav { margin-left: auto; }
.primary-nav ul {
  display: flex; gap: var(--space-2); list-style: none; margin: 0; padding: 0;
}
.primary-nav li { margin: 0; }
.primary-nav a {
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 0 var(--space-3);
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.0625rem; letter-spacing: 0.01em;
  color: var(--ink); text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
}
.primary-nav a:hover { color: var(--accent); }
.primary-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--accent);
}
.primary-nav .btn { margin-left: var(--space-2); }
.primary-nav__hours {
  display: none;
  font-family: var(--font-body); font-size: var(--fs-small);
  color: var(--muted); margin-top: var(--space-5);
}

/* Mobile toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: var(--border-strong);
  color: var(--ink); cursor: pointer;
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-small); text-transform: uppercase; letter-spacing: 0.06em;
}
.nav-toggle:hover { background: var(--ink); color: var(--ink-invert); }

/* Mobile call icon button (hidden on desktop) */
.header-call {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: var(--border-strong); color: var(--ink); text-decoration: none;
}
.header-call:hover { background: var(--ink); color: var(--ink-invert); }
.header-call svg { width: 22px; height: 22px; }

/* Mobile bottom call bar (hidden on desktop) */
.call-bar { display: none; }

@media (max-width: 1079px) {
  .utility-bar__location { display: none; }
}

@media (max-width: 767px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .header-call { display: inline-flex; }
  .primary-nav {
    position: fixed; inset: 72px 0 0 auto; width: min(86vw, 360px);
    background: var(--bg); border-left: var(--border-strong);
    transform: translateX(100%);
    transition: transform var(--t-base) var(--ease);
    padding: var(--space-5); overflow-y: auto; z-index: 700;
  }
  .primary-nav[data-open="true"] { transform: translateX(0); }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav a {
    width: 100%; min-height: 52px; padding: var(--space-3) 0;
    border-bottom: 1px solid var(--line);
  }
  .primary-nav a[aria-current="page"] {
    border-bottom-color: var(--line);
    box-shadow: inset 4px 0 0 0 var(--accent);
    padding-left: var(--space-3);
  }
  .primary-nav .btn { margin: var(--space-4) 0 0; width: 100%; }
  .primary-nav__hours { display: block; }

  .call-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 600;
    background: var(--accent); color: #fff;
  }
  .call-bar a {
    flex: 1; display: flex; align-items: center; justify-content: center;
    gap: var(--space-2);
    min-height: 56px; color: #fff; text-decoration: none;
    font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
    letter-spacing: 0.02em; font-variant-numeric: tabular-nums;
  }
  .call-bar a:active { background: var(--accent-press); }
  .call-bar svg { width: 22px; height: 22px; }
  body { padding-bottom: 56px; }
}

/* backdrop behind open mobile menu */
.nav-backdrop {
  display: none; position: fixed; inset: 0; z-index: 650;
  background: rgba(21,24,28,0.5);
}
.nav-backdrop[data-open="true"] { display: block; }
@media (min-width: 768px) { .nav-backdrop { display: none !important; } }

/* --------------------------------------------------------------------------
   7. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2);
  min-height: 48px; padding: 0 var(--space-5);
  font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem;
  letter-spacing: 0.02em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--accent:hover { background: var(--accent-press); border-color: var(--accent-press); color: #fff; }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--ink-invert); }

.btn--ghost { background: transparent; color: var(--ink-invert); border-color: var(--ink-invert); }
.btn--ghost:hover { background: var(--ink-invert); color: var(--ink); }

.btn[href^="tel:"] { font-variant-numeric: tabular-nums; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; background: var(--dark-bg); color: var(--ink-invert); }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
      rgba(21,24,28,0.86) 0%,
      rgba(21,24,28,0.66) 48%,
      rgba(21,24,28,0.34) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  padding-block: clamp(var(--space-8), 10vw, var(--space-9));
  max-width: 720px;
}
.hero h1 {
  font-size: var(--fs-display); font-weight: 800; line-height: 0.98;
  letter-spacing: -0.01em; color: var(--ink-invert); margin-bottom: var(--space-4);
}
.hero .overline { color: var(--accent-tint); }
.hero__sub {
  font-size: var(--fs-lead); color: var(--galv-white); max-width: 52ch;
  margin-bottom: var(--space-6);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* compact page hero (interior pages, no photo) */
.page-hero { background: var(--dark-bg); color: var(--ink-invert);
             border-bottom: 3px solid var(--accent); }
.page-hero .container { padding-block: var(--space-8); }
.page-hero h1 { color: var(--ink-invert); max-width: 18ch; }
.page-hero .overline { color: var(--accent-tint); }
.page-hero__sub { font-size: var(--fs-lead); color: var(--steel-300);
                  max-width: 56ch; margin: 0; }

/* --------------------------------------------------------------------------
   9. Trust strip
   -------------------------------------------------------------------------- */
.trust-strip { background: var(--ink-strong); color: var(--ink-invert);
               border-top: 3px solid var(--accent); }
.trust-strip ul {
  display: grid; grid-template-columns: repeat(4, 1fr);
  list-style: none; margin: 0; padding: var(--space-5) 0; gap: var(--space-4);
}
.trust-strip li { font-family: var(--font-display); font-weight: 600;
                  font-size: 1.0625rem; display: flex; gap: var(--space-2);
                  align-items: baseline; color: var(--ink-invert); margin: 0; }
.trust-strip li::before { content: ""; width: 10px; height: 10px;
                          background: var(--accent); flex: 0 0 auto;
                          transform: translateY(2px); }
@media (max-width: 767px) { .trust-strip ul { grid-template-columns: 1fr 1fr; } }
@media (max-width: 479px) { .trust-strip ul { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   10. Service cards
   -------------------------------------------------------------------------- */
.card-grid {
  display: grid; gap: var(--space-5);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1079px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px)  { .card-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--bg);
  border: var(--border);
  border-top: 3px solid var(--line);
  padding: var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-3);
  transition: border-top-color var(--t-base) var(--ease),
              transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
}
.service-card:hover,
.service-card:focus-within {
  border-top-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-raise);
}
.service-card h3 { margin: 0; color: var(--ink); }
.service-card p { color: var(--body); margin: 0; flex: 1; max-width: none; }
.service-card .card-link {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.04em; font-size: var(--fs-small);
  text-decoration: none; color: var(--accent);
  display: inline-flex; align-items: center; gap: var(--space-2);
  min-height: 44px;
}
.service-card .card-link::after { content: "\203A"; font-size: 1.2em; }
.service-card:hover .card-link { color: var(--accent-press); }

/* --------------------------------------------------------------------------
   11. Promise band / feature list
   -------------------------------------------------------------------------- */
.feature-grid {
  display: grid; gap: var(--space-6);
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  border-left: 4px solid var(--accent);
  padding-left: var(--space-5);
}
.feature h3 { margin: 0 0 var(--space-2); color: var(--ink); }
.feature p { margin: 0; color: var(--body); }
.section--dark .feature h3 { color: var(--ink-invert); }
.section--dark .feature p { color: var(--steel-300); }

/* numbered process steps */
.steps { display: grid; gap: var(--space-5); grid-template-columns: repeat(4, 1fr);
         list-style: none; padding: 0; margin: 0; }
@media (max-width: 767px) { .steps { grid-template-columns: 1fr; } }
.steps li {
  border-top: 3px solid var(--accent); padding-top: var(--space-4);
  margin: 0;
}
.steps .step-num {
  font-family: var(--font-display); font-weight: 800; font-size: 2rem;
  color: var(--accent); line-height: 1; display: block; margin-bottom: var(--space-2);
}
.steps h4 { margin: 0 0 var(--space-2); }
.steps p { margin: 0; font-size: var(--fs-small); color: var(--muted); }

/* --------------------------------------------------------------------------
   12. Category / materials cards
   -------------------------------------------------------------------------- */
.category-grid {
  display: grid; gap: var(--space-4);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1079px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px)  { .category-grid { grid-template-columns: 1fr; } }

.category-card {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: var(--space-4) var(--space-5);
}
.category-card h4 {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.04em; margin: 0 0 var(--space-2); color: var(--ink);
}
.category-card p { font-size: var(--fs-small); color: var(--muted); margin: 0; max-width: none; }

/* --------------------------------------------------------------------------
   13. Gallery
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid; gap: var(--space-3);
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1079px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 360px)  { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-tile {
  position: relative; display: block; overflow: hidden;
  border: var(--border); background: var(--surface);
  margin: 0;
}
.gallery-tile img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform var(--t-base) var(--ease);
}
.gallery-tile:hover img,
.gallery-tile:focus-within img { transform: scale(1.04); }
.gallery-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: rgba(21,24,28,0.86); color: var(--ink-invert);
  font-size: var(--fs-small); padding: var(--space-2) var(--space-3);
  display: flex; justify-content: space-between; gap: var(--space-3);
}
.gallery-tile figcaption .suburb { color: var(--accent-tint); font-weight: 600; white-space: nowrap; }

/* --------------------------------------------------------------------------
   14. Testimonials
   -------------------------------------------------------------------------- */
.testimonial {
  background: var(--bg);
  border: var(--border);
  border-left: 4px solid var(--accent);
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-4);
}
.testimonial blockquote {
  margin: 0; font-style: italic; font-size: var(--fs-lead);
  line-height: 1.5; color: var(--ink); max-width: 60ch;
}
.testimonial blockquote::before { content: "\201C"; color: var(--accent);
  font-family: var(--font-display); font-size: 2.4em; line-height: 0;
  vertical-align: -0.35em; margin-right: 0.08em; }
.testimonial cite {
  font-style: normal; font-family: var(--font-display); font-weight: 700;
  font-size: 1.0625rem; color: var(--ink);
  display: flex; flex-wrap: wrap; gap: var(--space-2); align-items: baseline;
}
.testimonial cite .job {
  font-family: var(--font-body); font-weight: 500; font-size: var(--fs-small);
  color: var(--muted); text-transform: none;
}
.testimonial-grid {
  display: grid; gap: var(--space-5);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1079px) { .testimonial-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px)  { .testimonial-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   15. Stat / counter band
   -------------------------------------------------------------------------- */
.stat-grid {
  display: grid; gap: var(--space-5);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) { .stat-grid { grid-template-columns: 1fr; } }
.stat { border-top: 3px solid var(--accent); padding-top: var(--space-4); }
.stat__num { font-family: var(--font-display); font-weight: 800;
             font-size: clamp(2.5rem, 1.5rem + 3vw, 3.5rem); line-height: 1;
             color: var(--ink); }
.section--dark .stat__num { color: var(--ink-invert); }
.stat__label { font-family: var(--font-body); font-weight: 600;
               color: var(--muted); margin: var(--space-2) 0 0; }
.section--dark .stat__label { color: var(--steel-300); }

/* --------------------------------------------------------------------------
   16. Areas list (suburb chips)
   -------------------------------------------------------------------------- */
.suburb-list {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  list-style: none; padding: 0; margin: 0;
}
.suburb-list li {
  margin: 0;
  background: var(--surface); border-left: 4px solid var(--accent);
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-display); font-weight: 600; font-size: 1.0625rem;
  color: var(--ink); letter-spacing: 0.01em;
}

.area-review {
  border: var(--border); border-left: 4px solid var(--accent);
  padding: var(--space-5); background: var(--bg);
}
.area-review h3 { margin: 0 0 var(--space-2); text-transform: uppercase;
                  letter-spacing: 0.03em; font-size: var(--fs-h4); }
.area-review p { margin: 0; font-style: italic; color: var(--body); }
.area-review .who { font-style: normal; font-family: var(--font-display);
                    font-weight: 600; color: var(--muted); font-size: var(--fs-small);
                    display: block; margin-top: var(--space-2); }
.area-review-grid { display: grid; gap: var(--space-5);
                    grid-template-columns: repeat(2, 1fr); }
@media (max-width: 767px) { .area-review-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   17. Services page in-page sub-nav + sections
   -------------------------------------------------------------------------- */
.subnav {
  position: sticky; top: 72px; z-index: 400;
  background: var(--surface); border-bottom: var(--border);
}
.is-condensed ~ * .subnav { top: 60px; }
.subnav ul {
  display: flex; flex-wrap: wrap; gap: 0; list-style: none; margin: 0; padding: 0;
  overflow-x: auto;
}
.subnav li { margin: 0; }
.subnav a {
  display: inline-flex; align-items: center; min-height: 48px;
  padding: 0 var(--space-4); white-space: nowrap;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  letter-spacing: 0.02em; color: var(--ink); text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.subnav a:hover { color: var(--accent); border-bottom-color: var(--line); }

.service-block { scroll-margin-top: 120px; padding-block: var(--space-8); border-top: var(--border); }
.service-block:first-of-type { border-top: 0; }
.service-block__inner { display: grid; gap: var(--space-6);
                        grid-template-columns: 1.1fr 0.9fr; align-items: start; }
@media (max-width: 767px) { .service-block__inner { grid-template-columns: 1fr; } }
.service-block h2 { margin-top: 0; }
.check-list { list-style: none; padding: 0; margin: 0 0 var(--space-5); }
.check-list li { display: flex; gap: var(--space-3); align-items: flex-start;
                 margin-bottom: var(--space-3); }
.check-list li::before { content: ""; flex: 0 0 auto; width: 12px; height: 12px;
                         background: var(--accent); transform: translateY(6px); }
.service-aside {
  background: var(--surface); border-top: 3px solid var(--accent);
  padding: var(--space-5);
}
.service-aside h4 { margin: 0 0 var(--space-3); text-transform: uppercase;
                    letter-spacing: 0.04em; }

/* --------------------------------------------------------------------------
   18. Forms
   -------------------------------------------------------------------------- */
.contact-layout { display: grid; gap: var(--space-7);
                  grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 899px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-card { border: var(--border); border-top: 3px solid var(--accent);
                padding: var(--space-6); background: var(--bg); }
.contact-card h2 { margin-top: 0; }
.contact-detail { margin-bottom: var(--space-4); }
.contact-detail .label { font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; font-size: var(--fs-small);
  color: var(--muted); display: block; margin-bottom: var(--space-1); }
.contact-detail .value { font-size: var(--fs-h4); color: var(--ink);
  font-family: var(--font-display); font-weight: 600; font-variant-numeric: tabular-nums; }
.contact-detail a.value { text-decoration: none; }
.contact-detail a.value:hover { color: var(--accent); }
.contact-detail .value--sm { font-size: var(--fs-body); font-family: var(--font-body);
  font-weight: 500; line-height: 1.5; }

.form-field { margin-bottom: var(--space-5); }
.form-field label {
  display: block; font-family: var(--font-body); font-weight: 600;
  font-size: var(--fs-small); color: var(--ink); margin-bottom: var(--space-2);
}
.form-field .req { color: var(--accent); }
.form-control {
  width: 100%; min-height: 48px; padding: var(--space-3) var(--space-4);
  font-family: var(--font-body); font-size: var(--fs-body); color: var(--ink);
  background: var(--bg); border: 2px solid var(--line);
  transition: border-color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
}
textarea.form-control { min-height: 140px; resize: vertical; line-height: 1.6; }
select.form-control { appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
                    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
  padding-right: var(--space-8); }
.form-control::placeholder { color: var(--muted-2); }
.form-control:hover { border-color: var(--steel-300); }
.form-control:focus { outline: none; border-color: var(--accent); background: var(--surface-2); }
.form-control:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }

.form-row { display: grid; gap: var(--space-5); grid-template-columns: 1fr 1fr; }
@media (max-width: 479px) { .form-row { grid-template-columns: 1fr; } }

.form-file {
  display: flex; align-items: center; gap: var(--space-3);
  border: 2px dashed var(--line); padding: var(--space-4); background: var(--surface);
  font-size: var(--fs-small); color: var(--muted);
}
.form-file:focus-within { border-color: var(--accent); }
.form-file input { font-family: var(--font-body); }

.form-control[aria-invalid="true"] { border-color: var(--accent); background: var(--accent-tint); }
.form-error { color: var(--accent-press); font-size: var(--fs-small); font-weight: 600; margin-top: var(--space-2); }
.form-hint  { color: var(--muted); font-size: var(--fs-small); margin-top: var(--space-2); }

.form-submit { width: 100%; }
@media (min-width: 600px) { .form-submit { width: auto; min-width: 220px; } }

/* map placeholder (mockup) */
.map-block { border: var(--border); }
.map-figure { margin: 0; }
.map-static {
  background: var(--surface);
  border-bottom: var(--border);
  aspect-ratio: 16 / 10;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  /* flat seam-grid treatment, not a fabricated map image */
  background-image:
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 44px);
}
.map-pin {
  position: relative; z-index: 1; text-align: center;
  background: var(--bg); border-top: 3px solid var(--accent);
  padding: var(--space-4) var(--space-5);
}
.map-pin strong { display: block; font-family: var(--font-display);
  font-size: var(--fs-h4); color: var(--ink); }
.map-pin span { font-size: var(--fs-small); color: var(--muted); }
.map-figure figcaption { padding: var(--space-3) var(--space-4);
  font-size: var(--fs-small); color: var(--muted); background: var(--bg); }

/* --------------------------------------------------------------------------
   19. CTA band
   -------------------------------------------------------------------------- */
.cta-band { text-align: left; }
.cta-band .container { max-width: 820px; }
.cta-band h2 { margin-bottom: var(--space-4); }
.cta-band p { color: var(--steel-300); }
.cta-band .address { font-family: var(--font-display); font-weight: 600;
  color: var(--steel-300); margin-top: var(--space-5); display: block; }

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--dark-bg); color: var(--steel-300);
               border-top: 6px solid var(--accent); }
.site-footer .container { padding-block: var(--space-8); }
.footer-cols {
  display: grid; gap: var(--space-6);
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
}
@media (max-width: 1079px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 479px)  { .footer-cols { grid-template-columns: 1fr; } }

.site-footer h5 { color: var(--ink-invert); margin: 0 0 var(--space-4);
                  font-family: var(--font-display); text-transform: uppercase;
                  letter-spacing: 0.08em; font-weight: 700; }
.site-footer p { color: var(--steel-300); max-width: none; }
.site-footer a { color: var(--steel-300); text-decoration: none; }
.site-footer a:hover { color: var(--ink-invert); text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: var(--space-1); }
.site-footer li a { display: inline-flex; min-height: 44px; align-items: center; }
.footer-address { font-style: normal; color: var(--steel-300); line-height: 1.6; }
.footer-phone { font-family: var(--font-display); font-weight: 700;
                font-size: 1.375rem; color: var(--ink-invert);
                font-variant-numeric: tabular-nums; text-decoration: none;
                display: inline-flex; min-height: 44px; align-items: center; }
.footer-phone:hover { color: var(--accent-tint); }
.footer-meta { color: var(--steel-300); font-size: var(--fs-small); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid var(--dark-surface);
  padding-block: var(--space-5);
  font-size: var(--fs-xs); color: var(--steel-500);
  display: flex; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap;
}
.footer-bottom a { color: var(--steel-500); }

/* --------------------------------------------------------------------------
   21. Logo mark
   -------------------------------------------------------------------------- */
.logo-mark { display: block; }
.logo-mark .mark-text { fill: var(--ink); }
.logo-mark .mark-accent { fill: var(--accent); }
.logo-mark .mark-sub { fill: var(--muted); }
.utility-bar .logo-mark .mark-text { fill: var(--ink-invert); }

/* --------------------------------------------------------------------------
   22. Scroll-reveal (one effect, opt-in, reduced-motion safe)
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }

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

/* --------------------------------------------------------------------------
   24. Print
   -------------------------------------------------------------------------- */
@media print {
  .utility-bar, .nav-toggle, .header-call, .call-bar, .hero__media, .hero__scrim,
  .site-footer .footer-cols, .form-file, .nav-backdrop, .subnav { display: none; }
  body { color: #000; background: #fff; padding-bottom: 0; }
  a { color: #000; text-decoration: underline; }
  a[href^="tel:"]::after { content: " (" attr(href) ")"; }
  .section { padding-block: var(--space-5); }
  .hero, .page-hero, .section--dark { background: #fff; color: #000; }
  .hero h1, .page-hero h1, .section--dark h2, .section--dark h3 { color: #000; }
}
