/* DM House Cleaning V2 — luxury dark theme with card-bg + membrane system (V1 parity) */
:root {
  --bg: #070b14;
  --bg2: #0b1220;
  --card: rgba(255,255,255,0.06);
  --card-strong: rgba(255,255,255,0.10);
  --stroke: rgba(255,255,255,0.12);
  --stroke-strong: rgba(255,255,255,0.20);
  --text: #f5f7ff;
  --muted: rgba(245,247,255,0.82);
  --muted2: rgba(245,247,255,0.55);
  --accent: #4fd1c5;
  --accent2: #60a5fa;
  --gold: #ffd780;
  --gold-soft: rgba(255,215,128,0.18);
  --gold-stroke: rgba(255,215,128,0.30);
  --shadow: 0 18px 45px rgba(0,0,0,.55);
  --shadow2: 0 10px 28px rgba(0,0,0,.45);
  --r1: 16px;
  --r2: 24px;
  --max: 1200px;

  /* Membrane glass system (V1) */
  --tile-glass1: rgba(255,255,255,.78);
  --tile-glass2: rgba(255,255,255,.62);
  --gold-glass1: rgba(10,12,18,.78);
  --gold-glass2: rgba(10,12,18,.62);
  --mem-line: rgba(96,165,250,.75);
  --mem-glow: rgba(96,165,250,.22);
  --mem-bg1: rgba(255,255,255,.86);
  --mem-bg2: rgba(255,255,255,.72);
  --mem-text: rgba(11,18,32,.92);
  --mem-text2: rgba(11,18,32,.78);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(900px 520px at 12% 8%, rgba(96,165,250,.20), transparent 55%),
    radial-gradient(820px 520px at 86% 14%, rgba(79,209,197,.18), transparent 55%),
    linear-gradient(180deg, var(--bg2), var(--bg));
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, iframe { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent2); }
button { font-family: inherit; border: none; cursor: pointer; }

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  margin: 12px 16px 0;
  border-radius: var(--r2);
  background: linear-gradient(120deg, rgba(11,18,32,.88), rgba(7,11,20,.90));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 10px;
  z-index: 50;
}
.site-header .brand { display: flex; align-items: center; gap: 10px; color: var(--text) !important; }
.site-header .brand:hover { color: var(--text) !important; }
.site-header .logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: radial-gradient(circle at 20% 10%, var(--accent), var(--accent2));
  box-shadow: 0 0 0 2px rgba(7,11,20,.85), 0 12px 22px rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: .06em;
  font-size: 14px;
  color: #071018;
  flex: 0 0 auto;
}
.site-header .brand strong { font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 900; }
.site-header nav { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.site-header nav a { font-size: 13px; color: var(--muted); padding: 7px 12px; border-radius: 999px; border: 1px solid transparent; white-space: nowrap; }
.site-header nav a:hover { color: var(--text); background: rgba(255,255,255,.06); border-color: var(--stroke); }
.site-header .cta {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #071018 !important;
  font-weight: 900;
  border: 1px solid rgba(0,0,0,.22) !important;
  box-shadow: 0 4px 12px rgba(79,209,197,.30);
}
.site-header .cta:hover { filter: brightness(1.06); background: linear-gradient(135deg, var(--accent), var(--accent2)); }
.site-header nav a.nav-quote {
  background: rgba(255,255,255,0.10);
  border-color: var(--stroke-strong) !important;
  color: var(--text);
  font-weight: 900;
}
.site-header nav a.nav-quote:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--gold-soft);
  transform: translateY(-1px);
}
.site-header nav a.nav-fb {
  background: #0d65d9;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  font-weight: 700;
}
.site-header nav a.nav-fb:hover {
  background: #0b58bd;
  color: #fff !important;
  border-color: rgba(255,255,255,0.28) !important;
}

/* Main wrap */
main { max-width: var(--max); margin: 0 auto; padding: 18px 16px 100px; }
section { margin-top: 28px; scroll-margin-top: 92px; }

