/* ============================================================
   REGAL IRRIGATION
   Design system: dark theme, gold accent #10b0e6 on near-black
   Type: Fraunces display + Inter body
   ============================================================ */

:root {
  /* Surfaces */
  --bg: #0a0a0a;
  --bg-1: #111111;
  --bg-2: #161616;
  --bg-3: #1c1c1c;
  --hairline: rgba(255,255,255,0.07);
  --hairline-strong: rgba(255,255,255,0.13);

  /* Brand */
  --gold: #10b0e6;
  --gold-bright: #4ec5ed;
  --gold-deep: #0a89b8;
  --gold-tint: rgba(16,176,230,0.12);
  --gold-glow: rgba(16,176,230,0.30);

  /* Text */
  --ink: #f5f2ec;
  --ink-soft: #c9c5bd;
  --ink-mute: #8a857c;
  --ink-faint: #5a564f;

  /* Functional */
  --leaf: #6fa462;
  --warn: #d97757;

  /* Spacing scale (8px base) */
  --s-1: .25rem; --s-2: .5rem; --s-3: .75rem; --s-4: 1rem;
  --s-5: 1.5rem; --s-6: 2rem; --s-7: 3rem; --s-8: 4rem;
  --s-9: 6rem; --s-10: 8rem;

  /* Type */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Radii */
  --r-1: 4px; --r-2: 8px; --r-3: 12px; --r-4: 18px; --r-5: 28px; --r-pill: 999px;

  /* Shadows */
  --shadow-1: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 24px rgba(0,0,0,0.35);
  --shadow-gold: 0 0 0 1px rgba(16,176,230,0.20), 0 18px 40px -10px rgba(16,176,230,0.18);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-fast: cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --max: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  color-scheme: dark;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01" 1, "cv11" 1;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(16,176,230,0.15);
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

/* Anchor scroll offset under sticky nav */
section[id], [id="quote"], [id="faq"], [id="pricing"], [id="process"], [id="why"], [id="what"], [id="problem"], [id="solution"], [id="area"] {
  scroll-margin-top: 88px;
}

/* Focus rings, always visible for keyboard users */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-1);
}

/* Skip link */
.skip {
  position: absolute; left: -9999px; top: 12px;
  background: var(--gold); color: #001821; padding: 10px 16px;
  border-radius: var(--r-2); font-weight: 600; z-index: 9999;
}
.skip:focus { left: 12px; }

/* Container */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.wrap-tight { max-width: 880px; }

/* Type system, editorial */
.eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: .9375rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* Chapter numerals — editorial section markers */
.chapter {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 24px;
  font-feature-settings: "lnum" 1;
  opacity: 0.9;
}
.chapter::after {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-left: 14px;
  opacity: 0.6;
}

/* Drop cap */
.drop-cap::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 4.25em;
  float: left;
  line-height: 0.85;
  margin: 0.08em 0.08em 0 -0.04em;
  color: var(--gold);
}

/* Pull-quote */
.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.75rem, 4.2vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 24ch;
}
.pullquote::before {
  content: "\201C";
  display: block;
  font-size: 1.4em;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 8px;
  font-style: italic;
  font-weight: 300;
}

