/* ────────────────────────────────────────────────────────────────
   Mahalo Cleaning — design tokens
   Palette extracted from the Base44 codebase; pushed harder.
   ──────────────────────────────────────────────────────────────── */

:root {
  /* default — warm terracotta */
  --bg:        #FAF6F2;
  --bg-2:      #F2EAE0;
  --bg-3:      #EFE4D9;
  --fg:        #2D2926;
  --fg-2:      #5B524B;
  --fg-3:      #8C817A;
  --line:      #E8DDD5;
  --line-2:    #DCCEBF;
  --card:      #FFFFFF;
  --primary:   #B08472;
  --primary-2: #9C6E5C;
  --primary-3: #C99E8B;
  --primary-soft: #F0E2D9;
  --accent:    #9CAE9E;
  --accent-2:  #7E9381;
  --accent-soft: #E0E7DF;
  --pop:       #C7654A; /* hot terracotta */

  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-sm:  0 1px 2px rgba(45,41,38,.04), 0 1px 0 rgba(45,41,38,.03);
  --shadow:     0 8px 24px rgba(45,41,38,.06), 0 1px 0 rgba(45,41,38,.04);
  --shadow-lg:  0 24px 60px rgba(45,41,38,.12), 0 4px 12px rgba(45,41,38,.06);
}

/* Palette tweaks — clay-warm */
:root[data-palette="clay"] {
  --bg:        #F7EFE6;
  --bg-2:      #EFE2D2;
  --bg-3:      #E8D5C0;
  --primary:   #A26749;
  --primary-2: #8B5235;
  --primary-3: #C68D70;
  --primary-soft: #ECD8C6;
  --pop:       #C24A28;
  --accent:    #B89A78;
  --accent-2:  #9C7E5D;
  --line:      #E2D2BE;
  --line-2:    #CFB99E;
}

/* Palette tweaks — sage-forward */
:root[data-palette="sage"] {
  --bg:        #F4F2EC;
  --bg-2:      #E8E9DF;
  --bg-3:      #DDE2D2;
  --primary:   #6F8472;
  --primary-2: #556B58;
  --primary-3: #9CAE9E;
  --primary-soft: #D9E1D7;
  --pop:       #B08472;
  --accent:    #B08472;
  --accent-2:  #9C6E5C;
  --line:      #D7DACB;
  --line-2:    #BEC4AF;
}

/* Type pairing tweaks */
:root[data-type="serif-sans"] { /* default fraunces + inter */ }
:root[data-type="display-grotesk"] {
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-sans:    'Manrope', system-ui, sans-serif;
}
:root[data-type="modern-sans"] {
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-sans:    'Söhne', 'Inter', system-ui, sans-serif;
}

/* Mood */
:root[data-mood="playful"] {
  --radius:    22px;
  --radius-lg: 34px;
  --radius-xl: 48px;
}
:root[data-mood="clinical"] {
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

/* ────────────────────────────────────────────────────────────────
   Base
   ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

.font-display { font-family: var(--font-display); letter-spacing: -0.02em; }
.font-mono    { font-family: var(--font-mono); }
.italic       { font-style: italic; }

/* ────────────────────────────────────────────────────────────────
   Artboard scoping — each artboard is a window onto the site,
   not a fixed-page. The artboard is scrollable; the inner site
   layout uses block flow.
   ──────────────────────────────────────────────────────────────── */
.mh-site {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  width: 100%;
  position: relative;
}

/* container widths — used inside .mh-site */
.mh-site .container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.mh-mobile .container { padding: 0 20px; }

/* ────────────────────────────────────────────────────────────────
   Utility primitives (scoped to .mh-site so they don't leak)
   ──────────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--primary) 70%, var(--fg) 30%);
  font-weight: 500;
}
.eyebrow::before, .eyebrow.bracketed::after {
  content: '';
  width: 24px;
  height: 1px;
  background: color-mix(in oklab, var(--primary) 50%, transparent);
}
.eyebrow.bracketed::after { display: inline-block; }
.eyebrow.left::before { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--fg);
  color: var(--bg);
  box-shadow: 0 8px 24px rgba(45,41,38,.18);
}
.btn-primary:hover { transform: translateY(-1px); background: var(--primary-2); }
.btn-accent {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(176,132,114,.3);
}
.btn-accent:hover { background: var(--primary-2); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--bg-2); border-color: var(--line-2); }
.btn-sm { height: 40px; padding: 0 16px; font-size: 13px; }
.btn-lg { height: 60px; padding: 0 32px; font-size: 16px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { box-shadow: var(--shadow); }

.divider {
  height: 1px;
  background: var(--line);
  width: 100%;
}

.grain {
  background-image: radial-gradient(rgba(176,132,114,.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Tide-divider mask used in footers */
.tide {
  --tide-h: 32px;
  height: var(--tide-h);
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'><path d='M0,40 C240,80 480,0 720,40 C960,80 1200,0 1440,40 L1440,80 L0,80 Z' fill='black'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'><path d='M0,40 C240,80 480,0 720,40 C960,80 1200,0 1440,40 L1440,80 L0,80 Z' fill='black'/></svg>");
  mask-size: 100% 100%;
}

/* Image treatment — applied to .mh-img wrapper */
.mh-img {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
}
.mh-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
[data-imagery="abstracted"] .mh-img img {
  filter: grayscale(0.35) contrast(0.95) sepia(0.18);
}
[data-imagery="illustrated"] .mh-img {
  background:
    repeating-linear-gradient(135deg, var(--primary-soft) 0 14px, var(--bg-3) 14px 28px);
}
[data-imagery="illustrated"] .mh-img img {
  display: none;
}
[data-imagery="illustrated"] .mh-img::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-2);
  text-align: center;
  padding: 16px;
}

