/* =========================================
   THE FRONT DESK — Style System
   Modern help. Old-fashioned service.
   ========================================= */

/* --- Tokens --- */
:root {
  /* Brand colors — exact from logo */
  --navy:        #0E2031;
  --navy-mid:    #152B40;
  --navy-light:  #1B3555;
  --cream:       #F8F6F0;
  --cream-dark:  #EDE9DF;
  --gold:        #136168;   /* teal — brand accent */
  --gold-dark:   #0D4E54;   /* teal dark */
  --gold-light:  #1A8895;   /* teal light */
  --white:       #FFFFFF;
  --text:        #0E2031;
  --muted:       #5A6B7A;
  --border:      rgba(14, 32, 49, 0.12);
  --border-gold: rgba(19, 97, 104, 0.30);

  --font-brand:  'Montserrat', system-ui, sans-serif;
  --font-serif:  'Lora', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, -apple-system, sans-serif;

  --radius:      4px;
  --radius-md:   8px;
  --radius-lg:   16px;

  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm:   0 1px 8px rgba(27, 42, 59, 0.07);
  --shadow:      0 4px 24px rgba(27, 42, 59, 0.10);
  --shadow-lg:   0 12px 48px rgba(27, 42, 59, 0.14);
  --shadow-gold: 0 4px 24px rgba(19, 97, 104, 0.28);

  --max-w:       1200px;
  --max-w-text:  680px;
  --section-y:   96px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 19px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(38px, 5.5vw, 66px); font-weight: 600; }
h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 600; }
h3 { font-size: clamp(22px, 2.5vw, 30px); font-weight: 500; }
h4 { font-size: 20px; font-weight: 600; font-family: var(--font-sans); letter-spacing: 0; }
p { max-width: 68ch; }
strong { font-weight: 600; }

.eyebrow {
  font-family: var(--font-sans);
  font-size:14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
section { position: relative; overflow: hidden; }
.section-pad { padding: var(--section-y) 0; }
.section-pad-sm { padding: 64px 0; }
.section-pad-lg { padding: 120px 0; }
.text-center { text-align: center; }
.text-center p { margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all 0.22s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}
.btn-phone {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  font-size: 16px;
  padding: 16px 32px;
}
.btn-phone:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 2px 32px rgba(27, 42, 59, 0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
  text-decoration: none;
  flex: 0 0 auto;
  white-space: nowrap;
}
.nav-logo-mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: max-content;
}
.nav-logo-name {
  font-family: var(--font-brand);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.nav-logo-sub {
  font-family: var(--font-sans);
  font-size:14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 0 1 auto;
  min-width: 0;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: color 0.18s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  white-space: nowrap;
}
.nav-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.25s var(--ease);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.07);
  max-height: 0;
  overflow: hidden;
  padding: 0 32px;
  transition: max-height 0.35s var(--ease-out), padding 0.30s var(--ease);
}
.mobile-menu.open {
  max-height: 520px;
  padding: 16px 32px 24px;
}
.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.18s, padding-left 0.18s;
}
.mobile-menu a:hover { color: var(--white); padding-left: 6px; }
.mobile-menu .btn { margin-top: 16px; text-align: center; justify-content: center; }

/* Mobile sticky call bar */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--gold);
  padding: 14px 24px;
  text-align: center;
  transition: transform 0.25s var(--ease-out);
  will-change: transform;
}
.sticky-call a {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.sticky-call .call-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- Hero --- */
.hero {
  background: var(--navy);
  min-height: clamp(680px, 86vh, 840px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-bg-vid { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse 72% 76% at 50% 44%, rgba(8,30,45,0.79) 0%, rgba(8,30,45,0.73) 38%, rgba(8,30,45,0.61) 64%, rgba(8,30,45,0.47) 100%); }
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 50% 40%, rgba(19,97,104,0.12), transparent 72%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  min-width: 0;
  width: min(1000px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 54px) 24px 38px;
  text-align: center;
  isolation: isolate;
}
.hero-content::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: -92px -270px -84px;
  background: radial-gradient(ellipse at 50% 54%,
    rgba(248,246,240,0.56) 0%,
    rgba(248,246,240,0.48) 20%,
    rgba(248,246,240,0.34) 38%,
    rgba(248,246,240,0.19) 56%,
    rgba(248,246,240,0.07) 73%,
    transparent 92%);
  filter: blur(12px);
  pointer-events: none;
}
.hero-content .eyebrow { display: inline-block; padding: 0; border-radius: 0; background: transparent; color: #102A3A; font-size: 16px; font-weight: 700; letter-spacing: 0.12em; text-shadow: none; -webkit-text-stroke: 0; }
.hero h1 {
  color: var(--navy);
  margin-bottom: 24px;
  font-size: clamp(44px, 4.8vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.hero h1 span { display: block; white-space: nowrap; }
.hero h1 span:first-child { font-size: clamp(20px, 6.8vw, 68px); }
.hero h1 span:last-child { font-size: clamp(28px, 8vw, 80px); }
.hero h1 span:last-child { color: var(--white); }
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: clamp(20px, 1.9vw, 22px);
  color: #173247;
  margin-bottom: 30px;
  max-width: 62ch;
  font-weight: 500;
  line-height: 1.5;
  text-shadow: none;
  -webkit-text-stroke: 0;
  margin-left: auto;
  margin-right: auto;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: block;
  padding-top: 90px;
  padding-bottom: 42px;
}
.hero-primary-cta { min-width: 236px; justify-content: center; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.hero-actions .btn-outline { background: rgba(255,255,255,0.76); border-color: rgba(14,32,49,0.30); color: var(--navy); box-shadow: 0 6px 20px rgba(14,32,49,0.12), inset 0 1px 0 rgba(255,255,255,0.72); }
.hero-actions .btn-outline:hover { background: rgba(255,255,255,0.94); border-color: var(--gold); color: var(--gold-dark); }
.hero-note { margin: 15px auto 0; color: #173247; font-size: 18px; font-weight: 600; line-height: 1.5; text-shadow: none; -webkit-text-stroke: 0; }
.hero-desk-rail {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(420px, 1.5fr) auto;
  align-items: stretch;
  margin-top: 28px;
  border: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}
.hero-desk-rail::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: -34px -180px;
  background: rgba(6,15,26,0.72);
  -webkit-backdrop-filter: blur(22px) saturate(0.86);
  backdrop-filter: blur(22px) saturate(0.86);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.08) 10%, rgba(0,0,0,0.24) 20%, rgba(0,0,0,0.48) 31%, rgba(0,0,0,0.76) 41%, #000 50%, rgba(0,0,0,0.76) 59%, rgba(0,0,0,0.48) 69%, rgba(0,0,0,0.24) 80%, rgba(0,0,0,0.08) 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.08) 10%, rgba(0,0,0,0.24) 20%, rgba(0,0,0,0.48) 31%, rgba(0,0,0,0.76) 41%, #000 50%, rgba(0,0,0,0.76) 59%, rgba(0,0,0,0.48) 69%, rgba(0,0,0,0.24) 80%, rgba(0,0,0,0.08) 90%, transparent 100%);
  filter: blur(5px);
  pointer-events: none;
}
.hero-desk-rail-intro { display: flex; align-items: center; gap: 12px; padding: 17px 20px; border-right: 1px solid rgba(255,255,255,0.12); background: transparent; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #58D0A6; box-shadow: 0 0 0 5px rgba(88,208,166,0.11); flex: 0 0 auto; }
.hero-desk-rail-intro span:not(.status-dot),
.hero-desk-rail-phone span { display: block; margin-bottom: 2px; color: #7FD5DD; font-size:14px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.hero-desk-rail-intro strong { display: block; color: var(--white); font-family: var(--font-serif); font-size: 19px; line-height: 1.3; font-weight: 700; }
.hero-desk-rail-services { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; padding: 7px 8px; }
.hero-desk-rail-services a { display: flex; align-items: center; justify-content: center; min-height: 48px; padding: 10px 12px; border: 1px solid rgba(255,255,255,0.34); border-radius: 6px; background: rgba(255,255,255,0.20); box-shadow: inset 0 1px 0 rgba(255,255,255,0.14); color: var(--white); font-size: 14px; font-weight: 700; text-align: center; transition: background 0.18s, border-color 0.18s, transform 0.18s; }
.hero-desk-rail-services a:hover { background: rgba(26,136,149,0.34); border-color: rgba(166,226,230,0.55); color: var(--white); transform: translateY(-1px); }
.hero-desk-rail-phone { display: flex; flex-direction: column; justify-content: center; padding: 14px 20px; color: var(--white); font-family: var(--font-brand); font-size: 15px; font-weight: 800; letter-spacing: 0.02em; white-space: nowrap; }
.scam-callout-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 64px; align-items: center; }
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-bottom: 48px;
  display: block;
}
.hero-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  margin-top: 28px;
  font-weight: 400;
}
.hero-phone a {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 16px;
}

/* Hero image panel */
.hero-image-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  overflow: hidden;
}
.hero-image-panel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 100%);
  z-index: 1;
}
.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
}

