:root {
  --navy:        #0B1E3A;
  --navy-2:      #112846;
  --navy-3:      #1A3561;
  --gold:        #C9A96E;
  --gold-light:  #E0C48A;
  --gold-dark:   #A88948;
  --cream:       #F6F3EC;
  --cream-2:     #ECE6D7;
  --ink:         #0A1526;
  --body:        #334155;
  --muted:       #6B7487;
  --line:        rgba(11,30,58,0.10);
  --ok:          #16A34A;
  --bad:         #DC2626;
  --shadow-sm:   0 1px 2px rgba(10,21,38,0.08);
  --shadow-md:   0 10px 30px -10px rgba(10,21,38,0.25);
  --shadow-lg:   0 30px 60px -20px rgba(10,21,38,0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; max-width: 100%; }
body {
  background: var(--cream);
  color: var(--body);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; color: var(--ink); line-height: 1.15; letter-spacing: -0.01em; }

::selection { background: var(--gold); color: var(--navy); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 5px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 2.5rem;
  padding-top: max(1rem, env(safe-area-inset-top));
  background: rgba(246,243,236,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s, background 0.3s;
}
nav.scrolled { padding: 0.6rem 2.5rem; background: rgba(246,243,236,0.96); box-shadow: 0 2px 20px rgba(10,21,38,0.08); }
.nav-progress {
  position: absolute; bottom: -1px; left: 0; height: 2px;
  width: calc(var(--scroll-percent, 0) * 1%);
  background: linear-gradient(to right, var(--gold-light), var(--gold) 50%, var(--gold-dark));
  transition: width 0.08s linear;
  pointer-events: none;
}
.nav-logo { display: flex; align-items: baseline; gap: 0.5rem; }
.nav-logo .mark { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.4rem; color: var(--navy); letter-spacing: -0.01em; }
.nav-logo .mark em { font-style: italic; color: var(--gold-dark); font-weight: 600; }
.nav-logo .sub { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); opacity: 0.75; font-weight: 500; transition: opacity 0.3s, color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover { opacity: 1; color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--navy); color: var(--cream);
  padding: 0.65rem 1.2rem; border-radius: 999px; font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.02em;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover { background: var(--navy-3); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: 0; color: var(--navy); font-size: 1.5rem; cursor: pointer; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 9rem 0 5rem;
  color: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: -4% -4%;
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2000&q=80');
  background-size: cover; background-position: center;
  z-index: 0;
  animation: kenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(11,30,58,0.92) 0%, rgba(11,30,58,0.78) 55%, rgba(11,30,58,0.65) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0'/></filter><rect width='160' height='160' filter='url(%23n)' opacity='0.6'/></svg>");
  background-blend-mode: normal, overlay;
  z-index: 1;
}
@keyframes kenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600; margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 700; color: var(--cream); margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic; font-weight: 500;
  background: linear-gradient(135deg, #F5E3B8 0%, var(--gold-light) 40%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  position: relative;
}
.headline-flourish {
  display: block; width: 180px; max-width: 60%; height: 14px;
  margin-top: -0.5rem; margin-bottom: 1.5rem;
  color: var(--gold);
  overflow: visible;
}
.headline-flourish path {
  fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round;
  stroke-dasharray: 280; stroke-dashoffset: 280;
  animation: flourishDraw 1.4s cubic-bezier(0.65, 0, 0.35, 1) 0.5s forwards;
}
@keyframes flourishDraw {
  to { stroke-dashoffset: 0; }
}
.hero .lede { font-size: 1.15rem; color: rgba(246,243,236,0.85); margin-bottom: 2rem; max-width: 30rem; }
.hero-bullets { list-style: none; display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; margin-bottom: 2.5rem; }
.hero-bullets li { display: flex; align-items: center; gap: 0.55rem; font-size: 0.95rem; color: var(--cream); font-weight: 500; }
.hero-bullets svg { color: var(--gold); flex-shrink: 0; }
.hero-phone { display: inline-flex; align-items: center; gap: 0.75rem; color: var(--gold-light); font-weight: 600; font-size: 1.05rem; }
.hero-phone strong { color: var(--cream); font-size: 1.6rem; font-family: 'Playfair Display', serif; letter-spacing: 0.01em; }

/* Hero form */
.lead-card {
  background: var(--cream); color: var(--ink);
  border-radius: 18px; padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,169,110,0.3);
}
.lead-card h3 { font-size: 1.6rem; margin-bottom: 0.35rem; color: var(--navy); }
.lead-card .sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.72rem; font-weight: 600; color: var(--navy); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.35rem; }
.field input {
  width: 100%; padding: 0.75rem 0.9rem;
  border: 1px solid var(--line); border-radius: 8px;
  font-family: inherit; font-size: 0.95rem; color: var(--ink);
  background: #fff; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.2); }
.consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.78rem; color: var(--body); margin-top: 0.25rem; }
.consent input { margin-top: 0.2rem; accent-color: var(--navy); }
.btn-primary {
  width: 100%; margin-top: 1rem;
  background: var(--navy); color: var(--cream);
  border: 0; padding: 1rem 1.5rem; border-radius: 10px;
  font-family: inherit; font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.btn-primary:hover { background: var(--navy-3); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }
.btn-gold {
  background: var(--gold); color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); }