/* Hover lift */
.lift:hover { transform: translateY(-4px); }
.lift { transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease; }

/* Fade in / up entries */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up .6s cubic-bezier(.2,.7,.3,1) both; }

/* ────────────────────────────────────────────────────────────────
   Marquee / ticker — used in trust strip
   ──────────────────────────────────────────────────────────────── */
.marquee {
  display: flex;
  overflow: hidden;
  gap: 48px;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee-scroll 32s linear infinite;
  flex-shrink: 0;
  white-space: nowrap;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ────────────────────────────────────────────────────────────────
   Header
   ──────────────────────────────────────────────────────────────── */
.mh-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--line) 60%, transparent);
}
/* On mobile, use a fully opaque header — backdrop-filter + semi-transparent
   backgrounds render inconsistently (see-through) on iOS Safari. */
.mh-mobile .mh-header {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--bg);
}
.mh-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.mh-mobile .mh-nav { height: 70px; }

/* Mobile menu — full-screen solid overlay (fixes iOS see-through bug) */
.mh-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 16px 20px 28px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: menu-in .22s ease both;
}
@keyframes menu-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mh-mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  margin-bottom: 12px;
}
.mh-mobile-menu-close {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 0; color: var(--fg);
  margin-right: -8px;
}
.mh-mobile-menu-nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.mh-mobile-menu-nav a {
  display: block;
  padding: 18px 4px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
  border-bottom: 1px solid var(--line);
}
.mh-mobile-menu-nav a.active { color: var(--primary); }
.mh-mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
}
.mh-mobile-menu-cta .btn { width: 100%; }
.mh-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.mh-logo-img {
  height: 88px;
  width: auto;
  display: block;
  object-fit: contain;
  margin: -8px 0;
}
.mh-mobile .mh-logo-img { height: 64px; margin: -4px 0; }
.mh-footer-logo {
  height: 140px;
  width: auto;
  display: block;
  object-fit: contain;
  /* logo is terracotta line-art on white — recolor to cream for dark footer */
  filter: brightness(0) saturate(100%) invert(95%) sepia(8%) saturate(180%) hue-rotate(330deg) brightness(102%) contrast(95%);
  margin: -16px 0 4px -8px;
}
.mh-mobile .mh-footer-logo { height: 110px; }
.mh-logo .mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  box-shadow: 0 6px 16px rgba(176,132,114,.3);
}
.mh-logo .name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.05;
  white-space: nowrap;
}
.mh-logo .sub {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 3px;
  white-space: nowrap;
}
.mh-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.mh-nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  color: var(--fg-2);
  font-weight: 500;
  border-radius: 999px;
  transition: color .15s, background .15s;
  cursor: pointer;
}
.mh-nav-links a:hover { color: var(--primary); }
.mh-nav-links a.active { color: var(--primary); }
.mh-nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mh-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--fg);
  white-space: nowrap;
}
.mh-phone:hover { color: var(--primary); }

/* ────────────────────────────────────────────────────────────────
   Hero — layout variants
   ──────────────────────────────────────────────────────────────── */
.mh-hero { position: relative; padding: 56px 0 80px; overflow: hidden; }
.mh-mobile .mh-hero { padding: 32px 0 56px; }

.mh-hero .glow-1 {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.08;
  filter: blur(80px);
  pointer-events: none;
}
.mh-hero .glow-2 {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.12;
  filter: blur(80px);
  pointer-events: none;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.04;
  font-size: clamp(44px, 5.2vw, 78px);
  margin: 18px 0 0;
}
.mh-mobile .hero-title { font-size: 40px; line-height: 1.05; }
.hero-title .it {
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}
.hero-title .underline-it { display: none; }

