/* =============================================================================
   Haven Vacation Rentals — Design System
   Premium "trusted advisor" aesthetic for the Smoky Mountains.
   Mobile-first. Tokens only (no hardcoded brand values in markup).

   NOTE ON BRAND TOKENS: the live site (havenvacationrentals.com) was not
   reachable from the build environment, so the palette and type below are a
   proposed, refined system designed to elevate the brand. Confirm/adjust the
   --brand-* values against the live stylesheet before production. Because
   every component reads these custom properties, changing them re-skins the
   whole site for free.
   ============================================================================= */

/* ----------------------------------------------------------------------------
   1. Design tokens
   ---------------------------------------------------------------------------- */
:root {
  /* Brand palette — Haven coral + charcoal + sage (from the live brand).
     Token NAMES are kept stable; values map to the real brand so the whole
     site re-skins from here. (Legacy --forest-*/--gold- names now carry the
     charcoal and coral ramps respectively.) */
  --forest-950: #15181a;   /* darkest band (footer) */
  --forest-900: #1d2327;   /* near-black brand */
  --forest-800: #2b2f31;
  --forest-700: #424242;   /* charcoal (headings/structure) */
  --forest-600: #565b5c;
  --forest-500: #6e7173;   /* muted */
  --forest-300: #b9bcbd;
  --forest-100: #dfe2e3;
  --forest-50:  #f1f3f3;

  --gold-700: #b23a33;
  --gold-600: #d63838;     /* darker red (hover) */
  --gold-500: #ff564e;     /* brand coral */
  --gold-400: #ff7a73;
  --gold-100: #ffd9d6;
  --gold-50:  #fff0ef;

  /* Neutrals */
  --ink:        #424242;   /* primary text (charcoal) */
  --ink-soft:   #565b5c;
  --muted:      #6e7173;   /* secondary text */
  --muted-soft: #9a9d9c;
  --line:       #e4e6e4;   /* hairline borders */
  --line-soft:  #eef0ee;

  --surface:    #ffffff;
  --surface-2:  #edf0ee;   /* pale sage section bg */
  --surface-3:  #f4f6f4;
  --sand:       #edf0ee;

  /* Semantic aliases (use these in components) */
  --brand:           var(--gold-500);    /* coral primary action */
  --brand-strong:    var(--gold-600);    /* darker red hover */
  --brand-deep:      var(--forest-900);  /* near-black sections + heading ink */
  --brand-tint:      var(--gold-50);     /* coral tint */
  --accent:          var(--gold-500);
  --accent-strong:   var(--gold-600);
  --accent-tint:     var(--gold-50);
  --text:            var(--ink);
  --text-muted:      var(--muted);
  --bg:              var(--surface);
  --bg-alt:          var(--surface-2);

  /* Typography — Haven brand: Futura PT (headings) + Raleway (body).
     Futura PT is an Adobe Fonts kit; add the kit <link> and "futura-pt" is used
     automatically. Until then the free geometric "Jost" (Google Fonts) stands in. */
  --font-display: "futura-pt", "Jost", "Century Gothic", "Twentieth Century",
                  "Helvetica Neue", Arial, sans-serif;
  --font-body: "Raleway", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;

  /* Fluid type scale (1.25 ratio, clamped) */
  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.92rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem);
  --step-2:  clamp(1.45rem, 1.25rem + 1vw, 1.95rem);
  --step-3:  clamp(1.75rem, 1.4rem + 1.7vw, 2.6rem);
  --step-4:  clamp(1.7rem, 1.3rem + 1.7vw, 2.35rem);
  --step-5:  clamp(2.1rem, 1.5rem + 2.4vw, 3.1rem);

  /* Spacing scale */
  --space-2xs: 0.375rem;
  --space-xs:  0.625rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --container: 1180px;
  --container-narrow: 760px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(29, 35, 39, 0.06);
  --shadow-sm: 0 2px 8px rgba(29, 35, 39, 0.08);
  --shadow-md: 0 10px 30px -12px rgba(29, 35, 39, 0.16);
  --shadow-lg: 0 30px 60px -22px rgba(29, 35, 39, 0.26);

  --header-h: 76px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ----------------------------------------------------------------------------
   2. Reset & base
   ---------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--brand-deep);
  text-wrap: balance;
}
h1 { font-size: var(--step-5); letter-spacing: 0.025em; }
h2 { font-size: var(--step-4); letter-spacing: 0.03em; }
h3 { font-size: var(--step-2); letter-spacing: 0.05em; }
h4 { font-size: var(--step-1); letter-spacing: 0.06em; }
p { text-wrap: pretty; }

/* ----------------------------------------------------------------------------
   3. Layout primitives
   ---------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.prose { max-width: var(--container-narrow); }
.prose p + p { margin-top: 1.1em; }
.section { padding-block: clamp(3rem, 8vw, var(--space-2xl)); }
.section--tight { padding-block: clamp(2.25rem, 5vw, var(--space-xl)); }
.section--alt { background: var(--bg-alt); }
.section--tint { background: var(--surface-3); }
.section--dark { background: var(--brand-deep); color: var(--forest-100); }
.section--dark h2, .section--dark h3 { color: #fff; }

.stack > * + * { margin-top: var(--space-sm); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before { content: ""; width: 1.75rem; height: 2px; background: var(--accent); border-radius: 2px; }
.section--dark .eyebrow { color: var(--gold-400); }
.lede { font-size: var(--step-1); color: var(--ink-soft); line-height: 1.55; }
.section--dark .lede { color: var(--forest-100); }
.text-muted { color: var(--text-muted); }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure.center { margin-inline: auto; }

.section-head { max-width: 56ch; margin-bottom: var(--space-lg); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 0.5rem; }
.section-head p { margin-top: 1rem; color: var(--text-muted); font-size: var(--step-1); }

/* ----------------------------------------------------------------------------
   4. Buttons
   ---------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1.5px solid var(--btn-bg);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
  box-shadow: var(--shadow-sm);
  text-align: center;
  white-space: nowrap;
  max-width: 100%;
}
.btn:hover { background: var(--brand-strong); border-color: var(--brand-strong); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 1.1em; height: 1.1em; }

.btn--accent { --btn-bg: var(--accent); --btn-fg: #fff; }
.btn--accent:hover { background: var(--accent-strong); border-color: var(--accent-strong); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--brand); border-color: color-mix(in srgb, var(--brand) 35%, transparent); box-shadow: none; }
.btn--ghost:hover { background: var(--brand-tint); border-color: var(--brand); transform: translateY(-2px); }

.btn--on-dark { --btn-bg: #fff; --btn-fg: var(--forest-900); }
.btn--on-dark:hover { background: var(--gold-50); border-color: var(--gold-50); }
.btn--ghost-on-dark { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,0.4); box-shadow: none; }
.btn--ghost-on-dark:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn--lg { padding: 1.1rem 2.1rem; font-size: 0.95rem; }
.btn--block { width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.cta-row.center { justify-content: center; }

.link-arrow { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; color: var(--brand); border-bottom: 2px solid transparent; transition: border-color 0.18s, gap 0.18s; }
.link-arrow:hover { border-color: var(--accent); gap: 0.65rem; }
.link-arrow svg { width: 1em; height: 1em; }

/* ----------------------------------------------------------------------------
   5. Header / nav
   ---------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-xs); background: color-mix(in srgb, var(--surface) 94%, transparent); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; min-width: 58px; height: 58px; border-radius: 999px; background: rgba(255,255,255,0.82); box-shadow: var(--shadow-xs); font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--brand-deep); letter-spacing: 0.06em; text-transform: uppercase; }
.brand img { height: 50px; width: 50px; object-fit: contain; }
.brand__mark { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--brand); color: #fff; }
.brand__mark svg { width: 22px; height: 22px; }

.nav { display: none; align-items: center; gap: 0.35rem; }
.nav a { padding: 0.55rem 0.85rem; border-radius: var(--radius-pill); font-weight: 500; color: var(--ink-soft); transition: background 0.16s, color 0.16s; }
.nav a:hover, .nav a[aria-current="page"] { background: var(--brand-tint); color: var(--brand-strong); }
.header-actions { display: none; align-items: center; gap: 0.75rem; }
.header-phone { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 600; color: var(--brand-strong); white-space: nowrap; }
.header-phone svg { width: 1.05em; height: 1.05em; color: var(--accent-strong); }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--brand-tint); border: 1px solid var(--line); color: var(--brand-strong); cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }

.nav a { white-space: nowrap; }
@media (min-width: 1080px) {
  .nav, .header-actions { display: flex; }
  .nav-toggle { display: none; }
}

/* Mobile drawer (portaled to body) */
.drawer-backdrop { position: fixed; inset: 0; z-index: 80; background: rgba(29, 35, 39, 0.55); opacity: 0; visibility: hidden; transition: opacity 0.25s, visibility 0.25s; }
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; z-index: 90; height: 100dvh; width: min(86vw, 360px);
  background: var(--surface); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform 0.3s var(--ease);
  display: flex; flex-direction: column; padding: 1.25rem; overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.drawer__close { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface-2); cursor: pointer; display: grid; place-items: center; }
