/* ============================================================
   sellyourdvc.com — landing page styles
   Editorial-warm aesthetic. Mobile-first.
   ============================================================ */

:root {
  /* Editorial palette — warm cream + deep midnight + antique gold */
  --cream: #fbf6ec;
  --cream-deep: #f5ecda;
  --paper: #ffffff;
  --paper-warm: #fdf9f0;
  --ink: #1a1f2e;
  --ink-soft: #5c6478;
  --ink-muted: #8a8f9c;
  --midnight: #0c1d36;
  --midnight-deep: #07142a;
  --midnight-soft: #1a3454;
  --gold: #b8873a;
  --gold-light: #d4a44e;
  --gold-bright: #e8b85a;
  --gold-deep: #8d6526;
  --line: #e6dcc6;
  --line-soft: #f0e8d4;
  --vacation: #3a73a3;

  /* Typography */
  --font-display: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shadows — soft warm */
  --shadow-xs: 0 1px 2px rgba(12, 29, 54, 0.05);
  --shadow-sm: 0 2px 8px rgba(12, 29, 54, 0.06);
  --shadow-md: 0 8px 28px rgba(12, 29, 54, 0.10);
  --shadow-lg: 0 24px 56px rgba(12, 29, 54, 0.16);
  --shadow-gold: 0 6px 20px rgba(184, 135, 58, 0.25);

  /* Radii — restrained */
  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;

  /* Container */
  --container-max: 1140px;
  --container-narrow: 720px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01';
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--midnight);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 0.5em;
  color: var(--midnight);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

h2 { font-variation-settings: 'opsz' 36, 'SOFT' 30; }

p { margin: 0 0 1em; }

::selection { background: var(--gold-bright); color: var(--midnight); }

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

/* ============================================================
   HEADER — refined, restrained
   ============================================================ */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(1.2) blur(8px);
  background: rgba(251, 246, 236, 0.92);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  display: flex;
  flex-direction: column;
  color: var(--midnight);
  text-decoration: none;
  line-height: 1.1;
}
.brand:hover { color: var(--midnight); text-decoration: none; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 24, 'SOFT' 20;
}
.brand-tag {
  font-size: 0.68rem;
  color: var(--ink-soft);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.header-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  color: var(--midnight);
  text-decoration: none;
  line-height: 1.1;
}
.header-phone:hover { color: var(--gold); text-decoration: none; }
.phone-label {
  font-size: 0.65rem;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.phone-number {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  margin-top: 3px;
  letter-spacing: -0.005em;
}

/* ============================================================
   SOCIAL LINKS
   ============================================================ */
.social-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--midnight);
  transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}
.social-links a:hover {
  background: var(--cream-deep);
  color: var(--gold);
  transform: translateY(-1px);
  text-decoration: none;
}
.social-links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}
.header-right .social-links { display: none; }
@media (min-width: 720px) {
  .header-right .social-links { display: flex; }
}

/* ============================================================
   HERO — editorial, atmospheric
   ============================================================ */
.hero {
  position: relative;
  background: var(--midnight);
  color: var(--cream);
  padding: 72px 0 88px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(184, 135, 58, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(58, 115, 163, 0.25) 0%, transparent 55%),
    linear-gradient(180deg, var(--midnight-deep) 0%, var(--midnight) 50%, var(--midnight-soft) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(232, 184, 90, 0.08) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.6;
  mix-blend-mode: screen;
}
.hero-inner {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 28px;
  opacity: 0;
  transform: translateY(8px);
  animation: heroReveal 0.7s 0.1s ease-out forwards;
}
.hero-eyebrow-mark {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-bright);
}
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-bright);
}
.hero-headline {
  font-family: var(--font-display);
  color: var(--cream);
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  opacity: 0;
  transform: translateY(14px);
  animation: heroReveal 0.9s 0.2s ease-out forwards;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.hero-subhead {
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto 40px;
  color: rgba(251, 246, 236, 0.82);
  line-height: 1.55;
  font-weight: 400;
  opacity: 0;
  transform: translateY(10px);
  animation: heroReveal 0.9s 0.4s ease-out forwards;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(10px);
  animation: heroReveal 0.9s 0.55s ease-out forwards;
}
.hero-trust {
  font-size: 0.85rem;
  color: rgba(251, 246, 236, 0.65);
  margin: 0;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: heroReveal 0.9s 0.7s ease-out forwards;
}
.hero-trust strong {
  color: var(--gold-bright);
  font-weight: 600;
  letter-spacing: 0.04em;
}

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BUTTONS — refined, with hierarchy
   ============================================================ */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.01em;
  min-width: 240px;
}
.btn-primary {
  background: var(--gold-bright);
  color: var(--midnight);
  box-shadow: 0 4px 14px rgba(232, 184, 90, 0.22);
  border-color: var(--gold);
}
.btn-primary .btn-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(12, 29, 54, 0.78);
  text-transform: uppercase;
}
.btn-primary:hover {
  background: #f5c560;
  color: var(--midnight);
  box-shadow: 0 6px 18px rgba(232, 184, 90, 0.30);
  transform: translateY(-1px);
  text-decoration: none;
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(251, 246, 236, 0.4);
}
.btn-secondary:hover {
  background: rgba(251, 246, 236, 0.08);
  border-color: var(--cream);
  color: var(--cream);
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(251, 246, 236, 0.25);
  padding: 14px 28px;
  min-width: 240px;
}
.btn-ghost-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 246, 236, 0.65);
  margin-bottom: 4px;
}
.btn-ghost-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.005em;
}
.btn-ghost:hover {
  background: rgba(251, 246, 236, 0.06);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  text-decoration: none;
}
.btn-ghost:hover .btn-ghost-label,
.btn-ghost:hover .btn-ghost-num { color: var(--gold-bright); }