.hero-sub {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.55;
  max-width: 540px;
  margin: 22px 0 0;
}
.mh-mobile .hero-sub { font-size: 16px; }

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 28px 0 0;
  list-style: none;
  padding: 0;
}
.hero-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-2);
}
.hero-bullets li .ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--primary) 12%, transparent);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* hero layout: split (default) */
.mh-hero.split .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 480px);
  gap: 48px;
  align-items: start;
}
.mh-mobile .mh-hero.split .hero-grid { grid-template-columns: 1fr; gap: 40px; }
.hero-copy { min-width: 0; }
.hero-side { min-width: 0; width: 100%; }

/* hero layout: asymmetric — image left chunk + tall right copy */
.mh-hero.asym .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: auto;
  gap: 32px 56px;
}
.mh-hero.asym .hero-copy { grid-column: 2; }
.mh-hero.asym .hero-mosaic { grid-column: 1; grid-row: 1; }
.mh-mobile .mh-hero.asym .hero-grid { grid-template-columns: 1fr; }
.mh-mobile .mh-hero.asym .hero-copy, .mh-mobile .mh-hero.asym .hero-mosaic { grid-column: 1; }

/* hero layout: centered */
.mh-hero.centered .hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.mh-hero.centered .hero-sub { margin-left: auto; margin-right: auto; }
.mh-hero.centered .hero-bullets { justify-content: center; }
.mh-hero.centered .hero-cta { justify-content: center; }
.mh-hero.centered .hero-mosaic { width: 100%; margin-top: 56px; }

/* mosaic image arrangement */
.hero-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
}
.mh-mobile .hero-mosaic { grid-template-rows: 160px 160px; }
.hero-mosaic .a {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  height: 100%;
  border-radius: var(--radius-lg);
}
.hero-mosaic .b, .hero-mosaic .c { display: none; }

.mh-hero.asym .hero-mosaic {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 200px;
}
.mh-hero.asym .hero-mosaic .a {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  border-radius: var(--radius-lg);
}
.mh-hero.asym .hero-mosaic .b {
  display: block;
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  border-radius: var(--radius-lg);
}
.mh-hero.asym .hero-mosaic .c {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  background: var(--fg);
  color: var(--bg);
  padding: 22px;
  border-radius: var(--radius-lg);
}

.mh-hero.centered .hero-mosaic {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px;
}
.mh-hero.centered .hero-mosaic .a {
  grid-column: 2 / 3;
  grid-row: 1;
  transform: translateY(-20px);
  z-index: 2;
}
.mh-hero.centered .hero-mosaic .b {
  display: block;
  grid-column: 1 / 2;
  grid-row: 1;
  border-radius: var(--radius-lg);
  transform: rotate(-3deg);
}
.mh-hero.centered .hero-mosaic .c {
  display: block;
  grid-column: 3 / 4;
  grid-row: 1;
  border-radius: var(--radius-lg);
  transform: rotate(3deg);
  background: var(--bg-3);
  padding: 0;
}

.mh-mobile .mh-hero.centered .hero-mosaic { grid-template-columns: 1fr; grid-template-rows: 220px; }
.mh-mobile .mh-hero.centered .hero-mosaic .b,
.mh-mobile .mh-hero.centered .hero-mosaic .c { display: none; }
.mh-mobile .mh-hero.centered .hero-mosaic .a { grid-column: 1; transform: none; }

/* Hero pricing chip */
.hero-price-chip {
  margin-top: 24px;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--fg-2);
}
.hero-price-chip strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--fg);
}

/* Hero quick quote */
.qq-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.qq-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.qq-head > div { display: flex; flex-direction: column; min-width: 0; gap: 4px; }

.qq-head .ic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--primary) 14%, transparent);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.qq-head .ttl { font-family: var(--font-display); font-weight: 600; font-size: 18px; line-height: 1.2; }
.qq-head .sub { font-size: 12px; color: var(--fg-3); line-height: 1.3; }

/* Service tiles in quick quote */
.svc-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.svc-tiles button {
  text-align: left;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .15s ease;
}
.svc-tiles button:hover { border-color: var(--primary); background: color-mix(in oklab, var(--primary) 4%, var(--card)); }
.svc-tiles button.active {
  border-color: var(--primary);
  background: color-mix(in oklab, var(--primary) 6%, var(--card));
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--primary) 18%, transparent);
}
.svc-tiles button .emoji { font-size: 18px; }
.svc-tiles button .lbl { font-weight: 500; font-size: 13px; }
.svc-tiles button .hint { font-size: 11px; color: var(--fg-3); margin-top: 1px; }

