/* ============================================================
   DFWPCP — Design System Stylesheet
   Light theme: navy + gold on white (Claude.md spec)
   ============================================================ */

:root {
  /* Brand */
  --navy: #1B2B6B;
  --navy-dark: #111E4F;
  --navy-deep: #0A1437;
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-deep: #A8893D;

  /* Emergency CTA */
  --red:        #DC2626;
  --red-dark:   #B91C1C;

  /* Surfaces */
  --white: #FFFFFF;
  --paper: #FAFAF7;
  --gray-soft: #F2F2EE;
  --gray-line: #E4E2DA;
  --gray-line-strong: #C9C6BB;

  /* Text */
  --ink: #1A1A2E;
  --ink-mid: #4A4A6A;
  --ink-soft: #6E6E86;

  /* Status */
  --success: #1F8A5B;
  --danger: #C0392B;

  /* Type */
  --font-display: 'Barlow Condensed', 'Helvetica Neue', sans-serif;
  --font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  /* Layout */
  --container: 1240px;
  --container-narrow: 920px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --header-h: 144px;
  --util-bar-h: 36px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: calc(var(--header-h) + var(--util-bar-h));
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- Type ---------- */
.h-display, h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.012em;
  color: var(--navy);
  text-transform: none;
  text-wrap: balance;
}
h1 { font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -0.022em; }
h2 { font-size: clamp(2.2rem, 4.8vw, 4rem); letter-spacing: -0.018em; }
h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); letter-spacing: -0.012em; }
h4 { font-size: 1.2rem; }
p { color: var(--ink); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold);
  display: inline-block;
}

/* ---------- Container ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: var(--container-narrow); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.005em;
  border-radius: 2px;
  border: 2px solid transparent;
  transition: all 0.18s var(--ease);
  white-space: nowrap;
  text-align: center;
}
.btn--primary { background: var(--red); color: #fff; font-weight: 700; border-color: var(--red); box-shadow: 0 4px 14px rgba(220,38,38,0.28); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); box-shadow: 0 6px 20px rgba(220,38,38,0.40); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { .btn { transition: none; } .btn--primary:hover { transform: none; box-shadow: 0 4px 14px rgba(220,38,38,0.28); } }
.btn--secondary { background: transparent; color: var(--navy); border-color: var(--navy); font-weight: 700; }
.btn--secondary:hover { background: var(--navy); color: var(--white); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); font-weight: 600; }
.btn--ghost-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--full { width: 100%; }
.btn svg { transition: transform 0.2s var(--ease); flex-shrink: 0; }
.btn:hover svg.arrow { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,19,58,0.52);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--white);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  box-shadow: 0 4px 32px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.is-scrolled {
  background: rgba(11,19,58,0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.40), inset 0 1px 0 rgba(255,255,255,0.04);
  border-bottom-color: rgba(201,168,76,0.10);
}
.site-header.is-scrolled .site-header__inner { height: 124px; }
@media (prefers-reduced-motion: reduce) { .site-header { transition: none; } }
.site-header__inner {
  height: var(--header-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  flex-shrink: 0;
}
.brand img { display: block; max-height: calc(var(--header-h) - 16px); width: auto; }
.brand__mark {
  width: 36px; height: 36px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.brand__mark::before {
  content: "";
  position: absolute;
  bottom: 8px; left: 6px; right: 6px;
  height: 2px;
  background: var(--gold);
}
.brand__mark span { font-size: 0.7rem; font-family: var(--font-display); font-weight: 700; color: var(--gold); letter-spacing: 0.04em; }
.brand__name { font-size: 1.05rem; line-height: 1; }
.brand__name small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
  text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 1.6rem; margin-left: auto; }
.nav a { font-size: 0.92rem; color: rgba(255,255,255,0.80); position: relative; padding: 6px 10px; border-radius: 6px; transition: color 0.18s ease; }
.nav a::before { content: ''; position: absolute; inset: 0; border-radius: 6px; background: radial-gradient(circle, rgba(201,168,76,0.20) 0%, rgba(201,168,76,0.05) 60%, transparent 100%); opacity: 0; transform: scale(0.7); transition: opacity 0.22s ease, transform 0.22s ease; pointer-events: none; }
.nav a:hover::before { opacity: 1; transform: scale(1); }
.nav a:hover { color: var(--white); }
.nav a.is-active { color: var(--white); }
.nav a.is-active::after { content: ""; position: absolute; left: 10px; right: 10px; bottom: -2px; height: 2px; background: var(--gold); border-radius: 1px; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 2px;
  font-size: 0.95rem;
  transition: background 0.15s var(--ease);
  flex-shrink: 0;
}
.header-cta:hover { background: var(--red-dark); }
.header-cta svg { width: 16px; height: 16px; display: inline; }
.header-cta--pulse { position: relative; }
.header-cta--pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2px;
  border: 2px solid var(--gold);
  animation: cta-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes cta-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.18); opacity: 0; }
}
.nav-toggle { display: none; }

@media (max-width: 1024px) {
  :root { --header-h: 76px; }
  .nav, .header-cta { display: none; }
  .site-header.is-scrolled .site-header__inner { height: var(--header-h); }
  .brand img { max-height: 66px; }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    margin-left: auto;
    color: var(--white);
  }
  .nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: calc(var(--header-h) + var(--util-bar-h));
    left: 0; right: 0;
    background: rgba(8,14,45,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 12px 28px 20px;
    gap: 0;
    border-top: 1px solid rgba(201,168,76,0.15);
    max-height: calc(100dvh - var(--header-h) - var(--util-bar-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 99;
  }
  .nav.is-open a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.85); }
  .nav.is-open .header-cta { display: inline-flex; margin-top: 14px; justify-content: center; }
}


/* ---------- Nav dropdown ---------- */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown__trigger { display: flex; align-items: center; gap: 4px; }
.nav-dropdown__caret { font-size: 0.7em; transition: transform 0.2s ease; pointer-events: none; }
.nav-dropdown:hover .nav-dropdown__caret { transform: rotate(180deg); }
.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-deep);
  min-width: 230px;
  list-style: none;
  padding: 0.4rem 0;
  border-top: 2px solid var(--gold);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown__menu { display: block; }
.nav-dropdown__menu li a {
  display: block;
  padding: 0.55rem 1.1rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.85rem;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-dropdown__menu li a:hover { color: var(--gold); background: rgba(255,255,255,0.04); }
.nav-dropdown__menu li a::before { display: none !important; }
@media (max-width: 1024px) {
  .nav.is-open .nav-dropdown { flex-direction: column; align-items: stretch; }
  .nav.is-open .nav-dropdown__menu {
    display: none;
    position: static;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 2px solid var(--gold);
    border-radius: 0;
    padding: 0;
    margin-left: 1rem;
    min-width: unset;
    background: transparent;
  }
  /* Accordion: submenu opens only when its row is tapped (see main.js). */
  .nav.is-open .nav-dropdown.is-expanded .nav-dropdown__menu { display: block; }
  .nav.is-open .nav-dropdown.is-expanded .nav-dropdown__caret { transform: rotate(180deg); }
  .nav.is-open .nav-dropdown__menu li a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.88rem;
  }
}

/* ---------- Utility bar (top of header) ---------- */
.util-bar {
  background: rgba(6,11,38,0.97);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  height: var(--util-bar-h);
  display: flex;
  align-items: center;
  padding: 0 28px;
}
.util-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}
.util-bar__social { display: flex; gap: 0.7rem; align-items: center; }
.util-bar__social a {
  color: rgba(255,255,255,0.72);
  display: inline-flex;
  align-items: center;
  transition: color 0.18s;
}
.util-bar__social a:hover { color: var(--white); }
.util-bar__review {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
  border-left: 1px solid rgba(201,168,76,0.22);
  padding-left: 1.1rem;
  white-space: nowrap;
  transition: color 0.18s;
}
.util-bar__review:hover { color: rgba(255,255,255,0.9); }
.g-blue  { color: #4285F4; font-weight: 600; }
.g-red   { color: #EA4335; font-weight: 600; }
.g-yellow{ color: #FBBC05; font-weight: 600; }
.g-green { color: #34A853; font-weight: 600; }
@media (max-width: 640px) {
  .util-bar__review { display: none; }
  .util-bar__inner { justify-content: center; }
}

/* ---------- Footer social icons ---------- */
.footer-social { display: flex; gap: 0.85rem; margin-top: 1rem; align-items: center; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.70);
  transition: color 0.18s;
}
.footer-social a:hover { color: var(--white); }
.footer-badge-img { display: block; margin-top: 1rem; max-height: 144px; width: auto; }

/* ---------- Trust bar ---------- */
/* ---------- Stat counter strip ---------- */
.stat-strip { background: var(--navy-deep); border-bottom: 1px solid rgba(201,168,76,0.12); }
.stat-strip__inner { max-width: var(--container); margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 40px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.06); }
.stat-item:last-child { border-right: none; }
.stat-item__num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.stat-item__label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 8px; }
@media (max-width: 768px) { .stat-strip__inner { grid-template-columns: repeat(2, 1fr); } .stat-item { padding: 28px 16px; } .stat-item:nth-child(2) { border-right: none; } .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); } .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); border-right: none; } }
@media (max-width: 480px) { .stat-item__num { font-size: 2.2rem; } }