.drawer__close svg { width: 22px; height: 22px; }
.drawer__group-label { font-family: var(--font-body); font-size: var(--step--1); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 0.75rem 0.75rem 0.25rem; }
.drawer nav { display: flex; flex-direction: column; gap: 0.15rem; margin-block: 0.5rem 0.5rem; }
.drawer nav a { padding: 0.85rem 0.75rem; border-radius: 10px; font-weight: 500; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); }
.drawer nav a:hover, .drawer nav a[aria-current="page"] { background: var(--brand-tint); color: var(--brand-strong); }
.drawer__cta { margin-top: auto; display: grid; gap: 0.7rem; padding-top: 1rem; }
.drawer__phone { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-weight: 600; color: var(--brand-strong); padding: 0.6rem; }

/* ----------------------------------------------------------------------------
   6. Hero
   ---------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--brand-deep); color: #fff; isolation: isolate; }
.hero .container { position: relative; z-index: 1; }
.hero::after { display: none; } /* scenic photo replaces gradient ridge motif */
.hero__scenic {
  position: absolute; inset-inline: 0; bottom: 0; height: min(52%, 22rem); z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(180deg, var(--brand-deep) 0%, rgba(29,35,39,0.92) 22%, rgba(29,35,39,0.45) 55%, transparent 88%),
    var(--hero-scenic);
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
}
.hero__ridge { display: none; }
.photo-hero {
  background-image:
    linear-gradient(90deg, rgba(29,35,39,0.9) 0%, rgba(29,35,39,0.7) 52%, rgba(29,35,39,0.48) 100%),
    var(--photo-hero);
  background-size: cover;
  background-position: center;
}
.photo-hero::after {
  display: block;
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 0;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(29,35,39,0.16), rgba(29,35,39,0.62)),
    radial-gradient(70% 80% at 12% 50%, rgba(255,86,78,0.18), transparent 68%);
}
.photo-hero .container { position: relative; z-index: 1; }
.hero__inner { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; padding-block: clamp(3rem, 9vw, 6rem); }
.hero__eyebrow { color: var(--gold-400); }
.hero h1 { color: #fff; }
.hero__sub { font-size: var(--step-1); color: var(--forest-100); max-width: 46ch; line-height: 1.5; }
.hero__cta { margin-top: 0.5rem; }
.hero__trust { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.75rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.14); }
.hero__trust-item { display: flex; flex-direction: column; }
.hero__trust-item b { font-family: var(--font-display); font-size: var(--step-2); color: #fff; line-height: 1; }
.hero__trust-item span { font-size: var(--step--1); color: var(--forest-100); margin-top: 0.25rem; }
.hero__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; }
.hero__media img, .hero__media svg { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 0.8rem 1rem; border-radius: var(--radius); box-shadow: var(--shadow-md);
}
.hero__badge .stars { color: var(--accent); letter-spacing: 0.1em; }
.hero__badge b { color: var(--brand-deep); }
.hero__badge small { display: block; color: var(--muted); font-size: var(--step--1); }
.hero__visual { display: grid; gap: 1rem; }
.hero__badge--below { position: static; }
.hero__badge--below .stars { flex: 0 0 auto; }

@media (min-width: 880px) {
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; }
}

/* ----------------------------------------------------------------------------
   7. Stat row / data snapshot
   ---------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.stats--3 { grid-template-columns: repeat(2, 1fr); }
.stat { background: var(--surface); padding: clamp(1.1rem, 3vw, 1.75rem); text-align: center; }
.stat b { display: block; font-family: var(--font-display); font-size: var(--step-3); color: var(--brand); line-height: 1; }
.stat .stat__unit { display: inline; color: var(--accent-strong); }
.stat > span { display: block; margin-top: 0.5rem; font-size: var(--step--1); color: var(--muted); letter-spacing: 0.01em; }
@media (min-width: 720px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stats--3 { grid-template-columns: repeat(3, 1fr); }
}
.section--dark .stat { background: var(--forest-800); }
.section--dark .stat b { color: #fff; }
.section--dark .stat > span { color: var(--forest-100); }
.section--dark .stats { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.12); }

/* Local snapshot table */
.snapshot { display: grid; gap: var(--space-lg); align-items: start; }
@media (min-width: 860px) { .snapshot { grid-template-columns: 1fr 1fr; } }
.data-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.data-table caption { text-align: left; font-size: var(--step--1); color: var(--muted); padding: 0.5rem 0; caption-side: bottom; }
.data-table th, .data-table td { padding: 0.85rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line-soft); }
.data-table th { font-family: var(--font-body); font-weight: 600; color: var(--ink-soft); width: 45%; vertical-align: top; }
.data-table td { color: var(--ink); font-weight: 600; }
.data-table tr:last-child th, .data-table tr:last-child td { border-bottom: 0; }