/* === HERO (split 2-column) === */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 20px;
}
.hero-left,
.hero-right {
  border-radius: var(--r2);
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
  box-shadow: var(--shadow);
  min-width: 0;
  box-sizing: border-box;
}
.hero-left {
  position: relative;
  overflow: hidden;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-color: var(--gold-stroke);
  background:
    linear-gradient(180deg, var(--gold-glass1), var(--gold-glass2)),
    image-set(
      url('/images/shared/bg-hero-gold-800.webp') 1x,
      url('/images/shared/bg-hero-gold.webp') 2x
    );
  background-size: cover;
  background-position: center;
  min-height: 380px;
}
.hero-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 18% 10%, rgba(255,215,128,.10), transparent 60%),
    radial-gradient(900px 520px at 86% 18%, rgba(255,200,120,.08), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.08));
  pointer-events: none;
}
.hero-left > * { position: relative; z-index: 1; }
.hero-right {
  padding: 12px;
  display: grid;
  grid-template-rows: 1fr;
  min-height: 320px;
}
.hero-right .hero-media {
  width: 100%;
  height: 100%;
  min-height: 0;
  align-self: stretch;
  justify-self: stretch;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,247,255,.82);
  margin-bottom: 12px;
  justify-content: center;
}
.kicker .dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255,215,128,.16);
}
.title {
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: .005em;
  font-weight: 950;
  margin-bottom: 12px;
  max-width: 26ch;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.title .grad {
  background: linear-gradient(120deg, #ffffff, var(--gold), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sub {
  color: rgba(245,247,255,.86);
  font-size: 13px;
  max-width: 60ch;
  margin-bottom: 12px;
  line-height: 1.55;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 14px;
  justify-content: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  color: rgba(245,247,255,.86);
  font-size: 12px;
  font-weight: 700;
}
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: .015em;
  white-space: nowrap;
  border: 1px solid var(--stroke);
  text-decoration: none;
  transition: transform .18s, box-shadow .18s, filter .18s, background .18s;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #071018;
  border: 1px solid rgba(0,0,0,.22);
  box-shadow: 0 10px 28px rgba(79,209,197,.22), 0 2px 6px rgba(0,0,0,.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(79,209,197,.32);
  filter: brightness(1.06);
  color: #071018;
}
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
  color: var(--text);
}

/* === HERO TRUSTLINE === */
.trustline {
  margin-top: 14px;
  padding: 10px 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 14px;
  font-size: 0.86rem;
  color: rgba(245,247,255,.92);
  background: linear-gradient(120deg, rgba(79,209,197,0.10), rgba(96,165,250,0.08));
  border: 1px solid var(--stroke);
  border-radius: 14px;
  max-width: 100%;
  box-sizing: border-box;
}
.trustline span { white-space: nowrap; }
.trustline b { color: var(--gold); font-weight: 800; }

/* === HERO VIDEO FACADE === */
.hero-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: #050a14;
  box-shadow: var(--shadow2);
  width: 100%;
}
.video-stage { position: absolute; inset: 0; overflow: hidden; }
.video-facade {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #050a14;
  transition: filter 0.18s;
}
.video-facade::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.55));
  z-index: 1;
  pointer-events: none;
}
.video-facade .video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.video-facade:hover { filter: brightness(1.08); }
.video-btn {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(0,0,0,.50);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(245,247,255,.96);
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.video-btn .play {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #071018;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(79,209,197,.45);
}
.video-btn .video-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}
.hero-media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* === SECTION HEADS === */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.section-head h2,
section > h2 {
  font-size: 16px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,247,255,.88);
}
section > p { color: var(--muted); }

/* === GRID === */
.grid2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; align-items: stretch; }
.grid3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; align-items: stretch; }

/* === CARD + CARD-BG + MEMBRANE SYSTEM (the V1 luxury look) === */
.card {
  position: relative;
  padding: 14px;
  border-radius: var(--r1);
  border: 1px solid var(--stroke);
  background: var(--card);
  box-shadow: var(--shadow2);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card.card-bg {
  background-image: linear-gradient(180deg, var(--tile-glass1), var(--tile-glass2)), var(--card-bg-image, none);
  background-size: cover;
  background-position: center;
}
.card.card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.04));
  pointer-events: none;
}
.card > * { position: relative; z-index: 1; }