/* Caption — small italic serif under photos */
.caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: .8125rem;
  color: var(--ink-mute);
  line-height: 1.45;
  display: block;
}
.caption strong { font-style: normal; color: var(--ink-soft); font-weight: 500; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-wrap: balance;
}
h1 {
  font-size: clamp(3rem, 9vw, 7.5rem);
  letter-spacing: -0.035em;
  font-weight: 300;
  line-height: 0.95;
  text-transform: none;
}
h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  font-feature-settings: "ss01" 1;
}
h2 {
  font-size: clamp(2.25rem, 5.2vw, 4.25rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
h2 em { font-style: italic; color: var(--gold); font-weight: 300; }
h3 { font-size: clamp(1.375rem, 2.4vw, 1.875rem); font-weight: 400; line-height: 1.2; font-family: var(--serif); letter-spacing: -0.015em; }
p.lead { font-size: 1.25rem; color: var(--ink-soft); line-height: 1.5; max-width: 60ch; font-weight: 400; }
p { color: var(--ink-soft); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: .9375rem;
  letter-spacing: -0.005em;
  transition: transform .2s var(--ease-out), background .2s ease, color .2s ease, box-shadow .25s var(--ease-out);
  will-change: transform;
  min-height: 48px;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
@media (prefers-reduced-motion: reduce) { .btn { transition: none; } .btn:active { transform: none; } }

.btn-primary {
  background: var(--gold);
  color: #001821;
  box-shadow: 0 1px 0 rgba(255,255,255,0.30) inset, 0 8px 18px -6px rgba(16,176,230,0.55);
}
.btn-primary:hover { background: var(--gold-bright); box-shadow: 0 1px 0 rgba(255,255,255,0.40) inset, 0 12px 24px -6px rgba(16,176,230,0.65); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hairline-strong);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost { padding: 10px 14px; color: var(--ink-soft); border-radius: var(--r-2); }
.btn-ghost:hover { color: var(--ink); background: rgba(255,255,255,0.04); }

.btn .arrow {
  transition: transform .25s var(--ease-out);
}
.btn:hover .arrow { transform: translateX(3px); }
@media (prefers-reduced-motion: reduce) { .btn:hover .arrow { transform: none; } }

/* ============================================================
   TOP BAR + NAV
   ============================================================ */
.topbar {
  background: #060606;
  border-bottom: 1px solid var(--hairline);
  font-size: .8125rem;
  color: var(--ink-mute);
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  gap: 12px;
}
.topbar a { color: var(--ink-soft); transition: color .15s ease; }
.topbar a:hover { color: var(--gold); }
.topbar .pipe { color: var(--ink-faint); margin: 0 8px; }
.topbar .stars { color: var(--gold); letter-spacing: 0.05em; }
.topbar-right { display: flex; align-items: center; gap: 4px; }
@media (max-width: 720px) {
  .topbar-left .area { display: none; }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled {
  background: rgba(10,10,10,0.92);
  border-bottom-color: var(--hairline);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.brand img {
  height: 44px;
  width: auto;
  display: block;
}
.foot-brand .brand img { height: 56px; }
@media (max-width: 480px) {
  .brand img { height: 38px; }
}

.nav-links {
  display: flex; align-items: center; gap: 6px; list-style: none; padding: 0;
}
.nav-links a {
  padding: 10px 14px;
  font-size: .9375rem;
  color: var(--ink-soft);
  border-radius: var(--r-2);
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,0.04); }

.nav-cta { display: flex; align-items: center; gap: 8px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-2);
  color: var(--ink);
}
.menu-toggle:hover { background: rgba(255,255,255,0.05); }
.menu-toggle svg { width: 22px; height: 22px; }

@media (max-width: 880px) {
  .nav-links, .nav-cta .desk-only { display: none; }
  .menu-toggle { display: grid; place-items: center; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--bg);
  z-index: 40;
  transform: translateY(-110%);
  transition: transform .35s var(--ease-out);
  padding: 24px var(--gutter);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 14px 4px;
  font-size: 1.125rem;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink);
}
.mobile-menu .btn { margin-top: 24px; width: 100%; }

/* ============================================================
   HERO, EDITORIAL FULL-BLEED
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 980px;
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(0.85) brightness(0.85);
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(170deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.22) 32%, rgba(0,0,0,0.30) 58%, rgba(0,0,0,0.85) 100%);
}

.hero-overlay {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.5rem, 4vw, 3.5rem);
}

/* corners */
.hero-corner {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.hero-corner .top {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: .9375rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.hero-corner .bot {
  font-family: var(--sans);
  font-size: .6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
.hero-corner.tr { text-align: right; align-items: flex-end; }
.hero-corner.tr .top { color: var(--gold); font-style: normal; font-weight: 400; letter-spacing: 0.2em; font-family: var(--sans); font-size: .75rem; text-transform: uppercase; }
.hero-corner.tr .stars { color: var(--gold); font-size: 1.0625rem; letter-spacing: 0.08em; margin-top: 2px; }

.hero-corners {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

/* main title */
.hero-title {
  align-self: end;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 1200px;
}
.hero-title h1 {
  font-style: normal;
  font-weight: 200;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  line-height: 0.92;
  color: var(--ink);
}
.hero-title h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.0625rem, 1.6vw, 1.375rem);
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 56ch;
  line-height: 1.4;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* bottom row: caption + scroll cue */
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  padding-top: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.hero-caption {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: .8125rem;
  color: var(--ink-mute);
  max-width: 36ch;
}
.hero-caption strong { font-style: normal; color: var(--ink-soft); font-weight: 500; }
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-size: .6875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1.2); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line { animation: none; }
}

@media (max-width: 720px) {
  .hero {
    min-height: 100svh;
    max-height: none;
    height: 100svh;
  }
  .hero-title h1 { font-size: clamp(2.5rem, 11vw, 4.5rem); }
  .hero-corner.tr .top, .hero-corner.tr .stars { font-size: .6875rem; }
  .hero-caption { display: none; }
}

/* ============================================================
   TRUST RIBBON, editorial single-line manifesto
   ============================================================ */
.trust {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: #050505;
  padding: 28px 0;
  overflow: hidden;
}
.trust .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(.875rem, 1.4vw, 1.0625rem);
  color: var(--ink-soft);
  letter-spacing: 0.005em;
  text-align: center;
  line-height: 1.4;
}
.trust .wrap span {
  white-space: nowrap;
}
.trust .wrap em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.trust .dot-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  opacity: 0.5;
}
@media (max-width: 720px) {
  .trust .wrap { gap: 6px 18px; font-size: .9375rem; }
  .trust .dot-sep { display: none; }
}

/* ============================================================
   SECTION
   ============================================================ */
section.section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  position: relative;
}
.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p.lead { margin-top: 18px; }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--r-3);
  overflow: hidden;
}
@media (max-width: 880px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-cell {
  background: #0d0d0d;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
}
.problem-num {
  font-family: var(--serif);
  font-size: 2.75rem;
  color: var(--gold);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  margin-bottom: 16px;
  font-feature-settings: "lnum" 1;
}
.problem-cell h3 { margin-bottom: 12px; color: var(--ink); }
.problem-cell p { color: var(--ink-soft); font-size: .9375rem; line-height: 1.55; }

/* ============================================================
   SOLUTION
   ============================================================ */
.solution {
  background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
}
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) { .solution-grid { grid-template-columns: 1fr; } }
.solution-list { list-style: none; padding: 0; margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.solution-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.solution-list li .check {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold-tint);
  display: grid; place-items: center;
  margin-top: 2px;
}
.solution-list li .check svg { width: 12px; height: 12px; color: var(--gold); }
.solution-list li strong { color: var(--ink); font-weight: 600; }
.solution-visual {
  position: relative;
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, #141414, #0a0a0a);
  border: 1px solid var(--hairline);
  border-radius: var(--r-4);
  overflow: hidden;
}
.solution-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ============================================================
   INCLUDED
   ============================================================ */
