@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --text: #2a211c;
  --text-muted: #6b5f56;
  --timber: #8b5e3c;
  --timber-dark: #3d2817;
  --forest: #1f6b47;
  --forest-dark: #155a3a;
  --gold: #d4a017;
  --border: #e8dfd4;
  --shadow: 0 4px 24px rgba(42, 33, 28, 0.06);
  --shadow-lg: 0 12px 40px rgba(42, 33, 28, 0.1);
  --radius: 16px;
  --radius-lg: 24px;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--forest-dark); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; color: var(--timber-dark); }
.skip-link {
  position: absolute; left: 1rem; top: 1rem; z-index: 200;
  padding: 0.5rem 1rem; background: var(--forest); color: #fff;
  border-radius: 8px; transform: translateY(-200%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.section { padding: 4.5rem 0; }
.section--tight { padding: 3rem 0; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem 0;
}
.logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo__name { font-family: var(--font-display); font-size: 1.35rem; color: var(--timber-dark); }
.logo__tag { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.04em; text-transform: uppercase; }
.nav { display: none; align-items: center; gap: 1.75rem; }
.nav a { font-size: 0.92rem; font-weight: 500; color: var(--text); }
.nav a:hover { color: var(--forest); }
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.5rem 0; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: 0.2s ease;
}
.nav__dropdown:hover .nav__dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown-menu a { display: block; padding: 0.6rem 1rem; }
.header-cta { display: none; align-items: center; gap: 0.75rem; }
.header-cta .phone { font-weight: 700; color: var(--forest); font-variant-numeric: tabular-nums; }
.menu-btn {
  display: flex; width: 44px; height: 44px; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 12px; background: var(--surface); cursor: pointer;
}
.mobile-nav { display: none; border-top: 1px solid var(--border); padding: 1rem 0; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 0.65rem 0; font-weight: 500; }
.mobile-nav .sub a { padding-left: 1rem; font-weight: 400; color: var(--text-muted); }

@media (min-width: 1024px) {
  .nav, .header-cta { display: flex; }
  .menu-btn { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 48px; padding: 0 1.5rem; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--forest); color: #fff; box-shadow: 0 4px 14px rgba(31, 107, 71, 0.3); }
.btn--primary:hover { background: var(--forest-dark); color: #fff; }
.btn--secondary { background: transparent; color: var(--forest); border: 2px solid var(--forest); }
.btn--white { background: #fff; color: var(--forest); }
.btn--lg { min-height: 54px; padding: 0 2rem; font-size: 1.05rem; }

/* Hero */
.hero {
  position: relative; min-height: 72vh; display: flex; align-items: center;
  overflow: hidden; color: #fff;
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30, 20, 12, 0.88) 0%, rgba(30, 20, 12, 0.55) 50%, rgba(31, 107, 71, 0.35) 100%);
}
.hero__content { position: relative; padding: 5rem 0; max-width: 680px; }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 6vw, 4rem); margin: 0 0 1.25rem; }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.88); margin: 0 0 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 1rem; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  background: rgba(212, 160, 23, 0.2); color: #fde68a; border: 1px solid rgba(212, 160, 23, 0.35);
  margin-bottom: 1.25rem;
}
.page-hero {
  position: relative; padding: 4rem 0; color: #fff; overflow: hidden;
}
.page-hero--dark { background: var(--timber-dark); }
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.page-hero--dark .page-hero__bg { opacity: 0.42; }
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30, 20, 12, 0.9) 0%, rgba(30, 20, 12, 0.72) 55%, rgba(31, 107, 71, 0.25) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin: 0; }
.page-hero p { color: rgba(255,255,255,0.85); margin: 1rem 0 0; max-width: 560px; }
.page-hero__breadcrumb {
  font-size: 0.85rem;
  opacity: 0.85;
  margin: 0 0 0.75rem;
  max-width: none;
}
.page-hero__breadcrumb a { color: rgba(255, 255, 255, 0.9); }
.page-hero__breadcrumb a:hover { color: #fde68a; }

.page-hero--centered .container {
  text-align: center;
  max-width: 42rem;
}
.page-hero--centered h1,
.page-hero--centered p {
  max-width: none;
  margin-inline: auto;
}

/* Reviews hero */
.page-hero--reviews {
  padding: clamp(5rem, 12vw, 7.5rem) 0 clamp(5rem, 8vw, 6rem);
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--timber-dark);
}
.page-hero--reviews .reviews-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 56rem;
  width: 100%;
  margin-inline: auto;
  z-index: 1;
}
.page-hero--reviews .reviews-hero__inner > * {
  max-width: none;
}
.page-hero__overlay--reviews {
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(212, 160, 23, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(31, 107, 71, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, rgba(30, 20, 12, 0.75) 0%, rgba(30, 20, 12, 0.92) 85%, rgba(30, 20, 12, 0.98) 100%);
}
.page-hero--reviews .page-hero__bg {
  opacity: 0.5;
  transform: scale(1.05);
}
.reviews-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.reviews-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fde68a;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.4);
  box-shadow: 0 0 24px rgba(212, 160, 23, 0.12);
  margin: 0 0 2rem;
}
.reviews-hero__score {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 1.5rem;
  width: 100%;
}
.reviews-hero__score::before {
  content: '';
  position: absolute;
  inset: -3rem -4rem;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.25) 0%, transparent 65%);
  pointer-events: none;
}
.reviews-hero__ring {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(9rem, 22vw, 12rem);
  height: clamp(9rem, 22vw, 12rem);
  border-radius: 50%;
  border: 2px solid rgba(212, 160, 23, 0.45);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 80px rgba(212, 160, 23, 0.2),
    inset 0 0 48px rgba(212, 160, 23, 0.06);
}
.reviews-hero__ring::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.reviews-hero__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 8vw, 4.5rem);
  line-height: 1;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 24px rgba(212, 160, 23, 0.4);
}
.reviews-hero__stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.15rem;
  margin-top: 0.4rem;
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: var(--gold);
  line-height: 1;
}
.reviews-hero__stars span {
  display: block;
}
.page-hero--reviews h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  margin: 0.25rem 0 0;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.page-hero--reviews .page-hero__lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  margin: 1rem auto 0;
  max-width: 36rem;
  text-align: center;
}
.reviews-hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin: 2.25rem 0 2.5rem;
}
.reviews-hero__stat {
  min-width: 8.5rem;
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  transition: transform 0.2s, border-color 0.2s;
}
.reviews-hero__stat:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 160, 23, 0.35);
}
.reviews-hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
}
.reviews-hero__stat span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.reviews-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.reviews-hero__call {
  border-color: rgba(255, 255, 255, 0.65) !important;
  color: #fff !important;
}
.reviews-hero__call:hover {
  background: #fff !important;
  color: var(--forest) !important;
}
.reviews-hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
}
.reviews-hero__wave svg {
  width: 100%;
  height: 3.5rem;
  display: block;
}