.btn-submit {
  width: 100%;
  padding: 18px;
  font-size: 1rem;
  margin-top: 12px;
  min-width: 0;
}

/* ============================================================
   SECTION RHYTHM
   ============================================================ */
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 500;
  text-align: center;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  color: var(--midnight);
  font-variation-settings: 'opsz' 60, 'SOFT' 40;
}
.section-headline::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 18px auto 0;
}
.section-subhead {
  text-align: center;
  font-size: 1.02rem;
  color: var(--ink-soft);
  margin: 0 auto 48px;
  max-width: 540px;
  font-weight: 400;
  font-style: italic;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 14;
}

/* ============================================================
   PROMISE + PROCESS
   ============================================================ */
.promise-process {
  padding: 80px 0;
  background: var(--paper-warm);
  position: relative;
}
.promise-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1000px;
  margin-inline: auto;
}
.block-headline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  font-weight: 700;
  margin: 0 0 22px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
}
.block-headline::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Promises */
.promise-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.promise-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--paper);
  padding: 22px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.promise-list li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.promise-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--midnight);
  color: var(--gold-bright);
  margin-top: 2px;
  position: relative;
}
.promise-check::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.4;
}
.promise-check svg {
  width: 16px;
  height: 16px;
  display: block;
}
.promise-list h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 6px;
  color: var(--midnight);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.promise-list p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.promise-list em {
  color: var(--midnight);
  font-style: italic;
  font-weight: 500;
  font-family: var(--font-display);
}

/* Process — vertical timeline with serif numbers */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  counter-reset: step-counter;
}
.steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--line) 100%);
  z-index: 0;
}
.steps li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.step-num {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--paper-warm);
  color: var(--midnight);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  font-variation-settings: 'opsz' 36, 'SOFT' 60;
  box-shadow: 0 0 0 4px var(--paper-warm);
  position: relative;
}
.step-body h4 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  margin: 8px 0 6px;
  color: var(--midnight);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.step-body p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================================================
   TRUST STRIP (BBB) — sits inside promise-process
   ============================================================ */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 64px auto 0;
  padding-top: 44px;
  border-top: 1px solid var(--line);
  position: relative;
}
.trust-strip::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
}
.bbb-badge {
  display: inline-block;
  line-height: 0;
  border-radius: var(--radius-sm);
  transition: transform 0.18s ease, opacity 0.18s ease;
  flex-shrink: 0;
}
.bbb-badge:hover { transform: translateY(-2px); opacity: 0.92; text-decoration: none; }
.bbb-badge:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.bbb-badge img { height: 78px; width: auto; display: block; border: 0; }
.trust-text {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--midnight);
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.005em;
}
.trust-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 500;
  margin-top: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   TESTIMONIALS — magazine treatment
   ============================================================ */
.testimonials {
  padding: 80px 0;
  background: var(--cream);
  position: relative;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 36px;
}
.testimonial {
  background: var(--paper);
  padding: 36px 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  margin: 0;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.22;
  line-height: 1;
  font-weight: 600;
  pointer-events: none;
}
.testimonial p {
  margin: 0 0 20px;
  color: var(--ink);
  line-height: 1.7;
  position: relative;
  font-size: 1.02rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'opsz' 14;
  font-style: italic;
}
.testimonial cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testimonial-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--midnight);
  letter-spacing: -0.005em;
}
.testimonial-meta {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.testimonials-footer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0 0 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.testimonials-cta {
  text-align: center;
  margin: 0;
  font-size: 1rem;
}
.testimonials-cta a {
  font-family: var(--font-display);
  color: var(--midnight);
  font-weight: 500;
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.testimonials-cta a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
  text-decoration: none;
}

/* ============================================================
   ALL TESTIMONIALS PAGE
   ============================================================ */
.page-hero {
  background: var(--midnight);
  color: var(--cream);
  padding: 72px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(184, 135, 58, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--midnight-deep) 0%, var(--midnight) 100%);
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  color: var(--cream);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.page-hero p {
  color: rgba(251, 246, 236, 0.78);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  font-style: italic;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 14;
}
.all-testimonials-section {
  padding: 64px 0;
  background: var(--cream);
}
.all-testimonials {
  column-count: 1;
  column-gap: 28px;
}
.all-testimonials .testimonial {
  margin: 0 0 24px;
  break-inside: avoid;
  page-break-inside: avoid;
  display: inline-block;
  width: 100%;
}
.back-cta {
  text-align: center;
  padding: 64px 0;
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
}
.back-cta h2 {
  font-family: var(--font-display);
  color: var(--midnight);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 12px;
  font-weight: 500;
}
.back-cta p {
  color: var(--ink-soft);
  margin: 0 0 28px;
  font-style: italic;
  font-family: var(--font-display);
}

/* ============================================================
   SITEMAP — secondary page with grouped link index
   ============================================================ */
.sitemap-section-wrap {
  padding: 64px 0 80px;
  background: var(--cream);
}
.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 960px;
  margin-inline: auto;
}
.sitemap-section h2 {
  font-family: var(--font-display);
  color: var(--midnight);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sitemap-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.sitemap-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.sitemap-list a {
  font-family: var(--font-display);
  color: var(--midnight);
  font-size: 1.08rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
  align-self: flex-start;
}
.sitemap-list a:hover {
  color: var(--gold-deep);
  border-bottom-color: var(--gold-deep);
}
.sitemap-desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.sitemap-machine-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin: 48px 0 0;
  font-style: italic;
  font-family: var(--font-display);
}
.sitemap-machine-note a {
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease;
}
.sitemap-machine-note a:hover {
  color: var(--midnight);
  border-bottom-color: var(--midnight);
}
@media (min-width: 760px) {
  .sitemap-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

/* ============================================================
   FORM — premium treatment for conversion
   ============================================================ */
.form-section {
  padding: 80px 0;
  background: var(--midnight);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(184, 135, 58, 0.15) 0%, transparent 65%),
    linear-gradient(180deg, var(--midnight) 0%, var(--midnight-soft) 100%);
  z-index: 0;
}
.form-section > * { position: relative; z-index: 1; }
.form-section .section-headline {
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 400;
}
.form-section .section-headline::after { background: var(--gold-bright); }
.form-subhead {
  text-align: center;
  font-size: 1.05rem;
  color: rgba(251, 246, 236, 0.78);
  margin-bottom: 40px;
  max-width: 580px;
  margin-inline: auto;
  font-style: italic;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 14;
}
.seller-form {
  background: var(--paper);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold);
  position: relative;
  color: var(--ink);
}
.seller-form::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.field-row[hidden] { display: none; }
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 8px;
  color: var(--midnight);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.required { color: var(--gold); margin-left: 2px; }