/* Hero two-col layout */
.hero .container {
  display: block;
  width: 100%;
  max-width: var(--max-w);
}
.hero-visual {
  position: relative;
  align-self: center;
}
.hero-visual-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-mid) 0%, #1d3a5a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  opacity: 0.7;
}
.hero-visual-tag {
  font-family: var(--font-serif);
  font-size: 36px;
  color: rgba(255,255,255,0.68);
  font-style: italic;
  text-align: center;
  padding: 0 32px;
  line-height: 1.3;
}
.hero-float-card {
  position: absolute;
  bottom: 32px;
  left: 24px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  max-width: 240px;
}
.hero-float-card .card-label {
  font-size:14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}
.hero-float-card .card-text {
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.4;
  max-width: none;
}

/* --- "Wouldn't it be nice" section --- */
.nice-section {
  background: var(--white);
}
.nice-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: center;
}
.nice-intro h2 {
  font-style: italic;
  color: var(--navy);
  margin-bottom: 24px;
  font-size: clamp(28px, 3.5vw, 44px);
}
.nice-intro p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 20px;
}
.nice-intro .callout {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-top: 32px;
  line-height: 1.5;
}
.scenarios-list { display: flex; flex-direction: column; gap: 0; }
.scenario-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.22s var(--ease);
}
.scenario-item:first-child { padding-top: 0; }
.scenario-item:last-child { border-bottom: none; }
.scenario-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 9px;
}
.scenario-item p {
  font-size: 16px;
  color: var(--text);
  max-width: none;
  line-height: 1.5;
}

/* --- Four Desks --- */
.desks-section { background: var(--cream); }
.desks-header {
  text-align: center;
  margin-bottom: 64px;
}
.desks-header h2 { color: var(--navy); margin-bottom: 16px; }
.desks-header p { color: var(--muted); max-width: 52ch; margin: 0 auto; font-size: 17px; }

.desks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.desk-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  transition: all 0.28s var(--ease);
  position: relative;
  overflow: hidden;
}
.desk-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.desk-card:hover {
  border-color: rgba(19,97,104,0.25);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.desk-card:hover::before { transform: scaleX(1); }
.desk-icon {
  width: 52px;
  height: 52px;
  background: rgba(19,97,104,0.10);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.desk-icon svg { color: var(--gold); }
.desk-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0;
}
.desk-card .desk-tagline {
  font-size:14px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.desk-card p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: none;
}
.desk-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 2px;
  transition: all 0.18s var(--ease);
}
.desk-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  gap: 10px;
}

/* --- Steps --- */
.steps-section { background: var(--navy); position: relative; overflow: hidden; }
.steps-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(8,30,45,0.72);
  pointer-events: none;
}
.steps-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  filter: saturate(0.78) contrast(1.06);
  z-index: 0;
  pointer-events: none;
}
.steps-section .container { position: relative; z-index: 2; }
.steps-header {
  text-align: center;
  margin-bottom: 52px;
}
.steps-header .eyebrow { color: #8FE0E5; font-size: 16px; font-weight: 800; letter-spacing: 0.12em; }
.steps-header h2 { color: var(--white); margin-bottom: 18px; font-size: clamp(38px, 5vw, 58px); font-weight: 700; }
.steps-header p { color: rgba(255,255,255,0.94); max-width: 54ch; margin: 0 auto; font-size: clamp(19px, 2vw, 21px); font-weight: 500; line-height: 1.6; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
}
.steps-grid::before { display: none; }
.step {
  text-align: center;
  padding: 38px 30px 40px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.20);
  border-top: 3px solid #2A9AA3;
  background: rgba(6,20,31,0.72);
  box-shadow: 0 14px 34px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.step-number {
  width: 80px;
  height: 80px;
  border: 4px solid #2A9AA3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 26px;
  position: relative;
  z-index: 1;
  background: #0B2838;
  box-shadow: 0 0 0 7px rgba(42,154,163,0.16);
}
.step h3 {
  font-size: 23px;
  color: var(--white);
  margin-bottom: 15px;
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}
.step p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255,255,255,0.90);
  max-width: 32ch;
  margin: 0 auto;
}

/* --- Owner trust reveal --- */
.owner-reveal-section { background: var(--cream); }
.owner-reveal-grid {
  display: grid;
  grid-template-columns: minmax(320px, 470px) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}
.owner-reveal-photo {
  position: relative;
  max-width: 470px;
  padding: 9px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.owner-reveal-photo::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 20px -14px -14px 20px;
  border: 2px solid rgba(19,97,104,0.25);
}
.owner-reveal-photo img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.owner-photo-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 10px 7px;
}
.owner-photo-caption strong { color: var(--navy); font-size: 18px; }
.owner-photo-caption span { color: #465C6C; font-size: 14px; font-weight: 700; }
.owner-reveal-copy h2 { color: var(--navy); margin-bottom: 14px; }
.owner-reveal-lead { color: var(--gold-dark) !important; font-family: var(--font-serif); font-size: clamp(22px, 2.5vw, 28px) !important; font-weight: 600 !important; }
.owner-reveal-copy > p { color: #465C6C; font-size: 18px; line-height: 1.7; margin-bottom: 18px; }
.owner-reveal-copy > p strong { color: var(--navy); }
.owner-brand-promise { margin: 26px 0 !important; font-family: var(--font-serif); font-size: 22px !important; line-height: 1.5 !important; }
.owner-reveal-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 24px; }
.owner-legacy-link { color: var(--navy); font-size: 15px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.owner-legacy-link:hover { color: var(--gold-dark); }
.owner-assurance {
  margin: 24px 0 0 !important;
  color: #465C6C !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0.025em;
}
.owner-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 58px;
}
.owner-proof-grid article {
  padding: 28px;
  border-top: 4px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.owner-proof-grid h3 { color: var(--navy); font-family: var(--font-sans); font-size: 20px; font-weight: 700; margin-bottom: 9px; }
.owner-proof-grid p { color: #465C6C; font-size: 16px; line-height: 1.65; }
.family-number-line {
  display: inline-block;
  margin-top: 4px;
  padding: 8px 12px;
  border-left: 4px solid var(--gold);
  color: var(--white) !important;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 25px) !important;
  font-weight: 700;
}

/* --- Family Section --- */
.family-section { background: var(--cream-dark); }
.family-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.family-content .eyebrow { color: var(--gold); }
.family-content h2 { color: var(--navy); margin-bottom: 20px; }
.family-content > p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 16px;
}
.family-scenarios {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.family-scenario {
  padding: 14px 0;
  border-bottom: 1px solid rgba(19,97,104,0.2);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--navy);
  line-height: 1.5;
}
.family-scenario:first-child { padding-top: 0; }
.family-scenario:last-child { border-bottom: none; }
.family-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.family-visual-inner {
  text-align: center;
  padding: 40px;
}
.family-visual-inner .big-text {
  font-family: var(--font-serif);
  font-size: 28px;
  font-style: italic;
  color: rgba(255,255,255,0.68);
  line-height: 1.4;
}
.family-stat {
  position: absolute;
  bottom: 32px;
  right: 24px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
}
.family-stat .num {
  font-size: 32px;
  font-weight: 700;
  font-family: var(--font-serif);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.family-stat .label {
  font-size:14px;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.04em;
}

/* --- Standards --- */
.standards-section { background: var(--navy); }
.standards-inner {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 80px;
  align-items: start;
}
.standards-left h2 { color: var(--white); margin-bottom: 16px; }
.standards-left p { color: rgba(255,255,255,0.84); font-size: 18px; line-height: 1.7; margin-bottom: 24px; }
.standards-left .eyebrow { color: #A6E2E6; }
.standards-cta .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.72); }
.standards-cta .btn-outline:hover { color: var(--navy); background: var(--white); border-color: var(--white); }
.standards-cta { margin-top: 40px; }
.standards-list { display: flex; flex-direction: column; gap: 0; }
.standard-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  transition: all 0.22s var(--ease);
}
.standard-item:first-child { padding-top: 0; }
.standard-item:last-child { border-bottom: none; }
.standard-item:hover { padding-left: 8px; }
.standard-num {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: #7FD5DD;
  flex-shrink: 0;
  width: 24px;
  padding-top: 2px;
  font-weight: 400;
}
.standard-item p {
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
  max-width: none;
  line-height: 1.5;
}