/* Form fields */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; font-weight: 500; color: var(--fg-2); }
.field input, .field textarea, .field select {
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 0 14px;
  font: inherit;
  font-size: 14px;
  color: var(--fg);
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { height: auto; padding: 12px 14px; resize: vertical; min-height: 84px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--primary) 18%, transparent);
}
.field .err { font-size: 11px; color: #C12B2B; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mh-mobile .field-row { grid-template-columns: 1fr; }

/* ────────────────────────────────────────────────────────────────
   Trust strip — pushed harder than original ticker
   ──────────────────────────────────────────────────────────────── */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 18px 0;
}
.trust-strip .marquee-track .item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-2);
}
.trust-strip .marquee-track .item .pip {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* ────────────────────────────────────────────────────────────────
   By the numbers strip
   ──────────────────────────────────────────────────────────────── */
.numbers {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.mh-mobile .numbers-grid { grid-template-columns: 1fr 1fr; }
.numbers-grid .cell {
  padding: 8px 16px;
  border-left: 1px solid var(--line);
}
.numbers-grid .cell:first-child { border-left: 0; padding-left: 0; }
.mh-mobile .numbers-grid .cell:nth-child(3) { border-left: 0; padding-left: 0; }
.numbers-grid .num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.numbers-grid .num .it { font-style: italic; color: var(--primary); font-weight: 400; }
.numbers-grid .lbl {
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 8px;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

/* ────────────────────────────────────────────────────────────────
   Section heading
   ──────────────────────────────────────────────────────────────── */
.section { padding: 96px 0; position: relative; }
.section.tight { padding: 64px 0; }
.section.bg-soft { background: var(--bg-2); }
.section.bg-dark {
  background: var(--fg);
  color: var(--bg);
}
.section.bg-dark .sh-title { color: var(--bg); }
.section.bg-dark .sh-desc { color: color-mix(in oklab, var(--bg) 75%, transparent); }
.section.bg-dark .eyebrow { color: color-mix(in oklab, var(--primary-3) 90%, transparent); }
.mh-mobile .section { padding: 56px 0; }

.sh {
  max-width: 720px;
}
.sh.center { margin-left: auto; margin-right: auto; text-align: center; }
.sh-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.04;
  font-size: clamp(34px, 3.4vw, 52px);
  margin: 18px 0 0;
}
.mh-mobile .sh-title { font-size: 30px; }
.sh-title .it { font-style: italic; color: var(--primary); font-weight: 400; }
.sh-desc {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.55;
  margin: 18px 0 0;
}
.mh-mobile .sh-desc { font-size: 15px; }

/* ────────────────────────────────────────────────────────────────
   Services — editorial numbered index
   ──────────────────────────────────────────────────────────────── */
.svc-index {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.3fr 220px 48px;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .25s ease;
  cursor: pointer;
  position: relative;
}
.svc-row:hover { padding-left: 12px; padding-right: 12px; background: color-mix(in oklab, var(--primary) 4%, transparent); }
.svc-row .num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--primary);
}
.svc-row .name { font-family: var(--font-display); font-weight: 600; font-size: 26px; letter-spacing: -0.02em; }
.svc-row .desc { color: var(--fg-2); font-size: 15px; line-height: 1.5; }
.svc-row .price { font-size: 13px; color: var(--fg-3); text-align: right; }
.svc-row .price strong { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--fg); margin-top: 4px; }
.svc-row .arr {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-2);
  transition: transform .25s, background .25s, color .25s, border-color .25s;
}
.svc-row:hover .arr { background: var(--fg); color: var(--bg); border-color: var(--fg); transform: rotate(-45deg); }

.mh-mobile .svc-row {
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 20px 0;
}
.mh-mobile .svc-row .num { font-size: 18px; }
.mh-mobile .svc-row .name { font-size: 22px; }
.mh-mobile .svc-row .desc { font-size: 14px; }
.mh-mobile .svc-row .price, .mh-mobile .svc-row .arr { display: none; }

/* Service card variant (cards grid) */
.svc-cards {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mh-mobile .svc-cards { grid-template-columns: 1fr; }

.svc-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .35s cubic-bezier(.2,.7,.3,1);
  cursor: pointer;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-3); }
.svc-card .img {
  aspect-ratio: 4/3;
  background: var(--bg-3);
}
.svc-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.svc-card .ic {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: color-mix(in oklab, var(--primary) 12%, transparent);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.svc-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.15;
}
.svc-card p { color: var(--fg-2); font-size: 14px; line-height: 1.55; margin: 0 0 14px; }
.svc-card ul { list-style: none; padding: 0; margin: auto 0 0; display: flex; flex-direction: column; gap: 6px; }
.svc-card ul li { font-size: 13px; color: var(--fg-2); display: flex; gap: 8px; }
.svc-card ul li::before { content: '·'; color: var(--primary); font-weight: bold; }

/* ────────────────────────────────────────────────────────────────
   Why Mahalo — staggered grid
   ──────────────────────────────────────────────────────────────── */