.field input,
.field select {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: var(--font-body);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper-warm);
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.field input::placeholder { color: var(--ink-muted); }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(184, 135, 58, 0.15);
}
.field input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #c0392b;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b8873a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
  cursor: pointer;
}
.field select:invalid {
  color: var(--ink-muted);
}
.field select option {
  color: var(--ink);
}
.recaptcha-wrap {
  margin: 18px 0 8px;
  display: flex;
  justify-content: center;
}
.field-hint {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 8px 0 0;
  line-height: 1.5;
}
.field-okw {
  animation: okw-reveal 280ms ease-out;
}
@keyframes okw-reveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.privacy-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin: 16px 0 0;
  line-height: 1.55;
  text-align: center;
  font-style: italic;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 14;
}

/* ============================================================
   "What happens next" callout — surfaces both post-submit paths
   (callback OR immediate self-serve listing) at the decision moment
   ============================================================ */
.next-step-callout {
  margin: 28px 0 22px;
  padding: 24px 22px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
  position: relative;
}
.next-step-callout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-bright) 50%, transparent 100%);
}
.next-step-heading {
  text-align: center;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 16;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--midnight);
  margin: 0 0 18px;
}
.next-step-options {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}
.next-step-option {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px 2px;
}
.next-step-option strong {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 16;
  font-size: 1.02rem;
  color: var(--midnight);
  line-height: 1.25;
}
.next-step-option span:not(.next-step-badge) {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.next-step-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep, var(--ink-soft));
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  margin-bottom: 2px;
}
.next-step-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.next-step-divider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--line);
}
.next-step-divider span {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-muted);
  background: var(--cream);
  padding: 4px 8px;
}
.next-step-foot {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 16px 0 0;
  font-style: italic;
}
@media (max-width: 640px) {
  .next-step-options {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .next-step-divider {
    min-height: 22px;
  }
  .next-step-divider::before {
    top: 50%;
    bottom: auto;
    left: 0;
    right: 0;
    height: 1px;
    width: auto;
  }
}

/* ============================================================
   FAQ — refined accordion
   ============================================================ */
.faq {
  padding: 80px 0;
  background: var(--paper-warm);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 1000px;
  margin-inline: auto;
  align-items: start;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-xs);
}
.faq-item[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 22px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--midnight);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  letter-spacing: -0.005em;
  font-variation-settings: 'opsz' 18;
  transition: color 0.15s ease;
}
.faq-item summary:hover { color: var(--gold-deep); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-image:
    linear-gradient(var(--gold), var(--gold)),
    linear-gradient(var(--gold), var(--gold));
  background-size: 14px 1.5px, 1.5px 14px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background-size: 14px 1.5px, 0 0;
}
.faq-item p {
  padding: 0 24px 24px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.96rem;
}

/* ============================================================
   ABOUT — Meet Shontell, editorial portrait
   ============================================================ */
.about {
  padding: 80px 0;
  background: var(--cream);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 820px;
  margin-inline: auto;
  align-items: start;
}
.about-photo { text-align: center; position: relative; }
.about-photo img {
  display: inline-block;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.about-photo::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 240px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  z-index: 0;
}
.about-body p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0 0 1.1em;
  font-size: 1rem;
}
.about-lead {
  font-family: var(--font-display);
  font-size: 1.25rem !important;
  color: var(--midnight) !important;
  font-weight: 400 !important;
  font-style: italic;
  line-height: 1.4 !important;
  margin-bottom: 1.4em !important;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 36;
}
.about-cta {
  margin-top: 28px !important;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.96rem !important;
}
.about-cta a {
  color: var(--midnight);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.15s ease;
}
.about-cta a:hover { color: var(--gold); }