.membrane {
  border-radius: 14px;
  border: 1px solid var(--mem-line);
  background: linear-gradient(180deg, var(--mem-bg1), var(--mem-bg2));
  box-shadow: 0 0 0 6px var(--mem-glow);
  padding: 14px 16px;
  color: var(--mem-text);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.membrane h3 {
  margin: 6px 0;
  font-size: 1.05rem;
  font-weight: 950;
  color: var(--mem-text);
  line-height: 1.2;
}
.membrane p {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--mem-text2);
  margin: 4px 0;
}
.membrane .list {
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--mem-text2);
  font-weight: 700;
  list-style: disc;
}
.membrane .list li { margin: 5px 0; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11,18,32,.14);
  background: rgba(255,255,255,.78);
  color: rgba(11,18,32,.90);
  font-size: 11px;
  font-weight: 950;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.pill b { color: rgba(11,18,32,.98); }

.price-tag {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid var(--mem-line);
  background: linear-gradient(120deg, rgba(96,165,250,0.18), rgba(96,165,250,0.10));
  font-size: 12px;
  color: rgba(11,18,32,.92);
  font-weight: 950;
}

/* Dark membrane variant (for hero VIP card and CTA cards) */
.card.card-dark .membrane {
  background: linear-gradient(180deg, rgba(0,0,0,.86), rgba(0,0,0,.78)) !important;
  color: rgba(245,247,255,.96) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  box-shadow: 0 0 0 6px rgba(96,165,250,.18) !important;
}
.card.card-dark .membrane h3,
.card.card-dark .membrane p,
.card.card-dark .membrane .list { color: rgba(245,247,255,.92) !important; }
.card.card-dark .pill {
  background: rgba(255,255,255,0.10) !important;
  border-color: rgba(255,255,255,0.22) !important;
  color: rgba(245,247,255,.92) !important;
}
.card.card-dark .pill b { color: rgba(245,247,255,.98) !important; }

/* Service icon strip for membrane cards */
.service-icon-strip { font-size: 1.4rem; margin-bottom: 6px; }

/* === HERO VIP CARD (right column, white-text variant) === */
.hero-right .card.card-dark {
  background-image: linear-gradient(180deg, rgba(10,12,18,.62), rgba(10,12,18,.78)), url('/images/shared/bg-hero-vip-card.webp');
  background-size: cover;
  background-position: center;
  padding: 8px;
}
.hero-right .card.card-dark .membrane {
  padding: 10px 12px;
  box-shadow: 0 0 0 3px rgba(96,165,250,.18) !important;
}
.hero-right .card.card-dark .membrane .pill {
  font-size: 10px;
  margin-bottom: 4px;
}
.hero-right .card.card-dark .membrane h3 {
  font-size: 0.92rem !important;
  margin: 4px 0 4px;
  line-height: 1.2;
}
.hero-right .card.card-dark .membrane p {
  font-size: 0.78rem;
  line-height: 1.4;
  margin: 0;
}

/* === GALLERY === */
.gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.gitem {
  border-radius: var(--r1);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: #050a14;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow2);
  position: relative;
  display: block;
}
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gitem:hover img { transform: scale(1.04); }

/* === BEFORE/AFTER === */
.ba {
  position: relative;
  border-radius: var(--r1);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: #050a14;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow2);
}
.ba img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
}
.ba .after { clip-path: inset(0 0 0 50%); transition: clip-path 0.05s linear; }
.ba .ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 0 6px rgba(79,209,197,0.25);
  pointer-events: none;
  transform: translateX(-50%);
  z-index: 2;
}
.ba .ba-knob {
  position: absolute;
  left: 50%; top: 50%;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 1.1rem;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2;
  backdrop-filter: blur(6px);
}
.ba .ba-range {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
  margin: 0;
}
.ba .ba-labels {
  position: absolute;
  left: 12px; right: 12px; top: 12px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  z-index: 1;
  pointer-events: none;
}
.ba .ba-labels span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.20);
}

/* === REVIEWS LIST (single-column dark cards) === */
.reviews-stack { display: flex; flex-direction: column; gap: 14px; }


/* === TOWN GRID (areas section quick-links) === */
.town-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin: 16px 0;
}
.town-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(11,18,32,.14);
  background: rgba(255,255,255,.78);
  color: rgba(11,18,32,.92);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s;
}
.town-grid a:hover {
  background: rgba(255,255,255,.95);
  border-color: rgba(11,18,32,.30);
  transform: translateY(-1px);
  color: rgba(11,18,32,.98);
}