/* ── Trust strip ── */
.trust-strip {
  background: var(--navy); color: var(--cream);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201,169,110,0.25);
  border-bottom: 1px solid rgba(201,169,110,0.25);
}
.trust-strip .container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; text-align: center; align-items: center; max-width: 700px; }
.trust-item { display: flex; flex-direction: column; gap: 0.3rem; padding: 0.25rem 0.5rem; border-right: 1px solid rgba(201,169,110,0.18); }
.trust-item:last-child { border-right: 0; }
.trust-item .num { font-family: 'Playfair Display', serif; font-size: 2.1rem; font-weight: 700; color: var(--gold-light); line-height: 1; font-variant-numeric: tabular-nums; }
.trust-item .lbl { font-size: 0.74rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.82; }
.trust-item .sub-lbl { font-size: 0.72rem; opacity: 0.6; font-style: italic; letter-spacing: 0.02em; text-transform: none; margin-top: 0.15rem; }

/* ── Section base ── */
section.block { padding: 6rem 0; }
.section-head { text-align: center; max-width: 42rem; margin: 0 auto 3.5rem; }
.eyebrow {
  display: inline-block; font-size: 0.75rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-dark); font-weight: 700;
  margin-bottom: 0.75rem;
}
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.75rem); font-weight: 700; margin-bottom: 0.9rem; }
.section-head h2 em { font-style: italic; color: var(--gold-dark); font-weight: 500; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; align-items: center; }
.about-img {
  aspect-ratio: 4/5; border-radius: 18px; overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1200&q=80');
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(201,169,110,0.4); border-radius: 18px;
  transform: translate(16px, 16px); pointer-events: none;
}
.about-text h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 1.25rem; }
.about-text h2 em { font-style: italic; color: var(--gold-dark); font-weight: 500; }
.about-text p { color: var(--body); margin-bottom: 1rem; font-size: 1.02rem; }
.about-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--cream-2); color: var(--navy);
  padding: 0.5rem 0.9rem; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600;
  border: 1px solid var(--line);
}
.badge svg { color: var(--gold-dark); }

/* ── How it works ── */
.how { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 42px; left: 12%;
  width: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold) 15%, var(--gold) 85%, transparent);
  z-index: 0;
  transition: width 1.4s cubic-bezier(0.65, 0, 0.35, 1) 0.3s;
}
.steps.in-view::before { width: 76%; }
.step {
  background: var(--cream); border-radius: 16px;
  padding: 2.25rem 1.75rem 2rem;
  text-align: center; position: relative; z-index: 1;
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 84px; height: 84px; margin: 0 auto 1.25rem;
  background: var(--navy); color: var(--gold-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700;
  box-shadow: 0 0 0 6px var(--cream), 0 0 0 7px var(--gold);
  position: relative;
  transition: transform 0.3s ease;
}
.step:hover .step-num { transform: scale(1.06) rotate(-3deg); }
.step-num::before {
  content: ''; position: absolute; inset: -14px;
  border-radius: 50%;
  border: 1px dashed var(--gold);
  opacity: 0.35;
  animation: stepRing 18s linear infinite;
}
@keyframes stepRing {
  to { transform: rotate(360deg); }
}
.step h3 { font-size: 1.3rem; margin-bottom: 0.6rem; color: var(--navy); }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ── Compare ── */
.compare-wrap { overflow-x: auto; margin: 0 -1.5rem; padding: 1rem 1.5rem 0; }
.compare-table {
  width: 100%; min-width: 720px;
  border-collapse: separate; border-spacing: 0;
  background: #fff; border-radius: 16px; overflow: visible;
  box-shadow: var(--shadow-md);
}
.compare-table thead tr th:first-child { border-top-left-radius: 16px; }
.compare-table thead tr th:last-child { border-top-right-radius: 16px; }
.compare-table tbody tr:last-child td:first-child { border-bottom-left-radius: 16px; }
.compare-table tbody tr:last-child td:last-child { border-bottom-right-radius: 16px; }
.compare-table th, .compare-table td {
  padding: 1.15rem 1.25rem; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.95rem;
}
.compare-table thead th {
  font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.05rem;
  background: var(--cream-2); color: var(--navy);
  letter-spacing: 0.01em;
}
.compare-table thead th.us {
  background: var(--navy); color: var(--gold-light);
  position: relative;
}
.compare-table thead th.us::before {
  content: 'Recommended'; position: absolute; top: -12px; right: 12px;
  background: var(--gold); color: var(--navy);
  font-family: 'Inter', sans-serif; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 0.65rem; border-radius: 999px;
}
.compare-table td:first-child { font-weight: 600; color: var(--navy); background: var(--cream-2); }
.compare-table td.us { background: rgba(201,169,110,0.08); }
.compare-table tr:last-child td { border-bottom: 0; }

/* Mobile drawer — hidden on desktop */
#mobile-drawer { display: none; }

/* Mobile compare grid — hidden on desktop */
.compare-mobile { display: none; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.compare-rec {
  background: var(--gold); color: var(--navy);
  font-family: 'Inter', sans-serif; font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.15rem 0.45rem; border-radius: 999px; vertical-align: middle;
}
.cmp-head-row, .cmp-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
}
.cmp-head-row { background: var(--cream-2); border-bottom: 2px solid var(--line); }
.cmp-h {
  padding: 0.55rem 0.4rem; font-size: 0.7rem; font-weight: 700;
  text-align: center; color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em;
}
.cmp-h.us { background: var(--navy); color: var(--gold-light); }
.cmp-row { border-bottom: 1px solid var(--line); }
.cmp-row:last-child { border-bottom: 0; }
.cmp-c {
  padding: 0.5rem 0.4rem; font-size: 0.75rem; font-weight: 600;
  text-align: center; display: flex; align-items: center; justify-content: center;
}
.cmp-c.us { background: rgba(11,30,58,0.04); }
.cmp-c.ok { color: var(--ok); }
.cmp-c.ok.us { background: rgba(201,169,110,0.1); color: #1a7a3c; }
.cmp-c.bad { color: var(--bad); font-size: 0.7rem; }

.mark-ok, .mark-bad { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; }
.mark-ok { color: var(--ok); }
.mark-bad { color: var(--bad); }

/* ── Areas ── */
.areas { background: var(--navy); color: var(--cream); }
.areas .section-head h2 { color: var(--cream); }
.areas .section-head h2 em { color: var(--gold-light); }
.areas .section-head p { color: rgba(246,243,236,0.75); }
.areas-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: stretch;
  max-width: 1100px; margin: 0 auto;
}
.areas-map {
  border-radius: 14px; overflow: hidden; min-height: 400px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,169,110,0.25);
}
.areas-map iframe { display: block; width: 100%; height: 100%; min-height: 400px; border: 0; }
.area-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem; align-content: start;
}
.area-pill {
  background: rgba(246,243,236,0.05);
  border: 1px solid rgba(201,169,110,0.25);
  padding: 0.85rem 1.25rem; border-radius: 999px;
  text-align: center; font-size: 0.9rem; font-weight: 500;
  color: var(--cream); letter-spacing: 0.02em;
  transition: background 0.2s, border-color 0.2s;
}
.area-pill:hover { background: rgba(201,169,110,0.12); border-color: var(--gold); }
.area-pill.featured { background: var(--gold); color: var(--navy); border-color: var(--gold); font-weight: 700; }