/* ----------------------------------------------------------------------------
   8. Cards & grids
   ---------------------------------------------------------------------------- */
.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.5rem); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.25rem, 3vw, 1.75rem); box-shadow: var(--shadow-xs); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s; height: 100%; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--forest-100); }
.card h3 { font-size: var(--step-1); margin-bottom: 0.4rem; }
.card p { color: var(--text-muted); font-size: var(--step-0); }
.card__icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--brand-tint); color: var(--brand); margin-bottom: 1rem; }
.card__icon svg { width: 26px; height: 26px; }
.card--accent .card__icon { background: var(--accent-tint); color: var(--accent-strong); }

/* Service grid (compact) */
.service { display: flex; gap: 0.9rem; align-items: flex-start; }
.service__icon { flex: none; display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--brand-tint); color: var(--brand); }
.service__icon svg { width: 22px; height: 22px; }
.service h3 { font-size: var(--step-0); font-family: var(--font-body); font-weight: 700; color: var(--brand-deep); margin-bottom: 0.15rem; }
.service p { font-size: var(--step--1); color: var(--text-muted); line-height: 1.5; }

/* Pillars */
.pillar { position: relative; padding-left: 0; text-align: center; display: flex; flex-direction: column; align-items: center; }
.pillar__num { font-family: var(--font-display); font-size: var(--step-2); color: var(--gold-400); line-height: 1; }
.pillar h3 { font-size: var(--step-1); margin: 0.5rem 0 0.35rem; }
.pillar p { color: var(--text-muted); }

/* Service-area cards (hub -> spokes) */
.area-card { display: flex; flex-direction: column; gap: 0.75rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xs); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.area-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.area-card__art { aspect-ratio: 16 / 9; background: var(--forest-800); }
.area-card__art svg, .area-card__art img { width: 100%; height: 100%; object-fit: cover; }
.area-card__body { padding: 0 1.25rem 1.4rem; }
.area-card h3 { font-size: var(--step-1); margin-bottom: 0.3rem; }
.area-card p { color: var(--text-muted); font-size: var(--step--1); margin-bottom: 0.85rem; }

/* ----------------------------------------------------------------------------
   9. Process steps
   ---------------------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: clamp(1rem, 3vw, 1.75rem); }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem 1.5rem 1.5rem; box-shadow: var(--shadow-xs); }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: -22px; left: 1.5rem; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; box-shadow: var(--shadow-sm); }
.step h3 { font-size: var(--step-1); margin: 0.85rem 0 0.4rem; }
.step p { color: var(--text-muted); }

/* ----------------------------------------------------------------------------
   10. Regulations / compliance section
   ---------------------------------------------------------------------------- */
.reg-grid { display: grid; gap: 1rem; }
@media (min-width: 720px) { .reg-grid { grid-template-columns: repeat(2, 1fr); } }
.reg { background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: var(--radius-sm); padding: 1.25rem 1.35rem; box-shadow: var(--shadow-xs); }
.reg h3 { font-family: var(--font-body); font-weight: 700; font-size: var(--step-0); color: var(--brand-deep); margin-bottom: 0.35rem; display: flex; align-items: center; gap: 0.5rem; }
.reg h3 svg { width: 1.15em; height: 1.15em; color: var(--brand); flex: none; }
.reg p { color: var(--text-muted); font-size: var(--step--1); line-height: 1.55; }
.callout { background: var(--accent-tint); border: 1px solid var(--gold-100); border-radius: var(--radius); padding: 1.25rem 1.4rem; display: flex; gap: 0.9rem; }
.callout svg { width: 1.5rem; height: 1.5rem; color: var(--accent-strong); flex: none; margin-top: 0.1rem; }
.callout p { color: var(--ink-soft); }
.callout strong { color: var(--gold-700); }

/* ----------------------------------------------------------------------------
   11. Testimonials
   ---------------------------------------------------------------------------- */
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow-sm); position: relative; }
.quote__mark { font-family: var(--font-display); font-size: 4rem; line-height: 0.6; color: var(--forest-100); }
.quote blockquote { font-family: var(--font-display); font-size: var(--step-2); line-height: 1.35; color: var(--brand-deep); font-weight: 500; margin: 0.5rem 0 1.25rem; }
.quote .stars { color: var(--accent); letter-spacing: 0.12em; margin-bottom: 0.5rem; }
.quote figcaption { display: flex; align-items: center; gap: 0.75rem; }
.quote__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); }
.quote figcaption b { color: var(--ink); display: block; }
.quote figcaption span { color: var(--muted); font-size: var(--step--1); }

/* ----------------------------------------------------------------------------
   12. FAQ accordion
   ---------------------------------------------------------------------------- */
.faq { max-width: var(--container-narrow); margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; background: none; border: 0; padding: 1.25rem 0; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: var(--step-1); color: var(--brand-deep); }
.faq__q:hover { color: var(--brand); }
.faq__icon { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; transition: transform 0.25s var(--ease), background 0.2s, border-color 0.2s; color: var(--brand); }
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); background: var(--brand); color: #fff; border-color: var(--brand); }
.faq__icon svg { width: 16px; height: 16px; }
.faq__a { overflow: hidden; max-height: 0; transition: max-height 0.3s var(--ease); }
.faq__a-inner { padding-bottom: 1.35rem; color: var(--text-muted); max-width: 70ch; }
.faq__a-inner p + p { margin-top: 0.75rem; }

/* ----------------------------------------------------------------------------
   13. Cross-links / "also manage"
   ---------------------------------------------------------------------------- */
.xlinks { display: grid; gap: 0.75rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .xlinks { grid-template-columns: repeat(3, 1fr); } }
.xlink { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; padding: 1.1rem 1.25rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); font-weight: 600; color: var(--brand-deep); transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s; }
.xlink:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-sm); color: var(--brand); }
.xlink svg { width: 1.1em; height: 1.1em; color: var(--accent-strong); }

/* ----------------------------------------------------------------------------
   14. CTA band
   ---------------------------------------------------------------------------- */
.cta-band { background: linear-gradient(135deg, var(--forest-800), var(--forest-900)); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem, 6vw, 3.5rem); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 90% -10%, rgba(255,86,78,0.30), transparent 55%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--forest-100); max-width: 52ch; margin: 1rem auto 1.75rem; font-size: var(--step-1); }
.cta-band .phone-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.25rem; color: #fff; font-weight: 600; }
.cta-band .phone-link svg { color: var(--gold-400); }

/* ----------------------------------------------------------------------------
   15. Forms (Book a Call)
   ---------------------------------------------------------------------------- */