/* === ALL-CITIES ACCORDION (in areas card) === */
.all-cities {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(11,18,32,.14);
}
.all-cities summary {
  cursor: pointer;
  font-weight: 950;
  color: var(--mem-text);
  padding: 8px 0;
  font-size: 0.95rem;
  list-style: none;
}
.all-cities summary::-webkit-details-marker { display: none; }
.all-cities summary::after { content: " ▼"; color: var(--accent2); font-size: 0.8rem; }
.all-cities[open] summary::after { content: " ▲"; }
.all-cities ul {
  columns: 3;
  column-gap: 24px;
  margin-top: 10px;
  padding-left: 18px;
  list-style: none;
}
.all-cities ul li { margin: 4px 0; break-inside: avoid; }
.all-cities ul li a { color: rgba(11,18,32,.85); font-size: 0.86rem; font-weight: 600; }
.all-cities ul li a:hover { color: var(--accent2); }

/* === QUOTE FORM === */
details.quote-dd {
  border-radius: var(--r2);
  overflow: visible;
}
details.quote-dd > summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--r2);
  border: 1px solid var(--stroke);
  background: linear-gradient(120deg, rgba(11,18,32,.70), rgba(7,11,20,.80));
  box-shadow: var(--shadow2);
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  color: rgba(245,247,255,.92);
}
details.quote-dd > summary::-webkit-details-marker { display: none; }
.dd-arrow {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  color: var(--accent);
  transition: transform 0.2s;
  font-size: 0.85rem;
}
details.quote-dd[open] .dd-arrow { transform: rotate(180deg); }
.quote-body { margin-top: 14px; }

.quote-form { display: grid; gap: 12px; }
.quote-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quote-form label {
  display: block;
  font-size: 12px;
  color: rgba(245,247,255,.82);
  margin: 4px 0 4px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 13px;
  font-family: inherit;
  color-scheme: dark;
}
.quote-form select option {
  background: #0b1220;
  color: var(--text);
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: rgba(79,209,197,.55);
}
.quote-form textarea { min-height: 96px; resize: vertical; }
.quote-form .checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}
.quote-form .check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
}
.quote-form .check input { width: 16px; height: 16px; margin-top: 2px; }
.quote-form .check b { display: block; font-size: 13px; color: var(--text); }
.quote-form .check span { display: block; color: var(--muted2); font-size: 11px; margin-top: 2px; }

/* Quote left card (info) — same look as other card-bg cards (light overlay + light membrane) */
#quote .card.quote-info {
  background-image: linear-gradient(180deg, var(--tile-glass1), var(--tile-glass2)), url('/images/shared/bg-quote-left.webp');
  background-size: cover;
  background-position: center;
}
/* Quote right card (form) — keeps strong overlay so form fields are readable */
#quote .card.quote-form-card {
  background-image: linear-gradient(180deg, rgba(10,12,18,.94), rgba(10,12,18,.97)), url('/images/shared/bg-quote-right.webp');
  background-size: cover;
  background-position: center;
  padding: 22px;
}

/* === CTA card === */
.cta-card {
  margin-top: 28px;
  padding: 32px 28px;
  border-radius: var(--r2);
  border: 1px solid var(--gold-soft);
  background:
    linear-gradient(180deg, rgba(10,12,18,.72), rgba(10,12,18,.82)),
    url('/images/shared/bg-cta-review.webp');
  background-size: cover;
  background-position: center;
  text-align: center;
  box-shadow: var(--shadow);
}
.cta-card h3 { font-size: 1.5rem; margin-bottom: 8px; color: var(--text); }
.cta-card p { color: rgba(245,247,255,.85); margin-bottom: 20px; }

/* === FAQ === */
.faq {
  border-radius: var(--r1);
  border: 1px solid var(--stroke);
  background: var(--card);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.4rem; font-weight: 900; margin-left: 12px; }
.faq[open] summary::after { content: "−"; }
.faq p { padding: 0 18px 16px; color: var(--muted); margin: 0; }

/* === BLOG === */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.blog-card {
  display: block;
  padding: 18px 20px;
  border-radius: var(--r1);
  border: 1px solid var(--stroke);
  background: var(--card);
  color: var(--text);
  transition: all 0.15s;
}
.blog-card:hover { border-color: var(--accent); background: var(--card-strong); transform: translateY(-2px); }
.blog-card h3 { color: var(--text); font-size: 1.05rem; margin-bottom: 8px; }
.blog-card p { color: var(--muted2); font-size: 0.92rem; margin: 0; }