.trust-bar { background: var(--navy-dark); color: var(--white); border-top: 1px solid rgba(201,168,76,0.15); border-bottom: 1px solid rgba(201,168,76,0.15); }

/* ---------- Mobile floating call bar ---------- */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--red);
  height: 56px;
  z-index: 998;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.3);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}
.mobile-cta-bar__link {
  color: #fff; font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.02em; text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
@media (min-width: 768px) { .mobile-cta-bar { display: none; } }
@media (max-width: 767px) { body { padding-bottom: 56px; } }
.trust-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.trust-bar__item { display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.85); }
.trust-bar__check { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
/* Marquee scaffolding — inert on desktop: track collapses, duplicated
   items stay hidden, so the bar renders exactly as before. */
.trust-bar__track { display: contents; }
.trust-bar__item--clone { display: none; }
@media (max-width: 640px) {
  .trust-bar__inner { flex-wrap: nowrap; overflow: hidden; justify-content: flex-start; gap: 0; padding: 10px 0; }
  .trust-bar__track {
    display: flex; flex-wrap: nowrap; width: max-content;
    animation: marquee-left 22s linear infinite;
  }
  .trust-bar__track .trust-bar__item { white-space: nowrap; flex-shrink: 0; margin-right: 2rem; }
  .trust-bar__item--clone { display: inline-flex; }
  .trust-bar:active .trust-bar__track { animation-play-state: paused; }
}
@media (max-width: 640px) and (prefers-reduced-motion: reduce) {
  .trust-bar__track { animation: none; }
  .trust-bar__inner { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ---------- Review stars (Google review links) ---------- */
.review-stars { display: inline-flex; align-items: center; gap: 2px; color: var(--gold); line-height: 0; }
.review-stars svg { width: 15px; height: 15px; }
.review-stars--footer { display: flex; justify-content: flex-start; margin-top: 8px; }
.util-bar__review + .review-stars { margin-left: 8px; }
.util-bar__review + .review-stars svg { width: 13px; height: 13px; }

/* ---------- Trust badges (About / credibility strip) ---------- */
.trust-badges { background: var(--paper); border-top: 1px solid var(--gray-line); border-bottom: 1px solid var(--gray-line); }
.trust-badges--navy { background: var(--navy-deep); border-top-color: rgba(201,168,76,0.18); border-bottom-color: rgba(201,168,76,0.18); }
.trust-badges--navy .trust-logo__num { color: #fff; }
.trust-badges--navy .trust-logo__label { color: rgba(255,255,255,0.62); }
.trust-badges--navy a.trust-logo:hover { opacity: 0.82; }
.trust-badges__inner { max-width: var(--container); margin: 0 auto; padding: 48px 28px 52px; }
.trust-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem 1.5rem; }
.trust-logo { display: inline-flex; align-items: center; gap: 0.85rem; }
a.trust-logo { text-decoration: none; color: inherit; transition: opacity 0.18s ease; }
a.trust-logo:hover { opacity: 0.72; }
.trust-logo__mark { height: 48px; width: 48px; object-fit: contain; flex-shrink: 0; }
.trust-logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.trust-logo__num { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--navy); letter-spacing: -0.01em; }
.trust-logo__star { color: var(--gold); }
.trust-logo__label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-top: 2px; }
@media (max-width: 768px) { .trust-badges__inner { padding: 40px 20px; } .trust-logos { justify-content: space-around; gap: 1.75rem 2.25rem; } }
@media (max-width: 520px) {
  .trust-badges__inner { padding: 32px 14px; }
  /* 4-across single row: each badge becomes a narrow icon-over-text stack */
  .trust-logos { display: grid; grid-template-columns: repeat(4, 1fr); align-items: start; gap: 0.6rem; }
  .trust-logo { flex-direction: column; align-items: center; gap: 0.35rem; text-align: center; }
  .trust-logo__mark { height: 34px; width: 34px; }
  .trust-logo__text { align-items: center; text-align: center; line-height: 1.15; }
  .trust-logo__num { font-size: 0.85rem; }
  .trust-logo__label { font-size: 0.5rem; letter-spacing: 0.05em; margin-top: 1px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy); color: var(--white); overflow: hidden; isolation: isolate; }
.hero__inner { max-width: var(--container); margin: 0 auto; padding: 96px 28px 84px; position: relative; z-index: 2; }
.hero--realtors {
  background:
    linear-gradient(110deg, rgba(10,20,55,0.96) 0%, rgba(10,20,55,0.86) 45%, rgba(10,20,55,0.45) 100%),
    url('../img/hero-realtors.jpg') center top / cover no-repeat,
    var(--navy);
}
.hero--pm { background: var(--navy); background-image: url('../DfwpcpImages/Herophoto.jpeg'); background-size: cover; background-position: center top; }
.hero--pm::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8,16,46,0.92) 0%, rgba(8,16,46,0.72) 45%, rgba(8,16,46,0.30) 100%); z-index: 0; }

/* Financing — full-bleed flipped background image band */
.section.section--financing { padding: 0; }   /* beat base .section {padding:100px} regardless of source order */
.section--financing { position: relative; overflow: hidden; background: var(--navy); min-height: 540px; display: flex; align-items: center; }
.section--financing .financing-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 72% center; transform: scaleX(-1); z-index: 0; }
/* Two-layer scrim: deep navy wash over the text (left) column + gentle top/bottom vignette for depth; keeps the right side clear for the photo */
.section--financing::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(9,16,42,0.97) 0%, rgba(9,16,42,0.93) 28%, rgba(9,16,42,0.66) 50%, rgba(9,16,42,0.22) 72%, rgba(9,16,42,0) 90%),
    linear-gradient(180deg, rgba(9,16,42,0.28) 0%, rgba(9,16,42,0) 32%, rgba(9,16,42,0.38) 100%);
}
.section--financing .container { position: relative; z-index: 2; }
.section--financing .financing-copy { max-width: 540px; padding: 84px 0; color: #fff; }
.section--financing .financing-copy .eyebrow { color: var(--gold); border-bottom-color: var(--gold); }
.section--financing .financing-copy h2 { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,0.55); }
.section--financing .financing-copy p { color: rgba(255,255,255,0.95); text-shadow: 0 1px 10px rgba(0,0,0,0.5); }
.section--financing .financing-copy li { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
@media (max-width: 768px) {
  .section--financing { min-height: 0; }
  .section--financing .financing-bg { object-position: 66% center; }
  .section--financing::after { background: linear-gradient(180deg, rgba(9,16,42,0.82) 0%, rgba(9,16,42,0.72) 42%, rgba(9,16,42,0.92) 100%); }
  .section--financing .financing-copy { max-width: none; padding: 56px 0; }
}

.hero h1 { color: var(--white); line-height: 1.08; }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: rgba(255,255,255,0.82); max-width: 620px; margin: 1.25rem 0 2rem; line-height: 1.55; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2rem; }
.hero .btn--primary { box-shadow: 0 4px 20px rgba(220,38,38,0.45); }
@media (prefers-reduced-motion: no-preference) {
  @keyframes heroFadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
  .hero__inner { animation: heroFadeUp 0.65s cubic-bezier(0.22,1,0.36,1) both; }
}
.hero__micro { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 8px 18px; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.hero__micro span { display: inline-flex; align-items: center; gap: 6px; }
.hero__micro span::before { content: ""; width: 6px; height: 6px; background: var(--gold); display: inline-block; }
.hero__layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
.hero__layout--full { grid-template-columns: 1fr; max-width: 720px; }
@media (max-width: 900px) { .hero__layout { grid-template-columns: 1fr; gap: 2rem; } .hero__inner { padding: 64px 28px 56px; } }

/* Hero right panel (PM) */
.hero-panel { background: rgba(255,255,255,0.06); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(201,168,76,0.4); border-radius: 2px; padding: 28px; box-shadow: 0 4px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,168,76,0.1), 0 0 40px rgba(201,168,76,0.08), inset 0 1px 0 rgba(201,168,76,0.15); }
.hero-panel__title { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hero-panel__row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.93rem; color: rgba(255,255,255,0.85); }
.hero-panel__row:last-child { border-bottom: 0; }
.hero-panel__row strong { color: var(--white); font-weight: 600; }
.hero-panel__row .pill { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; color: var(--gold); border: 1px solid var(--gold); padding: 3px 8px; text-transform: uppercase; }
.hero-panel__row .pulse-dot { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: #4ade80; text-shadow: 0 0 8px rgba(74,222,128,0.5); }
.hero-panel__row .pulse-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 6px rgba(74,222,128,0.8); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); } 70% { box-shadow: 0 0 0 12px rgba(74,222,128,0); } 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); } }

/* ---------- Sections ---------- */
.section { padding: 100px 0; position: relative; }
@media (max-width: 768px) { .section { padding: 64px 0; } }
@media (max-width: 480px) { .section { padding: 48px 0; } }
.section--paper { background: var(--paper); }