/* --- What We Offer --- */
.offerings-section { background: var(--white); }
.offerings-header { text-align: center; margin-bottom: 48px; }
.offerings-header .eyebrow { color: var(--gold-dark); }
.offerings-header h2 { color: var(--navy); margin-bottom: 14px; }
.offerings-header p { color: #465C6C; font-size: 18px; margin: 0 auto; }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.offering-panel {
  position: relative;
  overflow: hidden;
  padding: 30px 26px;
  border: 1px solid rgba(14,32,49,0.16);
  background: rgba(255,255,255,0.025);
  box-shadow: 0 10px 28px rgba(14,32,49,0.10);
  transition: background 0.22s var(--ease), transform 0.22s var(--ease);
}
.offering-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(14,32,49,0.56), rgba(14,32,49,0.90));
  transition: background 0.25s var(--ease);
}
.offering-panel:hover::after { background: linear-gradient(180deg, rgba(14,32,49,0.46), rgba(14,32,49,0.84)); }
.offering-panel > *:not(.offering-panel-video) { position: relative; z-index: 1; }
.offering-panel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.50;
  filter: saturate(0.72) contrast(1.05);
  pointer-events: none;
}
.offering-panel-top { margin-bottom: 22px; }
.offering-number { font-family: var(--font-brand); font-size:14px; font-weight: 800; letter-spacing: 0.12em; color: #7FD5DD; padding-top: 7px; }
.offering-panel h3 { color: var(--white); font-family: var(--font-sans); font-size: 21px; font-weight: 700; letter-spacing: 0; margin: 12px 0 7px; }
.offering-panel-top p { color: rgba(255,255,255,0.88); font-size: 16px; line-height: 1.6; max-width: 42ch; }
.offering-list { display: grid; gap: 11px; }
.offering-list li { position: relative; padding-left: 18px; color: rgba(255,255,255,0.90); font-size: 16px; line-height: 1.5; }
.offering-list li::before { content: ''; position: absolute; left: 0; top: 0.62em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); }
.offering-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; color: #A6E2E6; font-size: 16px; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.offering-link span { transition: transform 0.18s var(--ease); }
.offering-link:hover span { transform: translateX(4px); }
.offerings-footer { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-top: 36px; }
.offerings-footer p { color: #405667; font-family: var(--font-serif); font-style: italic; font-size: 18px; }

/* --- Membership Preview --- */
.memberships-section { background: var(--cream); }
.memberships-header {
  text-align: center;
  margin-bottom: 56px;
}
.memberships-header h2 { color: var(--navy); margin-bottom: 16px; }
.memberships-header p { color: var(--muted); max-width: 50ch; margin: 0 auto; font-size: 17px; }
.membership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.membership-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all 0.28s var(--ease);
  position: relative;
}
.membership-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.membership-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size:14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.membership-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.membership-tier {
  font-size:14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.membership-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}
.membership-price .amount {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.membership-price .per {
  font-size: 14px;
  color: var(--muted);
}
.membership-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.membership-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}
.membership-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.membership-card .btn { width: 100%; justify-content: center; font-size: 14px; padding: 12px 20px; }

.one-time-strip {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.one-time-strip h4 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.one-time-strip p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  max-width: none;
}
.one-time-options {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}
.one-time-option {
  text-align: center;
}
.one-time-option .price {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.one-time-option .desc {
  font-size:14px;
  color: rgba(255,255,255,0.5);
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--navy-mid);
  padding: 20px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: trust-scroll 120s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.trust-bar-item {
  font-size:14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  flex-shrink: 0;
}
.trust-bar-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@keyframes trust-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Contact Strip --- */
.contact-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-strip-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
}
.contact-strip .container { position: relative; z-index: 1; }
.contact-strip h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 46px);
}
.contact-strip p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin: 0 auto 40px;
  max-width: 48ch;
}
.contact-phone-big {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  color: var(--gold-light);
  display: block;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.contact-strip .contact-phone-big { color: var(--white); }
.contact-strip .btn-group { justify-content: center; }
.contact-strip-with-form { text-align: left; }
.contact-strip-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(44px, 7vw, 88px); align-items: center; }
.contact-strip-copy { min-width: 0; }
.contact-strip-with-form .contact-strip-copy > p { margin: 0 0 34px; }
.contact-strip-with-form .contact-phone-big { margin-bottom: 28px; }
.contact-strip-with-form .btn-group { justify-content: flex-start; }
.contact-strip-tagline { margin-top: 22px !important; margin-bottom: 0 !important; font-size: 14px !important; color: rgba(255,255,255,0.68) !important; }
.contact-strip-with-form .zip-checker { text-align: left; }
.contact-strip-with-form .zip-check-wrap { margin-left: 0; }
.contact-strip-form-card {
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.contact-strip-form-mount { scroll-margin-top: 110px; }
.contact-strip-form-card h3 { color: var(--white); font-family: var(--font-sans); font-size: 23px; font-weight: 700; letter-spacing: 0; margin-bottom: 6px; }
.contact-strip-form-card > p { color: rgba(255,255,255,0.58); font-size: 14px; margin: 0 0 24px; max-width: none; }
.contact-strip-form .form-group { margin-bottom: 16px; }
.contact-strip-form .form-group label { color: rgba(255,255,255,0.82); }
.contact-strip-form .form-group input,
.contact-strip-form .form-group select,
.contact-strip-form .form-group textarea { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.18); color: var(--white); }
.contact-strip-form .form-group input::placeholder,
.contact-strip-form .form-group textarea::placeholder { color: rgba(255,255,255,0.68); }
.contact-strip-form .form-group input:focus,
.contact-strip-form .form-group select:focus,
.contact-strip-form .form-group textarea:focus { background: rgba(255,255,255,0.13); border-color: #7FD5DD; }
.contact-strip-form .form-group select option { color: var(--text); background: var(--white); }
.contact-strip-form .form-group textarea { min-height: 104px; }
.contact-strip-form .form-submit .btn { width: 100%; justify-content: center; }
.contact-strip-form .form-note { color: rgba(255,255,255,0.68); font-size:14px; margin-bottom: 0; }
.contact-strip-form .form-status { margin: 12px 0 0; max-width: none; font-size: 14px; }

/* --- FAQ Accordion --- */
.faq-section { background: var(--cream-dark); }
.faq-trust-group {
  padding: 34px;
  border: 1px solid rgba(19,97,104,0.24);
  border-top: 5px solid var(--gold);
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}
.faq-trust-group h2 { color: var(--navy); font-size: clamp(28px, 4vw, 38px); margin-bottom: 12px; }
.faq-trust-group > p { color: #465C6C; font-size: 18px; line-height: 1.7; margin-bottom: 28px; }
.faq-trust-group .faq-list { max-width: none; }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header h2 { color: var(--navy); margin-bottom: 16px; }
.faq-header p { color: var(--muted); max-width: 50ch; margin: 0 auto; font-size: 17px; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow 0.22s var(--ease);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.18s;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: rgba(19,97,104,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  transform: rotate(45deg);
}
.faq-icon svg { color: var(--gold); width: 14px; height: 14px; transition: color 0.25s; }
.faq-item.open .faq-icon svg { color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* --- Footer --- */
.site-footer { background: var(--navy); padding: 64px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.footer-brand .tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  margin-bottom: 20px;
  display: block;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  max-width: 32ch;
}
.footer-phone {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 20px;
  letter-spacing: 0.02em;
}
.footer-col h4 {
  font-size:14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.18s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p {
  font-size:14px;
  color: rgba(255,255,255,0.68);
  max-width: none;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size:14px;
  color: rgba(255,255,255,0.68);
  transition: color 0.18s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* --- Inner page hero --- */
.page-hero {
  background: var(--navy);
  padding: 80px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { color: rgba(19,97,104,0.7); position: relative; z-index: 2; }
.faq-page-hero .eyebrow { color: #A6E2E6; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; font-size: clamp(36px, 5vw, 58px); position: relative; z-index: 2; }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 52ch; margin: 0 auto; font-size: 18px; position: relative; z-index: 2; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero--video .page-hero-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  z-index: 0;
}
.scam-hero .page-hero-vid { opacity: 0.50; }
.page-hero-sm {
  background: var(--navy);
  padding: 48px 0 44px;
}
.page-hero-sm h1 { color: var(--white); font-size: clamp(28px, 4vw, 46px); margin-bottom: 12px; }
.page-hero-sm p { color: rgba(255,255,255,0.55); font-size: 17px; max-width: 52ch; }

/* --- Service page --- */
.service-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 50;
}
.service-nav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.service-nav-inner::-webkit-scrollbar { display: none; }
.service-tab {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 16px 24px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.18s var(--ease);
  display: block;
}
.service-tab:hover { color: var(--navy); }
.service-tab.active { color: var(--navy); border-bottom-color: var(--gold); }

.service-block { padding: 80px 0; }
.service-block-header { margin-bottom: 40px; }
.service-block-header h2 { color: var(--navy); margin-bottom: 12px; }
.service-block-header p { color: var(--muted); font-size: 17px; max-width: 60ch; }
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}
.service-inquiry-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.service-inline-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; flex: 0 0 auto; }
.service-feature {
  padding: 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-feature:nth-child(3n) { border-right: none; }
.service-feature:nth-last-child(-n+3) { border-bottom: none; }
.service-feature h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-family: var(--font-sans);
  letter-spacing: 0;
}
.service-feature p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  max-width: none;
}
.scam-check-callout {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 40px 48px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}
.scam-check-callout h3 { color: var(--white); margin-bottom: 8px; font-family: var(--font-sans); font-size: 22px; font-weight: 700; letter-spacing: 0; }
.scam-check-callout p { color: rgba(255,255,255,0.6); font-size: 16px; max-width: 50ch; }

/* --- Contact page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0;
}
.contact-info p { color: var(--muted); font-size: 16px; margin-bottom: 32px; max-width: 36ch; }
.contact-phone-display {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.contact-phone-label { font-size:14px; color: var(--muted); }
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow);
}
.contact-form-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 32px;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size:14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.18s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-channel[hidden] { display: none; }
.form-note {
  font-size:14px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.6;
  max-width: none;
}
.form-submit { margin-top: 8px; }
.netlify-honeypot {
  position: absolute !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  white-space: nowrap !important;
}
.form-status { margin: 12px 0 0; max-width: none; font-size: 14px; line-height: 1.5; }
.form-status-success { color: #18704A; }
.form-status-error { color: #A23434; }
.contact-strip-form .form-status-success { color: #9BE7C1; }
.contact-strip-form .form-status-error { color: #FFB4B4; }

/* --- Scam check page --- */
.scam-hero {
  background: var(--navy);
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.scam-hero .container { position: relative; z-index: 2; }
.scam-hero .warning-badge, .scam-hero h1, .scam-hero p, .scam-hero .contact-phone-big, .scam-hero .btn-group { position: relative; z-index: 2; }
.scam-hero .warning-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(19,97,104,0.15);
  border: 1px solid rgba(19,97,104,0.3);
  color: var(--gold-light);
  font-size:14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 28px;
}
.scam-hero h1 { color: var(--white); margin-bottom: 20px; }
.scam-hero p { color: rgba(255,255,255,0.65); font-size: 20px; max-width: 52ch; margin: 0 auto 48px; }
.scam-hero .contact-phone-big { margin-bottom: 16px; }
.scam-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.scam-type-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}
.scam-type-card .scam-emoji { font-size: 32px; margin-bottom: 16px; display: block; }
.scam-type-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0;
}
.scam-type-card p { font-size: 15px; color: var(--muted); max-width: none; line-height: 1.6; }

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Utilities --- */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  :root { --section-y: 72px; }
  .membership-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .desks-grid { gap: 16px; }
  .nice-grid { grid-template-columns: 1fr; gap: 48px; }
  .family-grid { grid-template-columns: 1fr; gap: 48px; }
  .family-visual { aspect-ratio: 16/9; }
  .standards-inner { grid-template-columns: 1fr; gap: 48px; }
  .owner-reveal-grid { grid-template-columns: minmax(280px, 390px) minmax(0, 1fr); gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-strip-grid { grid-template-columns: 1fr; gap: 48px; }
  .offerings-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-features-grid { grid-template-columns: repeat(2, 1fr); }
  .service-feature:nth-child(3n) { border-right: 1px solid var(--border); }
  .service-feature:nth-child(2n) { border-right: none; }
}

@media (max-width: 900px) {
  .hero-content { width: 100%; }
  .hero-desk-rail { grid-template-columns: minmax(190px, 0.7fr) minmax(0, 1.3fr); }
  .hero-desk-rail-phone { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.10); }
  .hero-desk-rail-phone span { margin: 0 12px 0 0; }
}