/* === PROCESS STEPS === */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.process-step {
  padding: 22px 18px;
  border-radius: var(--r1);
  border: 1px solid var(--stroke);
  background: var(--card);
  box-shadow: var(--shadow2);
}
.process-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #071018;
  font-weight: 900;
  margin-bottom: 10px;
}
.process-step h3 { color: var(--text); margin-bottom: 6px; font-size: 1rem; }
.process-step p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* === PRICING === */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.price-tile {
  padding: 16px 18px;
  border-radius: var(--r1);
  border: 1px solid var(--stroke);
  background: var(--card);
  text-align: center;
}
.price-tile strong { display: block; color: var(--text); font-size: 1rem; margin-bottom: 6px; }
.price-tile .price { color: var(--gold); font-size: 1.05rem; font-weight: 700; }

/* === FOOTER === */
.site-footer {
  text-align: center;
  padding: 40px 24px;
  margin-top: 60px;
  border-top: 1px solid var(--stroke);
  color: var(--muted2);
  font-size: 0.9rem;
}
.site-footer p { margin-bottom: 6px; }
.site-footer a { color: var(--accent); }
.site-footer .footer-fine { font-size: 0.8rem; opacity: 0.7; margin-top: 12px; }

/* === MOBILE === */
@media (max-width: 980px) {
  .hero { grid-template-columns: minmax(0, 1fr); }
  .hero-left, .hero-right { min-width: 0; }
  .hero-left { min-height: 0; padding: 36px 22px; }
  .hero-media { aspect-ratio: 16/9; }
  .grid3 { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .all-cities ul { columns: 2; }
}
@media (max-width: 720px) {
  .site-header { margin: 8px 8px 0; padding: 10px 14px; flex-wrap: wrap; }
  .site-header nav { gap: 4px; font-size: 0.85rem; }
  .grid2, .grid3 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .quote-form .row2, .quote-form .checks { grid-template-columns: 1fr; }
  main { padding: 12px 12px 60px; }
  /* Hero mobile fixes — prevent overflow */
  .hero { gap: 12px; }
  .hero-left { padding: 28px 18px; max-width: 100%; }
  .hero-right { padding: 8px; max-width: 100%; }
  .title { max-width: 100%; }
  .sub { max-width: 100%; }
  .trustline { font-size: 0.78rem; gap: 4px 10px; padding: 10px 12px; max-width: 100%; }
  .badges { gap: 6px; }
  .badge { font-size: 11px; padding: 6px 10px; }
  .hero-actions { gap: 8px; }
  .btn { padding: 11px 18px; font-size: 13px; }
  /* Bottom padding for sticky CTA bar */
  body { padding-bottom: 80px; }
  .site-footer { padding-bottom: 96px; }
}
@media (max-width: 480px) {
  .site-header .brand strong { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .all-cities ul { columns: 1; }
  .hero-left { padding: 22px 14px; }
  .title { font-size: clamp(20px, 5.5vw, 26px); }
}

/* === ABOUT PAGE === */
.about-hero-photo {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}
.about-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-hero-photo .photo-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(7,11,20,.74);
  border: 1px solid var(--stroke);
  font-size: 12px;
  font-weight: 700;
  color: rgba(245,247,255,.92);
  backdrop-filter: blur(6px);
}
.about-story-card {
  padding: 28px 26px;
  border-radius: var(--r2);
  border: 1px solid var(--stroke);
  background: var(--card);
  box-shadow: var(--shadow2);
}
.about-story-card h2 { color: var(--text); font-size: 1.4rem; margin-bottom: 12px; }
.about-story-card p { color: var(--muted); margin-bottom: 12px; line-height: 1.65; }
.about-story-card ul.points { list-style: none; padding: 0; margin-top: 14px; }
.about-story-card ul.points li {
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.about-story-card ul.points li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 900;
  margin-right: 6px;
}

/* === BLOG === */
.blog-hero-section {
  text-align: center;
  padding: 48px 24px;
  border-radius: var(--r2);
  border: 1px solid var(--gold-soft);
  background:
    linear-gradient(180deg, rgba(10,12,18,.66), rgba(10,12,18,.78)),
    image-set(
      url('/images/shared/bg-hero-gold-800.webp') 1x,
      url('/images/shared/bg-hero-gold.webp') 2x
    );
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.blog-hero-section h1 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 950;
  margin-bottom: 12px;
}
.blog-hero-section h1 .grad {
  background: linear-gradient(120deg, #fff, var(--gold), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.blog-hero-section p { color: rgba(245,247,255,.88); max-width: 60ch; margin: 0 auto; }

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.post-card-large {
  display: block;
  padding: 24px 22px;
  border-radius: var(--r1);
  border: 1px solid var(--stroke);
  background: var(--card);
  color: var(--text);
  transition: all 0.18s;
  text-decoration: none;
}
.post-card-large:hover {
  border-color: var(--gold);
  background: var(--card-strong);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.30);
}
.post-card-large .pill {
  background: var(--gold-soft);
  color: var(--gold);
  border-color: var(--gold-soft);
}
.post-card-large h2 {
  color: var(--text) !important;
  font-size: 1.1rem !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  margin-bottom: 10px;
}
.post-card-large p { color: var(--muted); font-size: 0.92rem; margin-bottom: 12px; line-height: 1.55; }
.post-card-large .post-meta {
  font-size: 0.82rem;
  color: var(--muted2);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

/* === BLOG ARTICLE PAGE === */
.article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 12px;
}
.article-crumbs {
  font-size: 12px;
  color: var(--muted2);
  margin-bottom: 14px;
}
.article-crumbs a { color: var(--muted); }
.article-crumbs a:hover { color: var(--accent); }
.article-content h1 {
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.15;
  font-weight: 950;
  color: var(--text);
  margin: 14px 0 14px;
}
.article-content .article-meta {
  font-size: 0.88rem;
  color: var(--muted2);
  margin-bottom: 18px;
}
.article-content .article-lede {
  font-size: 1.08rem;
  font-style: italic;
  color: rgba(245,247,255,.92);
  padding: 18px 22px;
  border-left: 4px solid var(--gold);
  background: rgba(255,215,128,0.06);
  border-radius: 0 var(--r1) var(--r1) 0;
  margin: 0 0 24px;
}
.article-content h2 {
  font-size: 1.4rem;
  color: var(--text);
  margin: 32px 0 12px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 900;
}
.article-content h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin: 22px 0 10px;
  font-weight: 800;
}
.article-content p {
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 1rem;
}
.article-content strong { color: var(--text); }
.article-content a { color: var(--accent); text-decoration: underline; }
.article-content a:hover { color: var(--accent2); }
.article-content ul,
.article-content ol {
  margin: 0 0 18px 22px;
  color: var(--muted);
}
.article-content li { margin-bottom: 6px; line-height: 1.6; }
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.92rem;
  background: var(--card);
  border-radius: var(--r1);
  overflow: hidden;
}
.article-content th,
.article-content td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--stroke);
  color: var(--muted);
}
.article-content th {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-weight: 800;
}
.article-content blockquote {
  margin: 22px 0;
  padding: 16px 22px;
  border-left: 4px solid var(--gold);
  background: rgba(255,215,128,0.06);
  font-style: italic;
  color: rgba(245,247,255,.92);
  border-radius: 0 var(--r1) var(--r1) 0;
}
.article-author {
  margin: 36px 0;
  padding: 20px;
  border-radius: var(--r1);
  border: 1px solid var(--stroke);
  background: var(--card);
  display: flex;
  gap: 16px;
  align-items: center;
}
.article-author .avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.article-author strong { color: var(--text); display: block; margin-bottom: 4px; }
.article-author p { color: var(--muted2); font-size: 0.92rem; margin: 0; }