/* ---------- Dark navy section ---------- */
.section--navy { background: var(--navy); }
.section--navy .section__head h2 { color: var(--white); }
.section--navy .section__head p { color: rgba(255,255,255,0.72); }
.section--navy .eyebrow { color: var(--gold); border-bottom-color: var(--gold); }
.section--navy .tier { background: rgba(255,255,255,0.06); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 4px 24px rgba(0,0,0,0.30); }
.section--navy .tier:hover { background: rgba(255,255,255,0.10); border-color: rgba(201,168,76,0.55); box-shadow: 0 12px 36px rgba(0,0,0,0.40), 0 0 18px rgba(201,168,76,0.10); transform: translateY(-4px); }
.section--navy .tier--featured { background: rgba(255,255,255,0.11); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 0 0 1px var(--gold), 0 0 24px rgba(201,168,76,0.12); }
.section--navy .tier--featured:hover { background: rgba(255,255,255,0.15); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.50), 0 0 0 1px var(--gold), 0 0 32px rgba(201,168,76,0.18); }
.section--navy .tier h3 { color: var(--white); }
.section--navy .tier__range { color: rgba(255,255,255,0.5); }
.section--navy .tier__list li { border-bottom-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.82); }
.section--navy .btn--secondary { color: var(--white); border-color: rgba(255,255,255,0.35); }
.section--navy .btn--secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--white); color: var(--white); }
@media (prefers-reduced-motion: reduce) { .section--navy .tier, .section--navy .tier:hover { transform: none; transition: none; } }
.section--faq-bg { background: url('../img/faq-bg.jpg') center/cover no-repeat; position: relative; }
.section--faq-bg::before { content: ''; position: absolute; inset: 0; background: rgba(10,20,50,0.82); pointer-events: none; }
.section--faq-bg > * { position: relative; z-index: 1; }
.section--faq-bg .eyebrow { color: var(--gold); }
.section--faq-bg h2, .section--faq-bg h3 { color: #fff; }
.section--faq-bg .faq__q { color: #fff; }
.section--faq-bg .faq__a p { color: rgba(255,255,255,0.85); }
.section--faq-bg .faq__item { border-color: rgba(255,255,255,0.15); }
.section--gray { background: var(--gray-soft); }
.section__head { max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.section__head .eyebrow { margin-bottom: 1rem; }
.section__head h2 { margin-bottom: 1rem; }
.section__head p { color: var(--ink-mid); font-size: 1.1rem; }
.section__head--left { text-align: left; margin-left: 0; }
@media (max-width: 768px) { .section { padding: 64px 0; } }

/* ---------- Mobile CTA bar ---------- */
.mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: none; background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); }
.mobile-cta a { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 60px; font-weight: 700; font-size: 0.95rem; }
.mobile-cta__call { background: var(--gold); color: var(--navy); position: relative; }
.mobile-cta__call::after { content: ""; position: absolute; top: 8px; right: 8px; width: 10px; height: 10px; border-radius: 50%; background: var(--danger); animation: mobile-pulse 1.6s infinite; }
@keyframes mobile-pulse { 0% { box-shadow: 0 0 0 0 rgba(192,57,43,0.6); } 70% { box-shadow: 0 0 0 14px rgba(192,57,43,0); } 100% { box-shadow: 0 0 0 0 rgba(192,57,43,0); } }
.mobile-cta__book { background: var(--navy); color: var(--white); }
@media (max-width: 768px) { .mobile-cta { display: flex; } body { padding-bottom: 60px; } }

/* ---------- Pre-footer CTA ---------- */
.pre-footer-cta { background: var(--navy); border-top: 1px solid rgba(201,168,76,0.15); border-bottom: 1px solid rgba(201,168,76,0.15); padding: 56px 28px; text-align: center; }
.pre-footer-cta h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.pre-footer-cta p { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 1.75rem; }
@media (max-width: 480px) { .pre-footer-cta h3 { font-size: 1.5rem; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.72); padding: 64px 0 0; font-size: 0.92rem; }
.site-footer__grid { max-width: var(--container); margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 3rem; }
.site-footer h4 { font-family: var(--font-mono); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.site-footer a { color: rgba(255,255,255,0.72); display: block; padding: 4px 0; transition: color 0.15s; }
.site-footer a:hover { color: var(--gold-light); }
.site-footer__brand p { margin-bottom: 6px; line-height: 1.55; }
.site-footer__brand .brand { color: var(--white); margin-bottom: 1rem; }
.site-footer__brand .brand__name small { color: rgba(255,255,255,0.45); }
.site-footer__brand-name { color: var(--white); font-weight: 700; font-size: 1rem; margin: 10px 0 4px; line-height: 1.3; }
.site-footer__license { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; color: var(--white); margin-bottom: 4px; }
.site-footer__tagline { color: rgba(255,255,255,0.42); font-size: 0.82rem; }
.site-footer__trust { color: #fff; font-size: 0.85rem; margin-top: 4px; }
.site-footer__initials { color: var(--gold); font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; margin: 4px 0 2px; }
.site-footer__phone { color: var(--white); font-size: 1.05rem; font-weight: 600; display: block; padding: 4px 0; transition: color 0.15s; letter-spacing: 0.02em; }
.site-footer__phone:hover { color: var(--gold-light); }
.site-footer__badge { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 6px; margin-bottom: 8px; }
.site-footer__badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.65); } }
.site-footer__heading { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; font-weight: 500; }
.site-footer__link { color: rgba(255,255,255,0.62); display: block; padding: 4px 0; transition: color 0.15s; font-size: 0.9rem; }
.site-footer__link:hover { color: var(--gold-light); }
.site-footer__hours { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: 8px; line-height: 1.65; }
.site-footer__hours small { font-size: 0.75rem; opacity: 0.7; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 56px; padding: 24px 20px; font-family: var(--font-mono); font-size: clamp(0.5rem, 2.1vw, 0.75rem); letter-spacing: 0.03em; text-align: center; color: rgba(255,255,255,0.45); white-space: nowrap; overflow: hidden; }
.site-footer__bottom-links { display: flex; justify-content: center; gap: 1.25rem 1.75rem; flex-wrap: wrap; font-size: 0.82rem; margin-bottom: 1rem; }
.site-footer__bottom-label { color: var(--gold); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 1px; }
.site-footer__bottom-link { color: rgba(255,255,255,0.55); transition: color 0.15s; }
.site-footer__bottom-link:hover { color: var(--gold-light); }
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .site-footer__grid { grid-template-columns: 1fr; } }

/* ---------- Service tiles ---------- */
.tile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; background: var(--gray-line); border: 1px solid var(--gray-line); }
.tile { background: var(--white); padding: 36px 32px; transition: background 0.18s var(--ease), transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease; position: relative; display: flex; flex-direction: column; box-shadow: 0 2px 8px rgba(0,0,0,0.06); border: 1px solid var(--gray-line); }
.tile:hover { background: var(--paper); transform: translateY(-5px); box-shadow: 0 12px 32px rgba(27,43,107,0.14); border-color: var(--gold); }
@media (prefers-reduced-motion: reduce) { .tile { transition: background 0.18s var(--ease); } .tile:hover { transform: none; box-shadow: 0 2px 8px rgba(0,0,0,0.06); } }
.tile__num { position: absolute; top: 16px; right: 20px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--gray-line-strong); }
.tile__icon { width: 44px; height: 44px; color: var(--gold-deep); margin-bottom: 1.25rem; }
.tile__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.1; }
.tile__desc { font-size: 0.95rem; color: var(--ink-mid); line-height: 1.55; }