@media (max-width: 768px) {
  :root { --section-y: 56px; }
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-cta .nav-phone { display: none; }
  .hamburger { display: flex; }
  .sticky-call { display: block; }
  body { padding-bottom: 64px; }

  .hero .container { grid-template-columns: 1fr; gap: 0; }
  .hero-inner { padding-top: 70px; padding-bottom: 42px; }
  .hero-visual { display: none; }
  .hero { min-height: auto; }
  .hero h1 { font-size: clamp(36px, 8vw, 52px); }
  .hero h1 span:last-child { margin-left: 0; }
  .hero-content { width: 100%; }
  .hero-sub { font-size: 20px; }
  .hero-content { padding: 38px 2px 30px; }
  .hero-content::after { inset: -54px -72px -48px; }
  .hero-desk-rail::before { inset: -26px -72px; }
  .hero-desk-rail { grid-template-columns: 1fr; margin-top: 22px; }
  .hero-desk-rail-intro { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .hero-desk-rail-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-desk-rail-services a { min-height: 50px; }
  .hero-desk-rail-phone { grid-column: auto; flex-direction: column; align-items: flex-start; padding: 16px 20px; }
  .hero-desk-rail-phone span { margin: 0 0 2px; }

  .desks-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .owner-reveal-grid { grid-template-columns: 1fr; }
  .owner-reveal-photo { width: min(100%, 420px); margin: 0 auto; }
  .owner-proof-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .membership-grid { grid-template-columns: 1fr; }
  .membership-card.featured::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .scam-types-grid { grid-template-columns: 1fr; }
  .hero-content { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .one-time-strip { flex-direction: column; text-align: center; }
  .one-time-options { justify-content: center; }
  .scam-check-callout { flex-direction: column; text-align: center; }
  .scam-callout-grid { grid-template-columns: 1fr; gap: 32px; }
  .offerings-grid { grid-template-columns: 1fr; }
  .offering-panel { padding: 30px 24px; }
  .offerings-footer { flex-direction: column; align-items: flex-start; }
  .contact-form-card { padding: 32px 24px; }
  .faq-trust-group { padding: 26px 20px; }
  .contact-strip-form-card { padding: 28px 22px; }
  .service-features-grid { grid-template-columns: 1fr; }
  .service-feature { border-right: none; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { text-align: center; justify-content: center; }
  .trust-bar-inner { animation-duration: 100s; }
  h1 { letter-spacing: -0.03em; }
}

@media (max-width: 480px) {
  .btn { max-width: 100%; white-space: normal; }
  .sticky-call { padding: 12px 16px; }
  .sticky-call a { font-size: 14px; letter-spacing: 0; }
  .desk-card { padding: 28px 24px; }
  .contact-form-card { padding: 24px 20px; }
  .one-time-strip { padding: 24px; }
  .page-hero { padding: 56px 0 48px; }
}

/* =========================================
   NEW COMPONENTS — v2 UX Upgrade
   ========================================= */

/* --- Need Selector (interactive 4-card) --- */
.need-section {
  background: var(--cream);
  padding: 72px 0 80px;
}
.need-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.need-section-header h2 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: clamp(26px, 3.5vw, 40px);
}
.need-section-header p {
  color: var(--muted);
  font-size: 17px;
  max-width: 50ch;
  margin: 0 auto;
}
.need-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}
.need-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.need-card.open {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow);
}
.need-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.need-card-header:hover .need-card-main strong {
  color: var(--gold-dark);
}
.need-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(19,97,104,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  transition: background 0.22s var(--ease);
}
.need-card.open .need-icon-wrap {
  background: var(--gold);
}
.need-card-main {
  flex: 1;
}
.need-card-main strong {
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
  transition: color 0.18s;
}
.need-card-main span {
  font-size: 15px;
  color: var(--muted);
}
.need-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--muted);
  transition: transform 0.3s var(--ease), color 0.22s;
}
.need-card.open .need-arrow {
  transform: rotate(90deg);
  color: var(--gold);
}
.need-card-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.need-expanded-inner {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
}
.sounds-like {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 500;
}
.sounds-like strong { color: var(--gold-dark); font-weight: 700; }
.need-check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.need-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text);
}
.need-check-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.need-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.need-ctas .btn { font-size: 15px; padding: 12px 22px; }