.lead-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.25rem); box-shadow: var(--shadow-md); }
.lead-form h3 { font-size: var(--step-2); margin-bottom: 0.25rem; }
.lead-form .form-note { color: var(--muted); font-size: var(--step--1); margin-bottom: 1.25rem; }
.field { display: grid; gap: 0.4rem; margin-bottom: 1rem; }
.field label { font-weight: 600; font-size: var(--step--1); color: var(--ink-soft); }
.field label .req { color: var(--accent-strong); }
.field input, .field select, .field textarea { width: 100%; padding: 0.8rem 0.95rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--surface-2); transition: border-color 0.16s, box-shadow 0.16s, background 0.16s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px var(--brand-tint); }
.field textarea { min-height: 110px; resize: vertical; }
.field-row { display: grid; gap: 1rem; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-disclaimer { font-size: var(--step--1); color: var(--muted); margin-top: 0.5rem; }
.form-success { display: none; padding: 1.25rem; border-radius: var(--radius); background: var(--brand-tint); border: 1px solid var(--forest-100); color: var(--brand-strong); font-weight: 600; }
.form-success.is-visible { display: block; }

/* ----------------------------------------------------------------------------
   16. Footer
   ---------------------------------------------------------------------------- */
.site-footer { background: var(--forest-950); color: var(--forest-100); padding-block: clamp(2.5rem, 6vw, 4rem) 2rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1040px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer-brand img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-brand .brand { color: #fff; }
.footer-brand p { color: var(--forest-100); margin-top: 1rem; max-width: 36ch; font-size: var(--step--1); }
.footer-col h4 { font-family: var(--font-body); font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-400); margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a { color: var(--forest-100); font-size: var(--step--1); transition: color 0.16s; }
.footer-col a:hover { color: #fff; }
.footer-contact a { display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-contact svg { width: 1.05em; height: 1.05em; color: var(--gold-400); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; transition: background 0.18s; }
.footer-social a:hover { background: var(--brand); }
.footer-social svg { width: 18px; height: 18px; color: #fff; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between; align-items: center; font-size: var(--step--1); color: var(--forest-300); }
.footer-bottom__links { display: inline-flex; flex-wrap: wrap; gap: 0.6rem 1rem; align-items: center; }
.footer-bottom a { color: var(--forest-300); }
.footer-bottom a:hover { color: #fff; }

/* ----------------------------------------------------------------------------
   17. Breadcrumbs
   ---------------------------------------------------------------------------- */
.breadcrumbs { font-size: var(--step--1); color: var(--muted); padding-block: 1rem 0; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0; }
.breadcrumbs li { display: flex; align-items: center; gap: 0.4rem; }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: var(--line); }
.breadcrumbs a:hover { color: var(--brand); }
.breadcrumbs [aria-current="page"] { color: var(--ink-soft); font-weight: 600; }

/* ----------------------------------------------------------------------------
   18. Sticky mobile CTA
   ---------------------------------------------------------------------------- */
.sticky-cta { position: fixed; inset-inline: 0; bottom: 0; z-index: 60; display: flex; gap: 0.6rem; padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom)); background: color-mix(in srgb, var(--surface) 92%, transparent); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-top: 1px solid var(--line); box-shadow: 0 -6px 20px -10px rgba(29,35,39,0.2); transform: translateY(110%); transition: transform 0.3s var(--ease); }
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { flex: 1; padding-block: 0.7rem; box-shadow: none; white-space: normal; line-height: 1.15; font-size: var(--step--1); }
.sticky-cta .btn--call { flex: 0 0 auto; padding-inline: 1rem; }
@media (min-width: 960px) { .sticky-cta { display: none; } }
body.has-sticky-cta { padding-bottom: 76px; }
@media (min-width: 960px) { body.has-sticky-cta { padding-bottom: 0; } }

/* ----------------------------------------------------------------------------
   19. Utilities & misc
   ---------------------------------------------------------------------------- */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 1rem; top: -60px; z-index: 200; background: var(--brand); color: #fff; padding: 0.65rem 1rem; border-radius: 0 0 10px 10px; transition: top 0.2s; }
.skip-link:focus { top: 0; }
.divider { height: 1px; background: var(--line); border: 0; margin-block: var(--space-lg); }
.tag { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.3rem 0.7rem; border-radius: var(--radius-pill); background: var(--brand-tint); color: var(--brand-strong); font-size: var(--step--1); font-weight: 600; }
.tag svg { width: 0.95em; height: 0.95em; }
.bullet-list { list-style: none; padding: 0; display: grid; gap: 0.65rem; }
.bullet-list li { display: flex; gap: 0.6rem; align-items: flex-start; }
.bullet-list svg { flex: none; width: 1.25em; height: 1.25em; color: var(--brand); margin-top: 0.2em; }
.note-box { background: var(--surface-3); border: 1px dashed var(--forest-300); border-radius: var(--radius); padding: 1rem 1.25rem; font-size: var(--step--1); color: var(--ink-soft); }

/* Live Zillow-to-Haven investment listings embed */
.invest-markets {
  margin-top: var(--space-xl);
}
.invest-market-grid {
  margin-top: var(--space-md);
}
.invest-market-card .area-card__body {
  padding-top: 1.2rem;
}
.live-listings {
  position: relative;
  margin-top: var(--space-xl);
  width: min(100%, 1220px);
  margin-inline: auto;
  padding: clamp(1rem, 2.5vw, 1.4rem);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: clamp(24px, 4vw, 36px);
  background:
    radial-gradient(circle at 12% 0%, rgba(214, 56, 56, 0.16), transparent 34%),
    radial-gradient(circle at 92% 16%, rgba(201, 155, 74, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(249, 246, 239, 0.84));
  box-shadow: 0 30px 80px -48px rgba(29, 35, 39, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
  isolation: isolate;
}
.live-listings::before {
  content: "";
  position: absolute;
  inset: auto -8% -28% 48%;
  height: 260px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(214, 56, 56, 0.12), rgba(201, 155, 74, 0.18));
  filter: blur(40px);
  z-index: -1;
}
.live-listings__hero {
  display: grid;
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: stretch;
  padding: clamp(0.35rem, 1vw, 0.75rem) clamp(0.35rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
}
@media (min-width: 900px) {
  .live-listings__hero { grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr); }
}
.live-listings__copy h3 {
  max-width: 780px;
  margin: 0.25rem 0 0.55rem;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--brand-deep);
}
.live-listings__copy p {
  max-width: 74ch;
  color: var(--text-muted);
  margin: 0;
  font-size: var(--step-0);
}
.live-listings__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}
.live-listings__steps {
  display: grid;
  gap: 0.75rem;
  align-content: center;
}
.live-listings__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 32px -26px rgba(29, 35, 39, 0.55);
}
.live-listings__step-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--brand);
  background: var(--brand-tint);
}
.live-listings__step strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.15;
}
.live-listings__step span:not(.live-listings__step-icon) {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-muted);
  font-size: var(--step--1);
  line-height: 1.45;
}
.live-listings__browser {
  overflow: hidden;
  border: 1px solid rgba(29,35,39,0.12);
  border-radius: clamp(18px, 3vw, 28px);
  background: #fff;
  box-shadow: 0 22px 60px -36px rgba(29, 35, 39, 0.55);
}
.live-listings__toolbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.72rem clamp(0.75rem, 2vw, 1rem);
  border-bottom: 1px solid rgba(29,35,39,0.08);
  background: linear-gradient(180deg, #fbfaf7, #f2eee6);
}
.live-listings__window-dots {
  display: flex;
  gap: 0.38rem;
}
.live-listings__window-dots span {
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 999px;
  background: #d8d0c4;
}
.live-listings__window-dots span:nth-child(1) { background: #ff6b5f; }
.live-listings__window-dots span:nth-child(2) { background: #f3bc4f; }
.live-listings__window-dots span:nth-child(3) { background: #54c27a; }
.live-listings__url {
  min-width: 0;
  padding: 0.48rem 0.8rem;
  border: 1px solid rgba(29,35,39,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  color: var(--ink-soft);
  font-size: var(--step--1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.live-listings__toolbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--brand);
  font-size: var(--step--1);
  font-weight: 800;
  white-space: nowrap;
}
.live-listings__mobile-note {
  display: none;
  gap: 0.6rem;
  align-items: center;
  padding: 0.8rem 0.95rem;
  border-bottom: 1px solid rgba(29,35,39,0.08);
  background: var(--gold-50);
  color: var(--brand-deep);
  font-size: var(--step--1);
  font-weight: 650;
}
.live-listings__mobile-note svg { color: var(--brand); flex: none; }
.live-listings__mobile-note span { flex: 1; }
.live-listings__mobile-note a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.live-listings__frame-wrap {
  position: relative;
  height: var(--live-listings-frame-height, clamp(640px, 82svh, 1120px));
  max-height: calc(100svh - 5.5rem);
  background: #fff;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.live-listings__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.live-listings__frame.is-loaded { opacity: 1; }
.live-listings__loader {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: clamp(1.25rem, 3vw, 2rem);
  pointer-events: none;
  background: #fff;
  transition: opacity 0.2s var(--ease), visibility 0.2s var(--ease);
}
.live-listings__loader span {
  display: block;
  border-radius: 18px;
  background: linear-gradient(90deg, #f4f1ed 0%, #ffffff 42%, #f4f1ed 82%);
  background-size: 220% 100%;
  animation: listings-loading 1.15s ease-in-out infinite;
}
.live-listings__loader span:nth-child(1) { height: 112px; }
.live-listings__loader span:nth-child(2) { height: 220px; }
.live-listings__loader span:nth-child(3) { height: 220px; width: 68%; }
.live-listings__frame.is-loaded + .live-listings__loader,
.live-listings__frame-wrap.is-loaded .live-listings__loader { opacity: 0; visibility: hidden; }
@keyframes listings-loading {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}
@media (max-width: 719px) {
  .live-listings {
    width: calc(100% + 1rem);
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    padding: 0.7rem;
    border-radius: 22px;
  }
  .live-listings__actions .btn { width: 100%; }
  .live-listings__toolbar { grid-template-columns: auto 1fr; }
  .live-listings__toolbar-link { display: none; }
  .live-listings__mobile-note { display: flex; }
  .live-listings__frame-wrap {
    height: var(--live-listings-frame-height, clamp(560px, 78svh, 820px));
    max-height: calc(100svh - 4.75rem);
  }
  .live-listings__frame {
    min-width: 0;
  }
}

[reveal] { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [reveal] { opacity: 1; transform: none; } }

/* ----------------------------------------------------------------------------
   21. Homepage — photo-rich refresh (design inspiration)
   ---------------------------------------------------------------------------- */
/* Light hero variant (homepage only) */
.hero--light {
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(255,252,246,0.97) 0%, rgba(255,252,246,0.92) 38%, rgba(255,252,246,0.72) 58%, rgba(255,252,246,0.42) 100%),
    linear-gradient(180deg, rgba(255,252,246,0.55) 0%, rgba(255,252,246,0.25) 55%, rgba(255,252,246,0.08) 100%),
    radial-gradient(70% 80% at 78% 18%, rgba(255,86,78,0.12), transparent 64%),
    var(--home-hero-bg),
    var(--surface-3);
  background-size: cover;
  background-position: center 38%;
}
.hero--light::after { display: none; }
.hero--light h1 { color: var(--brand-deep); }
.hero--light .hero__eyebrow { color: var(--brand); }
.hero--light .hero__sub { color: var(--ink-soft); }
.hero--light .hero__inner { padding-bottom: clamp(1.25rem, 3vw, 2rem); }
.hero__reviews {
  margin-top: 0.25rem;
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
  width: 100%;
}
.hero__reviews .review-marquee { margin-top: 0; }
.accent-text { color: var(--accent); }

/* Generic cover-photo box. background-image (photo + gradient fallback) is set
   inline so a missing asset degrades to a brand gradient, never a broken icon. */
.ph { background-size: cover; background-position: center; background-repeat: no-repeat; border-radius: var(--radius-lg); }

/* Hero photo + floating stat card */
.home-hero-photo { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background-size: cover; background-position: center; background-repeat: no-repeat; }
.home-hero-stat { position: absolute; left: 1rem; bottom: 1.25rem; background: var(--surface); border-radius: var(--radius); padding: 0.85rem 1.15rem; box-shadow: var(--shadow-lg); display: grid; gap: 1px; }
.home-hero-stat b { font-family: var(--font-display); font-size: var(--step-1); color: var(--brand); line-height: 1; }
.home-hero-stat span { font-size: var(--step--1); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.home-hero-stat small { font-size: 0.72rem; color: var(--muted-soft); }

/* Rating row under the hero copy */
.rating-row { display: flex; align-items: center; gap: 0.55rem 1.25rem; margin-top: 1.75rem; flex-wrap: wrap; }
.rating-row .stars { color: var(--accent); letter-spacing: 0.1em; }
.rating-row b { color: var(--brand-deep); font-size: var(--step--1); }
.rating-row .sep { width: 1px; height: 1.2rem; background: var(--line); }

/* ---- Home: Google review marquee (infinite scroll) ---- */
.review-marquee {
  position: relative;
  margin-top: 1.35rem;
  width: 100%;
  max-width: 100%;
}
.review-marquee__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.review-marquee__track {
  display: flex;
  gap: 0.85rem;
  width: max-content;
  padding: 0.15rem 0 0.35rem;
  animation: review-marquee-scroll 120s linear infinite;
  will-change: transform;
}
.review-marquee:hover .review-marquee__track,
.review-marquee:focus-within .review-marquee__track {
  animation-play-state: paused;
}
@keyframes review-marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .review-marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    max-height: 12rem;
    overflow-y: auto;
  }
}
.review-marquee__card {
  flex: 0 0 auto;
  width: min(18.5rem, 78vw);
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(29, 35, 39, 0.06);
}
.review-marquee__stars {
  color: var(--accent);
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  margin-bottom: 0.35rem;
}
.review-marquee__text {
  margin: 0;
  font-size: var(--step--1);
  line-height: 1.45;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-marquee__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  align-items: baseline;
  margin-top: 0.55rem;
  font-size: 0.78rem;
}
.review-marquee__foot b { color: var(--brand-deep); font-weight: 600; }
.review-marquee__foot span { color: var(--muted-soft); }

/* Channel / distribution strip */
.channel-band { background: var(--surface); border-block: 1px solid var(--line); }
.channel-strip { display: flex; align-items: center; justify-content: center; gap: clamp(1.25rem, 4vw, 3.5rem); flex-wrap: wrap; padding-block: 1.4rem; }
.channel-strip .label { font-size: var(--step--1); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-soft); }
.channel-strip .ch { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: 0.02em; color: var(--forest-300); }

/* "Haven difference" image collage */
.collage { position: relative; padding: 0 1.25rem 1.5rem 0; }
.collage__main { width: 100%; box-shadow: var(--shadow-lg); }
.collage__sub { position: absolute; right: 0; bottom: 0; width: 46%; border: 6px solid var(--bg-alt); border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* Local proof chip */
.local-proof { display: inline-flex; align-items: center; gap: 0.55rem; margin-top: 1.75rem; padding: 0.7rem 0.95rem; border-radius: var(--radius-pill); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-xs); color: var(--brand-deep); }
.local-proof span { display: grid; place-items: center; color: var(--brand); }
.local-proof b { font-size: var(--step--1); letter-spacing: 0.04em; text-transform: uppercase; }

/* Soft card variant (the problem) */
.card--soft { background: var(--surface-3); border-color: transparent; box-shadow: none; }
.card--soft .card__icon { background: #fff; color: var(--accent); box-shadow: var(--shadow-sm); }

/* How it works — photo steps */
.how-section { position: relative; overflow: hidden; isolation: isolate; }
.how-section::before { content: ""; position: absolute; inset: 0; z-index: -2; background-image: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.94)), var(--how-bg); background-size: cover; background-position: center; }
.how-section::after { content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 42%; z-index: -1; background: linear-gradient(180deg, transparent, var(--surface-3)); }
.how-grid { display: grid; gap: clamp(1.25rem, 2.5vw, 1.75rem); grid-template-columns: 1fr; max-width: 1120px; margin-inline: auto; align-items: start; }
@media (min-width: 560px) { .how-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .how-grid { grid-template-columns: repeat(4, 1fr); } }
.how-step { max-width: 270px; margin-inline: auto; width: 100%; }
.how-step__media { position: relative; }
.how-step__photo { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.how-step__num { position: absolute; top: 0.85rem; left: 0.85rem; width: 2.25rem; height: 2.25rem; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--font-display); font-weight: 700; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.how-step h3 { font-size: var(--step-0); font-family: var(--font-display); letter-spacing: 0.05em; margin-top: 1rem; }
.how-step p { color: var(--text-muted); font-size: var(--step--1); margin-top: 0.4rem; }

/* By the numbers (dark) */
.numbers { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 3rem); text-align: center; }
@media (min-width: 760px) { .numbers { grid-template-columns: repeat(4, 1fr); } }
.numbers b { display: block; font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--gold-400); line-height: 1; }
.numbers > div:first-child b { font-size: clamp(1.9rem, 4vw, 3rem); }
.numbers span { display: block; margin-top: 0.6rem; font-size: var(--step--1); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--forest-100); }

