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

:root {
  --yellow: #FFE500;
  --yellow-bright: #FFEC1A;
  --ink: #303030;
  --ink-soft: #3D3D3D;
  --ink-tint: #4A4A4A;
  --grey: #707070;
  --light: #F4F4F2;
  --white: #FFFFFF;
  --line: rgba(26,26,26,0.12);

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-width: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--yellow); color: var(--ink); }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 50px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 0.98;
  color: var(--ink);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); }
h3 { font-size: 1.4rem; }

p { color: #444; }

.text-yellow { color: var(--yellow); }

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  background: var(--ink);
  padding: 9px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.eyebrow-pill.on-light { background: var(--ink); color: var(--yellow); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(255,229,0,0.28);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--yellow-bright); }
.btn-secondary {
  background: rgba(0,0,0,0.45);
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover { background: var(--white); color: var(--ink); }
.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover { background: var(--ink-tint); }
.btn-block { width: 100%; }

/* ---------- Top utility bar ---------- */
.utility-bar {
  background: var(--yellow);
  color: var(--ink);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.utility-bar span { margin: 0 16px; white-space: nowrap; }

/* ---------- Header / nav ---------- */
.site-header {
  background: var(--ink);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.shield-logo { display: inline-flex; align-items: center; gap: 10px; }
.shield-logo img { height: 42px; width: auto; }
nav.main-nav { display: flex; align-items: center; gap: 30px; }
nav.main-nav a {
  color: var(--white);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.15s;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--yellow); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer; color: var(--white);
  width: 40px; height: 40px; font-size: 1.4rem;
}

@media (max-width: 980px) {
  nav.main-nav { display: none; }
  .header-phone span { display: none; }
  .nav-toggle { display: block; }
  .header-inner { padding: 0 16px; gap: 12px; }
  .shield-logo img { height: 48px; }
  .wrap { padding: 0 20px; }
  .utility-bar { overflow: hidden; }
  .utility-bar span:nth-child(3),
  .utility-bar span:nth-child(4) { display: none; }
}

@media (max-width: 760px) {
  .split-grid.story { grid-template-columns: 1fr; }
}

/* ---------- Suburb zone grid ---------- */
.areas-suburb-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:20px 28px; margin-top:36px; }
.suburb-zone-label { font-size:0.68rem; font-weight:800; letter-spacing:0.1em; text-transform:uppercase; color:var(--yellow); margin-bottom:10px; display:block; }
.suburb-list { list-style:none; padding:0; margin:0; }
.suburb-list li { font-size:0.82rem; color:rgba(255,255,255,0.65); padding:3.5px 0; line-height:1.2; }
@media(max-width:880px){ .areas-suburb-grid { grid-template-columns:repeat(3,1fr); } }
@media(max-width:500px){ .areas-suburb-grid { grid-template-columns:1fr 1fr; } }

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none; border: none;
  color: var(--white); font-size: 1.8rem;
  cursor: pointer; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav a {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 18px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav a:first-of-type { border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--yellow); }
.mobile-nav .mobile-nav-cta {
  margin-top: 28px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 6px;
  border: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 60px 0 130px;
  background: var(--ink-soft);
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,15,15,0.92) 0%, rgba(15,15,15,0.82) 38%, rgba(15,15,15,0.55) 65%, rgba(15,15,15,0.35) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; color: var(--white); }
.hero-content h1 { color: var(--white); }
.hero-content .lead {
  font-size: 1.18rem;
  max-width: 580px;
  margin: 24px 0 34px;
  color: rgba(255,255,255,0.88);
}
.hero-content .lead a { color: var(--yellow); font-weight: 700; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 600; }
.hero-trust .star-fill { color: var(--yellow); letter-spacing: 2px; }