/* --- Smart Search --- */
.smart-search-section {
  background: var(--navy);
  padding: 64px 0;
}
.smart-search-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.smart-search-label {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}
.smart-search-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  margin-bottom: 28px;
}
.search-wrap {
  display: flex;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.search-wrap input {
  flex: 1;
  padding: 18px 24px;
  font-size: 17px;
  border: none;
  background: transparent;
  color: var(--text);
  font-family: var(--font-sans);
  outline: none;
  min-width: 0;
}
.search-wrap input::placeholder { color: rgba(14,32,49,0.35); }
.search-submit {
  padding: 18px 28px;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s var(--ease);
  flex-shrink: 0;
}
.search-submit:hover { background: var(--gold-dark); }
.search-result {
  margin-top: 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  text-align: left;
  animation: fade-in-up 0.38s var(--ease-out) both;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.search-result.hidden { display: none; }

/* new: match header row */
.search-match-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.search-desk-chip {
  font-size:14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.search-match-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.search-result-text {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
  line-height: 1.6;
  max-width: none;
}

/* "When you call, say:" script box */
.search-script-box {
  background: rgba(19,97,104,0.18);
  border: 1px solid rgba(19,97,104,0.38);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
}
.search-script-label {
  font-size:14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 8px;
}
.search-script-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,0.90);
  line-height: 1.55;
  max-width: none;
}
.search-result-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.search-result-ctas .btn { font-size: 14px; padding: 11px 20px; }
.search-no-result {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  text-align: center;
  line-height: 1.6;
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Desk Showcase Rows (image + copy) --- */
.desk-showcase-section { padding: 0; overflow: hidden; }
.desk-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.desk-row.flip { }
.desk-row-photo {
  position: relative;
  overflow: hidden;
  background: var(--navy-mid);
}
.desk-row-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.desk-row:hover .desk-row-photo img { transform: scale(1.03); }
.desk-row-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,32,49,0.18) 0%, transparent 55%);
}
.desk-row-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
}
.desk-row-photo-placeholder span {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.68);
  text-align: center;
  padding: 32px;
  line-height: 1.5;
}
.desk-row-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.desk-row:nth-child(even) .desk-row-content {
  background: var(--cream);
  order: -1;
}
.desk-row-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size:14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.desk-row-badge::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.desk-row-content h2 {
  color: var(--navy);
  margin-bottom: 16px;
  font-size: clamp(24px, 3vw, 38px);
}
.desk-row-content .desk-hook {
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 24px;
  font-style: italic;
  font-family: var(--font-serif);
  line-height: 1.5;
  max-width: 44ch;
}
.desk-row-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.desk-row-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}
.desk-row-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* --- Membership Quiz --- */
.membership-quiz-section {
  background: var(--navy);
  padding: 80px 0;
}
.quiz-header { text-align: center; margin-bottom: 48px; }
.quiz-header .eyebrow { color: rgba(19,97,104,0.7); }
.quiz-header h2 { color: var(--white); margin-bottom: 12px; }
.quiz-header p { color: rgba(255,255,255,0.55); max-width: 48ch; margin: 0 auto; font-size: 17px; }
.quiz-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 800px;
  margin: 0 auto 40px;
}
.quiz-opt {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  text-align: left;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  font-family: var(--font-sans);
  color: var(--white);
}
.quiz-opt:hover {
  border-color: rgba(19,97,104,0.5);
  background: rgba(19,97,104,0.08);
}
.quiz-opt.selected {
  border-color: var(--gold);
  background: rgba(19,97,104,0.15);
  box-shadow: 0 0 0 1px var(--gold);
}
.quiz-opt strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
}
.quiz-opt span {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.quiz-opt.selected strong { color: var(--gold-light); }
.quiz-result-panel {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 44px;
  display: none;
  animation: fade-in-up 0.4s var(--ease-out) both;
}
.quiz-result-panel.visible { display: block; }
.quiz-result-panel .result-badge {
  font-size:14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.quiz-result-panel .result-recommend {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 58ch;
}
.quiz-result-plan {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.quiz-plan-price {
  flex-shrink: 0;
}
.quiz-plan-price .amount {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.quiz-plan-price .per { font-size: 15px; color: var(--muted); }
.quiz-plan-features {
  flex: 1;
  min-width: 200px;
}
.quiz-plan-features h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 16px;
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: 0;
}
.quiz-plan-features ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.quiz-plan-features li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}
.quiz-plan-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Bell CTA --- */
.bell-section {
  background: var(--cream-dark);
  padding: 64px 0;
  text-align: center;
}
.bell-label {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  color: var(--navy);
  margin-bottom: 24px;
  display: block;
}
.bell-btn {
  width: 80px;
  height: 80px;
  background: var(--navy);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.25s var(--ease);
  box-shadow: 0 4px 24px rgba(14,32,49,0.20);
}
.bell-btn:hover {
  background: var(--gold);
  transform: scale(1.07);
}
.bell-btn.ring {
  animation: bell-ring 0.5s var(--ease);
}
@keyframes bell-ring {
  0%,100% { transform: rotate(0) scale(1); }
  20%      { transform: rotate(-15deg) scale(1.1); }
  40%      { transform: rotate(12deg) scale(1.1); }
  60%      { transform: rotate(-8deg) scale(1.08); }
  80%      { transform: rotate(5deg) scale(1.05); }
}
.bell-options {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  animation: fade-in-up 0.3s var(--ease-out) both;
}
.bell-options.hidden { display: none; }
.bell-options a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.18s var(--ease);
}
.bell-options a:hover { background: var(--gold); transform: translateY(-1px); }

/* --- Booking page / stub --- */
.booking-hero {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.booking-hero h1 { color: var(--white); margin-bottom: 16px; }
.booking-hero p { color: rgba(255,255,255,0.6); font-size: 18px; max-width: 48ch; margin: 0 auto 40px; }
.booking-coming-soon {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow);
}
.booking-coming-soon .cal-icon {
  font-size: 56px;
  margin-bottom: 24px;
  display: block;
}
.booking-coming-soon h2 {
  color: var(--navy);
  margin-bottom: 16px;
  font-size: 28px;
}
.booking-coming-soon p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: none;
}

/* --- Responsive overrides for new components --- */
@media (max-width: 1024px) {
  .desk-row { grid-template-columns: 1fr; min-height: auto; }
  .desk-row:nth-child(even) .desk-row-content { order: 0; }
  .desk-row-content { padding: 48px 40px; }
  .desk-row-photo-placeholder { min-height: 280px; }
  .quiz-options-grid { grid-template-columns: 1fr; }
  .quiz-result-plan { flex-direction: column; gap: 16px; }
  .quiz-result-panel { padding: 32px 28px; }
}
@media (max-width: 768px) {
  .need-card-header { padding: 18px 20px; gap: 14px; }
  .need-icon-wrap { width: 44px; height: 44px; font-size: 20px; }
  .need-card-main strong { font-size: 17px; }
  .need-expanded-inner { padding: 16px 20px 24px; }
  .search-wrap { flex-direction: column; border-radius: var(--radius); }
  .search-wrap input { padding: 16px 20px; }
  .search-submit { padding: 16px 20px; border-radius: 0 0 var(--radius) var(--radius); }
  .desk-row-content { padding: 40px 24px; }
  .bell-section { padding: 48px 0; }
  .booking-coming-soon { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .desk-card { padding: 28px 24px; }
  .contact-form-card { padding: 24px 20px; }
  .one-time-strip { padding: 24px; }
  .page-hero { padding: 56px 0 48px; }
}

/* =========================================
   FEATURE: SCAM CHECK TOOL
   ========================================= */
.scam-tool-section { background: var(--navy-mid); padding: 72px 0; }
.scam-tool-inner { max-width: 760px; margin: 0 auto; }
.scam-tool-inner .eyebrow { color: rgba(19,97,104,0.75); }
.scam-tool-inner h2 { color: var(--white); margin-bottom: 8px; }
.scam-tool-inner > p { color: rgba(255,255,255,0.55); font-size: 17px; margin-bottom: 32px; max-width: none; }
.scam-tool-textarea {
  width: 100%; background: rgba(255,255,255,0.06); border: 2px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md); padding: 20px 24px; font-family: var(--font-sans);
  font-size: 17px; color: var(--white); resize: vertical; min-height: 140px;
  display: block; margin-bottom: 16px; transition: border-color 0.2s; line-height: 1.6;
}
.scam-tool-textarea::placeholder { color: rgba(255,255,255,0.68); }
.scam-tool-textarea:focus { outline: none; border-color: var(--gold); }
.scam-tool-btn {
  background: var(--gold); color: var(--white); border: none; border-radius: var(--radius);
  padding: 16px 36px; font-family: var(--font-sans); font-size: 16px; font-weight: 700;
  cursor: pointer; transition: background 0.18s var(--ease);
}
.scam-tool-btn:hover { background: var(--gold-dark); }
.scam-verdict { margin-top: 28px; border-radius: var(--radius-md); overflow: hidden; animation: fade-in-up 0.35s var(--ease-out) both; }
.scam-verdict.hidden { display: none; }
.verdict-header { padding: 24px 32px; display: flex; align-items: center; gap: 16px; }
.verdict-icon { font-size: 30px; flex-shrink: 0; }
.verdict-title { font-size: 20px; font-weight: 800; font-family: var(--font-brand); letter-spacing: 0.02em; display: block; line-height: 1.2; }
.verdict-sub { font-size: 14px; opacity: 0.8; display: block; margin-top: 4px; }
.verdict-high .verdict-header { background: #B03A2E; color: #fff; }
.verdict-caution .verdict-header { background: #CA6F1E; color: #fff; }
.verdict-ok .verdict-header { background: var(--gold); color: #fff; }
.verdict-member .verdict-header { background: var(--navy); color: #fff; }
.verdict-body { background: var(--white); padding: 24px 32px; }
.verdict-flags { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.verdict-flag { display: flex; gap: 12px; align-items: flex-start; padding: 12px 16px; background: var(--cream); border-radius: var(--radius); border-left: 3px solid #B03A2E; }
.verdict-ok .verdict-flag { border-left-color: var(--gold); }
.verdict-flag-label { font-size: 14px; font-weight: 700; color: var(--navy); display: block; margin-bottom: 2px; }
.verdict-flag-detail { font-size:14px; color: var(--muted); max-width: none; }
.verdict-actions { display: flex; gap: 12px; flex-wrap: wrap; padding-top: 4px; }
.verdict-clear { background: none; border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 20px; font-size: 14px; font-weight: 600; color: var(--muted); cursor: pointer; transition: all 0.18s; font-family: var(--font-sans); }
.verdict-clear:hover { border-color: var(--navy); color: var(--navy); }

/* =========================================
   FEATURE: MULTI-STEP WIZARD
   ========================================= */
.wizard-section { background: var(--cream); padding: 80px 0; }
.wizard-header { text-align: center; margin-bottom: 48px; }
.wizard-header h2 { color: var(--navy); margin-bottom: 12px; }
.wizard-header p { color: var(--muted); max-width: 52ch; margin: 0 auto; font-size: 17px; }
.wizard-inner { max-width: 760px; margin: 0 auto; }
.wizard-progress { display: flex; gap: 8px; margin-bottom: 40px; justify-content: center; }
.wizard-progress-bottom { margin: 24px 0 0; }
.wizard-pip { width: 32px; height: 4px; border-radius: 2px; background: var(--border); transition: background 0.3s var(--ease); }
.wizard-pip.active { background: var(--gold); }
.wizard-step { display: none; }
.wizard-step.visible { display: block; animation: fade-in-up 0.3s var(--ease-out) both; }
.wizard-question { font-family: var(--font-serif); font-size: clamp(20px, 3vw, 28px); color: var(--navy); margin-bottom: 28px; text-align: center; line-height: 1.35; max-width: none; }
.wizard-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.wizard-opts-three { grid-template-columns: repeat(3, 1fr); }
.wizard-opt-btn { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius-md); padding: 16px 18px; text-align: left; cursor: pointer; transition: all 0.2s var(--ease); font-family: var(--font-sans); display: flex; align-items: center; gap: 10px; }
#wizard-step-1 .wizard-opt-btn { min-height: 102px; padding: 24px 28px; gap: 16px; }
#wizard-step-1 .wizard-opt-icon { font-size: 27px; }
#wizard-step-1 .wizard-opt-label { font-size: 17px; }
.wizard-opt-btn:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-2px) scale(1.03); }
.wizard-opt-btn:active { transform: scale(0.98); transition-duration: 0.08s; }
.wizard-opt-btn.selected { border-color: var(--gold); background: rgba(19,97,104,0.06); box-shadow: 0 0 0 1px var(--gold); }
.wizard-opt-icon { font-size: 20px; display: block; flex: 0 0 auto; }
.wizard-opt-label { font-size: 15px; font-weight: 700; color: var(--navy); display: block; line-height: 1.3; }
.wizard-opt-sub { font-size:14px; color: var(--muted); line-height: 1.45; }
.wizard-result-card { background: var(--navy); border-radius: var(--radius-lg); padding: 44px 48px; animation: fade-in-up 0.4s var(--ease-out) both; }
.wizard-result-eyebrow { font-size:14px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); display: block; margin-bottom: 12px; }
.wizard-result-headline { font-family: var(--font-serif); font-size: clamp(20px, 3vw, 30px); color: var(--white); margin-bottom: 14px; line-height: 1.3; max-width: none; }
.wizard-result-body { font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 28px; max-width: 58ch; line-height: 1.7; }
.wizard-script-box { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md); padding: 22px 26px; margin-bottom: 28px; }
.wizard-script-label { font-size:14px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light); display: block; margin-bottom: 10px; }
.wizard-script-text { font-family: var(--font-serif); font-style: italic; font-size: 17px; color: var(--white); line-height: 1.6; max-width: none; }
.wizard-result-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.wizard-restart { background: none; border: none; color: rgba(255,255,255,0.68); font-size: 14px; font-family: var(--font-sans); cursor: pointer; padding: 0; text-decoration: underline; transition: color 0.18s; }
.wizard-restart:hover { color: rgba(255,255,255,0.65); }
.wizard-message-panel { margin-top: 28px; padding: 28px; border-radius: var(--radius-md); background: var(--white); color: var(--text); }
.wizard-message-panel[hidden] { display: none; }
.wizard-message-panel h4 { color: var(--navy); font-size: 21px; margin-bottom: 6px; }
.wizard-message-panel > p { color: var(--muted); font-size: 14px; margin-bottom: 24px; max-width: none; }
.wizard-contact-form .form-group label { color: var(--navy); }
.wizard-contact-form .form-submit .btn { width: 100%; justify-content: center; }
.wizard-contact-form .form-note { margin-bottom: 0; }