/* === PRICING PAGE === */
.pricing-table-card {
  padding: 28px 24px;
  border-radius: var(--r2);
  border: 1px solid var(--stroke);
  background: var(--card);
  box-shadow: var(--shadow2);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.pricing-table th,
.pricing-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--stroke);
  color: var(--muted);
}
.pricing-table th {
  background: rgba(255,215,128,0.06);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.pricing-table td:first-child { color: var(--text); font-weight: 700; }
.pricing-note {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--r1);
  border: 1px solid var(--gold-soft);
  background: rgba(255,215,128,0.06);
  color: rgba(245,247,255,.88);
  font-size: 0.92rem;
  line-height: 1.55;
}
.pricing-factor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.pricing-factor-card {
  padding: 16px 18px;
  border-radius: var(--r1);
  border: 1px solid var(--stroke);
  background: var(--card);
}
.pricing-factor-card h3 {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 6px;
}
.pricing-factor-card p { color: var(--muted2); font-size: 0.9rem; margin: 0; }

/* Mobile blog/about adjustments */
@media (max-width: 720px) {
  .article-wrap { padding: 0 8px; }
  .article-content table { font-size: 0.85rem; }
  .article-content th, .article-content td { padding: 8px 10px; }
}

/* === VIP CHECKLIST FREE GUIDE (white-membrane card) === */
.vip-checklist-card {
  position: relative;
  padding: 14px;
  border-radius: var(--r2);
  border: 1px solid var(--gold-soft);
  background-image: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.10)), url('/images/shared/services-biweekly.webp');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.vip-checklist-card .membrane {
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.80));
  color: var(--mem-text);
  border: 1px solid var(--mem-line);
  box-shadow: 0 0 0 6px var(--mem-glow);
  padding: 22px 24px;
}
.vip-checklist-card .membrane h3 { color: var(--mem-text); font-size: 1.2rem; margin-bottom: 10px; }
.vip-checklist-card .membrane h4 { color: var(--mem-text); font-size: 1rem; margin: 12px 0 8px; }
.vip-checklist-card .checklist-2col {
  list-style: none;
  columns: 2;
  column-gap: 24px;
  margin: 14px 0 16px;
  padding: 0;
}
.vip-checklist-card .checklist-2col li {
  break-inside: avoid;
  padding: 4px 0;
  font-size: 0.92rem;
  color: var(--mem-text2);
  font-weight: 600;
}
.vip-checklist-card .checklist-2col li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 900;
  margin-right: 6px;
}
.vip-checklist-card .pdf-link {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #071018 !important;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,.22);
  box-shadow: 0 8px 22px rgba(79,209,197,.30);
}
.vip-checklist-card .pdf-link:hover { filter: brightness(1.06); transform: translateY(-1px); color: #071018 !important; }

@media (max-width: 720px) { .vip-checklist-card .checklist-2col { columns: 1; } }

/* === WHY US SECTION === */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.why-us-text {
  padding: 26px 24px;
  border-radius: var(--r2);
  border: 1px solid var(--stroke);
  background: var(--card);
  box-shadow: var(--shadow2);
}
.why-us-text p { color: var(--muted); margin-bottom: 14px; line-height: 1.7; }
.why-us-text strong { color: var(--text); }
.why-us-text ul.points-2col {
  list-style: none;
  columns: 2;
  column-gap: 24px;
  padding: 0;
  margin-top: 12px;
}
.why-us-text ul.points-2col li {
  break-inside: avoid;
  padding: 5px 0;
  color: var(--muted);
  font-size: 0.92rem;
}
@media (max-width: 720px) {
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-text ul.points-2col { columns: 1; }
}

/* === SERVICE LINK GRID (Cleaning Service Pages section) === */
.service-link-card {
  position: relative;
  padding: 14px;
  border-radius: var(--r2);
  border: 1px solid var(--stroke);
  background-image: linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,.10)), url('/images/shared/services-deepclean.webp');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.service-link-card .membrane {
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.80));
  color: var(--mem-text);
  border: 1px solid var(--mem-line);
  box-shadow: 0 0 0 6px var(--mem-glow);
  padding: 22px 24px;
}
.service-link-card .membrane h3 { color: var(--mem-text); margin-bottom: 8px; }
.service-link-card .membrane > p { color: var(--mem-text2); margin-bottom: 14px; }
.service-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
@media (max-width: 720px) {
  .service-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .service-link-grid { grid-template-columns: 1fr; }
}
.service-link-grid .service-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(96,165,250,.45);
  background: rgba(255,255,255,.62);
  box-shadow: 0 0 0 3px rgba(96,165,250,.12);
  text-decoration: none;
  color: var(--mem-text);
  font-weight: 800;
  transition: all 0.15s;
}
.service-link-grid .service-link:hover {
  background: rgba(255,255,255,.86);
  border-color: var(--accent2);
  transform: translateY(-1px);
}
.service-link-grid .service-link span { color: var(--mem-text); font-size: 14px; line-height: 1.25; }
.service-link-grid .service-link small { color: var(--mem-text2); font-size: 12px; font-weight: 600; line-height: 1.4; }