/* ---------- Diagonal section divider (signature device) ---------- */
.diagonal-down {
  height: 90px;
  background: var(--white);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  margin-top: -89px;
  position: relative;
  z-index: 5;
}
.diagonal-down.from-ink { background: var(--ink); }
.diagonal-down.from-yellow { background: var(--yellow); }
.diagonal-down.from-light { background: var(--light); }
.diagonal-up {
  height: 70px;
  background: var(--white);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  margin-bottom: -1px;
  position: relative;
  z-index: 3;
}
.diagonal-up.to-ink { background: var(--ink); }
.diagonal-up.to-yellow { background: var(--yellow); }
.diagonal-up.to-light { background: var(--light); }
.diagonal-up.to-white { background: var(--white); }

/* ---------- Sections ---------- */
section { padding: 100px 0; }
section.tight { padding: 64px 0; }
.bg-ink { background: var(--ink); color: var(--white); }
.bg-ink h2, .bg-ink h3 { color: var(--white); }
.bg-ink p { color: rgba(255,255,255,0.72); }
.bg-light { background: var(--light); }
.bg-yellow { background: var(--yellow); }
.bg-white { background: var(--white); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.section-head h2 u {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 6px;
  text-underline-offset: 8px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.bg-ink .section-head .eyebrow-pill { background: var(--yellow); color: var(--ink); }

/* ---------- Circular service cards (signature) ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card { text-align: center; }
.service-circle {
  width: 230px; height: 230px;
  border-radius: 50%;
  margin: 0 auto 26px;
  background-size: cover;
  background-position: center;
  border: 5px solid var(--yellow);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover .service-circle { box-shadow: 0 22px 50px rgba(255,229,0,0.35); border-color: var(--ink); }
.service-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.service-card p { font-size: 0.92rem; margin-bottom: 20px; padding: 0 8px; }

@media (max-width: 880px) {
  .service-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- Stats band ---------- */
.stats-section {
  background: var(--ink);
  padding: 60px 0;
  border-top: 6px solid var(--yellow);
  border-bottom: 6px solid var(--yellow);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px;
  padding: 0 50px;
}
.stat { text-align: center; color: var(--white); position: relative; }
.stat:not(:last-child)::after {
  content: "";
  position: absolute; right: -15px; top: 18%; bottom: 18%;
  width: 1px; background: rgba(255,229,0,0.25);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--yellow);
}
.stat-label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; margin-top: 8px; font-weight: 700; color: rgba(255,255,255,0.85); }

@media (max-width: 700px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .stat:nth-child(2)::after { display: none; }
}

/* ---------- Process steps (dark section) ---------- */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.process-step { flex: 1; text-align: center; }
.process-circle {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--ink-tint);
  border: 3px solid var(--yellow);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--yellow);
}
.process-num {
  position: absolute; top: -6px; left: -6px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--yellow); color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.process-step .label { font-size: 0.85rem; color: rgba(255,255,255,0.82); line-height: 1.5; }
.process-step .label strong { color: var(--yellow); }
.process-arrow { color: var(--yellow); font-size: 1.6rem; padding-top: 48px; flex: 0 0 auto; }

@media (max-width: 760px) {
  .process-steps { flex-direction: column; align-items: center; gap: 32px; }
  .process-arrow { display: none; }
}

/* ---------- Offer boxes (dashed) ---------- */
.offer-box {
  border: 3px dashed var(--ink);
  border-radius: 8px;
  padding: 26px 30px;
  text-align: center;
  margin-bottom: 18px;
}
.offer-box .offer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.offer-box .tc { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; margin-top: 8px; }
.offer-box.on-ink { border-color: var(--yellow); }
.offer-box.on-ink .offer-title { color: var(--white); }
.offer-box.on-ink .tc { color: var(--grey); }

/* ---------- Why us / badges ---------- */
.badges-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.badge-item { text-align: center; }
.badge-icon {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  font-size: 1.6rem;
  font-weight: 800;
  border: 3px solid var(--yellow);
}
.badge-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.35; }