/* ── Testimonials ── */
.reviews { background: #fff; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.review {
  background: var(--cream); border-radius: 16px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.review:hover { box-shadow: var(--shadow-md); }
.review-grid { perspective: 1200px; }
.review::before { content: none; }
.stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 0.75rem; font-size: 0.95rem; }
.review q { display: block; font-size: 1rem; color: var(--body); margin-bottom: 1.25rem; quotes: none; line-height: 1.7; }
.review-who strong { display: block; color: var(--navy); font-family: 'Playfair Display', serif; font-size: 1.05rem; }
.review-who span { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.05em; }

/* ── FAQ ── */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: 0.85rem; overflow: hidden; transition: box-shadow 0.2s;
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--gold); }
.faq-item summary {
  padding: 1.15rem 1.4rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-weight: 600; color: var(--navy); font-size: 1rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chevron {
  flex-shrink: 0; color: var(--gold-dark);
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.faq-item[open] summary .chevron { transform: rotate(180deg); color: var(--navy); }
.faq-item[open] summary { color: var(--gold-dark); }
.faq-item .faq-body {
  max-height: 0; overflow: hidden;
  padding: 0 1.4rem; color: var(--body); font-size: 0.97rem;
  transition: max-height 0.4s cubic-bezier(0.65, 0, 0.35, 1), padding 0.3s;
}
.faq-item[open] .faq-body {
  max-height: 600px;
  padding: 0 1.4rem 1.35rem;
}
.faq-body { padding: 0 1.4rem 1.35rem; color: var(--body); font-size: 0.97rem; }

/* ── Final CTA ── */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--cream); padding: 6rem 0;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 60%; height: 180%;
  background: radial-gradient(circle, rgba(201,169,110,0.18) 0%, transparent 60%);
  pointer-events: none;
  animation: driftGlow 22s ease-in-out infinite alternate;
}
.final-cta::after {
  content: ''; position: absolute; bottom: -50%; left: -15%;
  width: 55%; height: 150%;
  background: radial-gradient(circle, rgba(26,53,97,0.55) 0%, transparent 60%);
  pointer-events: none;
  animation: driftGlow 28s ease-in-out infinite alternate-reverse;
}
@keyframes driftGlow {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.8; }
  100% { transform: translate(-6%, 4%) scale(1.15); opacity: 1; }
}
.final-cta .container { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.final-cta h2 { color: var(--cream); font-size: clamp(2rem, 3.6vw, 3rem); margin-bottom: 1rem; }
.final-cta h2 em { color: var(--gold-light); font-style: italic; font-weight: 500; }
.final-cta p { color: rgba(246,243,236,0.85); font-size: 1.08rem; margin-bottom: 2rem; }
.final-phone {
  display: inline-flex; align-items: center; gap: 1rem;
  background: rgba(246,243,236,0.08); border: 1px solid rgba(201,169,110,0.3);
  padding: 1rem 1.5rem; border-radius: 12px;
}
.final-phone small { display: block; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.2rem; }
.final-phone strong { font-family: 'Playfair Display', serif; font-size: 1.85rem; color: var(--cream); }

/* ── Footer ── */
footer {
  background: var(--ink); color: rgba(246,243,236,0.7);
  padding: 4rem 0 2rem;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.foot-brand .mark { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--cream); font-weight: 700; display: block; margin-bottom: 0.35rem; }
.foot-brand .mark em { font-style: italic; color: var(--gold); font-weight: 600; }
.foot-brand p { font-size: 0.9rem; line-height: 1.75; max-width: 22rem; }
footer h4 { color: var(--cream); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.foot-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; font-size: 0.92rem; }
.foot-list a:hover { color: var(--gold-light); }
.foot-bottom {
  border-top: 1px solid rgba(246,243,236,0.1);
  padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem; color: rgba(246,243,236,0.55);
}
.socials { display: flex; gap: 0.75rem; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(246,243,236,0.06); border: 1px solid rgba(201,169,110,0.25);
  color: var(--cream); transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.socials a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-2px); }