/* =========================================
   FEATURE: ZIP CHECKER
   ========================================= */
.zip-checker { margin-top: 36px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }
.zip-checker-label { font-size: 14px; color: rgba(255,255,255,0.68); display: block; margin-bottom: 12px; }
.zip-check-wrap { display: flex; gap: 0; max-width: 300px; margin: 0 auto; }
.zip-input { flex: 1; padding: 13px 16px; font-size: 18px; font-weight: 700; font-family: var(--font-brand); letter-spacing: 0.1em; border: 2px solid rgba(255,255,255,0.15); border-right: none; background: rgba(255,255,255,0.07); color: var(--white); border-radius: var(--radius) 0 0 var(--radius); outline: none; transition: border-color 0.2s; }
.zip-input::placeholder { color: rgba(255,255,255,0.68); font-weight: 400; font-size: 14px; letter-spacing: 0; }
.zip-input:focus { border-color: var(--gold); }
.zip-submit { padding: 13px 18px; background: var(--gold); color: var(--white); border: none; border-radius: 0 var(--radius) var(--radius) 0; font-size: 14px; font-weight: 700; font-family: var(--font-sans); cursor: pointer; white-space: nowrap; transition: background 0.18s; }
.zip-submit:hover { background: var(--gold-dark); }
.zip-result-msg { margin-top: 12px; font-size: 15px; font-weight: 600; min-height: 22px; }
.zip-yes { color: var(--gold-light); }
.zip-no { color: rgba(255,255,255,0.68); }

@media (max-width: 768px) {
  .wizard-opts, .wizard-opts-three { grid-template-columns: 1fr; }
  .wizard-result-card { padding: 32px 24px; }
  .wizard-message-panel { padding: 24px 18px; }
  #wizard-step-1 .wizard-opt-btn { min-height: 84px; padding: 20px 22px; }
  .verdict-body, .verdict-header { padding: 20px 20px; }
  .scam-tool-textarea { font-size: 16px; }
}

/* =========================================
   POLISH PASS — haptics, glow, trust, mobile
   ========================================= */

/* --- Button press haptic feel --- */
.btn:active,
.btn-phone:active {
  transform: translateY(0) scale(0.965) !important;
  transition-duration: 0.06s !important;
  box-shadow: none !important;
}
.btn-primary:focus-visible,
.btn-phone:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(19,97,104,0.45);
}
.btn-outline:focus-visible,
.btn-outline-light:focus-visible {
  outline: 3px solid rgba(19,97,104,0.5);
  outline-offset: 2px;
}

/* --- Teal ambient glow on primary hover (calm, not neon) --- */
.btn-primary:hover,
.btn-phone:hover {
  box-shadow: 0 6px 28px rgba(19,97,104,0.32), 0 2px 8px rgba(19,97,104,0.18);
}

/* --- Focus-visible ring — beautiful & accessible --- */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .trust-bar-inner { animation: none !important; transform: none !important; }
}

/* --- Form input glow on focus --- */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(19,97,104,0.14), 0 1px 4px rgba(14,32,49,0.08);
}

/* --- Sticky call bar: pulse glow, safe-area, press feel --- */
.sticky-call {
  box-shadow: 0 -2px 24px rgba(19,97,104,0.20);
  padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  transition: box-shadow 0.3s var(--ease);
}
.sticky-call:hover {
  box-shadow: 0 -4px 32px rgba(19,97,104,0.38);
}
.sticky-call a:active {
  opacity: 0.88;
}

@keyframes call-glow {
  0%, 100% { box-shadow: 0 -2px 20px rgba(19,97,104,0.14); }
  50%       { box-shadow: 0 -4px 36px rgba(19,97,104,0.36); }
}
.sticky-call {
  animation: call-glow 3.5s ease-in-out infinite;
}

/* --- Nav active link: teal underline dot --- */
.nav-links a.active {
  color: var(--white);
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-links a {
  position: relative;
  transition: color 0.18s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.22s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* --- Card hover: teal ambient glow --- */
.desk-card:hover {
  box-shadow: 0 8px 40px rgba(19,97,104,0.13), 0 2px 12px rgba(14,32,49,0.08) !important;
}
.membership-card:hover,
.membership-full-card:hover {
  box-shadow: 0 8px 40px rgba(19,97,104,0.10), var(--shadow) !important;
}

/* --- Step numbers: teal halo when in view --- */
.step-number {
  transition: box-shadow 0.7s var(--ease-out);
}
.step-number.glowing {
  box-shadow: 0 0 0 9px rgba(42,154,163,0.20), 0 0 28px rgba(42,154,163,0.24);
}

/* --- Contact phone: subtle heartbeat draws the call --- */
@keyframes phone-breath {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.80; }
}
.contact-phone-big {
  animation: phone-breath 4s ease-in-out infinite;
  display: inline-block;
}

/* --- Scroll reveal: smoother entry --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }

/* --- Body text: balanced headlines on mobile --- */
h1, h2 { text-wrap: balance; }

/* --- Trust bar: more readable, glowing separator dots --- */
.trust-bar-item {
  color: rgba(255,255,255,0.68) !important;
}
.trust-bar-dot {
  width: 5px;
  height: 5px;
  box-shadow: 0 0 6px rgba(19,97,104,0.7);
}

/* --- Zip checker: teal glow on focus --- */
.zip-input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(19,97,104,0.18) !important;
}
.zip-submit:active {
  transform: scale(0.96);
  transition-duration: 0.06s;
}