.reasons {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mh-mobile .reasons { grid-template-columns: 1fr; }
.reason {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
}
.reason:hover { background: var(--bg-2); }
.reason .ic {
  width: 48px; height: 48px;
  border-radius: 16px;
  background: color-mix(in oklab, var(--primary) 12%, transparent);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: all .25s;
}
.reason:hover .ic { background: var(--primary); color: #fff; }
.reason h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.reason p { font-size: 14px; color: var(--fg-2); line-height: 1.55; margin: 0; }

/* ────────────────────────────────────────────────────────────────
   How it works
   ──────────────────────────────────────────────────────────────── */
.steps {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mh-mobile .steps { grid-template-columns: 1fr; }
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all .35s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: color-mix(in oklab, var(--primary) 30%, transparent);
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  margin: 18px 0 8px;
  letter-spacing: -0.02em;
}
.step p { color: var(--fg-2); line-height: 1.55; margin: 0; }

/* ────────────────────────────────────────────────────────────────
   Pull quote / mahalo moment
   ──────────────────────────────────────────────────────────────── */
.pullquote-section { padding: 88px 0; }
.pullquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 920px;
}
.pullquote .it { font-style: italic; color: var(--primary); font-weight: 400; }
.pullquote-caption {
  margin-top: 28px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* Mahalo moment — photo + definition */
.mahalo-moment-section {
  padding: 88px 0;
}
.mh-mobile .mahalo-moment-section { padding: 56px 0; }
.mahalo-moment-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.mh-mobile .mahalo-moment-grid { grid-template-columns: 1fr; gap: 40px; }
.mahalo-moment-image {
  position: relative;
}
.mahalo-moment-image .mh-img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mahalo-moment-tag {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mahalo-moment-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
}
.mh-mobile .mahalo-moment-tag { left: 16px; bottom: -14px; font-size: 12px; padding: 10px 16px; }

/* Old mahalo-def — keep but now stacked inside the grid */
.mahalo-moment-grid .mahalo-def {
  display: block;
  padding: 0;
  border: 0;
  grid-template-columns: none;
}
.mahalo-def .word {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(64px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--primary);
}
.mahalo-def .word .accent { color: var(--fg); font-style: normal; font-weight: 600; }
.mahalo-def .gloss .ipa {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-3);
  letter-spacing: 0.05em;
}
.mahalo-def .gloss .pos {
  font-size: 12px;
  color: var(--fg-3);
  font-style: italic;
  margin: 4px 0 16px;
}
.mahalo-def .gloss p {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.4;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.mh-mobile .mahalo-def .gloss p { font-size: 18px; }

/* ────────────────────────────────────────────────────────────────
   Testimonials
   ──────────────────────────────────────────────────────────────── */
.tlist {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mh-mobile .tlist { grid-template-columns: 1fr; }
.tcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.tcard .stars { color: var(--primary); display: flex; gap: 3px; margin-bottom: 14px; }
.tcard blockquote {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0;
  flex: 1;
}
.tcard .who {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
}
.tcard .who .name { font-weight: 600; }
.tcard .who .meta { color: var(--fg-3); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }

/* ────────────────────────────────────────────────────────────────
   Service area
   ──────────────────────────────────────────────────────────────── */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.mh-mobile .area-grid { grid-template-columns: 1fr; gap: 32px; }
.area-suburbs {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.area-suburbs ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px 24px;
}
.mh-mobile .area-suburbs ul { grid-template-columns: 1fr 1fr; }
.area-suburbs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--fg);
}
.area-suburbs li .pin { color: var(--primary); display: inline-flex; }
.area-foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--fg-3);
}

/* ────────────────────────────────────────────────────────────────
   FAQ
   ──────────────────────────────────────────────────────────────── */
.faq {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--fg);
}
.faq-q .pm {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}
.faq-item.open .faq-q .pm { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 22px; color: var(--fg-2); line-height: 1.6; max-width: 80%; }

/* ────────────────────────────────────────────────────────────────
   CTA band
   ──────────────────────────────────────────────────────────────── */
.cta-band {
  padding: 80px 0;
}
.mh-mobile .cta-band { padding: 56px 0; }
.cta-card {
  position: relative;
  background: var(--fg);
  color: var(--bg);
  border-radius: var(--radius-xl);
  padding: 64px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}