/* ── Section link / teaser ── */
.section-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem; padding: 0.75rem 1.4rem;
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy); border-radius: 999px;
  font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.section-link:hover { background: var(--navy); color: var(--cream); transform: translateY(-1px); }
.section-link svg { transition: transform 0.2s; }
.section-link:hover svg { transform: translateX(3px); }
.teaser-center { text-align: center; margin-top: 2rem; }

/* ── Thank you state ── */
.lead-success {
  text-align: center; padding: 2rem 0;
}
.lead-success .check {
  width: 64px; height: 64px; margin: 0 auto 1rem;
  background: var(--gold); color: var(--navy);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 700;
}
.lead-success h3 { color: var(--navy); margin-bottom: 0.5rem; }
.lead-success p { color: var(--muted); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero .container,
  .about-grid,
  .final-cta .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .review-grid { grid-template-columns: 1fr; }

  .trust-strip .container { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .compare-wrap { padding-top: 16px; }
  .compare-table thead th.us { overflow: visible; }
  .compare-table thead th.us::before { top: -10px; right: 8px; font-size: 0.6rem; padding: 0.25rem 0.5rem; }
}
@media (max-width: 720px) {
  nav { padding: 0.85rem 1.25rem; }
  nav.scrolled { padding: 0.7rem 1.25rem; }
  .nav-logo .mark { font-size: 1.1rem; }
  .nav-links, .nav-cta { display: none !important; }
  .nav-toggle {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 5px; width: 40px; height: 40px;
    background: none; border: none; cursor: pointer; padding: 4px;
  }
  .nav-toggle .bar {
    display: block; width: 24px; height: 2px;
    background: var(--navy); border-radius: 2px;
    transition: all 0.25s ease;
  }
  nav.open .nav-toggle .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.open .nav-toggle .bar:nth-child(2) { opacity: 0; }
  nav.open .nav-toggle .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  #mobile-drawer {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    background: var(--navy);
    z-index: 9998;
    overflow-y: auto;
    padding: 0.5rem 0 3rem;
  }
  #mobile-drawer.open { display: flex; }
  #mobile-drawer .drawer-links {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column;
  }
  #mobile-drawer .drawer-links li a {
    display: block; padding: 1.15rem 2rem;
    color: rgba(246,243,236,0.9);
    font-size: 1rem; font-weight: 500;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  #mobile-drawer .drawer-links li:last-child a { border-bottom: none; }
  #mobile-drawer .drawer-cta {
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
    margin: 2rem 1.5rem 0;
    padding: 1rem; font-size: 1rem; font-weight: 700;
    background: var(--gold); color: var(--navy);
    border-radius: 12px; text-decoration: none;
  }
  body.nav-open { overflow: hidden; }
  .hero { padding: 7rem 0 3rem; min-height: auto; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); line-height: 1.1; }
  .hero .container { gap: 2rem; }
  section.block { padding: 4rem 0; }
  .form-grid { grid-template-columns: 1fr; }
  .lead-card { padding: 1.5rem; }
  .foot-grid { grid-template-columns: 1fr; }
  .final-phone strong { font-size: 1.4rem; }
  .trust-strip .container { grid-template-columns: 1fr; gap: 1rem; text-align: center; }
  .trust-strip .trust-item { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 1rem; }
  .trust-strip .trust-item:last-child { border-bottom: 0; padding-bottom: 0; }
  .areas-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .areas-map, .areas-map iframe { min-height: 260px; }
  .area-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .area-pill { font-size: 0.82rem; padding: 0.75rem 0.75rem; }
  .compare-wrap { overflow: visible; }
  .compare-table { display: none; }
  .compare-mobile { display: block; }
}
@media (max-width: 380px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.2em; }
  .nav-logo .mark { font-size: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ── Subpage hero ── */
.page-hero {
  position: relative; padding: 10rem 0 5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--cream); overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; top: -40%; right: -15%;
  width: 60%; height: 180%;
  background: radial-gradient(circle, rgba(201,169,110,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; text-align: center; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 {
  font-family: "Playfair Display", serif;
  color: var(--cream);
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  font-weight: 700; margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 500; }
.page-hero p {
  color: rgba(246,243,236,0.82);
  font-size: 1.1rem; max-width: 38rem; margin: 0 auto;
}
.page-body { padding: 5rem 0; background: #fff; }
.page-narrow { max-width: 780px; margin: 0 auto; }
.page-wide { max-width: 1000px; margin: 0 auto; }
.page-body h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin: 2.5rem 0 1rem; color: var(--navy); }
.page-body h2:first-child { margin-top: 0; }
.page-body p { margin-bottom: 1rem; color: var(--body); font-size: 1.02rem; }
.page-body ul { margin: 0 0 1.25rem 1.25rem; color: var(--body); }
.page-body ul li { margin-bottom: 0.4rem; }
.breadcrumbs { font-size: 0.8rem; color: rgba(246,243,236,0.7); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.breadcrumbs a { color: var(--gold-light); }
.breadcrumbs a:hover { color: var(--cream); }

/* ── Benefits grid (new home section) ── */
.benefits { background: var(--cream-2); }
.benefit-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  max-width: 1100px; margin: 0 auto;
}
.benefit {
  background: #fff; border-radius: 14px;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  opacity: 0; transform: translateY(24px);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.benefit.in { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease calc(var(--i) * 80ms), transform 0.6s ease calc(var(--i) * 80ms), box-shadow 0.3s, border-color 0.3s; }
.benefit:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.benefit-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.benefit-icon::after {
  content: ''; position: absolute; inset: -3px; border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s; z-index: -1;
}
.benefit:hover .benefit-icon::after { opacity: 0.5; }
.benefit h3 {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  color: var(--navy); font-weight: 600;
}
.benefit p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ── Traditional drawbacks (new home section) ── */
.drawbacks { background: #fff; }
.drawback-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  max-width: 860px; margin: 0 auto;
}
.drawback {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--cream); border-radius: 12px;
  border-left: 3px solid var(--bad);
  transition: transform 0.25s, box-shadow 0.25s;
}
.drawback:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.drawback-x {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(220,38,38,0.1); color: var(--bad);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.drawback h4 { font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.25rem; font-weight: 600; }
.drawback p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* ── Area pill shimmer sweep ── */
.area-pill { position: relative; overflow: hidden; }
.area-pill::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.4), transparent);
  transition: left 0s;
}
.area-grid.in .area-pill::before { animation: shimmerSweep 1.6s ease-in-out; animation-delay: calc(var(--i, 0) * 80ms); }
@keyframes shimmerSweep {
  0% { left: -100%; }
  100% { left: 160%; }
}

/* Noise overlay on dark sections for depth */
.areas, .final-cta {
  position: relative;
}
.areas > .container, .final-cta > .container { position: relative; z-index: 2; }
.areas::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0'/></filter><rect width='160' height='160' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* ── Animated checklist (how-it-works, sell-your-house) ── */
.checklist { list-style: none; margin: 0 0 1.75rem 0 !important; padding: 0; }
.checklist li {
  position: relative; padding-left: 2.1rem;
  margin-bottom: 0.7rem !important;
  color: var(--body); font-size: 1rem;
}
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 0.1rem;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(201,169,110,0.15);
  border: 1.5px solid var(--gold);
}
.checklist li::after {
  content: ''; position: absolute; left: 6px; top: 8px;
  width: 12px; height: 6px; border: 2px solid var(--gold-dark); border-right: 0; border-top: 0;
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}
.checklist.in li::after,
.checklist li.in::after { transform: rotate(-45deg) scale(1); }
.checklist.in li::after { transition-delay: calc(var(--i, 0) * 120ms); }
.checklist.bad li::before { background: rgba(220,38,38,0.08); border-color: rgba(220,38,38,0.45); }
.checklist.bad li::after {
  left: 7px; top: 6px; width: 10px; height: 10px;
  border: 0; background:
    linear-gradient(45deg, transparent 45%, var(--bad) 45%, var(--bad) 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, var(--bad) 45%, var(--bad) 55%, transparent 55%);
  transform: scale(0); border-radius: 2px;
}
.checklist.bad.in li::after,
.checklist.bad li.in::after { transform: scale(1); }