/* ---------- Featured box ---------- */
.featured-box { background: var(--navy); color: var(--white); border: 2px solid var(--gold); padding: 56px 48px; display: grid; grid-template-columns: auto 1fr auto; gap: 2.5rem; align-items: center; position: relative; overflow: hidden; }
.featured-box::before { content: ""; position: absolute; top: -40px; left: -40px; width: 200px; height: 200px; background: var(--gold); opacity: 0.08; border-radius: 50%; filter: blur(40px); }
.featured-box__icon { width: 84px; height: 84px; background: var(--gold); color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; }
.featured-box__icon svg { width: 40px; height: 40px; }
.featured-box__body { position: relative; z-index: 1; }
.featured-box__body .eyebrow { color: var(--gold); margin-bottom: 0.6rem; }
.featured-box__body .eyebrow::before,
.featured-box__body .eyebrow::after { background: var(--gold); }
.featured-box__body h3 { font-size: 2rem; color: var(--white); margin-bottom: 0.5rem; }
.featured-box__body p { color: rgba(255,255,255,0.78); margin: 0; }
.featured-box__cta { position: relative; z-index: 1; }
@media (max-width: 768px) { .featured-box { grid-template-columns: 1fr; text-align: left; padding: 36px 28px; gap: 1.5rem; } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: rgba(255,255,255,0.80); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(201,168,76,0.22); border-radius: var(--radius-lg); box-shadow: 0 4px 20px rgba(0,0,0,0.06); overflow: hidden; }
.step { padding: 40px 36px; border-right: 1px solid var(--gray-line); position: relative; }
.step:last-child { border-right: 0; }
.step__num { font-family: var(--font-display); font-size: 4rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 1rem; display: block; }
.step h4 { font-size: 1.35rem; margin-bottom: 0.75rem; color: var(--navy); }
.step p { color: var(--ink-mid); margin: 0; }
.step__arrow { position: absolute; right: -14px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; background: var(--white); border: 1px solid var(--gray-line); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy); z-index: 2; }
.step:last-child .step__arrow { display: none; }
@media (max-width: 768px) { .steps { grid-template-columns: 1fr; } .step { border-right: 0; border-bottom: 1px solid var(--gray-line); } .step__arrow { right: 50%; top: auto; bottom: -14px; transform: translateX(50%) rotate(90deg); } }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--gray-line); padding: 40px 44px; }
.form-card--navy { background: var(--navy); color: var(--white); border-color: var(--navy-dark); }
.form-card h3 { margin-bottom: 0.5rem; }
.form-card__sub { color: var(--ink-mid); margin-bottom: 2rem; font-size: 0.97rem; }
.form-card--navy .form-card__sub { color: rgba(255,255,255,0.7); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
.form-card--navy .field label { color: rgba(255,255,255,0.65); }
.field input, .field select, .field textarea { height: 52px; padding: 0 14px; background: var(--white); border: 1px solid var(--gray-line-strong); border-radius: 2px; color: var(--ink); font-size: 1rem; transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease); }
.field textarea { height: 120px; padding: 12px 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.18); }
.form-card--navy .field input, .form-card--navy .field select, .form-card--navy .field textarea { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.18); color: var(--white); }
.form-card--navy .field input::placeholder, .form-card--navy .field textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-card--navy .field select option { background: var(--navy-dark); color: var(--white); }
.field--error input, .field--error select, .field--error textarea { border-color: var(--danger) !important; }
.field__error { font-size: 0.8rem; color: var(--danger); font-family: var(--font-mono); letter-spacing: 0.02em; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 10px; }
.checkbox-chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1px solid var(--gray-line-strong); background: var(--white); cursor: pointer; font-size: 0.92rem; transition: all 0.15s var(--ease); border-radius: 2px; user-select: none; }
.form-card--navy .checkbox-chip { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.18); color: var(--white); }
.checkbox-chip:hover { border-color: var(--gold); }
.checkbox-chip.is-checked { background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: 600; }
.consent__row { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.consent input[type="checkbox"] { margin-top: 3px; width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--gold); cursor: pointer; }
.consent__text { font-size: 0.8rem; line-height: 1.5; color: var(--ink-mid); }
.consent__text a { color: var(--gold-deep); text-decoration: underline; }
.form-card--navy .consent__text { color: rgba(255,255,255,0.7); }
.form-card--navy .consent__text a { color: var(--gold-light); }
.form-success { background: rgba(31,138,91,0.08); border: 1px solid var(--success); padding: 28px; text-align: center; }
.form-success__icon { width: 56px; height: 56px; background: var(--success); color: var(--white); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.form-success h3, .form-success h4 { font-size: 1.2rem; color: var(--success); margin-bottom: 0.5rem; }
.form-card--navy .form-success { background: rgba(74,222,128,0.08); border-color: #4ade80; }
.form-card--navy .form-success h3, .form-card--navy .form-success h4 { color: #4ade80; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-card { padding: 28px 22px; } }

/* ---------- Credentials ---------- */
.credentials { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.credentials__inner { max-width: var(--container); margin: 0 auto; padding: 96px 28px; position: relative; z-index: 1; }
.credentials::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(201,168,76,0.10) 0%, transparent 40%), radial-gradient(circle at 80% 80%, rgba(201,168,76,0.06) 0%, transparent 40%); }
.credentials__head { text-align: center; margin-bottom: 3rem; }
.credentials__head h2 { color: var(--white); }
.credentials__head .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.credentials__head .eyebrow::before,
.credentials__head .eyebrow::after { background: var(--gold); }
.credentials__head p { color: rgba(255,255,255,0.7); }
.credentials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); }
.credential { background: var(--navy); padding: 28px 26px; display: flex; align-items: flex-start; gap: 14px; min-height: 110px; }
.credential__check { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.credential__title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; line-height: 1.2; color: var(--white); margin-bottom: 4px; }
.credential__meta { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.05em; color: rgba(255,255,255,0.55); }
@media (max-width: 900px) { .credentials__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .credentials__grid { grid-template-columns: 1fr; } }

.credentials--flagship { background: var(--navy-deep); border-top: 4px solid var(--gold); border-bottom: 4px solid var(--gold); }
.credentials--flagship::before { background: radial-gradient(circle at 50% 0%, rgba(201,168,76,0.20) 0%, transparent 50%), radial-gradient(circle at 50% 100%, rgba(201,168,76,0.12) 0%, transparent 50%); }
.credentials--flagship .credentials__inner { padding: 120px 28px; }
.credentials__headline { font-size: clamp(2.8rem, 6vw, 5rem); color: var(--white); letter-spacing: -0.025em; line-height: 0.94; margin: 1.5rem 0; }
.credentials--flagship .credential { background: var(--navy-deep); border: 1px solid rgba(255,255,255,0.06); padding: 32px 28px; min-height: 130px; transition: all 0.2s var(--ease); }
.credentials--flagship .credential:hover { background: var(--navy); border-color: var(--gold); }
.credentials--flagship .credential__check { width: 32px; height: 32px; background: var(--gold); color: var(--navy); border-radius: 50%; padding: 5px; }
.credentials--flagship .credential__title { font-size: 1.15rem; margin-bottom: 6px; }

/* ---------- Portfolio Tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tier { background: var(--white); border: 1px solid var(--gray-line); border-radius: 12px; padding: 36px 32px; display: flex; flex-direction: column; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease); }
.tier:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 12px 30px rgba(27,43,107,0.08); }
.tier--featured { background: var(--navy); color: var(--white); border-color: var(--gold); position: relative; }
.tier--featured::before { content: "Most Common"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); padding: 4px 14px; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; white-space: nowrap; }
.tier__label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.75rem; }
.tier--featured .tier__label { color: var(--gold); }
.tier h3 { font-size: 1.6rem; margin-bottom: 0.5rem; color: var(--navy); }
.tier--featured h3 { color: var(--white); }
.tier__range { font-family: var(--font-mono); font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1.5rem; }
.tier--featured .tier__range { color: rgba(255,255,255,0.6); }
.tier__list { flex: 1; margin-bottom: 1.75rem; }
.tier__list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 0.95rem; border-bottom: 1px solid var(--gray-line); }
.tier__list li:last-child { border-bottom: 0; }
.tier--featured .tier__list li { border-bottom-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); }
.tier__list .check { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--gray-line); }
.faq__item summary { list-style: none; cursor: pointer; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--navy); transition: color 0.15s; }
.faq__item summary:hover { color: var(--gold-deep); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--font-display); font-size: 1.8rem; line-height: 1; color: var(--gold-deep); flex-shrink: 0; }
.faq__item[open] summary::after { content: "−"; }
.faq__body, .faq__a { padding: 4px 0 28px; color: var(--ink-mid); font-size: 1rem; line-height: 1.65; max-width: 720px; }

/* ---------- Coverage chips ---------- */
.coverage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.coverage-chip { padding: 18px; background: var(--white); border: 1px solid var(--gray-line); text-align: center; font-family: var(--font-display); font-weight: 600; color: var(--navy); transition: all 0.15s var(--ease); }
.coverage-chip:hover { border-color: var(--gold); background: var(--paper); transform: translateY(-2px); }
.coverage-chip__county { display: block; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; font-weight: 400; color: var(--ink-soft); text-transform: uppercase; margin-top: 2px; }
@media (max-width: 720px) { .coverage-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- KPI row ---------- */
.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; }
.kpi { border-right: 1px solid rgba(255,255,255,0.1); padding-right: 20px; }
.kpi:last-child { border-right: 0; }
.kpi__num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.kpi__label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
@media (max-width: 720px) { .kpi-row { grid-template-columns: repeat(2, 1fr); gap: 24px 0; } .kpi:nth-child(2) { border-right: 0; } }