/* Photo market cards (square top corners under the rounded card) */
.area-card__art.ph { border-radius: 0; }

/* Photo avatar in testimonials */
.quote__avatar.has-img { background-size: cover; background-position: center; color: transparent; }

/* About section */
.about-section { background: linear-gradient(180deg, var(--surface), var(--surface-2)); }
.about-snapshot { gap: clamp(2rem, 5vw, 4rem); }
.about-principles { display: grid; gap: 0.9rem; margin-top: var(--space-md); }
.about-principles > div {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow-sm);
}
.about-principles b { display: block; color: var(--brand-deep); font-family: var(--font-display); letter-spacing: 0.04em; text-transform: uppercase; }
.about-principles span { display: block; color: var(--text-muted); margin-top: 0.25rem; }
.about-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; align-items: stretch; }
.about-collage--single { grid-template-columns: 1fr; }
.about-collage--pair { grid-template-columns: 1fr; gap: clamp(1rem, 2vw, 1.5rem); }
.about-collage__wide { grid-column: 1 / -1; box-shadow: var(--shadow-lg); }
.about-collage__photo { box-shadow: var(--shadow-lg); min-height: clamp(260px, 24vw, 380px); }
.about-collage__family { background-position: center; }
.about-collage__card { box-shadow: var(--shadow-md); min-height: 210px; }