/* Reviews section */
.reviews-section {
  padding-top: 2rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 160, 23, 0.04) 0%, transparent 50%),
    var(--bg);
}
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}
.section-head--reviews h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}
.section-head--split {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  text-align: left;
  max-width: none;
  margin-bottom: 3rem;
}
.section-head--split > div { text-align: left; }
.section-head__link {
  font-weight: 600;
  white-space: nowrap;
}
.reviews-grid {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .reviews-grid--triple { grid-template-columns: repeat(3, 1fr); }
}
.reviews-footnote {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.reviews-footnote a { font-weight: 600; }

/* Trust strip */
.trust-strip {
  background: var(--surface); border-block: 1px solid var(--border);
  padding: 0.85rem 0; text-align: center; font-size: 0.88rem; font-weight: 500;
}
.trust-strip .star { color: var(--gold); }

/* Cards & grids */
.grid-2 { display: grid; gap: 1.5rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--surface); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card__body { padding: 1.5rem; }
.card__title { font-family: var(--font-display); font-size: 1.35rem; margin: 0 0 0.5rem; }
.card__text { color: var(--text-muted); font-size: 0.92rem; margin: 0; }
.card__link { display: inline-block; margin-top: 1rem; font-weight: 600; font-size: 0.9rem; }

.feature-card {
  padding: 2rem; border-radius: var(--radius-lg); background: var(--surface);
  border: 1px solid var(--border); text-align: center;
}
.feature-card h3 { font-size: 1.2rem; color: var(--forest); margin: 0 0 0.5rem; }
.feature-card p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }

