@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: #FFFFFF;
  color: #111111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #FFFFFF; }
::-webkit-scrollbar-thumb { background: #D8D4C9; border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: #1d40ab; }

:focus-visible { outline: 2px solid #1d40ab; outline-offset: 2px; }

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

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Layout helpers ─────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 767px) { .container { padding: 0 16px; } }

.section-dark    { background: #FFFFFF; padding: 80px 0; border-bottom: 1px solid #E5E7EB; }
.section-mid     { background: #FFFFFF; padding: 80px 0; border-bottom: 1px solid #E5E7EB; }
.section-charcoal{ background: #FFFFFF; padding: 80px 0; border-bottom: 1px solid #E5E7EB; }
.section-darkest { background: #FFFFFF; padding: 48px 0; border-bottom: 1px solid #E5E7EB; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E7EB;
}
.section-header-center { text-align: center; margin-bottom: 48px; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
  color: #111111;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.section-sub { font-size: 17px; color: #374151; max-width: 500px; margin: 8px auto 0; }
.section-link {
  font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: #1d40ab; text-decoration: none;
  flex-shrink: 0;
}
.section-link:hover { color: #1530a0; }

/* ── Hero ───────────────────────────── */
.hero-section {
  position: relative;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-bottom: 1px solid #E5E7EB;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  animation: heroZoom 10s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.62) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.15) 70%,
    rgba(0,0,0,0.0) 100%
  );
}

/* Subtle grain texture */
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
}

.hero-body-wrap {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 70px;
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-content { max-width: 700px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 18px;
  margin-bottom: 28px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6.5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.hero-h1-big {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: #ffffff;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; }

.hero-actions .btn-outline {
  color: #ffffff;
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.8);
}

.trust-chip {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #ffffff;
  border-radius: 9999px;
  backdrop-filter: blur(6px);
}

/* Stats bar at bottom of hero */
.hero-stats-bar {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.55);
  border-top: 1px solid rgba(29,64,171,.12);
  backdrop-filter: blur(16px);
}

.hero-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
}

.hero-stat {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #111111;
  letter-spacing: -.01em;
  line-height: 1;
}

.hero-stat-l {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #6B7280;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(29,64,171,.15);
  align-self: stretch;
  margin: 16px 0;
  flex-shrink: 0;
}

/* ── Services grid ───────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.svc-grid-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 20px;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  box-shadow: 0 10px 30px -8px rgba(29,64,171,0.08);
}

.svc-grid-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--svc-img, none);
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 0;
}
.svc-grid-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
  opacity: 1;
  z-index: 1;
}
.svc-grid-card--cta::after { display: none; }

.svc-grid-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -10px rgba(29,64,171,0.16); }
.svc-grid-card .svc-grid-title { color: #ffffff; }
.svc-grid-card .svc-grid-desc  { color: rgba(255,255,255,0.85); }
.svc-grid-card .svc-icon-sm    { color: rgba(255,255,255,0.85); }

.svc-grid-card--cta {
  background: #b0aeac !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid #9e9c9a;
}
.svc-grid-card--cta::before { display: none; }
.svc-grid-card--cta:hover { background: #9e9c9a !important; border-color: #111111; }
.svc-grid-card--cta .svc-grid-title { color: #111111 !important; }
.svc-grid-card--cta .material-symbols-outlined { color: #111111 !important; }

.svc-icon-sm {
  font-size: 32px;
  color: #1d40ab;
  margin-bottom: 12px;
  display: block;
  position: relative;
  z-index: 2;
  transition: color .3s;
}
.svc-grid-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: #1530a0;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  transition: color .3s;
}
.svc-grid-desc {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.5;
  position: relative;
  z-index: 2;
  transition: color .3s;
}

/* ── Split / featured service ────────── */
.section-split { padding: 80px 0; border-bottom: 1px solid #E5E7EB; }

.split-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #E5E7EB;
  border-radius: 28px;
  overflow: hidden;
}

.split-img {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.split-wrap:hover .split-img img { transform: scale(1.04); }

.split-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #FFFFFF;
  color: #1530a0;
  padding: 16px 22px;
  border-radius: 16px;
  box-shadow: 0 10px 30px -8px rgba(29,64,171,0.18);
}
.split-badge-n {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}
.split-badge-l {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .65;
  margin-top: 2px;
}

.split-content {
  padding: 48px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #1d40ab;
  margin-bottom: 14px;
}

.split-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: #111111;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}

.split-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.split-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #E5E7EB;
  font-size: 15px;
  color: #374151;
}
.split-checklist li:last-child { border-bottom: none; }
.split-checklist .material-symbols-outlined {
  color: #1d40ab;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Why choose us ───────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.why-card {
  background: #F3F4F6;
  border: none;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
  box-shadow: 0 10px 30px -10px rgba(29,64,171,0.08);
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px -10px rgba(29,64,171,0.14); }

.why-icon-wrap {
  width: 56px;
  height: 56px;
  background: #EEF2FF;
  border: 1px solid #C3DFC4;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background .2s, border-color .2s;
}
.why-card:hover .why-icon-wrap { background: #1d40ab; border-color: #1d40ab; }
.why-icon-wrap .material-symbols-outlined { font-size: 26px; color: #1530a0; transition: color .2s; }
.why-card:hover .why-icon-wrap .material-symbols-outlined { color: #FFFFFF; }

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 10px;
  letter-spacing: 0;
}
.why-desc { font-size: 15px; color: #6B7280; line-height: 1.65; }

/* ── Process steps ────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.process-step {
  background: #b0aeac;
  border: 1px solid #b0aeac;
  border-radius: 20px;
  padding: 32px 20px 24px;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.process-step:hover { transform: translateY(-4px); box-shadow: 0 16px 36px -10px rgba(0,0,0,0.20); }

.process-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: rgba(0,0,0,0.35);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.process-label {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  color: #111111;
  margin-bottom: 8px;
}
.process-desc { font-size: 14px; color: rgba(0,0,0,0.65); line-height: 1.55; }

/* ── Before/After Gallery ─────────────── */
.section-gallery { padding: 80px 0; }

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}
.gallery-view-all {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #1530a0;
  text-decoration: none;
  border-bottom: 1px solid rgba(29,64,171,.4);
  padding-bottom: 2px;
  flex-shrink: 0;
}
.gallery-view-all:hover { border-color: #1530a0; }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ba-card { display: flex; flex-direction: column; }

.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: #FFFFFF;
  border-radius: 24px;
}

.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.ba-before {
  clip-path: inset(0 50% 0 0);
}

.ba-label {
  position: absolute;
  top: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 9999px;
  z-index: 3;
}
.ba-label--after { right: 12px; background: rgba(27,28,25,.55); color: #fff; backdrop-filter: blur(6px); }
.ba-label--before { left: 12px; background: rgba(27,28,25,.55); color: #fff; backdrop-filter: blur(6px); }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
  cursor: ew-resize;
}
.ba-handle-line {
  width: 2px;
  flex: 1;
  background: #fff;
}
.ba-handle-circle {
  width: 36px;
  height: 36px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 16px rgba(29,64,171,0.25);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  margin: 0;
}

.ba-caption {
  padding: 10px 0 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #6B7280;
}

.ba-note {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #6B7280;
  font-weight: 500;
  letter-spacing: .03em;
}

/* ── Reviews ─────────────────────────── */
.section-reviews { padding: 80px 0; }

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.score-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  color: #1530a0;
  padding: 32px;
  text-align: center;
  border-radius: 24px;
  box-shadow: 0 10px 30px -8px rgba(29,64,171,0.08);
}
.score-stars { font-size: 28px; color: #E9C349; margin-bottom: 10px; letter-spacing: 2px; }
.score-label {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.score-source { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: .55; }

.reviews-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Service areas ───────────────────── */
.section-areas { padding: 56px 0; }
.areas-eyebrow {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: #111111;
  margin-bottom: 20px;
}
.suburb-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 28px; }

/* ── CTA strip ───────────────────────── */
.cta-strip {
  background: #FFFFFF;
  padding: 80px 0;
  border-top: 1px solid #E5E7EB;
  text-align: center;
  position: relative;
}
.cta-strip--img {
  background-size: cover;
  background-position: center;
}
.cta-strip--img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.88);
}
.cta-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 600;
  color: #111111;
  letter-spacing: -.01em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.btn-group { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ── Suburb chip ─────────────────────── */
.suburb-chip {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 9999px;
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #1530a0;
  white-space: nowrap;
  transition: background .2s, border-color .2s;
}
.suburb-chip:hover { background: #EEF2FF; border-color: #1d40ab; }

/* ── Image placeholder fallback ──────── */
.img-placeholder {
  background: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  color: #6B7280; font-size: 13px;
  text-align: center; padding: 16px;
}

/* ─────────────── RESPONSIVE ─────────── */
@media (max-width: 1023px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .hero-section { min-height: 100svh; }
  .hero-body-wrap { padding: 80px 16px 50px; }
  .hero-stats-inner { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-stat-divider { display: none; }
  .hero-stat { padding: 16px; }
  .hero-stat-n { font-size: 20px; }
  .hero-stat--desktop-only { display: none; }
  .hero-stat-reviews { display: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }

  .split-wrap { grid-template-columns: 1fr; }
  .split-img { min-height: 280px; }
  .split-content { padding: 32px 24px; }

  .ba-grid { grid-template-columns: 1fr; }
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-cards { grid-template-columns: 1fr; }

  .gallery-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 500px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 10px; }
  .why-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    text-align: left;
  }
  .why-icon-wrap {
    grid-row: 1 / -1;
    align-self: center;
    margin: 0;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }
  .why-title { margin-bottom: 2px; }
  .why-desc { margin: 0; }
  .process-steps { grid-template-columns: 1fr; gap: 10px; }
  .process-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
  }
  .process-num {
    grid-row: 1 / -1;
    align-self: center;
    font-size: 30px;
    margin-bottom: 0;
    line-height: 1;
  }
  .process-label { margin-bottom: 2px; }
  .process-desc { margin: 0; }
}

/* ─── Colour balance: frequency-over-volume ───────────────────
   Backgrounds stay pure white. Blue injected through micro-elements:
   card borders, icon containers, numbers, badges, typography.
   ─────────────────────────────────────────────────────────── */

/* Body: deep navy instead of pure black keeps text readable but warmer */
body { color: #1A2B32; }
.section-title { color: #1A2B32; }
.split-title { color: #1A2B32; }

/* Section header divider: tinted blue instead of flat gray */
.section-header { border-bottom-color: rgba(29,64,171,0.14); }

/* Hero stats bar: frosted glass panel */
.hero-stats-bar {
  background: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(29,64,171,0.12);
  backdrop-filter: blur(16px);
}
.hero-stat-n { color: #111111; }
.hero-stat-l { color: #6B7280; }
.hero-stat-divider { background: rgba(29,64,171,0.15); }

/* Why cards: icon container */
.why-icon-wrap { background: rgba(29,64,171,0.08); border-color: rgba(29,64,171,0.15); }


/* Split section badge: blue background */
.split-img-badge { background: #1d40ab; color: #FFFFFF; }