.about-headline-wrap {
  text-align: center;
  margin-bottom: 36px;
}

/* ============================================================
   CONTACT STRIP — refined dark
   ============================================================ */
.contact-strip {
  padding: 64px 0;
  background: var(--midnight-deep);
  color: var(--cream);
  text-align: center;
  border-top: 1px solid var(--gold);
}
.contact-strip h2 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 400;
  margin-bottom: 10px;
}
.contact-strip h2::after { display: none; }
.contact-strip > .container > p {
  color: rgba(251, 246, 236, 0.7);
  margin-bottom: 32px;
  font-style: italic;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 14;
}
.contact-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.contact-link {
  color: var(--cream);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  transition: color 0.18s ease;
}
.contact-link:hover { color: var(--gold-bright); text-decoration: none; }
.contact-link strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: inherit;
  letter-spacing: -0.01em;
}
.contact-link span {
  font-size: 0.72rem;
  color: rgba(251, 246, 236, 0.6);
  margin-top: 6px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   SCROLL-TO-TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 84px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--midnight);
  color: var(--gold-bright);
  border: 1px solid var(--gold);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 60;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, background-color 0.18s ease;
  pointer-events: none;
}
.scroll-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--midnight-deep); color: var(--gold-bright); }
.scroll-top:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.scroll-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (min-width: 720px) {
  .scroll-top { bottom: 28px; right: 28px; width: 48px; height: 48px; }
  .scroll-top svg { width: 22px; height: 22px; }
}

/* ============================================================
   STICKY MOBILE CTA — conversion booster
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 55;
  display: flex;
  background: var(--midnight);
  border-top: 1px solid var(--gold);
  box-shadow: 0 -8px 28px rgba(7, 20, 42, 0.25);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta-call,
.sticky-cta-form {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.15s ease, color 0.15s ease;
}
.sticky-cta-call {
  color: var(--cream);
  border-right: 1px solid rgba(251, 246, 236, 0.12);
}
.sticky-cta-call svg { width: 18px; height: 18px; }
.sticky-cta-call:hover { background: var(--midnight-soft); color: var(--gold-bright); text-decoration: none; }
.sticky-cta-form {
  background: var(--gold-bright);
  color: var(--midnight);
  flex: 1.3;
  font-weight: 700;
}
.sticky-cta-form:hover { background: #f5c560; color: var(--midnight); text-decoration: none; }
@media (min-width: 720px) {
  .sticky-cta { display: none !important; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 36px 0;
  background: var(--midnight-deep);
  color: rgba(251, 246, 236, 0.6);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.site-footer p { margin: 6px 0; }
.site-footer a {
  color: rgba(251, 246, 236, 0.85);
  border-bottom: 1px solid rgba(184, 135, 58, 0.4);
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.site-footer a:hover { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }
.footer-small { font-size: 0.74rem; opacity: 0.85; }
.site-footer .social-links {
  justify-content: center;
  margin: 0 0 18px;
  gap: 4px;
}
.site-footer .social-links a {
  color: rgba(251, 246, 236, 0.75);
  border: none;
  padding: 0;
}
.site-footer .social-links a:hover {
  color: var(--gold-bright);
  background: rgba(251, 246, 236, 0.06);
  border: none;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-eyebrow, .hero-headline, .hero-subhead, .hero-ctas, .hero-trust {
    opacity: 1; transform: none; animation: none;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   TABLET (≥600px)
   ============================================================ */