/* === FOOTER LINKS === */
.site-footer .footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
.site-footer .footer-nav a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
}
.site-footer .footer-nav a:hover { color: var(--accent2); text-decoration: underline; }

/* === ABOUT HERO PHOTO PROPORTIONS === */
.about-hero-photo {
  aspect-ratio: 4/5;
  height: auto !important;
  min-height: 0 !important;
  max-height: 540px;
}

/* === VISIBLE BREADCRUMB (matches BreadcrumbList JSON-LD) === */
.breadcrumb-nav {
  max-width: var(--max);
  margin: 14px auto 0;
  padding: 0 16px;
  font-size: 0.85rem;
  color: var(--muted2);
}
.breadcrumb-nav ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
  align-items: center;
}
.breadcrumb-nav li {
  display: inline-flex;
  align-items: center;
}
.breadcrumb-nav li + li::before {
  content: "›";
  color: var(--muted2);
  margin-right: 8px;
  font-weight: 700;
}
.breadcrumb-nav a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.breadcrumb-nav a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.breadcrumb-nav [aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

/* === MOBILE HAMBURGER NAV (progressive enhancement) === */
/* Default: hamburger hidden, nav always visible — works without JS */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 60;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 880px) {
  .site-header { flex-wrap: wrap; }
  .site-header nav a {
    width: 100%;
    text-align: left;
    padding: 12px 14px;
    font-size: 14px;
  }
  .site-header nav a.cta,
  .site-header nav a.nav-fb,
  .site-header nav a.nav-quote {
    text-align: center;
    margin-top: 4px;
  }

  /* JS-enhanced: collapse nav behind hamburger */
  .js .nav-toggle { display: flex; }
  .js .site-header nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--stroke);
    align-items: stretch;
  }
  .js .site-header nav.is-open { display: flex; }
}

