/* ============================================================
   STONEBROOKE PLUMBING — STYLESHEET
   Brand Primary: #42473C  |  Accent Gold: #C8A45A
   ============================================================ */

/* === TOKENS === */
:root {
  --brand: #42473C;
  --brand-light: #5a6154;
  --brand-dark: #2d3028;
  --gold: #C8A45A;
  --gold-light: #dbb97a;
  --bg: #F7F4EF;
  --bg-alt: #EDEAE4;
  --dark: #1A1C18;
  --mid: #6B7066;
  --white: #FFFFFF;
  --radius: 4px;
  --radius-lg: 12px;
  --ff-head: 'Barlow Condensed', sans-serif;
  --ff-body: 'Inter', sans-serif;
  --shadow: 0 4px 24px rgba(26, 28, 24, 0.08);
  --shadow-lg: 0 12px 48px rgba(26, 28, 24, 0.14);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === UTILITIES === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 120px 0;
}

.section-label {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.7;
  max-width: 520px;
}

.section-header {
  margin-bottom: 64px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 164, 90, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}
.btn-ghost:hover {
  background: var(--brand);
  color: var(--white);
}

.btn-lg { padding: 18px 40px; font-size: 1.15rem; }
.btn-full { width: 100%; justify-content: center; }


/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  transition: padding var(--transition);
}

.nav.scrolled .nav-inner { padding: 1rem 2rem; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.logo-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  /* invert black logo to white so it reads on dark nav */
  filter: brightness(0) invert(1);
}

.logo-text {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.1;
  color: var(--white);
}

.logo-text small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links li a {
  font-family: var(--ff-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}

.nav-links li a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700 !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--dark);
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.mobile-menu.open {
  max-height: 500px;
  padding: 1rem 2rem 1.5rem;
}

.mobile-menu ul { display: flex; flex-direction: column; gap: 0.25rem; }

.mob-link {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}

.mob-link:hover { color: var(--gold); }
.mob-cta { color: var(--gold) !important; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1C18 0%, #2d3028 40%, #42473C 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 164, 90, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 164, 90, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(66, 71, 60, 0.3) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 164, 90, 0.35);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 2.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-heading {
  font-family: var(--ff-head);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero-line {
  display: block;
  font-size: clamp(5rem, 11vw, 10rem);
  color: var(--white);
}

.hero-line--accent {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
  display: block;
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}


/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  flex-shrink: 0;
}

.ticker-dot {
  font-size: 0.6rem !important;
  color: var(--brand) !important;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--bg-alt);
  border: 1.5px solid var(--bg-alt);
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  z-index: 2;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card--featured {
  background: var(--brand);
  grid-row: span 1;
}

.service-card--featured::before { background: var(--gold); }

.service-card--featured h3,
.service-card--featured p,
.service-card--featured .service-link { color: var(--white); }

.service-card--featured .service-icon { color: var(--gold); }
.service-card--featured .service-tag {
  background: var(--gold);
  color: var(--dark);
}

.service-card--featured:hover {
  background: var(--brand-light);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--brand);
  margin-bottom: 1.25rem;
}

.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(200, 164, 90, 0.12);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-link {
  font-family: var(--ff-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}

.service-link:hover { gap: 0.75rem; }


/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.about-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-head);
  font-size: clamp(6rem, 14vw, 16rem);
  font-weight: 900;
  color: rgba(66, 71, 60, 0.045);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
  user-select: none;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-left { position: relative; }

.about-img-wrap {
  position: relative;
  height: 520px;
}