.included {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .cards-3 { grid-template-columns: 1fr; } }
.card {
  background: linear-gradient(180deg, #111111 0%, #0c0c0c 100%);
  border: 1px solid var(--hairline);
  border-radius: var(--r-4);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-out), border-color .25s ease, box-shadow .35s var(--ease-out);
}
.card:hover {
  border-color: var(--hairline-strong);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6);
}
@media (prefers-reduced-motion: reduce) { .card:hover { transform: none; } }
.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-2);
  background: var(--gold-tint);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; color: var(--gold); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: .9375rem; line-height: 1.55; margin-bottom: 16px; }
.card-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: .875rem; color: var(--ink-soft); }
.card-list li { display: flex; gap: 8px; align-items: flex-start; }
.card-list li::before {
  content: ""; width: 4px; height: 4px; background: var(--gold);
  border-radius: 50%; margin-top: 9px; flex: 0 0 auto;
}

/* ============================================================
   WHY US
   ============================================================ */
.why {
  background: linear-gradient(180deg, #0a0a0a 0%, #0e0e0e 100%);
}
/* Editorial alternating spreads */
.spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.spread:nth-child(even) .spread-photo { order: 2; }
.spread:nth-child(even) .spread-text { order: 1; }
@media (max-width: 880px) {
  .spread { grid-template-columns: 1fr; gap: 24px; padding: clamp(2rem, 4vw, 3rem) 0; }
  .spread:nth-child(even) .spread-photo { order: -1; }
  .spread:nth-child(even) .spread-text { order: 0; }
}
.spread + .spread {
  border-top: 1px solid var(--hairline);
}
.spread-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0d0d0d;
}
.spread-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.spread:hover .spread-photo img { transform: scale(1.03); }
@media (prefers-reduced-motion: reduce) {
  .spread:hover .spread-photo img { transform: none; }
}
.spread-photo .num {
  position: absolute;
  top: clamp(1rem, 2vw, 1.5rem);
  left: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--gold);
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px 10px;
  border-radius: 2px;
  font-feature-settings: "lnum" 1;
  letter-spacing: 0.02em;
}
.spread-photo figcaption {
  position: absolute;
  bottom: clamp(1rem, 2vw, 1.5rem);
  left: clamp(1rem, 2vw, 1.5rem);
  right: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: .8125rem;
  color: var(--ink-soft);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  padding: 8px 12px;
  letter-spacing: 0.01em;
  border-left: 1px solid var(--gold);
}
.spread-text {
  max-width: 44ch;
}
.spread-text .marker {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: .9375rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
  letter-spacing: 0.01em;
}
.spread-text h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.75rem, 3.4vw, 2.625rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--ink);
}
.spread-text h3 em { font-style: italic; color: var(--gold); font-weight: 300; }
.spread-text p {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 14px;
}
.spread-text .proof {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: .9375rem;
  color: var(--gold);
  display: inline-block;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
  margin-top: 4px;
}