/* Open hamburger animation (X icon) */
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* === STICKY MOBILE CTA BAR === */
.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9999;
  display: none;
  gap: 8px;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(8,12,20,.92), rgba(8,12,20,.85));
  border: 1px solid var(--stroke-strong);
  box-shadow: 0 18px 45px rgba(0,0,0,.55);
  backdrop-filter: blur(14px);
}
.sticky-cta a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px 6px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.08);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.16s, background 0.16s, box-shadow 0.16s;
}
.sticky-cta a:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.14);
  box-shadow: 0 6px 16px rgba(0,0,0,.30);
  color: var(--text);
}
.sticky-cta .sticky-cta-icon {
  font-size: 18px;
  line-height: 1;
}
.sticky-cta .sticky-cta-text {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
}
.sticky-cta a.sticky-cta-call {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #071018 !important;
  border: 1px solid rgba(0,0,0,.22);
  box-shadow: 0 4px 12px rgba(79,209,197,.30);
}
.sticky-cta a.sticky-cta-call:hover {
  filter: brightness(1.06);
  box-shadow: 0 8px 22px rgba(79,209,197,.45);
  color: #071018 !important;
}
.sticky-cta a.sticky-cta-text-btn {
  background: rgba(255,255,255,0.10);
}
.sticky-cta a.sticky-cta-wa {
  background: #075E54;
  color: #fff !important;
  border-color: rgba(0,0,0,.22);
  box-shadow: 0 4px 12px rgba(7,94,84,.40);
}
.sticky-cta a.sticky-cta-wa:hover {
  background: #04443D;
  box-shadow: 0 8px 22px rgba(7,94,84,.50);
  color: #fff !important;
}

@media (max-width: 720px) {
  .sticky-cta { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta a:hover { transform: none; }
}

/* =========================
   2026-05-11: content-visibility for below-fold performance
   Browser skips render work for off-screen sections until they scroll into view.
   contain-intrinsic-size reserves space to prevent layout shift.
   Hero is left default (always render — above the fold).
   ========================= */
#services,
#service-pages,
#why-us,
.vip-checklist,
#beforeafter,
#gallery,
#local-expertise,
#testimonials,
#process,
#pricing,
#areas,
#faq,
#what-included,
#other-services,
#office-plans {
  content-visibility: auto;
  contain-intrinsic-size: 1px 1200px;
}