.about-img-box {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-box--1 {
  width: 75%;
  height: 400px;
  top: 0;
  left: 0;
}

.about-img-box--2 {
  width: 55%;
  height: 260px;
  bottom: 0;
  right: 0;
  box-shadow: var(--shadow-lg);
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
}

.about-img-placeholder svg { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder--2 { background: var(--dark); }

.about-badge-float {
  position: absolute;
  top: 40%;
  right: -1rem;
  z-index: 5;
}

.float-badge {
  background: var(--gold);
  color: var(--dark);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.float-badge strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.float-badge span {
  display: block;
  font-family: var(--ff-head);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.about-text {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pillar-icon {
  width: 28px;
  height: 28px;
  background: var(--brand);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.15rem;
}

.pillar span {
  font-size: 0.85rem;
  color: var(--mid);
}


/* ============================================================
   STATS BANNER
   ============================================================ */
.stats-banner {
  background: var(--brand);
  padding: 64px 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.stat-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.1em;
  line-height: 1;
}

.stat-num {
  font-family: var(--ff-head);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.5rem;
}


/* ============================================================
   PROCESS
   ============================================================ */
.process {
  background: var(--dark);
}

.process .section-title { color: var(--white); }
.process .section-label { color: var(--gold); }
.process .section-desc { color: rgba(255,255,255,0.5); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  position: relative;
  padding: 2.5rem 2rem 2.5rem 0;
}

.process-step + .process-step {
  padding-left: 2rem;
  border-left: 1px solid rgba(255,255,255,0.1);
}

.step-number {
  font-family: var(--ff-head);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: -1.5rem;
  letter-spacing: -0.03em;
}

.step-content h3 {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.step-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.step-arrow {
  position: absolute;
  top: 2.5rem;
  right: -0.75rem;
  font-size: 1.5rem;
  color: var(--gold);
  z-index: 2;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card--featured {
  grid-column: span 2;
  background: var(--brand);
}

.testimonial-card--featured blockquote { color: rgba(255,255,255,0.85); }
.testimonial-card--featured .stars { color: var(--gold); }
.testimonial-card--featured .reviewer strong { color: var(--white); }
.testimonial-card--featured .reviewer span { color: rgba(255,255,255,0.5); }
.testimonial-card--featured .reviewer-avatar {
  background: var(--gold);
  color: var(--dark);
}

.stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

blockquote {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.reviewer span {
  font-size: 0.78rem;
  color: var(--mid);
}


/* ============================================================
   AREAS
   ============================================================ */
.areas {
  background: var(--bg-alt);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(66, 71, 60, 0.1);
  border: 1px solid rgba(66, 71, 60, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.area-zone {
  background: var(--white);
  padding: 2rem;
}

.area-zone h4 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.area-zone ul { display: flex; flex-direction: column; gap: 0.4rem; }

.area-zone li {
  font-size: 0.9rem;
  color: var(--mid);
  padding: 0.2rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.area-zone li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.area-zone--more {
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.more-text {
  text-align: center;
}

.more-text span {
  font-family: var(--ff-head);
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.more-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin: 0.5rem 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.more-text a {
  font-family: var(--ff-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity var(--transition);
}

.more-text a:hover { opacity: 0.75; }


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--brand);
  padding: 80px 0;
}

.cta-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.cta-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--dark);
}

.contact .section-title { color: var(--white); }
.contact .section-label { color: var(--gold); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
}

.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(200, 164, 90, 0.12);
  color: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}

.contact-detail a,
.contact-detail span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.contact-detail a:hover { color: var(--gold); }

/* FORM */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--bg);
  border: 1.5px solid var(--bg-alt);
  border-radius: var(--radius);
  padding: 12px 16px;
  width: 100%;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  background: var(--white);
}

.form-group textarea { resize: vertical; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7066' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--mid);
  margin-top: 0.75rem;
}

/* SUCCESS STATE */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success.visible { display: block; }
.form-success .success-icon {
  width: 60px;
  height: 60px;
  background: rgba(66, 71, 60, 0.1);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.form-success h3 {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-success p { font-size: 0.95rem; color: var(--mid); }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #111310;
}

.footer-top {
  padding: 80px 0 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-top-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 6rem;
}

.footer-brand { max-width: 340px; }

.footer-logo { margin-bottom: 1.25rem; }

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-licenses {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-licenses span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 100px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h5 {
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col li a,
.footer-col li span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-col li a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}


/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 900;
  box-shadow: var(--shadow);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}


/* ============================================================
   HERO IMAGE OVERLAY (updated)
   ============================================================ */
.hero-bg {
  background-size: cover;
  background-position: center;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,28,24,0.92) 0%, rgba(42,47,40,0.80) 60%, rgba(26,28,24,0.70) 100%);
  z-index: 1;
}
.hero-bg .hero-grid { z-index: 2; }

/* Nav active link */
.nav-links li a.active { color: var(--gold) !important; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding-top: 100px;
}
.page-hero--short { min-height: 50vh; }

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,28,24,0.55) 0%, rgba(26,28,24,0.88) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 5rem;
}

.page-breadcrumb {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.page-breadcrumb a { color: var(--gold); transition: opacity 0.2s; }
.page-breadcrumb a:hover { opacity: 0.75; }
.page-breadcrumb span { margin: 0 0.5rem; }

.page-hero-title {
  font-family: var(--ff-head);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.page-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.7;
}

/* ============================================================
   INTRO STRIP (services page)
   ============================================================ */
.intro-strip {
  background: var(--brand);
  padding: 20px 0;
}
.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.intro-strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}
.intro-strip-item svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   SERVICES PAGE — ALTERNATING ROWS
   ============================================================ */
.services-page { background: var(--bg); }

.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--bg-alt);
}
.svc-row:last-of-type { border-bottom: none; }
.svc-row--rev { direction: rtl; }
.svc-row--rev > * { direction: ltr; }

.svc-row-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.svc-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.svc-row-img:hover img { transform: scale(1.03); }

.svc-row-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: var(--radius);
}

.svc-title {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.svc-row-body p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.svc-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.svc-points li {
  font-size: 0.9rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.svc-points li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Secondary services grid */
.secondary-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sec-svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.sec-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.sec-svc-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.sec-svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.sec-svc-card:hover .sec-svc-img img { transform: scale(1.05); }

.sec-svc-body {
  padding: 1.5rem;
}
.sec-svc-body h3 {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.sec-svc-body p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.svc-link-sm {
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.2s;
}
.svc-link-sm:hover { opacity: 0.7; }

/* ============================================================
   HOMEPAGE — FEATURED SERVICES
   ============================================================ */
.home-services { background: var(--bg); }

.section-header--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-end;
}
.section-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.btn-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-dark:hover {
  background: var(--dark);
  color: var(--white);
}

.home-services-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.home-service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.home-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.hsc-img {
  overflow: hidden;
  flex-shrink: 0;
}
.home-service-card--lg .hsc-img { aspect-ratio: 4/3; }
.home-service-card:not(.home-service-card--lg) .hsc-img { aspect-ratio: 16/10; }

.hsc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.home-service-card:hover .hsc-img img { transform: scale(1.05); }

.hsc-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hsc-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(200, 164, 90, 0.12);
  color: var(--gold);
  padding: 3px 9px;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}

.hsc-body h3 {
  font-family: var(--ff-head);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.hsc-body p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}
.hsc-link {
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
}

/* ============================================================
   HOMEPAGE — ABOUT TEASER
   ============================================================ */
.home-about { background: var(--bg-alt); }

.home-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.home-about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.home-about-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.home-about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--dark);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.hab-num {
  display: block;
  font-family: var(--ff-head);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hab-year {
  display: block;
  font-family: var(--ff-head);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.home-about-text p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.75;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { background: var(--bg); }

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-story-imgs {
  position: relative;
  height: 540px;
}

.story-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-img--main {
  width: 80%;
  height: 420px;
  top: 0;
  left: 0;
}
.story-img--accent {
  width: 55%;
  height: 260px;
  bottom: 0;
  right: 0;
  box-shadow: var(--shadow-lg);
}

.story-year-badge {
  position: absolute;
  top: 38%;
  right: -1rem;
  background: var(--gold);
  color: var(--dark);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  font-family: var(--ff-head);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 5;
}
.syb-year {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin: 0.15rem 0;
}

.about-story-text p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.story-milestones {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--bg-alt);
  padding-left: 1.5rem;
}

.milestone {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--bg-alt);
  position: relative;
}
.milestone::before {
  content: '';
  position: absolute;
  left: -1.65rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--bg);
}
.ms-year {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
  min-width: 50px;
  flex-shrink: 0;
}
.ms-text {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.5;
}