.mh-mobile .cta-card { padding: 40px 24px; grid-template-columns: 1fr; }
.cta-card .glow {
  position: absolute;
  top: -100px; right: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.4;
  filter: blur(80px);
}
.cta-card .glow.b {
  top: auto; right: auto; bottom: -100px; left: -120px;
  background: var(--accent); opacity: 0.25;
}
.cta-card h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 16px 0 0;
}
.cta-card h2 .it { font-style: italic; color: var(--primary-3); font-weight: 400; }
.cta-card p {
  font-size: 17px;
  color: color-mix(in oklab, var(--bg) 75%, transparent);
  margin: 20px 0 0;
  line-height: 1.55;
}
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; position: relative; }
.cta-band .btn-ghost { color: var(--bg); border-color: color-mix(in oklab, var(--bg) 25%, transparent); }
.cta-band .btn-ghost:hover { background: color-mix(in oklab, var(--bg) 8%, transparent); }
.cta-band .btn-accent { background: var(--bg); color: var(--fg); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.cta-band .btn-accent:hover { background: var(--primary-3); color: var(--fg); }

/* ────────────────────────────────────────────────────────────────
   Footer
   ──────────────────────────────────────────────────────────────── */
.mh-footer {
  background: var(--fg);
  color: color-mix(in oklab, var(--bg) 85%, transparent);
  padding: 64px 0 32px;
}
.mh-mobile .mh-footer { padding: 48px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.mh-mobile .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-grid h4 {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--bg) 50%, transparent);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { font-size: 14px; color: color-mix(in oklab, var(--bg) 80%, transparent); }
.footer-grid a:hover { color: var(--primary-3); }
.footer-brand .name { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.02em; color: var(--bg); line-height: 1.1; white-space: nowrap; }
.footer-brand .blurb { font-size: 14px; margin-top: 18px; max-width: 280px; line-height: 1.55; }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in oklab, var(--bg) 10%, transparent);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: color-mix(in oklab, var(--bg) 50%, transparent);
}
.footer-bottom-links { display: inline-flex; align-items: center; gap: 10px; }
.footer-bottom-links a { color: color-mix(in oklab, var(--bg) 70%, transparent); }
.footer-bottom-links a:hover { color: var(--primary-3); }
.footer-bottom-links .sep { opacity: .5; }
.mh-mobile .footer-bottom { flex-direction: column; }

/* ────────────────────────────────────────────────────────────────
   Service page (Bond Cleans)
   ──────────────────────────────────────────────────────────────── */
.bc-pain {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mh-mobile .bc-pain { grid-template-columns: 1fr; }
.bc-pain-card {
  display: flex;
  gap: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  align-items: flex-start;
}
.bc-pain-card .ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: color-mix(in oklab, var(--primary) 12%, transparent);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bc-pain-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin: 0; letter-spacing: -0.01em; }
.bc-pain-card p { margin: 6px 0 0; color: var(--fg-2); line-height: 1.55; font-size: 14px; }

.checklist-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mh-mobile .checklist-grid { grid-template-columns: 1fr; }
.checklist-grid .col {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.checklist-grid .col h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.checklist-grid .col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.checklist-grid .col li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: var(--fg-2); line-height: 1.5;
}
.checklist-grid .col li .ck {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--primary) 14%, transparent);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}

.price-guide {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mh-mobile .price-guide { grid-template-columns: 1fr; }
.price-row {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .25s ease;
}
.price-row:hover { border-color: var(--primary-3); background: color-mix(in oklab, var(--primary) 3%, var(--card)); }
.price-row .lbl { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.price-row .det { font-size: 12px; color: var(--fg-3); margin-top: 2px; }
.price-row .price {
  font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--primary);
  text-align: right;
}
.price-row .gst { font-size: 11px; color: var(--fg-3); text-align: right; letter-spacing: 0.1em; text-transform: uppercase; }

/* Bond clean credibility */
.realestate-strip {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 32px;
}
.realestate-strip .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 16px;
}
.realestate-strip .logos {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.realestate-strip .logo {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--fg-3);
  font-weight: 600;
}
.realestate-strip .logo.it { font-style: italic; font-weight: 400; }

/* ────────────────────────────────────────────────────────────────
   Terms & Conditions page
   ──────────────────────────────────────────────────────────────── */
.terms-hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.mh-mobile .terms-hero { padding: 48px 0 36px; }
.terms-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: clamp(40px, 5vw, 68px);
  margin: 16px 0 0;
}
.terms-title .it { font-style: italic; font-weight: 400; color: var(--primary); }
.terms-intro {
  margin: 24px 0 0;
  max-width: 680px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-2);
}
.mh-mobile .terms-intro { font-size: 15px; }
.terms-meta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.terms-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--primary); }

.terms-body { padding: 72px 0 96px; }
.mh-mobile .terms-body { padding: 48px 0 64px; }
.terms-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}
.mh-mobile .terms-layout { grid-template-columns: 1fr; gap: 36px; }

.terms-toc {
  position: sticky;
  top: 100px;
}
.mh-mobile .terms-toc { position: static; top: auto; }
.terms-toc-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 16px;
}
.terms-toc ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.terms-toc a {
  display: flex;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.4;
  transition: background .15s, color .15s;
}
.terms-toc a:hover { background: var(--bg-2); color: var(--primary); }
.terms-toc a .tn { font-family: var(--font-mono); font-size: 11px; color: var(--fg-3); flex-shrink: 0; padding-top: 1px; }
.mh-mobile .terms-toc ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  background: var(--card);
}