/* Founder card */
.founder {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px;
  background: linear-gradient(180deg, #111111 0%, #0c0c0c 100%);
  border: 1px solid var(--hairline);
  border-radius: var(--r-4);
}
.founder-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gold-tint);
  display: grid; place-items: center;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  border: 1px solid var(--hairline-strong);
}
.founder p { font-size: .9375rem; line-height: 1.6; color: var(--ink-soft); }
.founder p strong { color: var(--ink); }
@media (max-width: 560px) {
  .founder { grid-template-columns: 1fr; text-align: left; padding: 20px; }
  .founder-avatar { width: 64px; height: 64px; font-size: 1.5rem; }
}

/* ============================================================
   PULL QUOTE, editorial break
   ============================================================ */
.quote-section-edt {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}
.quote-section-edt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 500px at 70% 50%, rgba(16,176,230,0.05), transparent 70%);
  pointer-events: none;
}
.quote-section-edt .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) { .quote-section-edt .wrap { grid-template-columns: 1fr; } }
.quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(8rem, 18vw, 14rem);
  color: var(--gold);
  line-height: 0.7;
  opacity: 0.6;
  margin-bottom: -0.3em;
  display: block;
}
.quote-body {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 28px;
}
.quote-body em { font-style: italic; color: var(--gold); }
.quote-attrib {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .9375rem;
  color: var(--ink-soft);
}
.quote-attrib::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.quote-attrib strong { color: var(--ink); font-weight: 500; }
.quote-attrib .where {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-mute);
}
.quote-side {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 32ch;
  padding-left: clamp(0px, 4vw, 40px);
  border-left: 1px solid var(--hairline);
}
@media (max-width: 880px) { .quote-side { padding-left: 0; border-left: none; border-top: 1px solid var(--hairline); padding-top: 20px; } }
.quote-side .label {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: .6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}

/* ============================================================
   SERVICE AREA MAP
   ============================================================ */