/* Values */
.about-values { background: var(--brand); }
.about-values .section-title { color: var(--white); }
.about-values .section-label { color: var(--gold); }
.about-values .section-desc { color: rgba(255,255,255,0.55); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.value-card {
  background: rgba(255,255,255,0.04);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background var(--transition);
}
.value-card:hover { background: rgba(255,255,255,0.09); }

.value-num {
  font-family: var(--ff-head);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  margin-bottom: -1rem;
}

.value-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.value-icon svg { width: 100%; height: 100%; }

.value-card h3 {
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.value-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* Team */
.about-team { background: var(--bg-alt); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-img img { transform: scale(1.04); }

.team-body { padding: 1.25rem; }
.team-body h4 {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.team-role {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.team-body p {
  font-size: 0.825rem;
  color: var(--mid);
  line-height: 1.55;
}

/* Certifications */
.about-certs { background: var(--bg); }

.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cert-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-bottom: 3px solid var(--gold);
  transition: transform var(--transition);
}
.cert-card:hover { transform: translateY(-3px); }

.cert-icon {
  width: 40px;
  height: 40px;
  color: var(--brand);
}
.cert-icon svg { width: 100%; height: 100%; }

.cert-card h4 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
}
.cert-card p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.55;
}

/* ============================================================
   SUBURB CHECKER
   ============================================================ */
.suburb-checker-section {
  background: var(--brand);
  padding: 56px 0;
}

.suburb-checker-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  position: relative;
}

.sc-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.sc-icon {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sc-header h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.sc-header p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.sc-input-row {
  display: flex;
  gap: 0.75rem;
  position: relative;
}

.sc-input-wrap {
  flex: 1;
  position: relative;
}

.sc-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mid);
  pointer-events: none;
}