/* Photo-background contact CTA */
.photo-cta { position: relative; overflow: hidden; background: var(--brand-deep); color: var(--forest-100); isolation: isolate; }
.photo-cta__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; opacity: 0.3; }
.photo-cta__veil { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(29,35,39,0.95) 0%, rgba(29,35,39,0.72) 55%, rgba(29,35,39,0.5) 100%); }
.photo-cta h2 { color: #fff; }
.photo-cta .eyebrow { color: var(--gold-400); }
.photo-cta .lede { color: var(--forest-100); }

/* ----------------------------------------------------------------------------
   22. Blog index + article (imported posts)
   ---------------------------------------------------------------------------- */
/* Blog index cards (built on .area-card) */
.blog-grid { align-items: start; }
.blog-card .area-card__body { padding: 1.35rem 1.25rem 1.4rem; }
.blog-card__art--plain { display: grid; place-items: center; background: linear-gradient(150deg, var(--forest-800), var(--brand-deep)); color: var(--gold-400); }
.blog-card__meta { display: block; font-size: var(--step--1); color: var(--muted); margin-bottom: 0.35rem; }
.blog-card__cat { color: var(--brand-strong); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.blog-card h3 { font-size: var(--step-1); margin-bottom: 0.45rem; }
.blog-card p { color: var(--text-muted); font-size: var(--step--1); margin-bottom: 0.85rem; }

/* Post header */
.post-head { padding-block: clamp(1.5rem, 4vw, 2.75rem) 0; }
.post-head__inner { max-width: var(--container-narrow); }
.post-head h1 { margin-top: 0.5rem; font-size: var(--step-4); }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-top: 1rem; color: var(--muted); font-size: var(--step--1); font-weight: 600; }
.post-meta .dot { color: var(--line); }
.post-hero-img { max-width: 960px; margin: clamp(1.5rem, 4vw, 2.5rem) auto 0; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background-size: cover; background-position: center; }

/* Long-form article body */
.article { max-width: var(--container-narrow); margin: clamp(1.75rem, 4vw, 2.75rem) auto clamp(2.5rem, 6vw, 4rem); font-size: var(--step-1); line-height: 1.75; color: var(--ink); }
.article > * + * { margin-top: 1.15em; }
.article p { text-wrap: pretty; }
.article h2 { font-size: var(--step-2); margin-top: 2em; margin-bottom: 0.1em; }
.article h3 { font-size: var(--step-1); letter-spacing: 0.04em; margin-top: 1.6em; margin-bottom: 0.1em; }
.article h2 + p, .article h3 + p { margin-top: 0.4em; }
.article a { color: var(--brand-strong); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.article a:hover { color: var(--accent); }
.article strong, .article b { font-weight: 700; color: var(--brand-deep); }
.article ul, .article ol { padding-left: 1.4em; }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }
.article li + li { margin-top: 0.4em; }
.article li::marker { color: var(--accent); }
.article img { border-radius: var(--radius); margin-block: 1.5em; box-shadow: var(--shadow-sm); }
.article blockquote { margin: 1.5em 0; padding: 0.5em 0 0.5em 1.25em; border-left: 3px solid var(--accent); color: var(--ink-soft); font-style: italic; }
.article hr { border: 0; border-top: 1px solid var(--line); margin-block: 2em; }

/* ----------------------------------------------------------------------------
   20. Small-screen overflow hardening (real phones run 360-390px)
   ---------------------------------------------------------------------------- */
h1, h2, h3, h4 { overflow-wrap: anywhere; }
.eyebrow { flex-wrap: wrap; }
.hero__inner > *, .snapshot > *, .footer-grid > *, .cta-row { min-width: 0; }
@media (max-width: 560px) {
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; white-space: normal; }
  .hero__trust { gap: 0.85rem 1.25rem; }
}