/* Section headers */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(1.85rem, 3vw, 2.5rem); margin: 0 0 0.75rem; }
.section-head p { color: var(--text-muted); margin: 0; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  color: #fff; text-align: center; padding: 4rem 0;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.25rem); margin: 0 0 1rem; }
.cta-banner p { color: rgba(255,255,255,0.9); margin: 0 auto 2rem; max-width: 520px; }
.cta-banner .btn--secondary { border-color: #fff; color: #fff; }
.cta-banner .btn--secondary:hover { background: #fff; color: var(--forest); }

/* Notice box */
.notice {
  padding: 1.25rem 1.5rem; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(31,107,71,0.08), rgba(31,107,71,0.04));
  border: 1px solid rgba(31,107,71,0.2);
}
.notice strong { color: var(--forest); }
.notice p { margin: 0.35rem 0 0; color: var(--text-muted); font-size: 0.95rem; }

/* Suburb chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.chip {
  padding: 0.45rem 1rem; border-radius: 999px; font-size: 0.85rem; font-weight: 500;
  background: var(--surface); border: 1px solid var(--border); color: var(--text);
  transition: 0.15s;
}
.chip:hover { background: var(--forest); color: #fff; border-color: var(--forest); }

/* Testimonials */
.quote-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  overflow: hidden;
}
.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 160, 23, 0.25);
}
.quote-card__mark {
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(212, 160, 23, 0.12);
  pointer-events: none;
}
.quote-card__stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.95rem;
}
.quote-card blockquote {
  flex: 1;
  margin: 1.25rem 0 1.5rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text);
}
.quote-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.quote-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.quote-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest);
  background: linear-gradient(135deg, rgba(31, 107, 71, 0.12), rgba(212, 160, 23, 0.1));
  border: 1px solid rgba(31, 107, 71, 0.15);
  flex-shrink: 0;
}
.quote-card cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
}
.quote-card__suburb {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}
.quote-card__badge {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(31, 107, 71, 0.08);
  border: 1px solid rgba(31, 107, 71, 0.15);
  flex-shrink: 0;
}
.quote-card--featured {
  background: linear-gradient(145deg, #fff 0%, #faf8f5 100%);
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: 0 8px 32px rgba(42, 33, 28, 0.08);
}
.quote-card--featured .quote-card__mark {
  font-size: 6.5rem;
  color: rgba(212, 160, 23, 0.18);
}
.quote-card--featured blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  line-height: 1.5;
  font-style: italic;
}
@media (min-width: 768px) {
  .quote-card--featured {
    grid-column: 1 / -1;
    padding: 2.5rem 3rem;
  }
}


/* Forms */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; min-height: 48px; padding: 0.75rem 1rem;
  border: 1px solid var(--border); border-radius: 12px;
  font: inherit; background: var(--surface); transition: border-color 0.15s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(31,107,71,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-hint { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.35rem; }
.form-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
.form-panel {
  background: var(--surface); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 2rem; box-shadow: var(--shadow);
}
.alert { padding: 1rem; border-radius: 12px; font-size: 0.9rem; margin-bottom: 1rem; }
.alert--success { background: rgba(31,107,71,0.1); color: var(--forest-dark); border: 1px solid rgba(31,107,71,0.25); }
.alert--error { background: rgba(185,28,28,0.08); color: #991b1b; border: 1px solid rgba(185,28,28,0.2); }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* FAQ */
.faq details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 0.75rem; overflow: hidden;
}
.faq summary {
  padding: 1.1rem 1.25rem; font-weight: 600; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--forest); font-size: 1.25rem; }
.faq details[open] summary::after { content: '−'; }
.faq .faq-body { padding: 0 1.25rem 1.25rem; color: var(--text-muted); }

/* Gallery filters */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filter {
  padding: 0.5rem 1.1rem; border-radius: 999px; font-size: 0.88rem; font-weight: 500;
  border: 1px solid var(--border); background: var(--surface); color: var(--text);
}
.filter--active, .filter:hover { background: var(--forest); color: #fff; border-color: var(--forest); }

/* Footer */
.site-footer { background: var(--timber-dark); color: rgba(255,255,255,0.8); padding: 4rem 0 2rem; }
.site-footer h3, .site-footer .logo__name { color: #fff; font-family: var(--font-display); }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.site-footer a { color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: 0.82rem;
}

/* Mobile call bar */
.call-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: 0.75rem 1rem; background: var(--forest);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.call-bar a {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 52px; background: var(--forest-dark); color: #fff;
  border-radius: 14px; font-weight: 700; font-size: 1.05rem;
}
@media (min-width: 1024px) { .call-bar { display: none; } body { padding-bottom: 0; } }
@media (max-width: 1023px) { body.has-call-bar { padding-bottom: 76px; } }

/* Prose */
.prose { max-width: 68ch; }
.prose p { margin: 0 0 1rem; color: var(--text-muted); }
.prose p:last-child { margin-bottom: 0; }

/* Region headings for service areas */
.region-title {
  font-family: var(--font-display); font-size: 1.5rem;
  margin: 2.5rem 0 1rem; padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}
.region-title:first-child { margin-top: 0; }

/* Before/after */
.ba-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .ba-grid { grid-template-columns: 1fr 1fr; } }
.ba-grid figcaption { text-align: center; font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; }
.ba-grid img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; width: 100%; }