.sc-input {
  width: 100%;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--dark);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 14px 44px 14px 44px;
  outline: none;
  transition: border-color var(--transition);
}
.sc-input:focus { border-color: var(--gold); }
.sc-input::placeholder { color: rgba(0,0,0,0.35); }

.sc-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mid);
  padding: 4px;
  transition: color var(--transition);
}
.sc-clear:hover { color: var(--dark); }

.sc-btn { white-space: nowrap; flex-shrink: 0; }

/* Dropdown */
.sc-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  max-height: 220px;
  overflow-y: auto;
}
.sc-dropdown ul { padding: 0.5rem 0; }
.sc-dropdown li {
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  color: var(--dark);
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sc-dropdown li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.sc-dropdown li:hover { background: var(--bg); }

/* Result states */
.sc-result {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: fadeInUp 0.3s ease;
}
.sc-result--yes {
  background: rgba(94, 185, 94, 0.12);
  border: 1px solid rgba(94, 185, 94, 0.35);
  color: #c8ffc8;
}
.sc-result--no {
  background: rgba(220, 80, 80, 0.12);
  border: 1px solid rgba(220, 80, 80, 0.3);
  color: #ffc8c8;
}
.sc-result .sc-r-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.sc-result--yes .sc-r-icon { background: rgba(94,185,94,0.25); }
.sc-result--no .sc-r-icon { background: rgba(220,80,80,0.2); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Quick suburb pills */
.sc-quick {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.sc-quick-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.sc-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sc-pill {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 5px 14px;
  cursor: pointer;
  transition: all var(--transition);
}
.sc-pill:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* ============================================================
   CONTACT PAGE ADDITIONS
   ============================================================ */
.form-title {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.contact-areas {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact-areas h4 {
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}
.contact-areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.contact-areas-tags span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 10px;
  border-radius: 100px;
}

/* Emergency strip */
.emergency-strip {
  background: #c0392b;
  padding: 1.25rem 0;
}
.emergency-strip-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.es-icon { color: rgba(255,255,255,0.85); flex-shrink: 0; }
.es-text { flex: 1; color: var(--white); }
.es-text strong { display: block; font-weight: 700; font-size: 0.95rem; }
.es-text span { font-size: 0.85rem; opacity: 0.8; }
.emergency-strip .btn-primary { flex-shrink: 0; white-space: nowrap; }

/* ============================================================
   BOTTOM CTA (homepage)
   ============================================================ */
.bottom-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.bottom-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.bottom-cta:hover .bottom-cta-bg { transform: scale(1); }

.bottom-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 28, 24, 0.88) 0%,
    rgba(42, 47, 40, 0.92) 60%,
    rgba(26, 28, 24, 0.96) 100%
  );
}

.bottom-cta-overlay--gold {
  background: linear-gradient(
    135deg,
    rgba(26, 28, 24, 0.94) 0%,
    rgba(50, 44, 28, 0.93) 50%,
    rgba(26, 28, 24, 0.96) 100%
  );
}

.bottom-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bottom-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 164, 90, 0.35);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.bottom-cta-heading {
  font-family: var(--ff-head);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.bottom-cta-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.bottom-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.bottom-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 800px;
}