/* ---------- Final CTA ---------- */
.final-cta { background: #fff; color: var(--navy); text-align: center; padding: 100px 28px; position: relative; overflow: hidden; }
@media (max-width: 768px) { .final-cta { padding: 64px 28px; } }
@media (max-width: 480px) { .final-cta { padding: 48px 20px; } }
.final-cta::before { content: ""; position: absolute; inset: 0; background: none; }
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { color: var(--navy); margin-bottom: 1rem; }
.final-cta p { color: var(--ink-mid); max-width: 520px; margin: 0 auto 2rem; }
.final-cta__phone { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--gold-deep); letter-spacing: 0.02em; display: block; margin: 1rem 0 1.5rem; }
.final-cta__eyebrow { display: flex; align-items: center; justify-content: center; gap: 0.75rem; color: var(--gold-deep); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.25rem; }
.final-cta__eyebrow::before, .final-cta__eyebrow::after { content: ""; display: block; width: 2rem; height: 1.5px; background: var(--gold-deep); }
.final-cta__phone-btn { display: block; background: #c0392b; color: #fff; font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; text-align: center; padding: 1.4rem 2rem; border-radius: 6px; text-decoration: none; margin: 2rem auto 0; max-width: 960px; width: 100%; letter-spacing: 0.02em; transition: background 0.2s; }
.final-cta__phone-btn:hover { background: #a93226; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Rysa step-card grid ---------- */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 3rem; }
.step-card { display: flex; flex-direction: column; padding: 0 1.25rem 1.25rem; background: rgba(255,255,255,0.80); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(201,168,76,0.22); border-radius: var(--radius-lg); box-shadow: 0 4px 20px rgba(0,0,0,0.06); overflow: hidden; }
.step-card__img-wrap { width: calc(100% + 2.5rem); aspect-ratio: 4 / 3; overflow: hidden; border-radius: 0; background: var(--paper); margin: 0 -1.25rem 1.25rem; }
.step-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.step-card:hover .step-card__img-wrap img { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) { .step-card__img-wrap img { transition: none; } .step-card:hover .step-card__img-wrap img { transform: none; } }
.step-card__label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.6rem; }
.step-card__title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--navy); letter-spacing: -0.015em; line-height: 1.2; margin-bottom: 0.6rem; }
.step-card__desc { font-size: 0.95rem; color: var(--ink-mid); line-height: 1.65; flex: 1; }
.step-grid__cta { margin-top: 3rem; display: flex; justify-content: center; }
@media (max-width: 900px) { .step-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 560px) { .step-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ---------- Helpers ---------- */
.flex-wrap { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Home Hero (IMG_1433) ---------- */
.hero--home { background: var(--navy); position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero--home .hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero--home .hero__bg img, .hero--home .hero__bg video { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero--home .hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(95deg, rgba(10,20,55,0.82) 0%, rgba(10,20,55,0.62) 38%, rgba(10,20,55,0.18) 65%, rgba(10,20,55,0) 100%), linear-gradient(180deg, rgba(10,20,55,0) 45%, rgba(10,20,55,0.45) 100%); }
.hero--home .hero__inner { position: relative; z-index: 2; padding-top: 112px; padding-bottom: 96px; max-width: none; }
.hero--home h1 { font-size: clamp(3.4rem, 8vw, 7rem); letter-spacing: -0.025em; line-height: 0.94; text-shadow: 0 2px 24px rgba(10,20,55,0.6), 0 1px 2px rgba(0,0,0,0.3); }
.hero--home .hero__sub { text-shadow: 0 1px 12px rgba(10,20,55,0.75); color: rgba(255,255,255,0.95); }
.hero--home .eyebrow { text-shadow: 0 1px 8px rgba(10,20,55,0.6); }
@media (max-width: 768px) { .hero--home { min-height: 0; } .hero--home .hero__bg img, .hero--home .hero__bg video { object-position: 60% center; } .hero--home .hero__bg::after { background: linear-gradient(180deg, rgba(10,20,55,0.72) 0%, rgba(10,20,55,0.55) 50%, rgba(10,20,55,0.25) 100%); } }

/* Hero load animation */
@keyframes hero-enter { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.hero .hero__inner { animation: hero-enter 0.55s var(--ease) 0.08s both; }
@media (prefers-reduced-motion: reduce) { .hero .hero__inner { animation: none; } }

/* Hero badge strip */
.hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.5rem; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid rgba(201,168,76,0.4);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 100px; padding: 5px 14px;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9); white-space: nowrap;
}
.hero__badge svg { color: var(--gold); flex-shrink: 0; }

/* ---------- Audience grid (homepage) ---------- */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gray-line); border: 1px solid var(--gray-line); }
.audience-card { background: rgba(255,255,255,0.80); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 0 0 48px; display: flex; flex-direction: column; border: 1px solid rgba(201,168,76,0.22); border-radius: var(--radius-lg); box-shadow: 0 4px 20px rgba(0,0,0,0.06); overflow: hidden; transition: background 0.2s var(--ease), transform 0.22s ease, box-shadow 0.22s ease; }
.audience-card > *:not(.audience-card__img) { margin-left: 36px; margin-right: 36px; }
.audience-card:hover { background: var(--paper); transform: translateY(-4px); box-shadow: 0 10px 28px rgba(27,43,107,0.12); }
.audience-card:hover .audience-card__cta { background: var(--red); color: #fff; }
@media (prefers-reduced-motion: reduce) { .audience-card { transition: background 0.2s var(--ease); } .audience-card:hover { transform: none; box-shadow: 0 2px 8px rgba(0,0,0,0.06); } }
.audience-card__num { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em; color: var(--gold-deep); margin-bottom: 1rem; }
.audience-card h3 { font-size: 2rem; margin-bottom: 0.5rem; letter-spacing: -0.015em; }
.audience-card p { color: var(--ink-mid); margin-bottom: 2rem; flex: 1; }
.audience-card ul { margin-bottom: 2rem; }
.audience-card ul li { font-size: 0.92rem; padding: 6px 0; color: var(--ink-mid); display: flex; gap: 8px; align-items: flex-start; }
.audience-card ul li::before { content: "→"; color: var(--gold-deep); font-weight: 700; flex-shrink: 0; }
.audience-card__cta { display: inline-flex; align-items: center; gap: 0.5rem; align-self: flex-start; padding: 12px 18px; border: 2px solid var(--navy); border-radius: var(--radius-sm); color: var(--navy); background: var(--white); font-weight: 700; font-size: 0.95rem; transition: all 0.18s var(--ease); }
@media (max-width: 900px) { .audience-grid { grid-template-columns: 1fr; } }

/* ---------- Why-Us strip ---------- */
.why-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--gray-line); border-bottom: 1px solid var(--gray-line); }
.why-cell { padding: 48px 32px; border-right: 1px solid var(--gray-line); }
.why-cell:last-child { border-right: 0; }
.why-cell__num { font-family: var(--font-display); font-size: 3.4rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 1rem; letter-spacing: -0.02em; }
.why-cell__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.1; }
.why-cell p { color: var(--ink-mid); font-size: 0.96rem; margin: 0; }
@media (max-width: 900px) { .why-strip { grid-template-columns: 1fr 1fr; } .why-cell:nth-child(2) { border-right: 0; } .why-cell:nth-child(1), .why-cell:nth-child(2) { border-bottom: 1px solid var(--gray-line); } }
@media (max-width: 560px) { .why-strip { grid-template-columns: 1fr; } .why-cell { border-right: 0; border-bottom: 1px solid var(--gray-line); } .why-cell:last-child { border-bottom: 0; } }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: var(--white); border: 1px solid var(--gray-line); padding: 32px 28px; display: flex; flex-direction: column; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.22s ease, box-shadow 0.22s ease; }
.review:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(27,43,107,0.12); }
@media (prefers-reduced-motion: reduce) { .review { transition: none; } .review:hover { transform: none; } }
.review__stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.review__star { color: var(--gold); width: 18px; height: 18px; fill: var(--gold); }
.review__quote { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; line-height: 1.3; color: var(--navy); letter-spacing: -0.012em; margin-bottom: 1.5rem; flex: 1; }
.review__quote::before { content: '\201C'; }
.review__quote::after { content: '\201D'; }
.review__footer { display: flex; align-items: center; gap: 12px; }
.review__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: var(--font-display); font-weight: 800; font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; letter-spacing: -0.01em; }
.review__attr { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; color: var(--ink-soft); text-transform: uppercase; line-height: 1.5; }
.review__attr strong { color: var(--navy); font-weight: 600; display: block; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- City Grid ---------- */
.city-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--gray-line); border: 1px solid var(--gray-line); }
.city { background: var(--white); padding: 20px 16px; text-align: center; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--navy); transition: all 0.15s var(--ease); }
.city:hover { background: var(--navy); color: var(--white); }
.city:hover .city__zip { color: var(--gold); }
.city__zip { display: block; font-family: var(--font-mono); font-size: 0.7rem; font-weight: 400; letter-spacing: 0.05em; color: var(--ink-soft); margin-top: 4px; }
@media (max-width: 900px) { .city-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .city-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Service detail rows ---------- */
.service-row { display: grid; grid-template-columns: 80px 1fr auto; gap: 2rem; padding: 40px 0; border-bottom: 1px solid var(--gray-line); align-items: flex-start; }
.service-row:last-child { border-bottom: 0; }
.service-row__num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--gold); line-height: 0.9; letter-spacing: -0.02em; }
.service-row__body h3 { margin-bottom: 0.5rem; font-size: 1.7rem; }
.service-row__desc { color: var(--ink-mid); max-width: 720px; margin-bottom: 1rem; }
.service-row__incl { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px; max-width: 720px; }
.service-row__incl li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.92rem; color: var(--ink-mid); padding: 3px 0; }
.service-row__incl li::before { content: "✓"; color: var(--gold-deep); font-weight: 700; flex-shrink: 0; }
.service-row__cta { flex-shrink: 0; }
@media (max-width: 768px) { .service-row { grid-template-columns: 1fr; gap: 1rem; } .service-row__num { font-size: 2.2rem; } .service-row__incl { grid-template-columns: 1fr; } }