@media (max-width: 700px) {
  .badges-row { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Gallery strip ---------- */
.gallery-section { background: var(--yellow); padding: 6px 0; }
.gallery-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; }
.gallery-strip .item { aspect-ratio: 1; background-size: cover; background-position: center; }

@media (max-width: 760px) {
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Before/after slider (signature) ---------- */
.ba-section { background: var(--light); }
.ba-wrap { max-width: 1000px; margin: 0 auto; }
.ba-slider {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  user-select: none;
  cursor: ew-resize;
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-img.before { clip-path: inset(0 50% 0 0); }
.ba-tag {
  position: absolute; top: 18px;
  padding: 8px 18px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  border-radius: 4px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
}
.ba-tag.left { left: 18px; }
.ba-tag.right { right: 18px; background: var(--yellow); color: var(--ink); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 4px; background: var(--yellow);
  transform: translateX(-2px);
  box-shadow: 0 0 20px rgba(255,229,0,0.6);
  pointer-events: none;
}
.ba-handle::after {
  content: "◄ ►";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--yellow); color: var(--ink);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 800;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* ---------- Reviews ---------- */
.reviews-wrap { max-width: 1080px; margin: 0 auto; }
.google-bar { text-align: center; margin-bottom: 44px; }
.google-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px;
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.google-pill .g-stars { color: #FBBC04; letter-spacing: 2px; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid #eaeaea;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--yellow); }
.faq-q {
  padding: 22px 26px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 700; font-size: 1rem;
  user-select: none;
}
.faq-q .faq-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--yellow); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800;
  flex-shrink: 0; margin-left: 16px;
  transition: transform 0.3s, background 0.3s, color 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--ink); color: var(--yellow); }
.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 26px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a { max-height: 320px; padding: 0 26px 22px; }
.faq-a p { font-size: 0.92rem; color: #555; }

/* ---------- Guarantee banner ---------- */
.guarantee-banner {
  background: var(--yellow);
  padding: 50px 0;
}
.guarantee-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
  max-width: var(--max-width); margin: 0 auto; padding: 0 50px;
}
.guarantee-seal {
  width: 116px; height: 116px;
  border-radius: 50%;
  background: var(--ink); color: var(--yellow);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display);
  text-align: center; line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.guarantee-seal .big { font-size: 2.2rem; }
.guarantee-seal .small { font-size: 0.65rem; margin-top: 4px; letter-spacing: 0.1em; }
.guarantee-text { max-width: 540px; }
.guarantee-text h3 { font-size: 1.9rem; margin-bottom: 8px; }
.guarantee-text p { font-size: 0.92rem; opacity: 0.85; color: var(--ink); }

@media (max-width: 700px) {
  .guarantee-inner { text-align: center; justify-content: center; }
}

/* ---------- Service areas ---------- */
.areas-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.area-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,229,0,0.25);
  padding: 13px 16px;
  border-radius: 50px;
  text-align: center;
  font-size: 0.85rem; font-weight: 600;
  color: var(--white);
  transition: all 0.2s;
}
.area-pill:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); transform: translateY(-2px); }

@media (max-width: 700px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Quote form ---------- */
.quote-form-wrap {
  background: var(--white);
  border-radius: 10px;
  padding: 36px;
  border: 1px solid var(--line);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.single { grid-template-columns: 1fr; }
.field label { display: block; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--light);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--yellow); }
.field textarea { resize: vertical; min-height: 90px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 38px;
}
.pac-container { z-index: 10000; font-family: var(--font-body); border-radius: 4px; margin-top: 2px; }
.upload-note {
  background: var(--light);
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 0.82rem;
  margin-bottom: 18px;
  color: #444;
}
.form-note { font-size: 0.78rem; color: var(--grey); margin-top: 14px; text-align: center; }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
footer.site-footer { background: var(--ink-soft); color: var(--white); padding: 56px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr 1.5fr;
  gap: 44px;
  max-width: var(--max-width);
  margin: 0 auto 44px;
  padding: 0 50px;
}
.footer-grid h4 { font-family: var(--font-display); color: var(--yellow); font-size: 1rem; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-grid a, .footer-grid p { font-size: 0.88rem; display: block; margin-bottom: 9px; color: rgba(255,255,255,0.78); }
.footer-grid a:hover { color: var(--yellow); }
.footer-shield { width: 84px; height: 94px; margin-bottom: 16px; }
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  font-size: 0.78rem;
  opacity: 0.6;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 50px; padding-right: 50px;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Sticky mobile CTA ---------- */

/* SMS quote links */
.hero-sms-line { margin-top: 16px; font-size: 0.86rem; color: rgba(255,255,255,0.75); }
.hero-sms-line a { color: var(--yellow); font-weight: 800; }
.btn-sms { background: var(--white); color: var(--ink); border: 2px solid var(--ink); }
.btn-sms:hover { background: var(--light); }

.sticky-cta-mobile { display: none; }
@media (max-width: 760px) {
  .sticky-cta-mobile {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--white); border-top: 1px solid var(--line);
    padding: 10px 16px; gap: 10px; box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
  }
  .sticky-cta-mobile .btn { flex: 1; padding: 13px 8px; font-size: 0.74rem; }
  body { padding-bottom: 68px; }
}