@media (min-width: 600px) {
  .hero { padding: 96px 0 112px; }
  .hero-ctas { flex-direction: row; justify-content: center; gap: 16px; }
  .trust-strip { gap: 28px; margin-top: 72px; padding-top: 52px; }
  .bbb-badge img { height: 92px; }
  .trust-text { text-align: left; font-size: 1.1rem; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .field-row { grid-template-columns: 1fr 1fr; gap: 20px; }
  .seller-form { padding: 48px 40px; }
  .contact-options { flex-direction: row; justify-content: center; gap: 64px; }
  .all-testimonials .testimonial p { font-size: 1rem; }
}

/* ============================================================
   TABLET 720+
   ============================================================ */
@media (min-width: 720px) {
  .faq-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-grid {
    grid-template-columns: 240px 1fr;
    gap: 56px;
  }
  .about-photo { text-align: left; }
  .about-photo img { width: 240px; height: 240px; }
  .about-photo::before {
    left: 0;
    transform: none;
    width: 260px;
    height: 260px;
    top: -10px;
    margin-left: -10px;
  }
  body { padding-bottom: 0; }
}

/* ============================================================
   DESKTOP (≥900px)
   ============================================================ */
@media (min-width: 900px) {
  .hero { padding: 120px 0 132px; }
  .promise-process { padding: 100px 0; }
  .promise-process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .testimonials, .form-section, .faq, .about { padding: 100px 0; }
  .all-testimonials { column-count: 2; column-gap: 32px; }
}

/* ============================================================
   BODY OFFSET FOR MOBILE STICKY CTA
   ============================================================ */
@media (max-width: 719px) {
  body { padding-bottom: 56px; }
}

/* ============================================================
   DESIGN VARIATION THEMES — preview switcher
   B (Editorial) is the default :root palette; A/C/D/E override.
   ============================================================ */

/* === A — Brand-aligned: exact hex values pulled from dvcbyresale.com === */
/* Source CSS confirmed: #004fa3 (body blue), #004E7F (nav blue),         */
/* #F7EF29 (yellow accent), #FBF9CE (yellow surface), #DFE6F9 (blue tile),*/
/* #899bcf (soft blue-purple), Arimo as the brand font.                   */
body.theme-a {
  --font-display: 'Arimo', 'Arial', sans-serif;
  --font-body: 'Arimo', 'Arial', sans-serif;
  --cream: #FBF9CE;              /* her exact pale-yellow surface */
  --cream-deep: #DFE6F9;         /* her exact pale-blue alt surface */
  --paper: #ffffff;
  --paper-warm: #FFFCD8;         /* her lighter yellow tone */
  --ink: #004fa3;                /* her primary body blue */
  --ink-soft: #444E7F;           /* her hover blue */
  --ink-muted: #899bcf;          /* her soft blue-purple */
  --midnight: #004E7F;           /* her nav band blue */
  --midnight-deep: #003a5e;
  --midnight-soft: #1f6a99;
  --gold: #F7EF29;               /* her bright yellow link/accent */
  --gold-light: #FBF9CE;
  --gold-bright: #F7EF29;
  --gold-deep: #C9C322;
  --line: #DFE6F9;
  --line-soft: #EAF2FA;
  --vacation: #004fa3;
  --shadow-gold: 0 6px 20px rgba(247, 239, 41, 0.35);
}
body.theme-a .site-header { background: rgba(255, 255, 255, 0.92); }
body.theme-a .btn-primary:hover { background: #fff58a; }
body.theme-a .btn-primary { box-shadow: 0 4px 14px rgba(247, 239, 41, 0.28); }
body.theme-a .btn-primary:hover { box-shadow: 0 6px 18px rgba(247, 239, 41, 0.40); }
body.theme-a .field input:focus,
body.theme-a .field select:focus { box-shadow: 0 0 0 4px rgba(247, 239, 41, 0.25); }
/* Arimo on her main site is heavier on headings — match the brand weight */
body.theme-a h1,
body.theme-a h2,
body.theme-a h3,
body.theme-a h4,
body.theme-a .section-headline,
body.theme-a .hero-headline { font-weight: 700; letter-spacing: -0.01em; }
body.theme-a .hero-headline em { font-weight: 700; font-style: normal; color: var(--gold-bright); }
/* Brand-A rhythm: alternating yellow body bg with two white sections */
body.theme-a .promise-process,
body.theme-a .faq { background: #ffffff; }
/* On the white FAQ section, make the items themselves yellow so they pop —
   mirrors her main site's alternating-row pattern */
body.theme-a .faq-item { background: var(--cream); border-color: var(--cream-deep); }
body.theme-a .faq-item:hover,
body.theme-a .faq-item[open] { border-color: var(--midnight); }
/* Question text stays navy on hover — yellow-on-yellow is unreadable */
body.theme-a .faq-item summary:hover { color: var(--midnight); }
/* Social icons in header — same fix; yellow on light blue is hard to see */
body.theme-a .social-links a:hover { color: var(--midnight); }
/* "Our commitments" / "The process" eyebrow labels — default --gold-deep
   is dark mustard yellow on white, hardly visible. Use navy. */
body.theme-a .block-headline { color: var(--midnight); }
/* "Read all client testimonials" hover — gold on yellow section = invisible */
body.theme-a .testimonials-cta a:hover {
  color: var(--midnight);
  border-bottom-color: var(--midnight);
}
/* FAQ +/× toggle is constructed from two crossed gold lines — make navy
   so it shows against the yellow item background */
body.theme-a .faq-item summary::after {
  background-image:
    linear-gradient(var(--midnight), var(--midnight)),
    linear-gradient(var(--midnight), var(--midnight));
}
/* Ring around Shontell's portrait — blue not yellow */
body.theme-a .about-photo::before { border-color: var(--midnight); }
/* About-section links ("Call Shontell..." / "form above") hover */
body.theme-a .about-cta a:hover {
  color: var(--midnight);
  border-bottom-color: var(--midnight);
}
body.theme-a .about-cta a { border-bottom-color: var(--midnight); }
/* Header phone hover — soft blue-purple, not yellow */
body.theme-a .header-phone:hover { color: var(--ink-muted); }
/* Footer social icons — keep yellow on hover (dark footer = high contrast) */
body.theme-a .site-footer .social-links a:hover { color: var(--gold-bright); }
/* Process step-num circles: white inside, soft-blue ring, navy border */
body.theme-a .step-num {
  background: #ffffff;
  box-shadow: 0 0 0 4px var(--cream-deep);
  border-color: var(--midnight);
}

/* === C — Coastal Florida (sand + ocean + sunset, Cormorant Garamond + Lato) === */
body.theme-c {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --cream: #f8eedb;
  --cream-deep: #ecdcb5;
  --paper: #fffaef;
  --paper-warm: #fbecd1;
  --ink: #2c3e50;
  --ink-soft: #587084;
  --ink-muted: #8aa3b8;
  --midnight: #0e4f6e;
  --midnight-deep: #08394f;
  --midnight-soft: #2a6b8f;
  --gold: #e89b5a;
  --gold-light: #f0b478;
  --gold-bright: #ffc88a;
  --gold-deep: #c47536;
  --line: #ddc8a0;
  --line-soft: #e8dcc0;
  --vacation: #2a6b8f;
  --shadow-gold: 0 6px 20px rgba(232, 155, 90, 0.30);
}
body.theme-c .site-header { background: rgba(248, 238, 219, 0.92); }
body.theme-c .btn-primary:hover { background: #ffb98a; }
body.theme-c .btn-primary { box-shadow: 0 4px 14px rgba(232, 155, 90, 0.22); }
body.theme-c .btn-primary:hover { box-shadow: 0 6px 18px rgba(232, 155, 90, 0.30); }
body.theme-c .field input:focus,
body.theme-c .field select:focus { box-shadow: 0 0 0 4px rgba(232, 155, 90, 0.20); }

/* === D — Modern minimal (white + deep teal accent, Inter throughout) === */
body.theme-d {
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --cream: #fafafa;
  --cream-deep: #f0f0f0;
  --paper: #ffffff;
  --paper-warm: #fbfbfb;
  --ink: #1f2937;
  --ink-soft: #4b5563;
  --ink-muted: #9ca3af;
  --midnight: #111827;
  --midnight-deep: #030712;
  --midnight-soft: #374151;
  --gold: #0f766e;
  --gold-light: #14b8a6;
  --gold-bright: #2dd4bf;
  --gold-deep: #115e59;
  --line: #e5e7eb;
  --line-soft: #f3f4f6;
  --vacation: #0f766e;
  --shadow-gold: 0 6px 20px rgba(15, 118, 110, 0.25);
}
body.theme-d .site-header { background: rgba(250, 250, 250, 0.92); }
body.theme-d .btn-primary:hover { background: #5eead4; }
body.theme-d .btn-primary { box-shadow: 0 4px 14px rgba(45, 212, 191, 0.18); }
body.theme-d .btn-primary:hover { box-shadow: 0 6px 18px rgba(45, 212, 191, 0.26); }
body.theme-d .field input:focus,
body.theme-d .field select:focus { box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.18); }

/* === E — Premium dark (deep navy + champagne, DM Serif Display + DM Sans) === */
body.theme-e {
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --cream: #0b1929;
  --cream-deep: #16273e;
  --paper: #1a2a40;
  --paper-warm: #1f3553;
  --ink: #f0e8d3;
  --ink-soft: #c8c0b0;
  --ink-muted: #8a8475;
  --midnight: #050e1c;
  --midnight-deep: #02080f;
  --midnight-soft: #1f3553;
  --gold: #d4af74;
  --gold-light: #e8c896;
  --gold-bright: #f0d4a0;
  --gold-deep: #b48f54;
  --line: #2a3d56;
  --line-soft: #1f3148;
  --vacation: #d4af74;
  --shadow-gold: 0 6px 20px rgba(212, 175, 116, 0.30);
}
/* Theme E uses --midnight as a dark surface (correct semantics), so anywhere
   --midnight was used as a TEXT color, override to use the light --ink.    */
body.theme-e h1,
body.theme-e h2,
body.theme-e h3,
body.theme-e h4,
body.theme-e .section-headline,
body.theme-e .promise-list,
body.theme-e .promise-list em,
body.theme-e .step-body h4,
body.theme-e .trust-text,
body.theme-e .testimonial-name,
body.theme-e .testimonials-cta a,
body.theme-e .back-cta h2,
body.theme-e .faq-item summary,
body.theme-e .about h2,
body.theme-e .about-cta a,
body.theme-e .form-section label,
body.theme-e .field label,
body.theme-e .header-phone,
body.theme-e .footer-link,
body.theme-e .social-links a,
body.theme-e .next-step-heading,
body.theme-e .next-step-option strong {
  color: var(--ink);
}
body.theme-e .next-step-badge { color: var(--gold-light); }
/* about-lead uses !important — must win specificity */
body.theme-e .about-lead { color: var(--ink) !important; }
body.theme-e a { color: var(--ink); }
body.theme-e a:hover { color: var(--gold); }
body.theme-e .brand,
body.theme-e .brand:hover { color: var(--ink); }
body.theme-e .site-header {
  background: rgba(11, 25, 41, 0.92);
  border-bottom-color: var(--line);
}
body.theme-e .btn-primary:hover { background: var(--gold-light); }
body.theme-e .btn-primary { box-shadow: 0 4px 14px rgba(212, 175, 116, 0.20); }
body.theme-e .btn-primary:hover { box-shadow: 0 6px 18px rgba(212, 175, 116, 0.28); }
body.theme-e .field input:focus,
body.theme-e .field select:focus { box-shadow: 0 0 0 4px rgba(212, 175, 116, 0.20); }
/* Buttons keep dark text on the champagne bg — readable */
body.theme-e .btn-primary,
body.theme-e .sticky-cta-form { color: #050e1c; }
body.theme-e .btn-primary .btn-sub { color: rgba(5, 14, 28, 0.7); }
/* Dot pattern + radial highlights tinted to match champagne palette */
body.theme-e .hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 175, 116, 0.20) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(31, 53, 83, 0.45) 0%, transparent 55%),
    linear-gradient(180deg, var(--midnight-deep) 0%, var(--midnight) 50%, var(--midnight-soft) 100%);
}
body.theme-e .hero-bg::after {
  background-image: radial-gradient(circle at 1px 1px, rgba(240, 212, 160, 0.08) 1px, transparent 0);
}
body.theme-e .page-hero::before {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212, 175, 116, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--midnight-deep) 0%, var(--midnight) 100%);
}