.area {
  background: linear-gradient(180deg, #0e0e0e 0%, #0a0a0a 100%);
  border-top: 1px solid var(--hairline);
}
.area-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 980px) { .area-grid { grid-template-columns: 1fr; } }
.area-info h2 { margin-bottom: 18px; }
.area-info .area-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.area-info .area-meta div {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: .9375rem; color: var(--ink-soft);
}
.area-info .area-meta svg { width: 20px; height: 20px; color: var(--gold); flex: 0 0 auto; margin-top: 2px; }
.area-info .area-meta strong { color: var(--ink); }
.area-map-wrap {
  position: relative;
  aspect-ratio: 1 / 0.8;
  background: radial-gradient(ellipse 70% 60% at 60% 50%, #131313, #0a0a0a 80%);
  border: 1px solid var(--hairline);
  border-radius: var(--r-4);
  overflow: hidden;
}
.area-map { position: absolute; inset: 0; width: 100%; height: 100%; }
.area-map .label {
  font-family: var(--sans);
  font-size: 11px;
  fill: var(--ink-soft);
  letter-spacing: 0.04em;
}
.area-map .label.hq {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  fill: var(--gold);
}
.area-map .label.cbd {
  fill: var(--ink-mute);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.area-map .dot { fill: var(--gold); }
.area-map .dot-bg { fill: rgba(16,176,230,0.12); }
.area-map .bay { fill: rgba(16,176,230,0.04); }
.area-map .coast { stroke: rgba(16,176,230,0.25); stroke-width: 1.2; fill: none; stroke-dasharray: 3 4; }
.area-map .zone-fill { fill: rgba(16,176,230,0.08); }
.area-map .zone-stroke { stroke: var(--gold); stroke-width: 1.2; fill: none; stroke-dasharray: 4 5; }
.area-map .grid-bg { stroke: rgba(255,255,255,0.025); stroke-width: 0.5; }

.suburb-chips {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.suburb-chips span {
  display: inline-block;
  font-size: .8125rem;
  color: var(--ink-soft);
  background: #0d0d0d;
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  padding: 5px 12px;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  position: relative;
}
@media (max-width: 880px) { .process-grid { grid-template-columns: 1fr; } }
.process-step { position: relative; }
.process-step .step-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.process-step .step-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-2);
  background: var(--gold-tint);
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.process-step .step-icon svg { width: 22px; height: 22px; color: var(--gold); }
.process-step .step-num {
  font-family: var(--serif);
  font-size: 3.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 0.9;
  font-feature-settings: "lnum" 1;
}
.process-step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.process-step p { font-size: .9375rem; color: var(--ink-soft); line-height: 1.55; }
.process-step .micro { font-size: .8125rem; color: var(--ink-mute); margin-top: 12px; display: inline-flex; align-items: center; gap: 6px; }
.process-step .micro::before { content: ""; width: 14px; height: 1px; background: var(--gold); }

/* ============================================================
   PRICING, editorial menu format
   ============================================================ */
.pricing {
  background: var(--bg);
}
.menu {
  max-width: 880px;
  margin: 0 auto;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 20px;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.menu-item:first-of-type { border-top: 1px solid var(--hairline); }
.menu-item-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.menu-item-head .roman {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--gold);
  font-feature-settings: "lnum" 1;
  letter-spacing: 0.04em;
}
.menu-item h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.menu-item h3 em { font-style: italic; color: var(--gold); }
.menu-item .menu-desc {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 50ch;
  margin-bottom: 12px;
}
.menu-item .menu-notes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: .875rem;
  color: var(--ink-mute);
}
.menu-item .menu-notes li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.menu-item .menu-notes li::before {
  content: "";
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}
.menu-item-price {
  font-family: var(--serif);
  font-weight: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  line-height: 1;
  font-feature-settings: "lnum" 1;
}
.menu-item-price .price {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums lining-nums;
  font-style: normal;
}
.menu-item-price .price .currency {
  font-size: 0.55em;
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
  vertical-align: top;
  margin-right: 2px;
}
.menu-item-price .gst {
  font-family: var(--sans);
  font-size: .6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 10px;
  font-weight: 500;
}

@media (max-width: 640px) {
  .menu-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .menu-item-price {
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 12px;
    align-items: baseline;
  }
  .menu-item-price .gst { margin-top: 0; }
}

/* Install note as editorial sidebar */
.install-note {
  max-width: 880px;
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: linear-gradient(180deg, rgba(16,176,230,0.05), transparent);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  position: relative;
}
.install-note::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
}
.install-note-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  font-feature-settings: "lnum" 1;
  letter-spacing: 0.04em;
}
.install-note-body h4 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.15;
}
.install-note-body p {
  font-size: .9375rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 720px) {
  .install-note {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
  transition: background .2s ease;
}
.faq-item summary {
  list-style: none;
  padding: 24px 12px 24px 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.4;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border: 1px solid var(--hairline-strong);
  border-radius: 50%;
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-position: center;
  background-size: 10px 1px, 1px 10px;
  background-repeat: no-repeat;
  color: var(--gold);
  transition: transform .25s var(--ease-out), border-color .2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  border-color: var(--gold);
}
.faq-item summary:hover { color: var(--gold); }
.faq-item .answer {
  padding: 0 0 24px 0;
  color: var(--ink-soft);
  font-size: .9375rem;
  line-height: 1.65;
  max-width: 70ch;
}
.faq-item .answer p + p { margin-top: 10px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
  border-top: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 400px at 50% 100%, rgba(16,176,230,0.15), transparent 70%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.final-cta h2 { margin-bottom: 18px; }
.final-cta p.lead { margin: 0 auto 32px; }
.final-cta .btn { font-size: 1rem; padding: 16px 28px; }
.final-cta-meta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: .8125rem;
  color: var(--ink-mute);
}
.final-cta-meta div { display: flex; align-items: center; gap: 6px; }
.final-cta-meta svg { width: 14px; height: 14px; color: var(--gold); }

/* ============================================================
   QUOTE FORM
   ============================================================ */
.quote-section {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
}
.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) { .quote-grid { grid-template-columns: 1fr; } }
.quote-info h2 { margin-bottom: 20px; }
.quote-info p { font-size: 1.0625rem; color: var(--ink-soft); margin-bottom: 24px; line-height: 1.55; }
.quote-info .quick {
  list-style: none; padding: 0; display: flex; flex-direction: column; gap: 16px;
}
.quote-info .quick li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: .9375rem; color: var(--ink-soft);
}
.quote-info .quick svg { width: 20px; height: 20px; color: var(--gold); flex: 0 0 auto; margin-top: 2px; }
.quote-info .quick strong { color: var(--ink); display: block; }