/* ---------- Page hero (service pages) ---------- */
.page-hero {
  padding: 56px 0 0;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero-inner { padding-bottom: 70px; position: relative; z-index: 2; }
.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.breadcrumb a { color: var(--yellow); font-weight: 600; }
.page-hero h1 { color: var(--white); max-width: 760px; }
.page-hero .lead { color: rgba(255,255,255,0.78); max-width: 580px; margin: 22px 0 30px; font-size: 1.08rem; }

/* ---------- Two-column content layouts ---------- */
.split-grid {
  display: grid;
  gap: 40px;
}
.split-grid.story { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
.split-grid.contact { grid-template-columns: 1.2fr 0.8fr; align-items: flex-start; }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hero-split { display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 40px; align-items: start; position: relative; z-index: 2; }

@media (max-width: 880px) {
  .split-grid.story, .split-grid.contact { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .offer-grid { grid-template-columns: 1fr; }
}

/* ---------- SVG Icon Badges (replaces text-glyph circles) ---------- */
.icon-badge {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--yellow);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  flex-shrink: 0;
}
.icon-badge svg { width: 30px; height: 30px; }
.icon-badge.light { background: var(--light); border-color: var(--ink); }
.icon-badge.light svg { stroke: var(--ink); }

/* ---------- Tile-seam stats band (custom, replaces generic stat grid) ---------- */
.tile-stats {
  display: flex;
  background: var(--yellow);
  padding: 6px;
  gap: 6px;
}
.tile-stat {
  flex: 1;
  background: var(--ink);
  background-image: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.025) 0%, transparent 50%);
  padding: 36px 16px;
  text-align: center;
  position: relative;
}
.tile-stat::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 3px;
  background: var(--yellow);
}
.tile-stat::after {
  content: "";
  position: absolute;
  top: 8px; left: 8px; right: 8px; bottom: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
}
.tile-stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3rem);
  color: var(--yellow);
  line-height: 1;
  margin-top: 14px;
}
.tile-stat .stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.78);
  font-weight: 700;
  margin-top: 8px;
}

@media (max-width: 700px) {
  .tile-stats { flex-wrap: wrap; }
  .tile-stat { flex: 1 1 calc(50% - 6px); }
}