.terms-clauses { max-width: 720px; }
.terms-clause {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.terms-clause:first-child { border-top: 0; padding-top: 0; }
.mh-mobile .terms-clause { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
.terms-clause-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--primary);
  line-height: 1;
}
.mh-mobile .terms-clause-num { font-size: 22px; }
.terms-clause-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  line-height: 1.2;
}
.mh-mobile .terms-clause-body h2 { font-size: 19px; }
.terms-clause-body p {
  margin: 0;
  color: var(--fg-2);
  line-height: 1.65;
  font-size: 15px;
}
.terms-foot {
  margin-top: 48px;
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.terms-foot p { margin: 0; color: var(--fg-2); line-height: 1.6; font-size: 15px; }
.terms-foot-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

/* ────────────────────────────────────────────────────────────────
   Quote flow page
   ──────────────────────────────────────────────────────────────── */
.quote-page { padding: 56px 0 96px; min-height: 100%; background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 360px); }
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
}
.mh-mobile .quote-grid { grid-template-columns: 1fr; gap: 24px; }
/* On mobile, slim the intro to just a compact heading so users reach the
   form fields immediately instead of scrolling past a wall of copy. */
.mh-mobile .quote-aside { position: static; top: auto; }
.mh-mobile .quote-aside p,
.mh-mobile .quote-aside .reassurance,
.mh-mobile .quote-aside .testi-card { display: none; }
.mh-mobile .quote-aside h1 { font-size: 28px; margin-top: 10px; }
.mh-mobile .quote-aside .eyebrow { font-size: 10px; }
.quote-aside {
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
.quote-aside h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 18px 0 0;
}
.quote-aside h1 .it { font-style: italic; color: var(--primary); font-weight: 400; }
.quote-aside p { color: var(--fg-2); margin: 20px 0 0; line-height: 1.55; }
.reassurance { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.reassurance li { display: flex; gap: 14px; align-items: flex-start; list-style: none; }
.reassurance li .ic {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--primary) 12%, transparent);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.reassurance li .ttl { font-weight: 600; font-size: 14px; }
.reassurance li .desc { font-size: 13px; color: var(--fg-3); margin-top: 2px; }

.testi-card {
  margin-top: 40px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.testi-card .stars { color: var(--primary); display: flex; gap: 3px; margin-bottom: 10px; }
.testi-card blockquote {
  font-family: var(--font-display); font-size: 16px; line-height: 1.45;
  font-style: italic; color: var(--fg); margin: 0;
}
.testi-card .who { font-size: 12px; color: var(--fg-3); margin-top: 14px; }

.quote-form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.mh-mobile .quote-form-card { padding: 28px; border-radius: var(--radius-lg); }

/* Progress bar */
.qprog {
  margin-bottom: 32px;
}
.qprog-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.qprog-head .step-lbl { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg-3); }
.qprog-head .step-name { font-size: 14px; font-weight: 600; }
.qprog-bar {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: var(--bg-3);
  overflow: hidden;
}
.qprog-bar .fill {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  background: var(--primary);
  border-radius: 999px;
  transition: width .5s cubic-bezier(.4,.2,.2,1);
}

/* Quote: stepper actions */
.q-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
}
.q-actions .btn-primary { flex: 1; }

/* Option pickers (used in step 1/2) */
.opts {
  display: grid;
  gap: 10px;
}
.opts.c2 { grid-template-columns: 1fr 1fr; }
.opts.c3 { grid-template-columns: 1fr 1fr 1fr; }
.opts.c4 { grid-template-columns: repeat(4, 1fr); }
.mh-mobile .opts.c3, .mh-mobile .opts.c4 { grid-template-columns: 1fr 1fr; }
.opt-btn {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  text-align: left;
  position: relative;
  transition: all .15s;
  font: inherit;
  color: inherit;
}
.opt-btn:hover { border-color: var(--primary-3); background: color-mix(in oklab, var(--primary) 4%, var(--card)); }
.opt-btn.active {
  border-color: var(--primary);
  background: color-mix(in oklab, var(--primary) 6%, var(--card));
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--primary) 18%, transparent);
}
.opt-btn .lbl { font-weight: 500; font-size: 14px; }
.opt-btn .hint { font-size: 11px; color: var(--fg-3); margin-top: 2px; }
.opt-btn .check {
  position: absolute;
  top: 8px; right: 8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.opt-btn.active .check { display: inline-flex; }

/* Toggle row */
.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  gap: 16px;
}
.toggle-row .lbl { font-weight: 500; font-size: 14px; }
.toggle-row .hint { font-size: 12px; color: var(--fg-3); margin-top: 2px; }
.switch {
  width: 38px; height: 22px;
  background: var(--bg-3);
  border-radius: 999px;
  position: relative;
  transition: background .2s;
  flex-shrink: 0;
  cursor: pointer;
}
.switch::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.18);
  transition: transform .2s;
}
.switch.on { background: var(--primary); }
.switch.on::after { transform: translateX(16px); }