/* === F — Brand · Soft Yellow: Theme A structure + #f5f598 soft yellow accent,
       with #FAFAC3 cream as the hover/secondary tint. === */
body.theme-f {
  --font-display: 'Arimo', 'Arial', sans-serif;
  --font-body: 'Arimo', 'Arial', sans-serif;
  --cream: #FAFAC3;              /* cream surface / hover tint */
  --cream-deep: #DFE6F9;         /* her exact pale-blue alt surface */
  --paper: #ffffff;
  --paper-warm: #FCFCDC;
  --ink: #004fa3;
  --ink-soft: #444E7F;
  --ink-muted: #899bcf;
  --midnight: #004E7F;
  --midnight-deep: #003a5e;
  --midnight-soft: #1f6a99;
  --gold: #f5f598;               /* soft yellow primary accent */
  --gold-light: #FCFCDC;
  --gold-bright: #f5f598;
  --gold-deep: #C4B855;
  --line: #DFE6F9;
  --line-soft: #EAF2FA;
  --vacation: #004fa3;
  --shadow-gold: 0 6px 20px rgba(245, 245, 152, 0.55);
}
body.theme-f .site-header { background: rgba(255, 255, 255, 0.92); }
body.theme-f .btn-primary:hover { background: #FAFAC3; }
body.theme-f .btn-primary { box-shadow: 0 4px 14px rgba(245, 245, 152, 0.55); }
body.theme-f .btn-primary:hover { box-shadow: 0 6px 18px rgba(245, 245, 152, 0.70); }
body.theme-f .field input:focus,
body.theme-f .field select:focus { box-shadow: 0 0 0 4px rgba(245, 245, 152, 0.55); }
body.theme-f h1,
body.theme-f h2,
body.theme-f h3,
body.theme-f h4,
body.theme-f .section-headline,
body.theme-f .hero-headline { font-weight: 700; letter-spacing: -0.01em; }
/* Two-tone hero: main line near-white, emphasized phrase in soft cream — mirrors Theme A's white+yellow split */
body.theme-f .hero-headline { color: #ffffff; }
body.theme-f .hero-headline em { font-weight: 700; font-style: normal; color: var(--gold-bright); }
/* Mirror A's alternating white-section rhythm */
body.theme-f .promise-process,
body.theme-f .faq { background: #ffffff; }
body.theme-f .faq-item { background: var(--cream); border-color: var(--cream-deep); }
body.theme-f .faq-item:hover,
body.theme-f .faq-item[open] { border-color: var(--midnight); }
body.theme-f .faq-item summary:hover { color: var(--midnight); }
body.theme-f .social-links a:hover { color: var(--midnight); }
body.theme-f .block-headline { color: var(--midnight); }
body.theme-f .testimonials-cta a:hover { color: var(--midnight); border-bottom-color: var(--midnight); }
body.theme-f .faq-item summary::after {
  background-image:
    linear-gradient(var(--midnight), var(--midnight)),
    linear-gradient(var(--midnight), var(--midnight));
}
body.theme-f .about-photo::before { border-color: var(--midnight); }
body.theme-f .about-cta a { border-bottom-color: var(--midnight); }
body.theme-f .about-cta a:hover { color: var(--midnight); border-bottom-color: var(--midnight); }
body.theme-f .header-phone:hover { color: var(--ink-muted); }
body.theme-f .site-footer .social-links a:hover { color: var(--gold-bright); }
body.theme-f .step-num {
  background: #ffffff;
  box-shadow: 0 0 0 4px var(--cream);
  border-color: var(--midnight);
}

/* === G — Editorial · Soft Cream: Theme B structure + #FAFAC3 pale-cream accent.
       Navy is the action/button color since cream is too pale on white. === */
body.theme-g {
  --cream: #FAFAC3;              /* the pale cream Shontell asked for */
  --cream-deep: #f0e89c;
  --paper: #ffffff;
  --paper-warm: #FCFCDC;
  --gold: #FAFAC3;
  --gold-light: #FCFCDC;
  --gold-bright: #FAFAC3;
  --gold-deep: #C4B855;
  --line: #ece7c2;
  --line-soft: #f6f1d2;
  --shadow-gold: 0 6px 20px rgba(250, 250, 195, 0.55);
}
body.theme-g .btn-primary:hover { background: #f5f598; }
body.theme-g .btn-primary { box-shadow: 0 4px 14px rgba(250, 250, 195, 0.55); }
body.theme-g .btn-primary:hover { box-shadow: 0 6px 18px rgba(250, 250, 195, 0.70); }
body.theme-g .field input:focus,
body.theme-g .field select:focus { box-shadow: 0 0 0 4px rgba(250, 250, 195, 0.55); }
body.theme-g .hero-headline em { color: var(--gold-deep); }
body.theme-g .testimonials-cta a:hover { color: var(--midnight); border-bottom-color: var(--midnight); }
body.theme-g .about-cta a:hover { color: var(--midnight); border-bottom-color: var(--midnight); }
body.theme-g .header-phone:hover { color: var(--gold-deep); }

/* ============================================================
   PER-THEME HERO ACCENT TINTS
   The default hero radial highlights are tinted editorial gold + blue.
   Override per theme so each preview has on-palette glows.
   ============================================================ */

/* Theme A — yellow top tint, soft blue-purple bottom tint */
body.theme-a .hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(247, 239, 41, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(137, 155, 207, 0.30) 0%, transparent 55%),
    linear-gradient(180deg, var(--midnight-deep) 0%, var(--midnight) 50%, var(--midnight-soft) 100%);
}
body.theme-a .hero-bg::after {
  background-image: radial-gradient(circle at 1px 1px, rgba(247, 239, 41, 0.10) 1px, transparent 0);
}
body.theme-a .page-hero::before {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(247, 239, 41, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--midnight-deep) 0%, var(--midnight) 100%);
}

/* Theme C — coral top tint, ocean blue bottom tint */
body.theme-c .hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232, 155, 90, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(42, 107, 143, 0.28) 0%, transparent 55%),
    linear-gradient(180deg, var(--midnight-deep) 0%, var(--midnight) 50%, var(--midnight-soft) 100%);
}
body.theme-c .hero-bg::after {
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 200, 138, 0.10) 1px, transparent 0);
}
body.theme-c .page-hero::before {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232, 155, 90, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--midnight-deep) 0%, var(--midnight) 100%);
}