/* ── Compare table stagger ── */
.compare-table tbody tr {
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.compare-wrap.in .compare-table tbody tr {
  opacity: 1; transform: translateY(0);
}
.compare-wrap.in .compare-table tbody tr:nth-child(1) { transition-delay: 0.05s; }
.compare-wrap.in .compare-table tbody tr:nth-child(2) { transition-delay: 0.15s; }
.compare-wrap.in .compare-table tbody tr:nth-child(3) { transition-delay: 0.25s; }
.compare-wrap.in .compare-table tbody tr:nth-child(4) { transition-delay: 0.35s; }
.compare-wrap.in .compare-table tbody tr:nth-child(5) { transition-delay: 0.45s; }
.compare-wrap.in .compare-table tbody tr:nth-child(6) { transition-delay: 0.55s; }
.compare-wrap.in .compare-table tbody tr:nth-child(7) { transition-delay: 0.65s; }
.compare-wrap.in .compare-table tbody tr:nth-child(8) { transition-delay: 0.75s; }
.compare-wrap.in .compare-table tbody tr:nth-child(9) { transition-delay: 0.85s; }
.compare-table tbody tr { transition-property: opacity, transform, background-color; }
.compare-table tbody tr:hover { background: rgba(201,169,110,0.04); }

/* ── Floating mobile call CTA ── */
.floating-call {
  display: none;
  position: fixed; bottom: 1.25rem; right: 1.25rem;
  z-index: 900;
  background: var(--gold); color: var(--navy);
  padding: 0.9rem 1.25rem; border-radius: 999px;
  font-weight: 700; letter-spacing: 0.05em; font-size: 0.88rem;
  box-shadow: 0 10px 28px -8px rgba(201,169,110,0.7), 0 0 0 0 rgba(201,169,110,0.6);
  align-items: center; gap: 0.55rem;
  animation: callPulse 2.4s ease-in-out infinite;
}
.floating-call:hover { transform: translateY(-2px); background: var(--gold-light); }
.floating-call svg { animation: ringShake 2.4s ease-in-out infinite; }
@keyframes callPulse {
  0%, 100% { box-shadow: 0 10px 28px -8px rgba(201,169,110,0.7), 0 0 0 0 rgba(201,169,110,0.4); }
  50%      { box-shadow: 0 10px 28px -8px rgba(201,169,110,0.9), 0 0 0 16px rgba(201,169,110,0); }
}
@keyframes ringShake {
  0%, 8%, 100% { transform: rotate(0); }
  2%, 6% { transform: rotate(-12deg); }
  4%  { transform: rotate(12deg); }
}

/* ── Timeline (our-company) ── */
.timeline { position: relative; max-width: 720px; margin: 2rem auto 0; padding-left: 2.5rem; }
.timeline::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 8px;
  width: 2px; background: linear-gradient(to bottom, var(--gold) 0%, var(--gold) 60%, transparent);
}
.timeline-item { position: relative; padding: 0 0 2.25rem 1rem; }
.timeline-item::before {
  content: ''; position: absolute; left: -2.1rem; top: 0.35rem;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--navy); border: 3px solid var(--gold);
  box-shadow: 0 0 0 4px var(--cream);
}
.timeline-year {
  font-family: 'Playfair Display', serif; font-size: 0.82rem; font-weight: 700;
  color: var(--gold-dark); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.2rem;
}
.timeline-item h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.35rem; }
.timeline-item p { color: var(--muted); font-size: 0.95rem; }