/* ----------------------------------------------------------------------------
   23. Liquid glass design system + real logo
   ---------------------------------------------------------------------------- */
:root {
  --glass-surface:       rgba(255, 255, 255, 0.55);
  --glass-surface-strong:rgba(255, 255, 255, 0.78);
  --glass-surface-dark:  rgba(20, 24, 26, 0.42);
  --glass-border:        rgba(255, 255, 255, 0.6);
  --glass-border-dark:   rgba(255, 255, 255, 0.16);
  --glass-blur:          18px;
  --glass-shadow:        0 16px 50px -16px rgba(29, 35, 39, 0.38);
  --glass-hi:            inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* Real logo */
.brand__logo { height: 50px; width: 50px; object-fit: contain; display: block; }
.brand--on-dark .brand__logo { filter: brightness(0) invert(1); }
.footer-brand .brand { background: transparent; box-shadow: none; min-width: 58px; height: 58px; }
.footer-brand .brand__logo { height: 54px; width: 54px; }

/* Frosted-glass utility */
.glass {
  position: relative;
  background: var(--glass-surface);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(170%);
  backdrop-filter: blur(var(--glass-blur)) saturate(170%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-hi);
  border-radius: var(--radius-lg);
}
.glass--dark { background: var(--glass-surface-dark); border-color: var(--glass-border-dark); color: #fff; }
/* specular sheen sweep */
.glass::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 1;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 42%);
  opacity: 0.75;
}
.glass > * { position: relative; z-index: 2; }
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .glass { background: var(--glass-surface-strong); }
  .glass--dark { background: rgba(20,24,26,0.9); }
}

/* Header -> crisp glass bar */
.site-header {
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(16px) saturate(175%);
  backdrop-filter: blur(16px) saturate(175%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 -1px 0 rgba(29,35,39,0.06);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.8);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -16px rgba(29,35,39,0.3);
}

/* Hero floating stat + badges -> frosted glass */
.home-hero-stat, .hero__badge {
  background: var(--glass-surface-strong);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--glass-shadow), var(--glass-hi);
}

/* Liquid blobs behind the light hero for depth */
.hero--light { position: relative; isolation: isolate; }
.hero--light::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(38% 50% at 12% 18%, rgba(255, 86, 78, 0.16), transparent 70%),
    radial-gradient(40% 55% at 92% 88%, rgba(120, 150, 130, 0.18), transparent 72%),
    radial-gradient(50% 60% at 78% 8%, rgba(255, 180, 140, 0.14), transparent 70%);
}

/* Rating row chips */
.rating-row { gap: 0.5rem 0.85rem; }
.rating-row .stars, .rating-row b {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--glass-surface-strong);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-xs);
  padding: 0.4rem 0.8rem; border-radius: var(--radius-pill);
}
.rating-row .sep { display: none; }

/* "By the numbers" -> glass-dark tiles */
.numbers { gap: clamp(0.9rem, 2vw, 1.5rem); }
.numbers > div {
  position: relative;
  background: rgba(255,255,255,0.06);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem) 1rem;
}

/* Problem cards -> subtle frost */
.card--soft {
  background: rgba(255,255,255,0.5);
  -webkit-backdrop-filter: blur(10px) saturate(150%); backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.7);
}
.card--soft .card__icon { background: var(--glass-surface-strong); }

/* FAQ -> glass cards */
.faq { display: grid; gap: 0.75rem; }
.faq__item {
  background: var(--glass-surface-strong);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  padding: 0 1.25rem;
}
.faq__q { padding: 1.1rem 0; }

/* Sticky CTA -> glass */
.sticky-cta {
  background: rgba(255,255,255,0.72);
  -webkit-backdrop-filter: blur(16px) saturate(170%); backdrop-filter: blur(16px) saturate(170%);
  border-top: 1px solid rgba(255,255,255,0.6);
}

/* Ghost-on-dark buttons get a glassy fill */
.btn--ghost-on-dark {
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.08);
}
.btn--ghost-on-dark:hover { background: rgba(255,255,255,0.18); }

@media (prefers-reduced-motion: reduce) { .glass::after { opacity: 0.5; } }

/* ----------------------------------------------------------------------------
   24. Photo gallery + hero/photo fill helpers
   ---------------------------------------------------------------------------- */
.gallery { display: grid; gap: 0.85rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery .ph { border-radius: var(--radius); box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,0.5); }
.gallery__img--0 { box-shadow: var(--shadow-lg); }

/* Make a coverPhoto fill the hero media frame edge-to-edge */
.hero__media .ph { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; border-radius: 0; }

/* Market-card photos fill their card art slot */
.area-card__art.ph { position: relative; }

/* ----------------------------------------------------------------------------
   25. Crisp polish: button gloss, glassy CTA band, card sheen
   ---------------------------------------------------------------------------- */
/* Glossy primary buttons */
.btn--accent {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0) 48%);
  box-shadow: 0 10px 24px -10px rgba(255,86,78,0.65), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn--accent:hover { box-shadow: 0 14px 30px -10px rgba(214,56,56,0.7), inset 0 1px 0 rgba(255,255,255,0.5); }