/* --- Wizard option buttons: press feel --- */
.wizard-opt-btn:active {
  transform: scale(0.97) !important;
  transition-duration: 0.06s !important;
}
.wizard-opt-btn.selected {
  box-shadow: 0 0 0 1px var(--gold), 0 4px 20px rgba(19,97,104,0.14) !important;
}

/* --- Need card header: nicer tap feel --- */
.need-card-header:active {
  background: rgba(19,97,104,0.04);
}

/* --- FAQ accordion: smoother expand --- */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s var(--ease-out);
}

/* --- Mobile: safe area and footer padding --- */
@media (max-width: 768px) {
  footer.site-footer {
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }
  .btn { min-height: 48px; }
  .btn-lg { min-height: 56px; }
  .hamburger {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    transition: background 0.18s;
  }
  .hamburger:active { background: rgba(255,255,255,0.08); }
  .zip-check-wrap { max-width: 100%; }
  .wizard-opt-btn { padding: 18px 16px; min-height: 72px; }
}

/* --- Scam check btn: trust-green feel --- */
.scam-tool-btn:active {
  transform: scale(0.97) !important;
  transition-duration: 0.06s !important;
}

/* === Hero panel service rows === */
.panel-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 26px;
  border-left: 3px solid rgba(19,97,104,0);
  border-top: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.panel-row:first-child {
  border-top: none;
}
.panel-row:hover {
  background: rgba(19,97,104,0.26);
  border-left-color: #1A8895;
  transform: translateX(5px) translateY(-1px);
}
.panel-row:active {
  transform: translateX(2px) translateY(0);
  transition-duration: 0.08s;
}
.panel-row-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.24s cubic-bezier(0.34,1.56,0.64,1);
}
.panel-row:hover .panel-row-icon {
  transform: scale(1.22);
}
.panel-row-label {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  display: block;
  line-height: 1.2;
  transition: color 0.18s ease;
}
.panel-row:hover .panel-row-label {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(26,136,149,0.5);
}
.panel-row-sub {
  font-size:14px;
  color: rgba(255,255,255,0.50);
  transition: color 0.24s ease;
}
.panel-row:hover .panel-row-sub {
  color: rgba(255,255,255,0.75);
}
.panel-phone-footer {
  padding: 18px 26px;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(19,97,104,0.12);
  text-align: center;
  transition: background 0.24s ease;
}

/* =========================================
   ELDERLY-FIRST ACCESSIBILITY PASS
   Clear type, strong contrast, large targets
   ========================================= */
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 13px 18px;
  border: 3px solid var(--white);
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  text-decoration: underline;
  box-shadow: 0 0 0 3px var(--navy);
}
.skip-link:focus { transform: translateY(0); }

main { outline: none; }
body { overflow-x: clip; }

/* A visible dual-color focus indicator survives both light and dark panels. */
:focus-visible,
.btn-primary:focus-visible,
.btn-phone:focus-visible,
.btn-outline:focus-visible,
.btn-outline-light:focus-visible {
  outline: 3px solid var(--white) !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 6px var(--navy) !important;
}

/* Controls remain easy to see and tap with reduced dexterity. */
.btn,
.hamburger,
.faq-question,
.wizard-opt-btn,
.quiz-opt,
.scam-tool-btn,
.verdict-clear,
.zip-submit {
  min-height: 48px;
}
.btn { font-size: 16px; font-weight: 700; }
.hamburger { width: 48px; height: 48px; align-items: center; justify-content: center; padding: 10px; }
.nav-links a { min-height: 44px; display: inline-flex; align-items: center; font-size: 15px; font-weight: 600; }
.nav-phone { min-height: 44px; display: inline-flex; align-items: center; font-size: 16px; }
.mobile-menu a { min-height: 52px; display: flex; align-items: center; font-size: 18px; font-weight: 700; }
.mobile-menu .btn { justify-content: center; }

/* Form instructions and entered text never depend on tiny type or placeholders. */
.form-group label { font-size: 16px; font-weight: 700; letter-spacing: 0.015em; }
.form-group input,
.form-group select,
.form-group textarea,
.search-wrap input,
.scam-tool-textarea {
  min-height: 52px;
  font-size: 18px;
  line-height: 1.5;
}
.form-group select { appearance: auto; -webkit-appearance: menulist; }
.form-group input::placeholder,
.form-group textarea::placeholder,
.search-wrap input::placeholder,
.scam-tool-textarea::placeholder { opacity: 1; }
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(14,32,49,0.82) !important;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.92) !important;
}
.contact-strip-form input:focus,
.contact-strip-form textarea:focus,
.contact-strip-form select:focus {
  outline-color: #BDEBF0 !important;
  box-shadow: 0 0 0 6px rgba(14,32,49,0.88) !important;
}
.form-note,
.form-status,
.contact-strip-form-card > p,
.contact-strip-form .form-note,
.contact-strip-form .form-status,
.wizard-message-panel > p { font-size: 15px; line-height: 1.65; }