/* ── Scenario grid (sell-your-house) ── */
.scenario-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin: 2rem 0 3rem; }
.scenario {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 1.75rem 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.scenario::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.scenario:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.scenario:hover::before { transform: scaleX(1); }
.scenario-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--cream-2); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.scenario h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 0.5rem; }
.scenario p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ── Blog cards ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin: 2rem 0 3rem; }
.blog-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
}
.blog-thumb::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(201,169,110,0.25), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(201,169,110,0.15), transparent 50%);
}
.blog-body { padding: 1.5rem; }
.blog-meta { font-size: 0.72rem; color: var(--gold-dark); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.6rem; font-weight: 600; }
.blog-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; }
.blog-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ── Newsletter capture ── */
.newsletter {
  background: var(--navy); color: var(--cream);
  padding: 2.5rem; border-radius: 16px;
  max-width: 680px; margin: 2rem auto;
  text-align: center;
  position: relative; overflow: hidden;
}
.newsletter::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 70%; height: 200%;
  background: radial-gradient(circle, rgba(201,169,110,0.15), transparent 60%);
  pointer-events: none;
}
.newsletter > * { position: relative; z-index: 1; }
.newsletter h3 { color: var(--cream); font-size: 1.6rem; margin-bottom: 0.5rem; }
.newsletter p { color: rgba(246,243,236,0.8); margin-bottom: 1.5rem; }
.newsletter-form { display: flex; gap: 0.5rem; max-width: 420px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 0.85rem 1rem;
  border: 1px solid rgba(201,169,110,0.4);
  background: rgba(246,243,236,0.05); color: var(--cream);
  border-radius: 8px; font-family: inherit;
}
.newsletter-form input::placeholder { color: rgba(246,243,236,0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); background: rgba(246,243,236,0.08); }
.newsletter-form button {
  background: var(--gold); color: var(--navy);
  border: 0; padding: 0.85rem 1.3rem; border-radius: 8px;
  font-family: inherit; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  font-size: 0.82rem; cursor: pointer; transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--gold-light); }

/* ── Resources cards ── */
.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin: 2rem 0; }
.resource-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: 14px;
  padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.resource-card:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: var(--shadow-sm); }
.resource-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px;
  background: var(--navy); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
}
.resource-card h4 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.1rem; margin-bottom: 0.3rem; }
.resource-card p { color: var(--muted); font-size: 0.9rem; margin: 0 0 0.4rem; }
.resource-link { font-size: 0.82rem; color: var(--gold-dark); font-weight: 600; letter-spacing: 0.05em; }

/* ── Glossary (resources) ── */
.glossary { max-width: 780px; margin: 2rem auto; }
.glossary dt {
  font-family: 'Playfair Display', serif; font-weight: 700;
  color: var(--navy); margin-top: 1.25rem; font-size: 1.05rem;
  position: relative; padding-left: 1.2rem;
}
.glossary dt::before {
  content: ''; position: absolute; left: 0; top: 0.6rem;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}