/* Theme D — restrained teal top tint, neutral slate bottom */
body.theme-d .hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(45, 212, 191, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(55, 65, 81, 0.25) 0%, transparent 55%),
    linear-gradient(180deg, var(--midnight-deep) 0%, var(--midnight) 50%, var(--midnight-soft) 100%);
}
body.theme-d .hero-bg::after {
  background-image: radial-gradient(circle at 1px 1px, rgba(45, 212, 191, 0.07) 1px, transparent 0);
}
body.theme-d .page-hero::before {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(45, 212, 191, 0.14) 0%, transparent 60%),
    linear-gradient(180deg, var(--midnight-deep) 0%, var(--midnight) 100%);
}

/* Theme F — soft yellow top tint, blue-purple bottom tint */
body.theme-f .hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245, 245, 152, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(137, 155, 207, 0.30) 0%, transparent 55%),
    linear-gradient(180deg, var(--midnight-deep) 0%, var(--midnight) 50%, var(--midnight-soft) 100%);
}
body.theme-f .hero-bg::after {
  background-image: radial-gradient(circle at 1px 1px, rgba(245, 245, 152, 0.12) 1px, transparent 0);
}
body.theme-f .page-hero::before {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245, 245, 152, 0.20) 0%, transparent 60%),
    linear-gradient(180deg, var(--midnight-deep) 0%, var(--midnight) 100%);
}