.quote-form-wrap {
  background: linear-gradient(180deg, #111111 0%, #0b0b0b 100%);
  border: 1px solid var(--hairline);
  border-radius: var(--r-4);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.quote-form-head { margin-bottom: 20px; }
.quote-form-head .eyebrow { margin-bottom: 8px; }
.quote-form-head h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; margin-bottom: 6px; }
.quote-form-head p { font-size: .875rem; color: var(--ink-mute); }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label {
  font-size: .8125rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  font-weight: 500;
}
.field label .req { color: var(--gold); margin-left: 2px; }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background-color: #0a0a0a;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-2);
  padding: 12px 14px;
  width: 100%;
  transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%2310b0e6' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.field textarea { min-height: 110px; resize: vertical; line-height: 1.5; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(255,255,255,0.22); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #0d0d0d;
  box-shadow: 0 0 0 4px rgba(16,176,230,0.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.field-hint { font-size: .75rem; color: var(--ink-mute); }
.field-error { font-size: .8125rem; color: var(--warn); display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--warn); }
.field.has-error .field-error { display: block; }

.quote-submit { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.quote-submit .btn { width: 100%; padding: 16px 28px; font-size: 1rem; }
.quote-success {
  display: none;
  text-align: center;
  padding: 32px 8px;
}
.quote-success.show { display: block; }
.quote-success .icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-tint);
  display: grid; place-items: center;
  margin: 0 auto 20px;
}
.quote-success .icon svg { width: 28px; height: 28px; color: var(--gold); }
.quote-success h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 8px; color: var(--ink); }
.quote-success p { font-size: .9375rem; color: var(--ink-soft); }
.legal {
  font-size: .75rem;
  color: var(--ink-mute);
  text-align: center;
  margin-top: 4px;
  line-height: 1.5;
}
.legal a { color: var(--ink-soft); text-decoration: underline; text-decoration-color: var(--hairline-strong); text-underline-offset: 3px; }
.legal a:hover { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
footer.foot {
  background: #060606;
  border-top: 1px solid var(--hairline);
  padding: clamp(3rem, 5vw, 4rem) 0 24px;
  color: var(--ink-mute);
  font-size: .875rem;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 24px;
}
@media (max-width: 880px) { .foot-top { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .foot-top { grid-template-columns: 1fr; } }
.foot-brand p { margin-top: 14px; max-width: 36ch; line-height: 1.6; }
.foot-col h4 {
  font-size: .75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-weight: 600;
  font-family: var(--sans);
}
.foot-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { transition: color .15s ease; }
.foot-col a:hover { color: var(--gold); }
.foot-bot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .75rem; color: var(--ink-faint); }
.foot-bot .legal-row { display: flex; gap: 16px; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--hairline-strong);
  padding: 10px var(--gutter) max(10px, env(safe-area-inset-bottom));
  display: none;
  z-index: 30;
  gap: 10px;
}
.sticky-cta .btn { flex: 1; padding: 12px 16px; font-size: .9375rem; min-height: 46px; }
.sticky-cta .btn-secondary { flex: 0 0 auto; padding: 12px; min-width: 46px; }
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
}