/* ---------- Services index nav ---------- */
.services-index { background: var(--gray-line); border: 1px solid var(--gray-line); margin: 32px 0; }
.services-index__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr)); gap: 1px; }
.services-index a { background: var(--white); color: var(--navy); padding: 14px 18px; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; display: flex; align-items: center; gap: 10px; transition: background 0.15s; }
.services-index a:hover { background: var(--paper); }
.services-index a .svc-num { color: var(--gold-deep); font-weight: 600; }

/* ---------- About split ---------- */
.about-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; }
.about-split__img { position: relative; aspect-ratio: 4 / 5; background: var(--navy); overflow: hidden; }
.about-split__img img { width: 100%; height: 100%; object-fit: cover; }
.about-split__img::after { content: ""; position: absolute; inset: 0; border: 1px solid var(--gold); pointer-events: none; transform: translate(16px, 16px); }
@media (max-width: 900px) { .about-split { grid-template-columns: 1fr; gap: 2rem; } }

/* Pull quote */
.pull-quote { border-left: 4px solid var(--gold); padding: 1rem 0 1rem 2rem; margin: 2rem 0; }
.pull-quote p { font-family: var(--font-display); font-size: 1.6rem; line-height: 1.2; color: var(--navy); font-weight: 600; letter-spacing: -0.012em; }
.pull-quote__attr { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-top: 1rem; display: block; }

/* ---------- Big block (about) ---------- */
.big-block { background: var(--navy); color: var(--white); padding: 80px 0; }
.big-block__quote { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 5.5vw, 4.4rem); line-height: 1.0; letter-spacing: -0.02em; color: var(--white); max-width: 1100px; }
.big-block__quote em { color: var(--gold); font-style: normal; }
.big-block__attr { margin-top: 2rem; font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); }

/* ---------- Problem/Solution ---------- */
.problem-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--paper); border: 1px solid var(--gray-line); }
.problem-row__side { padding: 48px 44px; }
.problem-row__side--problem { background: var(--paper); border-right: 1px solid var(--gray-line); }
.problem-row__side--solution { background: var(--navy); color: var(--white); }
.problem-row__side h3 { margin-bottom: 1rem; }
.problem-row__side--solution h3 { color: var(--white); }
.problem-row__side .label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1rem; display: inline-block; }
.problem-row__side--problem .label { color: var(--danger); }
.problem-row__side--solution .label { color: var(--gold); }
.problem-row__side--solution p { color: rgba(255,255,255,0.85); }
@media (max-width: 768px) { .problem-row { grid-template-columns: 1fr; } .problem-row__side--problem { border-right: 0; border-bottom: 1px solid var(--gray-line); } .problem-row__side { padding: 36px 28px; } }

/* ============================================================
   Realtor Split — React component pattern (two-column preview)
   ============================================================ */
.realtor-split { background: linear-gradient(to bottom, var(--white), var(--paper)); border-top: 2px solid var(--gray-line); }
.realtor-split__grid { display: grid; grid-template-columns: 1fr 1fr; }
.realtor-split__col { padding: 3rem 2.5rem; }
.realtor-split__col:first-child { border-right: 1px solid var(--gray-line); }
.realtor-split__preview { position: relative; overflow: hidden; width: 100%; height: 300px; border-left: 2px solid var(--gray-line); border-top: 2px solid var(--gray-line); padding: 1.5rem; margin-bottom: 1.75rem; background: var(--white); -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%), linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%); mask-image: linear-gradient(to right, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%), linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%); -webkit-mask-composite: source-in; mask-composite: intersect; }
.realtor-split__preview-label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1rem; display: block; }
.realtor-split__report-line { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--gray-line); font-size: 0.88rem; color: var(--ink-mid); }
.realtor-split__report-line:last-child { border-bottom: 0; }
.realtor-split__report-badge { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; padding: 2px 7px; background: var(--paper); border: 1px solid var(--gray-line); color: var(--ink-soft); flex-shrink: 0; margin-top: 1px; }
.realtor-split__check-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.88rem; color: rgba(255,255,255,0.85); }
.realtor-split__check-item:last-child { border-bottom: 0; }
.realtor-split__check-icon { width: 18px; height: 18px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.realtor-split__check-icon svg { display: block; }
.realtor-split__col--solution .realtor-split__preview { background: var(--navy); border-color: rgba(255,255,255,0.12); }
.realtor-split__col--solution { background: var(--navy); }
.realtor-split__col--solution h3 { color: var(--white); }
.realtor-split__col--solution p { color: rgba(255,255,255,0.82); }
.realtor-split__col--solution .realtor-split__preview-label { color: var(--gold); }
.realtor-split__cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 1.5rem; color: var(--gold); font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }
@media (max-width: 768px) { .realtor-split__grid { grid-template-columns: 1fr; } .realtor-split__col:first-child { border-right: 0; border-bottom: 1px solid var(--gray-line); } .realtor-split__col { padding: 2rem 1.5rem; } }

/* ---------- Emergency banner ---------- */
.emergency-banner { background: var(--danger); color: var(--white); padding: 32px 28px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.emergency-banner__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.05; letter-spacing: -0.015em; }
.emergency-banner__phone { background: var(--gold); color: var(--navy); font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem, 2.6vw, 2rem); padding: 16px 28px; display: inline-flex; align-items: center; gap: 10px; letter-spacing: -0.012em; transition: background 0.15s var(--ease); }
.emergency-banner__phone:hover { background: var(--gold-light); }

/* ---------- Hours grid ---------- */
.hours-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; background: var(--navy); color: var(--white); }
.hours-row { padding: 18px 24px; display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 0.92rem; letter-spacing: 0.04em; border-bottom: 1px solid rgba(255,255,255,0.08); border-right: 1px solid rgba(255,255,255,0.08); }
.hours-row:nth-child(2n) { border-right: 0; }
.hours-row strong { font-family: var(--font-display); font-weight: 700; color: var(--gold); letter-spacing: 0.02em; font-size: 1rem; }
@media (max-width: 560px) { .hours-grid { grid-template-columns: 1fr; } .hours-row { border-right: 0; } }

/* ---------- Contact grid ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ---------- Vendor grid ---------- */
.vendor-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .vendor-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ---------- Download banner ---------- */
.download-banner { display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center; background: var(--paper); border: 1px solid var(--gray-line); border-left: 4px solid var(--gold); padding: 32px 40px; }
.download-banner__icon { width: 56px; height: 56px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; border-radius: 2px; }
.download-banner h3 { margin-bottom: 4px; font-size: 1.4rem; }
.download-banner p { color: var(--ink-mid); margin: 0; font-size: 0.95rem; }
@media (max-width: 720px) { .download-banner { grid-template-columns: 1fr; text-align: left; padding: 28px; } }

/* ---------- Section marker ---------- */
.section-marker { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em; color: var(--gold-deep); text-transform: uppercase; margin-bottom: 1rem; display: block; }

/* ---------- Direct lines ---------- */
.direct-line { display: flex; gap: 14px; align-items: center; padding: 16px; border: 1px solid var(--gray-line); border-radius: var(--radius-lg); color: var(--ink); transition: border-color 0.15s; margin-bottom: 12px; }
.direct-line:hover { border-color: var(--gold); }
.direct-line__icon { color: var(--gold-deep); flex-shrink: 0; }
.direct-line__label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); display: block; }
.direct-line__value { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); }

/* ---------- Response promise ---------- */
.response-promise { border: 1px solid var(--gray-line); background: var(--paper); padding: 28px; border-left: 4px solid var(--gold); border-radius: var(--radius-lg); margin-top: 2rem; margin-bottom: 2rem; }
.response-promise h3 { font-size: 1.2rem; }

/* ---------- Blog prose typography ---------- */
.prose { color: var(--ink-mid); line-height: 1.75; font-size: 1.05rem; }
.prose h2 { font-size: 2rem; color: var(--navy); letter-spacing: -0.02em; margin: 2.5rem 0 1rem; line-height: 1.15; }
.prose h3 { font-size: 1.5rem; color: var(--navy); letter-spacing: -0.015em; margin: 2rem 0 0.75rem; line-height: 1.2; }
.prose h4 { font-size: 1.1rem; color: var(--navy); font-weight: 700; margin: 1.5rem 0 0.5rem; }
.prose p { margin-bottom: 1.5rem; }
.prose ul, .prose ol { padding-left: 0; list-style: none; margin-bottom: 2rem; }
.prose ul li, .prose ol li { position: relative; padding: 0.6rem 0 0.6rem 1.5rem; border-bottom: 1px solid var(--gray-line); color: var(--ink-mid); line-height: 1.6; }
.prose ul li::before { content: "→"; position: absolute; left: 0; color: var(--gold-deep); font-weight: 700; }
.prose ol { counter-reset: prose-counter; }
.prose ol li { counter-increment: prose-counter; }
.prose ol li::before { content: counter(prose-counter, decimal-leading-zero); position: absolute; left: 0; color: var(--gold-deep); font-family: var(--font-mono); font-size: 0.78rem; font-weight: 700; top: 0.75rem; }
.prose strong { color: var(--navy); font-weight: 700; }
.prose .response-promise h4 { margin-top: 0; }
.prose .response-promise h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.012em; line-height: 0.98; margin: 0 0 0.5rem; }
.prose > *:first-child { margin-top: 0; }