/* Theme G — pale cream top tint, soft warm bottom */
body.theme-g .hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(250, 250, 195, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(196, 184, 85, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, var(--midnight-deep) 0%, var(--midnight) 50%, var(--midnight-soft) 100%);
}
body.theme-g .hero-bg::after {
  background-image: radial-gradient(circle at 1px 1px, rgba(250, 250, 195, 0.10) 1px, transparent 0);
}
body.theme-g .page-hero::before {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(250, 250, 195, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--midnight-deep) 0%, var(--midnight) 100%);
}

/* ============================================================
   THEME SWITCHER COMPONENT — fixed preview tool, removable post-pick
   ============================================================ */

.theme-switcher {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 60;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
}

.theme-switcher-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: #0c1d36;
  color: #fbf6ec;
  border: 1px solid #1a3454;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.theme-switcher-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.42);
}
.theme-switcher-toggle:focus-visible {
  outline: 2px solid #e8b85a;
  outline-offset: 2px;
}
.theme-switcher-icon { font-size: 1.05rem; line-height: 1; }
.theme-switcher-chevron {
  font-size: 0.7rem;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.theme-switcher[data-open="true"] .theme-switcher-chevron {
  transform: rotate(180deg);
}

.theme-switcher-options {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  width: 300px;
  background: #ffffff;
  border: 1px solid #e6dcc6;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 24px 56px rgba(12, 29, 54, 0.22);
}
.theme-switcher-options[hidden] { display: none; }

.theme-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  color: #1a1f2e;
  transition: background 0.12s ease;
}
.theme-option:hover { background: #fbf6ec; }
.theme-option.is-active { background: #fbf6ec; }

.theme-option-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0c1d36;
  color: #fbf6ec;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.theme-option.is-active .theme-option-letter {
  background: #b8873a;
}

.theme-option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.theme-option-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: #1a1f2e;
  line-height: 1.2;
}
.theme-option-desc {
  font-size: 0.78rem;
  color: #5c6478;
  font-weight: 400;
  line-height: 1.3;
}

.theme-switcher-note {
  margin: 4px 12px 6px;
  padding-top: 6px;
  border-top: 1px solid #f0e8d4;
  font-size: 0.72rem;
  color: #8a8f9c;
  text-align: center;
  font-style: italic;
}

/* Mobile: lift switcher above the sticky CTA bar (which is ~56px tall) */
@media (max-width: 719px) {
  .theme-switcher { bottom: 72px; left: 12px; }
  .theme-switcher-options { width: calc(100vw - 24px); max-width: 320px; }
}