.bottom-cta-trust span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.bottom-cta-trust svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   RESPONSIVE — TABLET (≤1200px)
   ============================================================ */
@media (max-width: 1200px) {
  .home-services-grid { grid-template-columns: 1fr 1fr; }
  .home-service-card--lg { grid-column: span 2; }
  .home-service-card--lg .hsc-img { aspect-ratio: 16/7; }
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .section { padding: 88px 0; }

  /* nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  /* grids */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .stat-item + .stat-item::before { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .step-arrow { display: none; }
  .process-step + .process-step { border-left: none; padding-left: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card--featured { grid-column: span 1; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }

  /* services page */
  .svc-row { grid-template-columns: 1fr; gap: 2rem; }
  .svc-row--rev { direction: ltr; }
  .secondary-services-grid { grid-template-columns: 1fr 1fr; }

  /* about page */
  .about-story-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-story-imgs { display: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }

  /* home */
  .section-header--split { grid-template-columns: 1fr; gap: 1.5rem; }
  .home-about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .home-about-img { display: none; }

  /* cta */
  .bottom-cta { padding: 100px 0; }
  .bottom-cta-heading { font-size: clamp(2.6rem, 6vw, 5rem); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 1.25rem; }

  /* hero */
  .hero-content { padding: 7rem 1.25rem 4rem; }
  .hero-badge { font-size: 0.68rem; padding: 6px 14px; }
  .hero-line { font-size: clamp(3.2rem, 13vw, 6rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-wrap: wrap; gap: 0.75rem; }
  .hero-stats { gap: 1rem; flex-wrap: wrap; }
  .hero-divider { display: none; }
  .hero-scroll { display: none; }

  /* page hero (inner pages) */
  .page-hero { min-height: 52vh; }
  .page-hero--short { min-height: 44vh; }
  .page-hero-title { font-size: clamp(2.8rem, 11vw, 5rem); }
  .page-hero-content { padding-bottom: 3rem; }

  /* ticker */
  .ticker-track span { font-size: 0.85rem; }

  /* section headings */
  .section-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .section-header { margin-bottom: 40px; }

  /* stats */
  .stats-banner { padding: 48px 0; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* services grid */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.75rem; }

  /* home services */
  .home-services-grid { grid-template-columns: 1fr; }
  .home-service-card--lg { grid-column: span 1; }

  /* process */
  .process-steps { grid-template-columns: 1fr; }
  .process-step { padding: 1.5rem 0; }

  /* testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card--featured { grid-column: span 1; }

  /* areas */
  .areas-grid { grid-template-columns: 1fr 1fr; }

  /* footer */
  .footer-top { padding: 56px 0 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-top-inner { gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 0.5rem; }

  /* contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
  .form-title { font-size: 1.3rem; }

  /* services page */
  .secondary-services-grid { grid-template-columns: 1fr; }
  .svc-row { padding: 3rem 0; }
  .svc-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .intro-strip { padding: 16px 0; }
  .intro-strip-inner { flex-direction: column; gap: 0.6rem; }
  .intro-strip-item { font-size: 0.85rem; }

  /* about page */
  .values-grid { grid-template-columns: 1fr; }
  .value-card { padding: 1.75rem 1.5rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .story-milestones { padding-left: 1rem; }

  /* suburb checker */
  .suburb-checker-section { padding: 40px 0; }
  .suburb-checker-wrap { padding: 1.5rem; }
  .sc-header { flex-direction: column; gap: 0.75rem; }
  .sc-header h2 { font-size: 1.4rem; }
  .sc-input-row { flex-direction: column; gap: 0.6rem; }
  .sc-btn { width: 100%; justify-content: center; }
  .sc-quick { margin-top: 1rem; }

  /* emergency strip */
  .emergency-strip-inner { flex-direction: column; text-align: center; gap: 0.75rem; }
  .es-text { text-align: center; }
  .emergency-strip .btn-primary { width: 100%; justify-content: center; }

  /* contact details */
  .contact-areas-tags { gap: 0.35rem; }
  .contact-areas-tags span { font-size: 0.72rem; }

  /* bottom CTA */
  .bottom-cta { padding: 72px 0; }
  .bottom-cta-heading { font-size: clamp(2.2rem, 9vw, 4rem); }
  .bottom-cta-sub { font-size: 0.95rem; }
  .bottom-cta-actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .bottom-cta-actions .btn { justify-content: center; }
  .bottom-cta-trust { gap: 0.75rem; justify-content: flex-start; }
  .bottom-cta-trust span { font-size: 0.78rem; }
  .bottom-cta-label { font-size: 0.68rem; }

  /* back to top */
  .back-to-top { bottom: 1.25rem; right: 1.25rem; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  /* hero */
  .hero-line { font-size: clamp(2.8rem, 12vw, 5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 0.75rem; }

  /* stats — single column */
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .stat-num { font-size: clamp(2.2rem, 9vw, 3.5rem); }

  /* page hero */
  .page-hero-title { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .page-hero-desc { font-size: 0.9rem; }

  /* nav */
  .nav-inner { padding: 1rem 1.25rem; }
  .logo-mark { width: 36px; height: 36px; }
  .logo-text { font-size: 0.85rem; }

  /* section title */
  .section-title { font-size: clamp(2rem, 9vw, 3rem); }

  /* areas — single column */
  .areas-grid { grid-template-columns: 1fr; }

  /* footer */
  .footer-links { grid-template-columns: 1fr; gap: 1.5rem; }

  /* team / certs */
  .team-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr; }

  /* services */
  .secondary-services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.5rem; }

  /* contact */
  .contact-detail { gap: 0.75rem; }
  .contact-icon { width: 34px; height: 34px; flex-shrink: 0; }

  /* suburb checker pills */
  .sc-pills { gap: 0.35rem; }
  .sc-pill { font-size: 0.75rem; padding: 4px 10px; }

  /* bottom CTA */
  .bottom-cta { padding: 56px 0; }
  .bottom-cta-heading { font-size: clamp(2rem, 10vw, 3rem); }
  .bottom-cta-trust { flex-direction: column; gap: 0.5rem; align-items: flex-start; }

  /* process */
  .step-number { font-size: 3.5rem; }
  .step-content h3 { font-size: 1.25rem; }

  /* cta banner (thin strip variant) */
  .cta-banner { padding: 56px 0; }
  .cta-banner-inner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .cta-actions { justify-content: center; flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
}