/* FAQ answers are a core support surface, not secondary fine print. */
.faq-question { font-size: 18px; line-height: 1.45; }
.faq-answer-inner { font-size: 18px; color: #405667; line-height: 1.75; }
.faq-icon { width: 30px; height: 30px; }
.faq-icon svg { width: 16px; height: 16px; }

/* Restore contrast where video and navy panels previously muted support copy. */
.contact-strip p,
.page-hero p,
.page-hero-sm p,
.families-hero p,
.scam-hero p,
.wizard-result-body,
.wizard-result-actions .wizard-restart,
.zip-checker-label,
.zip-no,
.panel-row-sub { color: rgba(255,255,255,0.84) !important; }
.contact-strip-form-card > p,
.contact-strip-form .form-note { color: rgba(255,255,255,0.82); }
.trust-bar-item { color: rgba(255,255,255,0.84) !important; }
.nav-phone,
.nav-logo-sub,
.site-footer p[style*="gold-light"],
.wizard-result-eyebrow,
.wizard-script-label,
.scam-hero .warning-badge,
.zip-yes { color: #7FD5DD !important; }
.page-hero .eyebrow,
.page-hero-sm .eyebrow,
.families-hero .eyebrow,
.scam-hero .eyebrow,
.contact-strip .eyebrow,
.steps-section .eyebrow,
.standards-full .eyebrow { color: #A6E2E6 !important; }

/* Text links look like links without relying on color alone. */
main p a:not(.btn),
.faq-answer-inner a,
.founder-community a,
.owner-legacy-link {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.footer-col a,
.footer-bottom a { min-height: 44px; display: inline-flex; align-items: center; }
.footer-brand p,
.footer-col a,
.footer-col li,
.footer-bottom p,
.footer-bottom a {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
}
.footer-col h4 { color: var(--white); font-size: 15px; }
.footer-col li { line-height: 1.5; }
.footer-phone { color: #6FD5DE; min-height: 48px; display: inline-flex; align-items: center; }

/* Ambient pulsing adds distraction without conveying information. */
.sticky-call,
.contact-phone-big { animation: none; }

@media (max-width: 768px) {
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); }
  .container { padding-left: 18px; padding-right: 18px; }
  .sticky-call { min-height: 60px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px)); }
  .sticky-call a { min-height: 44px; font-size: 17px; line-height: 1.25; }
  .hero-actions .btn,
  .btn-group .btn { width: 100%; }
  .hero h1 span { white-space: normal; }
  .owner-photo-caption { align-items: flex-start; flex-direction: column; gap: 2px; }
  .faq-question { padding: 20px 18px; }
  .faq-answer-inner { padding: 0 18px 22px; }
  .contact-strip-form-card,
  .contact-form-card { padding: 26px 18px; }
  .wizard-result-card { padding: 28px 18px; }
}

@media (max-width: 380px) {
  .nav-logo-name { font-size: 15px; }
  .nav-logo-sub { font-size: 14px; letter-spacing: 0.14em; }
  .nav-logo-mark { width: 32px; height: 32px; }
  .contact-phone-big { font-size: 34px; letter-spacing: 0; }
}

/* Protect the header before desktop navigation begins to compress or wrap. */
@media (max-width: 1260px) {
  .nav-phone { display: none; }
  .nav-links a { padding-left: 12px; padding-right: 12px; }
}

@media (max-width: 1120px) {
  .nav-links,
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* =========================================
   SERVICES — GUIDED TOUR
   Distinct rhythms for each kind of help
   ========================================= */
.service-block,
.services-scam-break { scroll-margin-top: 132px; }
.services-overview { background: var(--cream); }
.services-overview-heading { max-width: 760px; margin-bottom: 38px; }
.services-overview-heading h2 { color: var(--navy); margin-bottom: 14px; }
.services-overview-heading p { color: #405667; font-size: 19px; line-height: 1.65; }
.services-tour-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--navy);
  border-bottom: 1px solid var(--border);
}
.tour-overview-item {
  min-height: 220px;
  padding: 28px 24px 30px;
  border-right: 1px solid var(--border);
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.tour-overview-item:last-child { border-right: 0; }
.tour-overview-item:hover { background: var(--white); }
.tour-overview-item > span { color: var(--gold-dark); font-size: 15px; font-weight: 800; letter-spacing: 0.12em; }
.tour-overview-item h3 { color: var(--navy); font-family: var(--font-sans); font-size: 21px; font-weight: 800; margin: 30px 0 9px; }
.tour-overview-item p { color: #465C6C; font-size: 16px; line-height: 1.6; }

.service-tour-tech { background: var(--white); }
.service-tour-split { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(50px, 8vw, 96px); align-items: start; }
.service-tour-intro { position: sticky; top: 154px; }
.service-tour-intro h2,
.service-tour-heading h2 { color: var(--navy); margin-bottom: 18px; }
.service-tour-intro > p,
.service-tour-heading > p { color: #405667; font-size: 19px; line-height: 1.7; }
.service-line-list { border-top: 2px solid var(--navy); }
.service-line-list article { display: grid; grid-template-columns: minmax(150px, 0.72fr) minmax(0, 1.28fr); gap: 26px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.service-line-list h3 { color: var(--navy); font-family: var(--font-sans); font-size: 19px; font-weight: 800; letter-spacing: 0; }
.service-line-list p { color: #465C6C; font-size: 17px; line-height: 1.65; max-width: none; }
.service-text-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  margin-top: 26px;
  border: 0;
  border-bottom: 2px solid var(--gold);
  background: transparent;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  text-align: left;
}
.service-text-action:hover { color: var(--gold-dark); border-bottom-color: var(--navy); }

.service-tour-home { background: var(--cream-dark); }
.service-tour-heading { max-width: 780px; margin-bottom: 48px; }
.home-coordination-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 2px solid var(--navy); }
.home-coordination-group { padding: 30px 30px 8px 0; border-right: 1px solid rgba(14,32,49,0.16); }
.home-coordination-group + .home-coordination-group { padding-left: 30px; }
.home-coordination-group:last-child { padding-right: 0; border-right: 0; }
.coordination-number { color: var(--gold-dark); font-size: 15px; font-weight: 800; letter-spacing: 0.12em; }
.home-coordination-group > h3 { min-height: 58px; margin: 16px 0 22px; color: var(--navy); font-family: var(--font-sans); font-size: 21px; font-weight: 800; }
.coordination-item { padding: 20px 0; border-top: 1px solid rgba(14,32,49,0.14); }
.coordination-item h4 { color: var(--navy); font-size: 17px; margin-bottom: 7px; }
.coordination-item p { color: #465C6C; font-size: 16px; line-height: 1.65; }
.service-section-foot { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 34px; }
.service-section-foot > p { color: #465C6C; font-size: 15px; line-height: 1.6; max-width: 70ch; }
.service-section-foot .service-text-action { flex: 0 0 auto; margin-top: 0; }

.services-mid-cta { padding: 58px 0; background: var(--navy); }
.services-mid-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 44px; }
.services-mid-cta .eyebrow { color: #A6E2E6; }
.services-mid-cta h2 { max-width: 720px; color: var(--white); font-size: clamp(28px, 3.7vw, 42px); }
.services-mid-cta .btn-group { flex: 0 0 auto; }

.service-tour-life { background: var(--white); }
.service-tour-heading-centered { margin-left: auto; margin-right: auto; text-align: center; }
.service-tour-heading-centered > p { margin-left: auto; margin-right: auto; }
.life-conversation-list { max-width: 920px; margin: 0 auto; border-top: 2px solid var(--navy); }
.life-conversation-list article { display: grid; grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr); gap: 44px; align-items: baseline; padding: 24px 6px; border-bottom: 1px solid var(--border); }
.life-conversation-list h3 { color: var(--navy); font-size: 20px; font-weight: 700; }
.life-conversation-list p { color: #405667; font-size: 17px; line-height: 1.65; max-width: none; }
.service-centered-action { text-align: center; }

.service-tour-family { background: var(--navy); }
.family-tour-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(50px, 8vw, 96px); align-items: center; }
.family-tour-copy .eyebrow { color: #A6E2E6; }
.family-tour-copy h2 { color: var(--white); margin-bottom: 18px; }
.family-tour-copy > p { color: rgba(255,255,255,0.86); font-size: 18px; line-height: 1.7; margin-bottom: 17px; }
.family-tour-copy > p strong { color: var(--white); }
.family-tour-copy .family-tour-lead { color: var(--white); font-family: var(--font-serif); font-size: clamp(22px, 2.5vw, 29px); font-weight: 600; line-height: 1.5; }
.family-tour-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 30px; }
.service-text-action-light { color: var(--white); border-bottom-color: #7FD5DD; margin-top: 0; }
.service-text-action-light:hover { color: #A6E2E6; border-bottom-color: var(--white); }
.family-trust-list { border-top: 1px solid rgba(255,255,255,0.30); }
.family-trust-list > div { display: grid; grid-template-columns: 42px minmax(190px, 0.8fr) minmax(0, 1.2fr); gap: 18px; padding: 23px 0; border-bottom: 1px solid rgba(255,255,255,0.18); }
.family-trust-list span { color: #7FD5DD; font-size: 15px; font-weight: 800; }
.family-trust-list h3 { color: var(--white); font-family: var(--font-sans); font-size: 18px; font-weight: 800; }
.family-trust-list p { color: rgba(255,255,255,0.84); font-size: 16px; line-height: 1.6; }

.services-scam-break { background: var(--cream-dark); }
.services-scam-grid { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr); gap: clamp(50px, 8vw, 96px); align-items: center; }
.services-scam-copy h2 { color: var(--navy); margin-bottom: 18px; }
.services-scam-copy > p { color: #405667; font-size: 18px; line-height: 1.7; margin-bottom: 16px; }
.services-scam-copy .btn-group { margin-top: 30px; }
.services-scam-copy .btn-outline-light { color: var(--navy); border-color: var(--navy); }
.services-scam-copy .btn-outline-light:hover { color: var(--white); background: var(--navy); }
.scam-warning-list { padding: 34px; border-left: 5px solid var(--gold); background: var(--white); box-shadow: var(--shadow-sm); }
.scam-warning-list h3 { color: var(--navy); font-family: var(--font-sans); font-size: 21px; font-weight: 800; margin-bottom: 20px; }
.scam-warning-list ul { display: grid; gap: 14px; margin-bottom: 26px; }
.scam-warning-list li { position: relative; padding-left: 25px; color: var(--navy); font-size: 17px; font-weight: 600; line-height: 1.5; }
.scam-warning-list li::before { content: '!'; position: absolute; left: 0; color: var(--gold-dark); font-weight: 900; }
.scam-warning-list > p { padding-top: 22px; border-top: 1px solid var(--border); color: #465C6C; font-size: 15px; line-height: 1.65; }

@media (max-width: 1024px) {
  .services-tour-overview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tour-overview-item:nth-child(2) { border-right: 0; }
  .tour-overview-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .service-tour-intro { position: static; }
  .service-tour-split,
  .family-tour-grid,
  .services-scam-grid { grid-template-columns: 1fr; }
  .home-coordination-grid { grid-template-columns: 1fr; }
  .home-coordination-group,
  .home-coordination-group + .home-coordination-group { padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--border); }
  .home-coordination-group:last-child { border-bottom: 0; }
  .home-coordination-group > h3 { min-height: 0; }
  .services-mid-cta-inner { align-items: flex-start; flex-direction: column; }
  .services-mid-cta .btn-group { width: 100%; }
}

@media (max-width: 768px) {
  .service-nav-inner { justify-content: flex-start; }
  .service-tab { min-height: 52px; padding: 15px 18px; font-size: 16px; }
  .services-tour-overview { grid-template-columns: 1fr; }
  .tour-overview-item,
  .tour-overview-item:nth-child(2) { min-height: 0; padding: 22px 4px; border-right: 0; border-bottom: 1px solid var(--border); }
  .tour-overview-item h3 { margin-top: 12px; }
  .service-line-list article,
  .life-conversation-list article,
  .family-trust-list > div { grid-template-columns: 1fr; gap: 8px; }
  .family-trust-list > div { gap: 7px; }
  .service-section-foot { align-items: flex-start; flex-direction: column; }
  .service-section-foot .service-text-action { margin-top: 0; }
  .services-mid-cta { padding: 48px 0; }
  .family-tour-actions { align-items: stretch; flex-direction: column; }
  .family-tour-actions .btn { width: 100%; justify-content: center; }
  .family-tour-actions .service-text-action { align-self: flex-start; }
  .scam-warning-list { padding: 27px 22px; }
}