/* ============================================================
   MOTION (scroll reveal)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* Selection */
::selection { background: var(--gold); color: #001821; }

/* Print, minor cleanup */
@media print {
  .nav, .topbar, .sticky-cta, .final-cta { display: none; }
  body { background: white; color: black; }
}

/* ============================================================
   MULTI-PAGE COMPONENTS
   Added for the service/location/about pages.
   ============================================================ */

/* Page hero (used on every page except the homepage) */
.page-hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2rem, 4vw, 3.5rem);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(16,176,230,0.10) 0%, transparent 65%),
    linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 70%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; }
.page-hero-content {
  max-width: 820px;
  margin: 20px 0 0;
}
.page-hero-content .eyebrow { margin-bottom: 18px; }
.page-hero-content h1 {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin-bottom: 22px;
}
.page-hero-content h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.page-hero-content p.lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 62ch;
  line-height: 1.55;
  margin-bottom: 30px;
}
.page-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Breadcrumbs */
.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: .8125rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.crumbs a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .15s ease;
}
.crumbs a:hover { color: var(--gold); }
.crumbs [aria-current="page"] {
  color: var(--ink);
  font-weight: 500;
}
.crumb-sep {
  color: var(--ink-faint);
  opacity: 0.7;
}

/* Service cards on multi-page (no card-icon needed) */
.service-cards .card { padding-top: clamp(1.5rem, 2.5vw, 2rem); }

/* Related cards (cross-link blocks at the bottom of service/location pages) */
.section.related {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
}
.related-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(180deg, #111111 0%, #0c0c0c 100%);
  border: 1px solid var(--hairline);
  border-radius: var(--r-4);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--ink);
  text-decoration: none;
  transition: transform .25s var(--ease-out), border-color .2s ease, box-shadow .25s var(--ease-out);
}
.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px -18px rgba(16,176,230,0.18);
}
@media (prefers-reduced-motion: reduce) {
  .related-card:hover { transform: none; }
}
.related-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 0;
  line-height: 1.15;
}
.related-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: .875rem;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.related-go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.related-go svg { width: 14px; height: 14px; transition: transform .2s var(--ease-out); }
.related-card:hover .related-go svg { transform: translateX(3px); }
@media (prefers-reduced-motion: reduce) {
  .related-card:hover .related-go svg { transform: none; }
}

/* Suburb / service chips on multi-page */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.chip-link {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline-strong);
  background: rgba(255,255,255,0.02);
  font-size: .875rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.chip-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-tint);
}

/* Local notes list — variation of solution-list */
.local-notes li {
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
}
.local-notes li:last-child { border-bottom: 0; }
.local-notes li svg {
  flex: 0 0 auto;
  width: 18px; height: 18px;
  color: var(--gold);
  margin-top: 4px;
}