.glossary dd { color: var(--body); margin-left: 1.2rem; font-size: 0.95rem; }

/* ── Contact info grid (already on contact.html) ── */
.contact-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3rem;
  max-width: 1100px; margin: 0 auto;
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-row {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: 0; }
.contact-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
  background: var(--navy); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
}
.contact-row strong { display: block; color: var(--navy); margin-bottom: 0.2rem; font-size: 0.95rem; }
.contact-row a, .contact-row span { color: var(--body); font-size: 0.95rem; }
.contact-row a:hover { color: var(--gold-dark); }

/* ── Responsive overrides for new components ── */
@media (max-width: 960px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .drawback-grid { grid-template-columns: 1fr; }
  .scenario-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .trust-item .num { font-size: 1.6rem; }
  .trust-item .lbl { font-size: 0.65rem; }
}
@media (max-width: 720px) {
  .benefit-grid { grid-template-columns: 1fr; }
  .scenario-grid { grid-template-columns: 1fr; }
  .newsletter { padding: 1.75rem 1.25rem; }
  .newsletter-form { flex-direction: column; }
  .floating-call { display: inline-flex; }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none !important; }
  .step-num::before { animation: none !important; }
  .final-cta::before, .final-cta::after { animation: none !important; }
  .floating-call { animation: none !important; }
  .floating-call svg { animation: none !important; }
  .headline-flourish path { animation: none !important; stroke-dashoffset: 0; }
  .area-grid.in .area-pill::before { animation: none !important; }
}


/* ============================================================
   SOURCE-PARITY REWRITE ADDITIONS
   ============================================================ */

/* Video section */
.block.video { padding-top: 2.5rem; padding-bottom: 3.5rem; }
.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.35), 0 0 0 1px rgba(201,169,110,0.25);
  transform: scale(0.94);
  opacity: 0;
  transition: transform 1s cubic-bezier(.22,.61,.36,1), opacity .9s ease;
}
.video-wrap.in { transform: scale(1); opacity: 1; }
.video-wrap::after {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 20px;
  pointer-events: none;
  animation: videoGoldRing 2.4s ease-out 0.4s both;
}
@keyframes videoGoldRing {
  0%   { box-shadow: 0 0 0 0 rgba(201,169,110,0.8); }
  60%  { box-shadow: 0 0 0 14px rgba(201,169,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,169,110,0); }
}
.video-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-wrap .play-hint {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(201,169,110,0.95);
  color: #1a2a3f;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  pointer-events: none;
  animation: playPulse 1.8s ease-in-out infinite;
  box-shadow: 0 6px 18px rgba(201,169,110,0.35);
}
@keyframes playPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 6px 18px rgba(201,169,110,0.35); }
  50%      { transform: scale(1.08); box-shadow: 0 8px 26px rgba(201,169,110,0.55); }
}

/* Hero H1 word-by-word fade-up */
.hero-h1-split { display: block; }
.hero-h1-split > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  animation: heroWordUp 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}
.hero-h1-split > span:nth-child(1) { animation-delay: 0.1s; }
.hero-h1-split > span:nth-child(2) { animation-delay: 0.25s; }
.hero-h1-split > span:nth-child(3) { animation-delay: 0.4s; }
@keyframes heroWordUp { to { opacity: 1; transform: translateY(0); } }

/* Trust item shine sweep */
.trust-item { position: relative; overflow: hidden; }
.trust-item::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(201,169,110,0.12) 40%, rgba(255,231,180,0.22) 50%, rgba(201,169,110,0.12) 60%, transparent 100%);
  animation: trustShine 7s ease-in-out infinite;
  pointer-events: none;
}
.trust-item:nth-child(1)::after { animation-delay: 0s; }
.trust-item:nth-child(2)::after { animation-delay: 1.4s; }
.trust-item:nth-child(3)::after { animation-delay: 2.8s; }
@keyframes trustShine {
  0%, 40% { left: -60%; }
  70%     { left: 120%; }
  100%    { left: 120%; }
}

/* Benefit icon spin-in on reveal */
.benefit .benefit-icon {
  transform: rotate(-90deg) scale(0.6);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(.22,.61,.36,1), opacity 0.7s ease;
  transition-delay: calc(var(--i, 0) * 80ms + 120ms);
}
.benefit.in .benefit-icon { transform: rotate(0) scale(1); opacity: 1; }