/* Estimate hint card */
.est-hint {
  margin-top: 4px;
  background: color-mix(in oklab, var(--primary) 5%, var(--card));
  border: 1px solid color-mix(in oklab, var(--primary) 22%, var(--line));
  border-radius: var(--radius);
  padding: 20px 22px;
}
.est-hint .head { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in oklab, var(--primary) 80%, var(--fg-3)); }
.est-hint .body { font-family: var(--font-display); font-size: 22px; margin-top: 6px; letter-spacing: -0.01em; }
.est-hint .body strong { color: var(--primary); font-weight: 600; }
.est-hint .foot { font-size: 12px; color: var(--fg-3); margin-top: 8px; }

/* Photo uploader stub */
.photo-block {
  background: color-mix(in oklab, var(--accent) 8%, var(--card));
  border: 1px solid color-mix(in oklab, var(--accent) 30%, var(--line));
  border-radius: 16px;
  padding: 20px;
}
.photo-block .head { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.photo-block .head .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: color-mix(in oklab, var(--accent) 30%, transparent);
  color: var(--accent-2);
  display: inline-flex; align-items: center; justify-content: center;
}
.photo-block .head .ttl { font-weight: 600; font-size: 14px; }
.photo-block .head .sub { font-size: 12px; color: var(--fg-3); margin-top: 2px; line-height: 1.4; }
.photo-rooms { display: flex; flex-direction: column; gap: 8px; }
.photo-room {
  background: var(--card);
  border: 1px dashed var(--line-2);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.photo-room .name { font-weight: 500; }
.photo-room .add { font-size: 11px; color: var(--primary); font-weight: 600; }

/* Quote success */
.q-success {
  text-align: center;
  padding: 24px 0;
}
.q-success .badge {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  margin: 0 auto 24px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(176,132,114,.4);
}
.q-success h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.02em; margin: 0;
}
.q-success p { color: var(--fg-2); margin: 16px auto 0; max-width: 480px; line-height: 1.55; }
.q-success .actions { margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Single-page quote variant */
.q-single-section {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.q-single-section:first-child { padding-top: 0; }
.q-single-section:last-child { border-bottom: 0; }
.q-single-section .sec-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 18px;
}
.q-single-section .sec-title .pn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
}

/* Chat-style quote */
.chat-pane {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 540px;
}
.chat-msg { max-width: 78%; }
.chat-msg.them {
  align-self: flex-start;
  background: var(--bg-2);
  padding: 14px 18px;
  border-radius: 18px 18px 18px 4px;
  font-size: 15px;
}
.chat-msg.them.first { display: flex; gap: 12px; align-items: flex-start; max-width: 86%; }
.chat-msg.them.first .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  flex-shrink: 0;
}
.chat-msg.them.first .bub {
  background: var(--bg-2);
  padding: 14px 18px;
  border-radius: 18px 18px 18px 4px;
  font-size: 15px;
}
.chat-msg.you {
  align-self: flex-end;
  background: var(--primary);
  color: #fff;
  padding: 14px 18px;
  border-radius: 18px 18px 4px 18px;
  font-size: 14px;
  font-weight: 500;
}
.chat-typing {
  align-self: flex-start;
  background: var(--bg-2);
  padding: 14px 18px;
  border-radius: 18px;
  display: inline-flex; gap: 4px;
}
.chat-typing .dt {
  width: 6px; height: 6px;
  background: var(--fg-3);
  border-radius: 50%;
  animation: ty 1.2s infinite;
}
.chat-typing .dt:nth-child(2) { animation-delay: 0.2s; }
.chat-typing .dt:nth-child(3) { animation-delay: 0.4s; }
@keyframes ty {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}
.chat-choices {
  align-self: flex-start;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 86%;
  margin-left: 48px;
}
.chat-choice {
  padding: 10px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  transition: all .15s;
}
.chat-choice:hover { border-color: var(--primary); background: color-mix(in oklab, var(--primary) 6%, var(--card)); }
.chat-input {
  margin-top: auto;
  display: flex;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.chat-input input {
  flex: 1; height: 44px; border-radius: 12px; border: 1px solid var(--line); padding: 0 14px;
  font: inherit; font-size: 14px; background: var(--card); color: var(--fg);
}
.chat-input input:focus { outline: none; border-color: var(--primary); }

/* Numbers ribbon footer below trust-strip */
.ribbon {
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