/* CTA band gets a glass-edge highlight + softer specular */
.cta-band { border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.12); }
.cta-band::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0) 40%);
}

/* Crisper card hover: subtle highlight ring + lift */
.area-card, .card { transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s; }
.area-card:hover, .card:hover { box-shadow: var(--shadow-lg); border-color: rgba(255,255,255,0.7); }
.area-card { overflow: hidden; }
.area-card .ph { transition: transform 0.4s var(--ease); }
.area-card:hover .ph { transform: scale(1.04); }

/* Glassy snapshot table on market pages */
.data-table {
  background: var(--glass-surface-strong);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.7);
}

/* ----------------------------------------------------------------------------
   26. Mobile overflow hardening (hero CTA was forcing page width > viewport)
   ---------------------------------------------------------------------------- */
@media (max-width: 880px) {
  .hero__cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__cta .btn { width: 100%; white-space: normal; }
}
/* Belt-and-suspenders: never let a button force horizontal scroll */
.btn { white-space: normal; }
@media (min-width: 561px) { .nav a, .header-phone { white-space: nowrap; } }
.cta-row { max-width: 100%; }
.rating-row, .channel-strip { max-width: 100%; }
/* Keep the compact header CTA on one line (global wrap is for hero/large CTAs) */
.header-actions .btn { white-space: nowrap; }

/* ----------------------------------------------------------------------------
   27. Premium footer polish (CSS-only, no markup change)
   ---------------------------------------------------------------------------- */
.site-footer { position: relative; isolation: isolate; }
.site-footer::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; z-index: 1;
  background: linear-gradient(90deg, transparent, var(--accent) 30%, var(--gold-400) 50%, var(--accent) 70%, transparent);
  opacity: 0.9;
}
.site-footer::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(60% 80% at 88% -10%, rgba(255,86,78,0.16), transparent 60%);
}
.footer-col a { display: inline-block; transition: color 0.16s var(--ease), transform 0.16s var(--ease); }
.footer-col a:hover { color: var(--gold-400); transform: translateX(3px); }
.footer-bottom a {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1.1rem; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.22); color: #fff; font-weight: 700;
  transition: background 0.18s, border-color 0.18s;
}
.footer-bottom a:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.footer-social a { transition: background 0.18s, transform 0.18s var(--ease); }
.footer-social a:hover { transform: translateY(-2px); }

/* ----------------------------------------------------------------------------
   28. Comparison table (homepage conversion element)
   ---------------------------------------------------------------------------- */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); }
.compare { width: 100%; min-width: 560px; border-collapse: separate; border-spacing: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.compare th, .compare td { padding: 1rem 1.15rem; text-align: center; border-bottom: 1px solid var(--line-soft); }
.compare thead th { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; font-size: var(--step--1); color: var(--muted); background: var(--surface-3); }
.compare tbody th[scope="row"] { text-align: left; font-family: var(--font-body); font-weight: 600; color: var(--brand-deep); width: 38%; }
.compare td { color: var(--ink-soft); font-weight: 600; font-size: var(--step--1); }
.compare td.yes { color: var(--brand); }
.compare td.no svg { color: var(--muted-soft); }
.compare td svg, .compare .compare__haven svg { display: inline-block; vertical-align: middle; }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }
/* Highlighted Haven column */
.compare__haven { position: relative; background: var(--gold-50); color: var(--brand-strong) !important; }
.compare thead th.compare__haven { background: var(--brand); color: #fff; }
.compare td.compare__haven { font-weight: 800; }
.compare td.compare__haven svg { color: var(--brand); }

/* ----------------------------------------------------------------------------
   29. Service grid -> frosted glass tiles (home, hub, every market page)
   ---------------------------------------------------------------------------- */
.service {
  display: flex; gap: 0.9rem; align-items: flex-start;
  padding: 1.2rem 1.25rem;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(10px) saturate(150%); backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s;
}
.service:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(255, 255, 255, 0.9); }
.service__icon { transition: transform 0.25s var(--ease); box-shadow: var(--shadow-xs); }
.service:hover .service__icon { transform: scale(1.08) rotate(-3deg); }

/* ----------------------------------------------------------------------------
   30. Tone down "liquid glass" -> realistic, high-quality service-business UI
   (per feedback: buttons read too glossy/fake). Keep tasteful frosted cards,
   drop the shiny specular and button gloss.
   ---------------------------------------------------------------------------- */
/* Clean, solid primary buttons (no glossy sheen) */
.btn--accent {
  background-image: none;
  box-shadow: 0 6px 16px -8px rgba(214, 56, 56, 0.5);
}
.btn--accent:hover {
  background-image: none;
  box-shadow: 0 10px 22px -10px rgba(214, 56, 56, 0.55);
}
/* Ghost-on-dark: simple outline, just a hint of fill on hover (no heavy blur) */
.btn--ghost-on-dark { -webkit-backdrop-filter: none; backdrop-filter: none; background: transparent; }
.btn--ghost-on-dark:hover { background: rgba(255, 255, 255, 0.1); }

/* Softer, realistic frosted glass: cut the shiny diagonal specular way down */
.glass::after { opacity: 0.3; background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0) 52%); }
.cta-band::after { background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0) 45%); }

/* Frosted surfaces: trim the bright inner highlight so they read as glass, not plastic */
.home-hero-stat, .hero__badge {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-lg);
}
.site-header.is-scrolled { box-shadow: 0 6px 22px -16px rgba(29,35,39,0.25); }

/* ----------------------------------------------------------------------------
   31. Video testimonials (YouTube click-to-load facade)
   ---------------------------------------------------------------------------- */
.video-grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); grid-template-columns: 1fr; }
@media (min-width: 720px) { .video-grid { grid-template-columns: 1fr 1fr; } }
.video-card { margin: 0; }
.video-card figcaption { margin-top: 0.75rem; color: var(--text-muted); font-size: var(--step--1); text-align: center; }

.yt {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden;
  background-size: cover; background-position: center; cursor: pointer;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.5);
  display: block; width: 100%;
}
.yt::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(29,35,39,0.05), rgba(29,35,39,0.45));
  transition: background 0.2s var(--ease);
}
.yt:hover::after { background: linear-gradient(180deg, rgba(29,35,39,0.05), rgba(29,35,39,0.3)); }
.yt__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2;
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px -8px rgba(214,56,56,0.65);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.yt:hover .yt__play { transform: translate(-50%, -50%) scale(1.08); background: var(--brand-strong); }
.yt__play svg { margin-left: 3px; }
.yt__label {
  position: absolute; left: 1rem; bottom: 0.9rem; right: 1rem; z-index: 2;
  color: #fff; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; font-size: var(--step-0); text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.yt:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt--loaded::after, .yt--loaded .yt__play, .yt--loaded .yt__label { display: none; }