/* ---------- Map placeholder ---------- */
.map-placeholder { background: repeating-linear-gradient(45deg, var(--gray-soft) 0, var(--gray-soft) 12px, var(--paper) 12px, var(--paper) 24px); border: 1px solid var(--gray-line); min-height: 400px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; color: var(--ink-soft); font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.05em; text-align: center; padding: 32px; }
.map-placeholder svg { color: var(--gold-deep); }

/* ---------- PM What We Provide grid ---------- */
.provide-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); }
.provide-cell { background: var(--navy-dark); padding: 28px 24px; transition: background 0.18s var(--ease); }
.provide-cell:hover { background: var(--navy); }
.provide-cell__icon { color: var(--gold); margin-bottom: 1rem; }
.provide-cell__title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--white); line-height: 1.2; }
@media (max-width: 900px) { .provide-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .provide-grid { grid-template-columns: 1fr; } }
.provide-cell p { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin: 0.5rem 0 0; line-height: 1.55; }

/* ---------- PM Partnership form layout ---------- */
.partner-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .partner-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ---------- PM Pain points grid ---------- */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pain-card { background: var(--white); border: 1px solid var(--gray-line); border-top: 4px solid var(--gold); padding: 32px 28px; }
.pain-card__num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 0.75rem; }
.pain-card h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.pain-card p { color: var(--ink-mid); font-size: 0.95rem; margin: 0; }
@media (max-width: 768px) { .pain-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Page-specific hero background images
   Drop the matching file into assets/img/ and the hero auto-applies.
   Each stacks on top of .hero--pm (navy fallback stays if image 404s).
   ============================================================ */
.hero--about        { background-image: url('../img/hero-about.jpg'); background-size: cover; background-position: center; }
.hero--contact {
  background:
    linear-gradient(100deg, rgba(8,16,46,0.88) 0%, rgba(8,16,46,0.65) 45%, rgba(8,16,46,0.25) 100%),
    url('../img/hero-service-areas.jpg') center 30% / cover no-repeat,
    var(--navy);
}
.hero--services     { background-image: url('../img/hero-services.jpg?v=3'); background-size: cover; background-position: center; }
.hero--service-areas { background-image: url('../img/hero-service-areas.jpg'); background-size: cover; background-position: center 30%; }
.hero--property-managers { background-image: url('../DfwpcpImages/Herophoto.jpeg'); background-size: cover; background-position: center top; }

/* ============================================================
   Service row card images — services.html
   Add <img class="service-row__img"> inside .service-row__body
   ============================================================ */
.service-row__img { width: 100%; max-width: 480px; height: auto; border-radius: var(--radius); margin-bottom: 1.25rem; display: block; }
@media (max-width: 768px) { .service-row__img { max-width: 100%; } }

/* ============================================================
   Tile card images — realtors.html + property-managers.html
   Add <img class="tile__img"> as first child inside .tile
   ============================================================ */
/* Overlay card variant — when tile has an image */
.tile:has(.tile__img) { padding: 0; min-height: 280px; overflow: hidden; }
.tile__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.4s ease; }
.tile:hover .tile__img { transform: scale(1.04); }
.tile:has(.tile__img)::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,18,50,0.88) 0%, rgba(10,18,50,0.4) 55%, rgba(10,18,50,0.12) 100%); z-index: 1; }
.tile:has(.tile__img) .tile__num,
.tile:has(.tile__img) .tile__icon,
.tile:has(.tile__img) .tile__title,
.tile:has(.tile__img) .tile__desc,
.tile:has(.tile__img) span { position: relative; z-index: 2; }
.tile:has(.tile__img) .tile__num { color: rgba(255,255,255,0.5); top: auto; right: auto; position: relative; }
.tile:has(.tile__img) .tile__title { color: var(--white); font-size: 1.15rem; margin-bottom: 0.35rem; }
.tile:has(.tile__img) .tile__desc { color: rgba(255,255,255,0.75); font-size: 0.88rem; }
.tile:has(.tile__img) { display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
@media (prefers-reduced-motion: reduce) { .tile__img { transition: none; } .tile:hover .tile__img { transform: none; } }
.audience-card__img { width: 100%; height: 200px; object-fit: cover; display: block; margin: 0 0 2rem; }

/* ============================================================
   Leaflet Service Map — service-areas.html
   ============================================================ */
#service-map { height: 420px; border-radius: var(--radius-lg); border: 1px solid var(--gold); overflow: hidden; margin-top: 0.75rem; }
@media (max-width: 768px) { #service-map { height: 300px; } }
.map-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.map-filter-btn { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 0.3rem 0.85rem; border-radius: 999px; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: background 0.2s, color 0.2s; white-space: nowrap; font-family: var(--font-mono); letter-spacing: 0.04em; }
.map-filter-btn:hover, .map-filter-btn.active { background: var(--gold); color: var(--navy); }
.leaflet-popup-content-wrapper { background: var(--navy) !important; border: 1px solid var(--gold) !important; border-radius: 8px !important; color: #fff !important; box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important; }
.leaflet-popup-tip { background: var(--navy) !important; }
.leaflet-popup-content { margin: 12px 16px !important; }

/* ---------- FAQ Copper Pipe Background ---------- */
.faq-copper-section {
  --faq-bg-y: 15%;
  background-image: url('../DfwpcpImages/Screenshot_2026-06-21_at_2.00.15_AM.png_202606210205.jpeg');
  background-size: cover;
  background-position: center var(--faq-bg-y);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.faq-copper-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,5,2,0.76);
  z-index: 0;
}
.faq-copper-section > * { position: relative; z-index: 1; }
.faq-copper-section .eyebrow { color: var(--gold); }
.faq-copper-section h2 { color: #fff; }
.faq-copper-section .faq__item {
  background: rgba(12,6,2,0.50);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(190,120,50,0.30) !important;
  border-radius: 6px;
  padding: 0 1.5rem;
  margin-bottom: 8px;
}
.faq-copper-section .faq__item summary { color: rgba(255,255,255,0.92); }
.faq-copper-section .faq__item summary:hover { color: var(--gold); }
.faq-copper-section .faq__item summary::after { color: var(--gold); }
.faq-copper-section .faq__body,
.faq-copper-section .faq__a,
.faq-copper-section .faq__a p,
.faq-copper-section .faq__body p { color: #fff; }
@media (prefers-reduced-motion: reduce) {
  .faq-copper-section { background-position: center 50% !important; }
}

/* =======================================================
   CONTACT SECTION — GLASSMORPHISM + ROTATING GLOW
   ======================================================= */

.contact-section {
  background: linear-gradient(135deg, #0d1940 0%, #1B2B6B 55%, #0d1640 100%);
}

/* --- Rotating conic-gradient glow border --- */
@property --glow-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes spin-glow {
  to { --glow-angle: 360deg; }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.form-glow-col {
  position: relative;
}

.form-glow-ring {
  position: relative;
  border-radius: 18px;
  padding: 2px;
  background: conic-gradient(
    from var(--glow-angle),
    transparent 0%,
    transparent 35%,
    rgba(168, 137, 61, 0.55) 44%,
    rgba(201, 168, 76, 0.95) 50%,
    rgba(226, 201, 126, 1) 52%,
    rgba(201, 168, 76, 0.95) 56%,
    rgba(168, 137, 61, 0.55) 65%,
    transparent 72%,
    transparent 100%
  );
  animation: spin-glow 5s linear infinite;
  box-shadow:
    0 0 48px rgba(201, 168, 76, 0.18),
    0 28px 72px rgba(0, 0, 0, 0.5);
}

/* Ambient halo behind ring — pulses gently */
.form-glow-ring::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 22px;
  background: inherit;
  filter: blur(14px);
  z-index: -1;
  animation: glow-pulse 3.2s ease-in-out infinite;
  pointer-events: none;
}

/* Glassmorphism on both form states */
.contact-section .form-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  border-radius: 16px;
  box-shadow: none;
}

/* --- Sidebar text on dark background --- */
.contact-sidebar h3,
.contact-sidebar h4 {
  color: #fff;
}

.contact-sidebar > p,
.contact-sidebar .response-promise p,
.contact-sidebar > div > p {
  color: rgba(255, 255, 255, 0.72) !important;
}

/* Hours grid visible border on dark bg */
.contact-section .hours-grid {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

/* Response promise — glass treatment */
.contact-section .response-promise {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-left: 4px solid var(--gold);
}

/* Direct line cards — glass treatment */
.contact-section .direct-line {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-section .direct-line:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(201, 168, 76, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35), 0 0 18px rgba(201, 168, 76, 0.12);
}

/* Phone/email value text — override inline navy color */
.contact-section .direct-line > div > div:last-child {
  color: #fff !important;
}

/* Label text in direct lines */
.contact-section .direct-line > div > div:first-child {
  color: rgba(255, 255, 255, 0.55) !important;
}

/* Ensure inner card corners match glow ring on all pages */
.form-glow-ring .form-card {
  border-radius: 16px;
}

/* --- Pitch column text on dark contact-section (property-managers) --- */
.contact-pitch h2,
.contact-pitch h3,
.contact-pitch h4 { color: #fff; }

.contact-pitch p { color: rgba(255, 255, 255, 0.72) !important; }
.contact-pitch span { color: rgba(255, 255, 255, 0.65) !important; }
.contact-pitch strong { color: #fff !important; }
.contact-pitch .eyebrow { color: var(--gold); }

/* --- Reduced motion fallback --- */
@media (prefers-reduced-motion: reduce) {
  .form-glow-ring {
    animation: none;
    background: rgba(201, 168, 76, 0.45);
  }
  .form-glow-ring::after {
    animation: none;
    display: none;
  }
}

/* ============================================================
   ALTERNATING SPLIT SECTIONS (location pages)
   ============================================================ */
.split-section {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 65vh;
  background: var(--navy);
}
.split-section--flip {
  grid-template-columns: 60% 40%;
}
.split-section--flip .split-section__img { order: 2; }
.split-section--flip .split-section__body { order: 1; }

.split-section__img {
  overflow: hidden;
}
.split-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.split-section__img:hover img { transform: scale(1.03); }

.split-section__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 4rem;
  border-left: 3px solid rgba(212,175,55,0.2);
}
.split-section--flip .split-section__body {
  border-left: none;
  border-right: 3px solid rgba(212,175,55,0.2);
}
.split-section__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.split-section__title {
  font-size: 1.75rem;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.25;
}
.split-section__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.split-section__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.split-section__link:hover { color: var(--gold-light, #f0d060); }

/* Reveal animation */
.split-section__body,
.split-section__img {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.split-section.is-visible .split-section__body,
.split-section.is-visible .split-section__img {
  opacity: 1;
  transform: none;
}
.split-section.is-visible .split-section__img { transition-delay: 0.15s; }

@media (max-width: 768px) {
  .split-section,
  .split-section--flip {
    grid-template-columns: 1fr;
    grid-template-rows: 300px auto;
  }
  .split-section--flip .split-section__img,
  .split-section--flip .split-section__body { order: unset; }
  .split-section__body {
    padding: 2rem 1.5rem;
    border: none !important;
    border-top: 3px solid rgba(212,175,55,0.2) !important;
  }
}

/* ── Testimonials scattered cards ─────────────────────────────── */
.testimonials-section { padding: 5rem 0; background: #fff; }
.testimonials-section .section__head { text-align: center; margin-bottom: 3rem; }
.testimonials-scatter { position: relative; min-height: 650px; display: none; }
.testimonials-stack   { display: flex; flex-direction: column; gap: 1rem; padding: 0 1rem; }
.tcard {
  background: #fff;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 1.5rem;
  max-width: 280px;
}
.tcard__top    { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.tcard__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.tcard__name   { font-weight: 600; color: var(--navy); font-size: .95rem; }
.tcard__handle { font-size: .8rem; color: #888; }
.tcard__quote  { font-size: .85rem; color: #555; line-height: 1.6; }
.tcard--scatter { position: absolute; }
/* reveal animation */
.testimonials-section .tcard {
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.testimonials-section.is-visible .tcard--1 { opacity:1; transform:translateY(0); }
.testimonials-section.is-visible .tcard--2 { opacity:1; transform:translateY(0); transition-delay:.1s; }
.testimonials-section.is-visible .tcard--3 { opacity:1; transform:translateY(0); transition-delay:.2s; }
.testimonials-section.is-visible .tcard--4 { opacity:1; transform:translateY(0); transition-delay:.3s; }
.testimonials-section.is-visible .tcard--5 { opacity:1; transform:translateY(0); transition-delay:.4s; }
.testimonials-section.is-visible .tcard--6 { opacity:1; transform:translateY(0); transition-delay:.5s; }
@media (min-width: 768px) {
  .testimonials-scatter { display: block; }
  .testimonials-stack   { display: none; }
}

/* ── Marquee testimonials (replaces scattered/stacked layout) ──── */
.testimonials-scatter { display:none !important; }
.testimonials-stack   { display:none !important; }
.testimonials-section .tcard { opacity:1 !important; transform:none !important; transition:none !important; }

.marquee-wrapper { overflow:hidden; display:flex; flex-direction:column; gap:1.25rem; padding:1rem 0; }
.marquee-track {
  display:flex; gap:1.25rem; width:max-content;
  animation: marquee-left 35s linear infinite;
}
.marquee-track--reverse { animation: marquee-right 35s linear infinite; }
.marquee-wrapper:hover .marquee-track { animation-play-state:paused; }
.marquee-track .tcard { flex-shrink:0; width:280px; }
@keyframes marquee-left  { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes marquee-right { from { transform:translateX(-50%); } to { transform:translateX(0); } }
@media (max-width:480px) { .marquee-track .tcard { width:240px; } }

/* ============================================================
   VAN SHOWCASE BAND (contact.html — between map and contact grid)
   Navy band + cream arch + floating van, brand-mapped from reference
   ============================================================ */
.van-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  min-height: min(46vw, 560px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.van-band__arch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 56%;
  background: var(--paper);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.van-band__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  display: flex;
  justify-content: center;
  padding: 0 24px min(5vw, 56px);
}
.van-band__img {
  width: min(80%, 880px);
  height: auto;
  filter: drop-shadow(0 30px 38px rgba(0,0,0,0.45));
}
@media (max-width:768px) {
  .van-band { min-height: 64vw; }
  .van-band__arch { height: 50%; width: 180%; }
  .van-band__img { width: 92%; }
}

/* ============================================================
   ABOUT CTA BAND  (plumber cut-out + Request Service form)
   ============================================================ */
.about-cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: clamp(48px, 7vw, 96px) 0 0;
}
.about-cta-band__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
}
.about-cta-band__media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-cta-band__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding-right: 1rem;
}
.about-cta-band__overlay h2 {
  color: var(--white);
  margin: 0 0 0.75rem;
}
.about-cta-band__overlay p {
  color: rgba(255,255,255,0.72);
  margin: 0;
  max-width: 40ch;
}
.about-cta-band__img {
  width: 100%;
  max-width: 690px;
  height: auto;
  display: block;
  align-self: end;
  filter: drop-shadow(0 30px 38px rgba(0,0,0,0.45));
}
.about-cta-band__form {
  align-self: start;
  padding-bottom: clamp(48px, 7vw, 96px);
}
@media (max-width:768px) {
  .about-cta-band { padding-top: clamp(36px, 9vw, 64px); }
  .about-cta-band__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-cta-band__media {
    order: 1;
    flex-direction: column;
    align-items: center;
  }
  .about-cta-band__overlay {
    position: static;
    width: 100%;
    padding: 0 4px 20px;
    text-align: center;
  }
  .about-cta-band__overlay p { margin-left: auto; margin-right: auto; }
  .about-cta-band__form {
    order: 2;
    padding-bottom: clamp(32px, 8vw, 56px);
  }
  .about-cta-band__img {
    max-width: 510px;
  }
}

/* Google-reviews widget (light) — shared, used by location pages */
/* Google-reviews widget (light) */
    .section--reviews { background: #f1f3f4; }
    .section--reviews .review {
      background: #fff;
      border: 1px solid #ebebeb;
      border-radius: var(--radius-lg);
      box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
      padding: 24px 24px 20px;
      display: flex; flex-direction: column;
      transition: box-shadow 0.22s ease, transform 0.22s ease;
    }
    .section--reviews .review:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.14); transform: translateY(-3px); }
    @media (prefers-reduced-motion: reduce) { .section--reviews .review { transition: none; } .section--reviews .review:hover { transform: none; } }
    .review__head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
    .review__pic { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
    .review__pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .review__pic-mono { width: 100%; height: 100%; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: -0.01em; }
    .review__id { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
    .review__name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #202124; }
    .review__date { font-size: 0.85rem; color: #5f6368; }
    .review__glogo { width: 22px; height: 22px; margin-left: auto; flex-shrink: 0; }
    .review__meta { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
    .review__meta .review__stars { margin-bottom: 0; }
    .review__verified { display: inline-flex; align-items: center; color: #1a73e8; line-height: 0; }
    .review__verified svg { width: 16px; height: 16px; }
    .section--reviews .review__quote { font-family: var(--font-body); font-weight: 400; font-size: 0.96rem; line-height: 1.55; letter-spacing: 0; color: #3c4043; }
    .section--reviews .review__quote::before, .section--reviews .review__quote::after { content: none; }
    .review__more { display: inline-block; align-self: flex-start; margin-top: 10px; color: #5f6368; font-weight: 500; font-size: 0.92rem; text-decoration: none; }
    .review__more:hover { text-decoration: underline; }
    .review__avatar--g1 { background: #1a73e8; color: #fff; }
    .review__avatar--g2 { background: #ea4335; color: #fff; }
    .review__avatar--g3 { background: #34a853; color: #fff; }