/* ---------- Trusted-by logo strip ---------- */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.logo-card {
  background: #FAFAF8;
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 96px;
  width: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.logo-card img { max-width: 100%; max-height: 56px; object-fit: contain; }

/* ---------- Interactive shower service selector ---------- */
.svc-selector { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 28px; }
.svc-tabs { display: flex; gap: 10px; margin-bottom: 26px; flex-wrap: wrap; }
.svc-tab {
  flex: 1; min-width: 130px;
  border: 2px solid var(--ink); border-radius: 6px;
  padding: 13px 14px; cursor: pointer; text-align: center;
  background: var(--white); transition: all 0.2s;
}
.svc-tab.active { background: var(--ink); }
.svc-tab .svc-name { font-weight: 800; font-size: 0.88rem; color: var(--ink); text-transform: uppercase; letter-spacing: 0.02em; }
.svc-tab.active .svc-name { color: var(--yellow); }
.svc-stage { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: center; }
.svc-info h3 { font-size: 1.5rem; margin-bottom: 12px; }
.svc-info p { font-size: 0.92rem; line-height: 1.6; margin-bottom: 14px; }
.svc-info ul { margin: 0; padding-left: 18px; color: #444; font-size: 0.88rem; }
.svc-info li { margin-bottom: 7px; }
.svc-diagram svg { width: 100%; height: auto; min-height: 360px; }

@media (max-width: 760px) {
  .svc-stage { grid-template-columns: 1fr; }
}

/* ---------- Hero quote form (compact, embedded in hero) ---------- */
.hero-form-card {
  background: rgba(26,26,26,0.92);
  border: 1px solid rgba(255,229,0,0.25);
  border-radius: 10px;
  padding: 26px;
  backdrop-filter: blur(4px);
}
.hero-form-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 4px; }
.hero-form-card .sub { color: rgba(255,255,255,0.65); font-size: 0.82rem; margin-bottom: 18px; }
.hero-form-card .field { margin-bottom: 12px; }
.hero-form-card .field label { display: block; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; color: rgba(255,255,255,0.7); }
.hero-form-card input, .hero-form-card select, .hero-form-card textarea {
  width: 100%; padding: 11px 12px; border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 4px; font-family: var(--font-body); font-size: 0.88rem;
  background: rgba(255,255,255,0.06); color: var(--white);
}
.hero-form-card input::placeholder, .hero-form-card textarea::placeholder { color: rgba(255,255,255,0.4); }
.hero-form-card input:focus, .hero-form-card select:focus, .hero-form-card textarea:focus { outline: none; border-color: var(--yellow); }
.hero-form-card select option { background: var(--ink); color: var(--white); }
.hero-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ---------- Logo wordmark beside shield ---------- */
.logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logo-wordmark span { color: var(--yellow); font-size: 0.78rem; letter-spacing: 0.12em; }

/* ---------- Custom SVG badge grid (6 badges) ---------- */
.custom-badges {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.custom-badge { text-align: center; }
.custom-badge-icon { width: 72px; height: 72px; margin: 0 auto 14px; }
.custom-badge-icon svg { width: 100%; height: 100%; }
.custom-badge-label { font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.4; color: var(--ink); }

@media (max-width: 900px) { .custom-badges { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .custom-badges { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Services 4-way grid ---------- */
.services-fourway {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.12); }
.svc-card-img { height: 160px; background-size: cover; background-position: center; }
.svc-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.svc-card-icon {
  width: 38px; height: 38px;
  background: var(--ink); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; flex-shrink: 0;
}
.svc-card-icon svg { width: 18px; height: 18px; }
.svc-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.svc-card-body p { font-size: 0.85rem; color: #555; flex: 1; margin-bottom: 14px; }
.svc-link { font-size: 0.8rem; font-weight: 800; color: var(--ink); text-transform: uppercase; letter-spacing: 0.04em; border-bottom: 2px solid var(--yellow); padding-bottom: 2px; }

@media (max-width: 900px) { .services-fourway { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-fourway { grid-template-columns: 1fr; } }

/* ---------- About split layout ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-checks { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.about-check { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.88); font-size: 0.9rem; font-weight: 500; }
.about-check svg { width: 20px; height: 20px; flex-shrink: 0; }
.about-img { position: relative; }
.about-review-pill {
  display: flex; align-items: center;
  background: var(--ink-tint);
  border: 1px solid rgba(255,229,0,0.3);
  border-radius: 50px;
  padding: 10px 20px;
  margin-top: 16px;
  color: var(--white);
}

@media (max-width: 900px) { .about-split { grid-template-columns: 1fr; } }

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

.footer-bottom a { color: inherit; text-decoration: underline; }

/* ---------- Scroll to top ---------- */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.18s ease;
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--white); }
.scroll-top-btn svg { width: 20px; height: 20px; }
@media (max-width: 760px) {
  .scroll-top-btn { bottom: 84px; right: 16px; width: 42px; height: 42px; }
}
.footer-bottom a:hover { color: var(--yellow); }