/* Compare table 3-col & column pulse */
.compare-table.three { min-width: 700px; }
.compare-table.three thead th {
  text-align: center;
  padding: 1rem 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.compare-table.three thead th.us {
  background: linear-gradient(180deg, rgba(201,169,110,0.18), rgba(201,169,110,0.08));
  color: var(--gold-light, #e0c88a);
}
.compare-table.three tbody td {
  text-align: center;
  padding: 0.85rem 0.75rem;
  font-size: 0.9rem;
  vertical-align: middle;
}
.compare-table.three tbody td.us {
  background: linear-gradient(180deg, rgba(201,169,110,0.08), rgba(201,169,110,0.02));
  position: relative;
}
.compare-table.three tbody tr:hover td.us {
  animation: colPulse 1.2s ease-in-out;
}
@keyframes colPulse {
  0%, 100% { box-shadow: inset 0 0 0 0 rgba(201,169,110,0); }
  50%      { box-shadow: inset 0 0 24px 2px rgba(201,169,110,0.25); }
}
.compare-table.three .mark-bad { color: #b34; opacity: 0.85; }
.compare-table.three .mark-ok  { color: var(--gold, #c9a96e); font-weight: 600; }

/* Testimonial quote glyph draw-in */
.review { position: relative; }
.review .quote-glyph {
  position: absolute;
  top: -10px;
  left: 1.2rem;
  width: 40px;
  height: 28px;
  color: var(--gold, #c9a96e);
  opacity: 0.85;
}
.review .quote-glyph path {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  transition: stroke-dashoffset 1.4s ease 0.2s;
}
.review.in .quote-glyph path { stroke-dashoffset: 0; }

/* 1,000+ Offers stat strip */
.offers-stat {
  background: linear-gradient(135deg, #1a2a3f 0%, #0f1b2d 100%);
  color: #fff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.offers-stat::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(600px circle at 15% 30%, rgba(201,169,110,0.16), transparent 60%),
    radial-gradient(500px circle at 85% 70%, rgba(201,169,110,0.10), transparent 60%);
  pointer-events: none;
}
.offers-stat-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.offers-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 6rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, #f0d9a3 0%, #c9a96e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 30px rgba(201,169,110,0.3);
}
.offers-label {
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: var(--gold-light, #e0c88a);
  margin-top: 0.5rem;
}
.offers-stat-inner p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin: 0.8rem 0 1.75rem;
}

/* Area pill magnetic hover */
.area-pill {
  transition: transform 0.22s cubic-bezier(.34,1.56,.64,1), box-shadow 0.22s ease, background 0.22s ease;
}
.area-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.28);
  background: rgba(201,169,110,0.14);
}

/* Buying Home callout */
.buying-home { background: #fafafa; padding: 3.5rem 0; text-align: center; }
.buying-home .section-head { text-align: center; }

/* Closing block */
.closing-block { padding: 3.5rem 0; background: var(--cream, #faf6ef); }
.closing-block .section-head { max-width: 820px; margin: 0 auto; text-align: center; }
.closing-block p { font-size: 1.05rem; line-height: 1.75; }

/* Final CTA fine print */
.fine-print { font-size: 0.72rem; line-height: 1.5; margin-top: 0.5rem; color: var(--body); }
.fine-print a { color: inherit; text-decoration: underline; }
.final-cta .lead-card .fine-print { color: var(--body); opacity: 1; }
.final-cta .lead-card .consent { color: var(--body); }

/* Final CTA particles */
.final-cta { position: relative; overflow: hidden; }
.final-cta .particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.final-cta .particles span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(201,169,110,0.5);
  box-shadow: 0 0 6px rgba(201,169,110,0.7);
  animation: particleDrift 18s linear infinite;
}
@keyframes particleDrift {
  0%   { transform: translate(0, 110%) scale(0.6); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.8; }
  100% { transform: translate(30vw, -20%) scale(1); opacity: 0; }
}

/* Cursor spotlight */
.cursor-spot {
  position: fixed;
  top: 0; left: 0;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.12), transparent 70%);
  pointer-events: none;
  mix-blend-mode: screen;
  transform: translate3d(calc(var(--mx, -500) * 1px - 180px), calc(var(--my, -500) * 1px - 180px), 0);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (min-width: 900px) and (hover: hover) { .cursor-spot { opacity: 1; } }

/* Footer social wobble */
.socials a { transition: color 0.2s ease; }
.socials a:hover { animation: socialWobble 0.6s ease; color: var(--gold, #c9a96e); }
@keyframes socialWobble {
  0%   { transform: rotate(0); }
  25%  { transform: rotate(-8deg); }
  50%  { transform: rotate(6deg); }
  75%  { transform: rotate(-4deg); }
  100% { transform: rotate(0); }
}

/* Hero eyebrow */
.hero-eyebrow { max-width: 520px; line-height: 1.4; }

/* Reduce motion overrides */
@media (prefers-reduced-motion: reduce) {
  .video-wrap, .video-wrap.in { transform: none; opacity: 1; transition: none; }
  .video-wrap::after { animation: none; }
  .video-wrap .play-hint { animation: none; }
  .hero-h1-split > span { animation: none; opacity: 1; transform: none; }
  .trust-item::after { animation: none; display: none; }
  .benefit .benefit-icon { transform: none; opacity: 1; transition: none; }
  .compare-table.three tbody tr:hover td.us { animation: none; }
  .review .quote-glyph path { stroke-dashoffset: 0; transition: none; }
  .final-cta .particles span { animation: none; display: none; }
  .cursor-spot { display: none; }
  .socials a:hover { animation: none; }
  .area-pill:hover { transform: none; }
}

/* Mobile tweaks */
@media (max-width: 720px) {
  .offers-num { font-size: 3.5rem; }
  .offers-label { font-size: 0.8rem; letter-spacing: 0.2em; }
  .video-wrap { border-radius: 12px; }
  .video-wrap .play-hint { top: 8px; left: 8px; font-size: 0.65rem; padding: 0.2rem 0.55rem; }
}
