/* OmniTitleOS — design system · revamped */
:root {
  --cream: #f5efe1;
  --cream-2: #faf5e8;
  --cream-3: #ede5d2;
  --navy: #0d1f3c;
  --navy-2: #142849;
  --navy-3: #1b3258;
  --gold: #c89b4a;
  --gold-2: #d4a951;
  --gold-soft: #e9c98a;
  --ink: #0d1f3c;
  --ink-soft: #4b5874;
  --muted: #6b7488;
  --muted-light: #aab2c5;
  --line: #d8cfb9;
  --line-dark: #2a4068;
  --warn: #b95828;
  --shadow: 0 1px 0 rgba(13, 31, 60, 0.04), 0 12px 32px -16px rgba(13, 31, 60, 0.14);
  --shadow-lg: 0 24px 64px -20px rgba(13, 31, 60, 0.18);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--cream-2);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  background: rgba(250, 245, 232, 0.88);
  border-bottom: 1px solid rgba(216, 207, 185, 0.5);
  transition: box-shadow 0.3s ease;
}
.site-header:hover {
  box-shadow: 0 4px 20px rgba(13, 31, 60, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 23px;
  letter-spacing: 0.3px;
}
.logo-mark {
  width: 32px; height: 32px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform var(--transition);
}
.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.08); }
.logo-light { color: #fff; }
.logo-light .logo-mark { background: var(--gold); color: var(--navy); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
}
.primary-nav a:not(.btn):hover { color: var(--gold); }
.btn-sm { padding: 9px 18px; font-size: 11.5px; }

/* --- Mobile hamburger toggle --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 60;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: rgba(250, 245, 232, 0.97);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 55;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .primary-nav a:not(.btn) {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--navy);
    padding: 14px 0;
    transition: color 0.2s ease;
  }
  .primary-nav a:not(.btn):hover {
    color: var(--gold);
  }
  .primary-nav .btn {
    margin-top: 24px;
    padding: 16px 32px;
    font-size: 12px;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  font-weight: 600;
  border-radius: 6px;
  transition: all var(--transition);
  text-transform: uppercase;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 2px 8px rgba(13, 31, 60, 0.2);
}
.btn-primary:hover {
  background: var(--navy-2);
  box-shadow: 0 6px 20px rgba(13, 31, 60, 0.25);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 16px rgba(13, 31, 60, 0.2);
  transform: translateY(-1px);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 2px 8px rgba(200, 155, 74, 0.3);
}
.btn-gold:hover {
  background: var(--gold-2);
  box-shadow: 0 6px 20px rgba(200, 155, 74, 0.35);
  transform: translateY(-1px);
}
.btn.full { display: flex; width: 100%; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-tight { padding: 64px 0; }
.section-cream { background: var(--cream); }
.section-navy {
  background: var(--navy);
  color: #cfd6e6;
}
.section-cream:has(+ .section-cream) { padding-bottom: 32px; }
.section-cream + .section-cream { padding-top: 32px; }

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 18px;
}
.eyebrow.gold { color: var(--gold); }
.eyebrow.center { justify-content: center; width: 100%; color: var(--gold); }
.eyebrow .dot {
  width: 4px; height: 4px; background: var(--gold); border-radius: 50%;
}
.eyebrow .dash {
  width: 32px; height: 1.5px; background: var(--gold); display: inline-block;
}

/* Headings */
.display, h1.display, h2.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.04;
  color: var(--navy);
  margin: 0 0 20px;
  letter-spacing: -0.6px;
}
h2.display { font-size: clamp(34px, 4vw, 50px); }
em, .display em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.h-light {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: #fff;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: -0.3px;
}

.lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 780px;
  margin: 0 0 28px;
}
.lede-light { color: #aeb8d0; }
.lede strong { color: var(--navy); }
.lede-light strong { color: #fff; }

.narrow { max-width: 920px; margin: 0 auto; }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

.section-tag {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  font-weight: 600;
  margin: 0 0 14px;
}
.section-tag.gold { color: var(--gold); }
.section-tag.gold-dim { color: var(--gold); }

.muted { color: var(--muted); }
.muted-light { color: var(--muted-light); }
.gold { color: var(--gold); }
.warn { color: var(--warn); }

/* ---------- Hero ---------- */
.hero {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero > .container {
  position: relative;
  z-index: 1;
}
.hero .eyebrow {
  background: rgba(200, 155, 74, 0.08);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(200, 155, 74, 0.15);
}
.cta-row {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin: 28px 0 36px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.stat-card {
  background: #fff;
  border: 1px solid rgba(216, 207, 185, 0.7);
  padding: 24px 24px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.stat-card:hover::after { opacity: 1; }
.stat-label {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin: 0 0 14px;
  font-weight: 600;
}
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  color: var(--navy);
  margin: 0 0 10px;
}
.stat-foot { margin: 0; font-size: 13px; color: var(--muted); }
.stat-card-dark {
  background: var(--navy);
  border-color: var(--navy);
  position: relative;
  overflow: hidden;
}
.stat-card-dark::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), var(--gold));
}
.stat-card-dark::after { display: none; }
.stat-card-dark .stat-value { color: var(--gold); }
.stat-card-dark .stat-foot { color: #aab2c5; }

@media (max-width: 900px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Numbered row (revolution) ---------- */
.numbered-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.numbered-item { text-align: center; }
.numbered-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 34px;
  color: var(--gold);
  margin: 0 0 8px;
}
.numbered-item p { margin: 0; color: var(--ink); font-weight: 500; }

@media (max-width: 760px) {
  .numbered-row { grid-template-columns: 1fr; gap: 18px; }
}

/* ---------- Coverage (navy) ---------- */
.coverage-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.county-pills {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.county-pills li {
  border: 1px solid rgba(200, 155, 74, 0.5);
  color: var(--gold);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}
.county-pills li:hover {
  background: rgba(200, 155, 74, 0.12);
  border-color: var(--gold);
}
.callout {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  padding: 36px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
}
.callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.callout-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px;
  color: var(--gold);
  margin: 0;
  line-height: 1;
}
.callout-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #fff;
  margin: 8px 0 20px;
  font-weight: 600;
}
.callout p { color: #c2cadf; margin: 0 0 14px; font-size: 15px; }
.callout hr { border: 0; border-top: 1px solid var(--line-dark); margin: 20px 0; }
.callout-standalone { max-width: 640px; margin: 0 auto; }

@media (max-width: 900px) {
  .coverage-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Comparison ---------- */
.comparison-details { margin-top: 24px; }
.comparison-details > summary {
  display: inline-block;
  cursor: pointer;
  list-style: none;
  margin-bottom: 24px;
}
.comparison-details > summary::-webkit-details-marker { display: none; }
.comparison-details > summary::marker { display: none; content: ''; }
.comparison-details[open] > summary { margin-bottom: 16px; }
.comparison-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 24px;
}
.comparison-grid > aside.model-card-dark {
  position: sticky;
  top: 100px;
}
@media (max-width: 1024px) {
  .comparison-grid > aside.model-card-dark { position: static; }
}
.model-card {
  background: #fff;
  border: 1px solid rgba(216, 207, 185, 0.7);
  border-radius: var(--radius);
  padding: 28px 30px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
  position: relative;
}
.model-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--line);
  border-radius: var(--radius) 0 0 var(--radius);
  transition: background 0.3s ease;
}
.model-card:hover::before { background: var(--gold); }
.model-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 25px;
  color: var(--navy);
  margin: 0 0 4px;
}
.model-card .muted { margin: 0 0 18px; font-size: 14px; }
.model-card dl { margin: 0; }
.model-card dl > div {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 13px 0; border-top: 1px solid rgba(216, 207, 185, 0.5);
  font-size: 14px;
}
.model-card dt { color: var(--muted); font-weight: 500; text-transform: uppercase; font-size: 11px; letter-spacing: 0.12em; }
.model-card dd { margin: 0; color: var(--ink); text-align: right; }
.model-card dd.warn { color: var(--warn); }
.model-card dd.emphasis { font-weight: 700; color: var(--navy); }

.model-card-dark {
  background: var(--navy);
  border-color: var(--navy);
  color: #c8d0e3;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.model-card-dark::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  width: 100%; height: 3px;
  border-radius: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), var(--gold));
}
.model-card-dark h3 { color: #fff; }
.muted-light { color: #aab2c5; }
.ceiling-card {
  background: var(--navy-2);
  border: 1px solid var(--line-dark);
  text-align: center;
  padding: 20px 24px;
  border-radius: var(--radius);
  margin: 20px 0 16px;
}
.ceiling-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin: 0 0 6px;
  font-weight: 600;
}
.ceiling-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  color: var(--gold);
  margin: 0;
  line-height: 1;
}
.ceiling-foot { margin: 0; color: #aab2c5; font-size: 14px; }

.check-list, .check-list-light {
  list-style: none; padding: 0; margin: 14px 0 0;
}
.check-list li {
  display: grid; grid-template-columns: 24px 1fr; gap: 14px;
  padding: 12px 0; border-top: 1px solid var(--line-dark);
  align-items: center;
}
.check-list li::before {
  content: "\2713";
  color: var(--gold);
  background: var(--navy-3);
  border: 1px solid var(--gold);
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; border-radius: 50%;
}
.check-list li > strong, .check-list li > span { display: block; }
.check-list li > strong { color: #fff; font-weight: 600; font-size: 14px; }
.check-list li > span { color: #aab2c5; font-size: 14px; margin-top: 2px; }

.check-list-light {
  margin: 24px 0;
}
.check-list-light li {
  position: relative;
  padding: 13px 0 13px 24px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
}
.check-list-light li::before {
  content: "\2192";
  position: absolute; left: 0; top: 13px;
  color: var(--gold); font-weight: 700;
}
.price-card-dark .check-list-light li {
  color: #c8d0e3;
  border-top-color: var(--line-dark);
}
.price-card-dark .check-list-light li::before { color: var(--gold); }

@media (max-width: 900px) {
  .comparison-grid { grid-template-columns: 1fr; }
}

/* ---------- 3-col / steps ---------- */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 23px;
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.2;
}
.step-num {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin: 0 0 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.step p { margin: 0; font-size: 14.5px; }

@media (max-width: 900px) {
  .three-col { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Calculator ---------- */
.seg-tabs {
  display: inline-flex;
  background: var(--navy-2);
  border-radius: 8px;
  padding: 4px;
  margin: 14px 0 32px;
  border: 1px solid var(--line-dark);
}
.seg-tab {
  padding: 13px 22px;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: #aab2c5;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.seg-tab:hover:not(.is-active) {
  color: #fff;
}
.seg-tab.is-active {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 2px 8px rgba(200, 155, 74, 0.3);
}
.calc-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}
.field { margin-bottom: 30px; }
.field-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}
.field-label.gold { color: var(--gold); }
.field-value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 34px;
  color: #fff;
  margin: 6px 0 6px;
  line-height: 1;
}
.field-foot {
  margin: 0;
  color: #aab2c5;
  font-size: 13px;
}
input[type="range"] {
  width: 100%;
  appearance: none;
  height: 2px;
  background: var(--line-dark);
  margin: 8px 0 0;
  border-radius: 2px;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px; height: 20px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--navy);
  box-shadow: 0 0 0 1px var(--gold);
  transition: transform 0.2s ease;
}
input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--navy);
}
.calc-result {
  background: var(--navy-2);
  border: 1px solid var(--line-dark);
  padding: 32px;
  border-radius: var(--radius);
}
.result-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  color: var(--gold);
  margin: 6px 0 14px;
  line-height: 1;
}
.result-foot { color: #c2cadf; font-size: 14px; margin: 0 0 24px; }
.result-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 14px;
}
.result-table th, .result-table td {
  text-align: left;
  padding: 11px 0;
  border-top: 1px solid var(--line-dark);
  font-weight: 400;
  color: #c2cadf;
}
.result-table td { text-align: right; color: #fff; }
.result-table tr.total { color: var(--gold); }
.result-table tr.total th, .result-table tr.total td {
  color: var(--gold); font-weight: 600;
  border-top: 1px solid var(--gold);
  padding-top: 16px;
}
.fineprint {
  color: #8e98b0;
  font-size: 12px;
  line-height: 1.55;
  margin: 0 0 24px;
}
.fineprint.dark { color: var(--muted); margin-top: 28px; }

@media (max-width: 900px) {
  .calc-grid { grid-template-columns: 1fr; gap: 28px; }
  .calc-card { padding: 24px; }
}

/* ---------- Title fees ---------- */
.fee-card {
  background: #fff;
  border: 1px solid rgba(216, 207, 185, 0.7);
  border-top: none;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.fee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}
.fee-card .section-tag { color: var(--gold); }
.fee-amt {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 56px;
  color: var(--navy);
  margin: 4px 0 16px;
  line-height: 1;
}
.fee-card p { margin: 0 0 14px; font-size: 14px; }
.fee-tag {
  display: inline-block;
  border: 1px solid rgba(216, 207, 185, 0.7);
  color: var(--ink);
  padding: 7px 14px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 50px;
  margin: 0;
}
.two-col-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 28px;
}
.info-block {
  border-top: 3px solid var(--navy);
  padding: 24px 0 0;
}
.info-block-gold { border-top-color: var(--gold); }
.info-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 23px;
  color: var(--navy);
  margin: 0 0 12px;
}
.info-block p { margin: 0; font-size: 14.5px; }

@media (max-width: 900px) {
  .two-col-info { grid-template-columns: 1fr; }
}

/* ---------- Signing ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.option-card {
  background: #fff;
  border: 1px solid rgba(216, 207, 185, 0.7);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.option-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}
.option-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 25px;
  color: var(--navy);
  margin: 0 0 14px;
}
.option-card-dark {
  background: var(--navy);
  border-color: var(--navy);
  color: #c8d0e3;
}
.option-card-dark::before {
  background: linear-gradient(90deg, var(--gold-soft), var(--gold), var(--gold-soft));
}
.option-card-dark h3 { color: #fff; }
.bullet-list {
  list-style: none; padding: 0; margin: 18px 0 0;
}
.bullet-list li {
  padding: 9px 0 9px 20px;
  position: relative;
  font-size: 14px;
}
.bullet-list li::before {
  content: "\2014";
  position: absolute; left: 0; top: 9px;
  color: var(--gold);
}

@media (max-width: 760px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ---------- RESPA ---------- */
.respa-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 52px;
  align-items: start;
  margin-top: 16px;
}
.respa-badge, .patent-badge {
  background: #fff;
  border: 1px solid var(--gold);
  padding: 16px;
  text-align: center;
  border-radius: var(--radius);
  position: sticky;
  top: 100px;
  box-shadow: 0 8px 32px -8px rgba(200, 155, 74, 0.15);
}
.respa-badge-inner, .patent-badge-inner {
  border: 1px solid var(--gold-soft);
  padding: 36px 20px;
  border-radius: 6px;
}
.respa-tag, .patent-tag {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 600;
}
.respa-headline, .patent-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 34px;
  color: var(--navy);
  margin: 0 0 18px;
  line-height: 1.05;
  letter-spacing: 0.03em;
}
.respa-foot, .patent-foot {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin: 0;
  font-weight: 600;
}
.respa-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  counter-reset: r;
}
.respa-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.respa-list li:first-child { border-top: 0; }
.respa-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
}
.respa-list h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 23px;
  color: var(--navy);
  margin: 0 0 10px;
}
.respa-list p { margin: 0; font-size: 14.5px; }

@media (max-width: 900px) {
  .respa-grid { grid-template-columns: 1fr; gap: 28px; }
  .respa-badge, .patent-badge { position: static; }
}

/* ---------- Patent ---------- */
.patent-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 760px) {
  .patent-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(216, 207, 185, 0.5);
  border: 1px solid rgba(216, 207, 185, 0.5);
  border-radius: var(--radius-lg);
  margin-top: 28px;
  overflow: hidden;
}
.feature {
  background: var(--cream);
  padding: 36px;
  transition: background 0.3s ease;
}
.feature:hover {
  background: var(--cream-2);
}
.feature-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--radius);
  margin: 0 0 20px;
}
.feature h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 23px;
  color: var(--navy);
  margin: 0 0 10px;
}
.feature p { margin: 0; font-size: 14px; }

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid rgba(216, 207, 185, 0.7);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.price-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 30px;
  color: var(--navy);
  margin: 0 0 8px;
}
.price-card > .muted, .price-card > .muted-light {
  margin: 0 0 28px; font-size: 14px;
}
.price {
  display: baseline; margin: 0 0 20px;
}
.price-amt {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 60px;
  color: var(--navy);
  line-height: 1;
}
.price-per { color: var(--muted); font-size: 16px; margin-left: 4px; }
.pays-pill {
  display: inline-block;
  background: rgba(200, 155, 74, 0.1);
  color: var(--gold);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  border-left: 3px solid var(--gold);
  margin: 0 0 8px;
}
.pays-pill-dark { background: rgba(200, 155, 74, 0.12); }
.price-card .check-list-light { flex: 1; }
.price-card .btn { margin-top: auto; }

.price-card-dark {
  background: var(--navy);
  border-color: var(--navy);
  color: #c8d0e3;
  position: relative;
}
.price-card-dark::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), var(--gold));
}
.price-card-dark .price-amt { color: var(--gold); }
.price-card-dark .price-per { color: var(--muted-light); }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ---------- Apply ---------- */
.apply-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  margin-top: 28px;
  align-items: stretch;
}
.apply-form {
  background: var(--cream-3);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.apply-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--navy);
  margin: 0 0 20px;
}
.apply-form .field { margin-bottom: 18px; }
.apply-form .field label {
  display: block;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 7px;
}
.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="tel"],
.apply-form select,
.apply-form textarea {
  width: 100%;
  padding: 13px 16px;
  font: inherit;
  font-size: 15px;
  background: #fff;
  border: 1px solid rgba(216, 207, 185, 0.7);
  border-radius: 8px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.apply-form textarea { resize: vertical; min-height: 90px; }
.apply-form input:focus, .apply-form select:focus, .apply-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 155, 74, 0.15);
}
.hp { display: none; }
.form-foot { margin: 14px 0 0; font-size: 12px; color: var(--muted); text-align: center; }

.apply-side h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--navy);
  margin: 0 0 14px;
}
.apply-side {
  display: flex;
  flex-direction: column;
}
.apply-side .not-licensed { margin-top: auto; }
.apply-side .muted { margin: 0 0 24px; font-size: 15px; }
.apply-side .muted.small { font-size: 12px; text-align: center; margin-top: 10px; }
.apply-list {
  list-style: none; padding: 0; margin: 0 0 24px;
}
.apply-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink);
}
.not-licensed {
  margin-top: 32px;
  background: var(--cream-3);
  border-left: 3px solid var(--gold);
  padding: 24px;
  border-radius: 8px;
}
.not-licensed p { margin: 0 0 8px; font-size: 14px; }
.not-licensed p:last-child { margin-bottom: 0; color: var(--muted); }

/* Booking form inside apply-side */
.booking-form .field { margin-bottom: 14px; }
.booking-form .field label {
  display: block;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 6px;
}
.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form select {
  width: 100%;
  padding: 11px 14px;
  font: inherit;
  font-size: 14px;
  background: #fff;
  border: 1px solid rgba(216, 207, 185, 0.7);
  border-radius: 8px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.booking-form input:focus, .booking-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 155, 74, 0.15);
}
.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.booking-error {
  margin: 10px 0 0;
  font-size: 13px;
  color: #b91c1c;
  text-align: center;
}
.booking-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--navy);
  margin: 0 0 10px;
}
.booking-success p { font-size: 14px; color: var(--muted); margin: 0 0 16px; }

@media (max-width: 900px) {
  .apply-grid { grid-template-columns: 1fr; }
  .apply-form { padding: 28px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #aab2c5;
  padding: 56px 0 28px;
  margin-top: 0;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), var(--gold));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-blurb {
  margin: 14px 0 0;
  font-size: 14px;
  color: #aab2c5;
  max-width: 360px;
}
.footer-head {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin: 0 0 16px;
  font-weight: 600;
}
.site-footer ul {
  list-style: none; padding: 0; margin: 0;
}
.site-footer li {
  padding: 6px 0;
  font-size: 14px;
}
.site-footer a {
  transition: color 0.2s ease;
}
.site-footer a:hover { color: var(--gold); }
.footer-fine {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding-top: 24px;
  font-size: 12px;
  color: var(--muted-light);
}
.footer-fine p { margin: 0; }
.footer-fine p:last-child { max-width: 720px; text-align: right; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-fine { flex-direction: column; }
  .footer-fine p:last-child { text-align: left; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   SCROLLYTELLING · MICRO-INTERACTIONS · 3D ELEMENTS · BACKGROUNDS
   ================================================================ */

/* --- Hero entrance animation --- */
@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero .eyebrow { animation: heroEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both; }
.hero .display { animation: heroEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; }
.hero .lede { animation: heroEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both; }
.hero .cta-row { animation: heroEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both; }
.hero .stat-grid .stat-card:nth-child(1) { animation: heroEntrance 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both; }
.hero .stat-grid .stat-card:nth-child(2) { animation: heroEntrance 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.72s both; }
.hero .stat-grid .stat-card:nth-child(3) { animation: heroEntrance 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.84s both; }
.hero .stat-grid .stat-card:nth-child(4) { animation: heroEntrance 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.96s both; }

/* --- Scroll progress bar --- */
.scroll-progress {
  position: fixed;
  top: 72px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  z-index: 49;
  width: 0;
  pointer-events: none;
}

/* --- Scroll reveal --- */
.reveal-hidden {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.reveal-stagger > .reveal-hidden:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal-hidden:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > .reveal-hidden:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > .reveal-hidden:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > .reveal-hidden:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger > .reveal-hidden:nth-child(6) { transition-delay: 0.4s; }

/* --- Micro: Button shimmer --- */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  transition: left 0.6s ease;
  pointer-events: none;
}
.btn:hover::before {
  left: 100%;
}

/* --- Micro: Card hover lift --- */
.stat-card,
.model-card:not(.model-card-dark),
.fee-card,
.option-card:not(.option-card-dark),
.price-card:not(.price-card-dark) {
  transition: transform var(--transition),
              box-shadow var(--transition);
}
.stat-card:hover,
.model-card:not(.model-card-dark):hover,
.fee-card:hover,
.option-card:not(.option-card-dark):hover,
.price-card:not(.price-card-dark):hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.stat-card-dark,
.model-card-dark,
.option-card-dark,
.price-card-dark {
  transition: transform var(--transition),
              box-shadow var(--transition);
}
.stat-card-dark:hover,
.model-card-dark:hover,
.option-card-dark:hover,
.price-card-dark:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px -10px rgba(200, 155, 74, 0.15);
}

/* --- Micro: Feature hover --- */
.feature {
  transition: background 0.3s ease, transform 0.3s ease;
}
.feature:hover {
  background: var(--cream-2);
}

/* --- Micro: Claymorphic feature icons --- */
.feature-icon {
  border-radius: var(--radius);
  box-shadow:
    6px 6px 14px rgba(13, 31, 60, 0.1),
    -3px -3px 8px rgba(255, 255, 255, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform var(--transition),
              box-shadow var(--transition);
}
.feature:hover .feature-icon {
  transform: translateY(-4px) scale(1.1);
  box-shadow:
    8px 12px 20px rgba(13, 31, 60, 0.15),
    -3px -3px 8px rgba(255, 255, 255, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* --- Micro: Nav link animated underline --- */
.primary-nav a:not(.btn) {
  position: relative;
}
.primary-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease, left 0.3s ease;
}
.primary-nav a:not(.btn):hover::after {
  width: 100%;
  left: 0;
}

/* --- Micro: Range slider glow --- */
input[type="range"]:active::-webkit-slider-thumb,
input[type="range"]:hover::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px var(--gold), 0 0 16px rgba(200, 155, 74, 0.45);
}
input[type="range"]:active::-moz-range-thumb,
input[type="range"]:hover::-moz-range-thumb {
  box-shadow: 0 0 16px rgba(200, 155, 74, 0.45);
}

/* --- Micro: Gold shimmer on dark stat value --- */
@keyframes shimmer {
  0%, 100% { background-position: -200% center; }
  50% { background-position: 200% center; }
}
.stat-card-dark .stat-value {
  background: linear-gradient(90deg, var(--gold) 20%, var(--gold-soft) 50%, var(--gold) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}


/* --- 3D: Glassmorphic floating shapes --- */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.glass-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200, 155, 74, 0.06), rgba(200, 155, 74, 0.02));
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(200, 155, 74, 0.06);
  pointer-events: none;
}
.glass-shape-1 {
  width: 380px; height: 380px;
  top: -120px; right: -80px;
  animation: glassFloat1 10s ease-in-out infinite;
}
.glass-shape-2 {
  width: 260px; height: 260px;
  bottom: -80px; left: -60px;
  animation: glassFloat2 12s ease-in-out infinite;
}
.glass-shape-3 {
  width: 160px; height: 160px;
  top: 35%; right: 20%;
  animation: glassFloat3 9s ease-in-out infinite;
}
@keyframes glassFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(20px, -24px) rotate(4deg); }
  66% { transform: translate(-14px, 16px) rotate(-3deg); }
}
@keyframes glassFloat2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(24px, -20px) rotate(-4deg); }
}
@keyframes glassFloat3 {
  0%, 100% { transform: translate(0, 0); }
  40% { transform: translate(-16px, 22px); }
  70% { transform: translate(12px, -10px); }
}

/* --- 3D: RESPA badge hover glow --- */
.respa-badge {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.respa-badge:hover {
  box-shadow: 0 12px 40px -8px rgba(200, 155, 74, 0.2);
  transform: translateY(-4px);
}

/* --- Dynamic: Particles canvas --- */
.particles-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Quick Calculator (top of page) ---------- */
.quick-calc-section { padding: 64px 0 56px; }
.quick-calc-section .h-light { margin-bottom: 12px; }

.qc-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 700px;
  margin: 32px auto 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.qc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.qc-header { text-align: center; margin-bottom: 32px; }
.qc-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 26px;
  color: #fff;
  margin: 0 0 8px;
}
.qc-header p {
  color: #aab2c5;
  font-size: 14px;
  margin: 0;
}

.qc-sliders { margin-bottom: 8px; }
.qc-slider-group { margin-bottom: 24px; }
.qc-slider-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.qc-slider-label {
  font-size: 13px;
  font-weight: 500;
  color: #c2cadf;
}
.qc-slider-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.qc-slider-helper {
  font-size: 12px;
  color: #8a99ab;
  margin-top: 6px;
}

.qc-results {
  background: var(--navy-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 24px;
}
.qc-results-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.qc-results-table tr { border-bottom: 1px solid var(--line-dark); }
.qc-results-table tr:last-child { border-bottom: none; }
.qc-results-table td {
  padding: 11px 0;
  font-size: 14px;
  color: #c2cadf;
}
.qc-results-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: #fff;
}
.qc-results-table tr.qc-total td {
  padding-top: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  border-top: 1px solid var(--gold);
}
.qc-sub-note {
  font-size: 11px;
  font-weight: 400;
  color: #8a99ab;
}

.qc-delta {
  margin-top: 24px;
  padding: 22px;
  background: rgba(200,155,74,0.06);
  border: 1px solid rgba(200,155,74,0.18);
  border-radius: var(--radius);
  text-align: center;
}
.qc-delta-label {
  font-size: 11px;
  color: #aab2c5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 0 0 6px;
}
.qc-delta-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.qc-delta-value.positive { color: var(--gold); }
.qc-delta-value.negative { color: var(--warn); }
.qc-delta-context {
  font-size: 13px;
  color: #aab2c5;
  margin-top: 6px;
}

.qc-honest {
  border-top: 1px solid var(--line-dark);
  margin-top: 28px;
  padding-top: 24px;
}
.qc-honest h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 8px;
}
.qc-honest p {
  font-size: 13px;
  color: #8a99ab;
  line-height: 1.6;
  margin: 0;
}

.qc-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  font-weight: 600;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all var(--transition);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .quick-calc-section { padding: 40px 0 36px; }
  .qc-card { padding: 24px 20px; }
  .qc-delta-value { font-size: 34px; }
  .qc-cta-row { flex-direction: column; align-items: stretch; }
  .qc-cta-row .btn,
  .qc-cta-row .btn-outline-light { width: 100%; text-align: center; }
}

/* --- Dynamic: Navy gradient shift --- */
.section-navy {
  background: linear-gradient(145deg, #091728 0%, var(--navy) 25%, var(--navy-2) 55%, #0e2240 100%);
  background-size: 200% 200%;
  animation: navyShift 16s ease infinite;
}
@keyframes navyShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* --- Dynamic: Hero ambient glow --- */
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(200, 155, 74, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* --- Subtle grain texture overlay --- */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* --- Section divider accents --- */
.section-cream + .section-navy,
.section-navy + .section-cream {
  position: relative;
}

/* --- Accessibility: Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow,
  .hero .display,
  .hero .lede,
  .hero .cta-row,
  .hero .stat-grid .stat-card {
    animation: none !important;
    opacity: 1 !important;
  }
  .reveal-hidden {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .glass-shape,
  .particles-canvas,
  .hero::after {
    display: none !important;
  }
  .section-navy {
    animation: none !important;
  }
  .stat-card-dark .stat-value {
    animation: none !important;
    -webkit-text-fill-color: var(--gold) !important;
    background: none !important;
  }
  .btn::before { display: none !important; }
  .stat-card:hover,
  .model-card:hover,
  .fee-card:hover,
  .option-card:hover,
  .price-card:hover,
  .stat-card-dark:hover,
  .model-card-dark:hover,
  .option-card-dark:hover,
  .price-card-dark:hover,
  .feature:hover .feature-icon {
    transform: none !important;
  }
}

/* ── Video Hero ── */
.video-hero-section {
  padding-top: 7rem;
  padding-bottom: 3rem;
}
.video-hero-section .h-light {
  margin-bottom: 2rem;
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(200, 155, 74, 0.25);
}
.hero-video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}
@media (max-width: 600px) {
  .video-hero-section {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
  }
  .video-wrapper {
    border-radius: 8px;
  }
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-icon {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
}
.trust-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aab2c5;
}
@media (max-width: 760px) {
  .trust-bar-inner {
    gap: 20px;
    justify-content: flex-start;
  }
  .trust-item { flex: 0 0 calc(50% - 10px); }
}

/* ---------- By The Numbers ---------- */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  margin-top: 36px;
  overflow: hidden;
}
.number-card {
  background: var(--navy);
  padding: 40px 24px;
  text-align: center;
  transition: background 0.3s ease;
}
.number-card:hover {
  background: var(--navy-2);
}
.number-value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 56px;
  color: var(--gold);
  margin: 0 0 12px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.number-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
}
.number-sub {
  font-size: 12px;
  color: #8a99ab;
  margin: 0;
}
@media (max-width: 900px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .numbers-grid { grid-template-columns: 1fr; }
  .number-value { font-size: 44px; }
  .number-card { padding: 28px 20px; }
}

/* ---------- Pre-Pricing FAQ Accordion ---------- */
#omni-faq { padding: 72px 0 64px; }
.omni-faq-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.omni-faq-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}
.omni-faq-headline {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
}
.omni-faq-headline em {
  color: var(--gold-soft);
  font-style: italic;
}
.omni-faq-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.6;
}
.omni-faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.omni-faq-item {
  border-top: 1px solid rgba(255,255,255,0.15);
}
.omni-faq-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.omni-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}
.omni-faq-q-text {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.4;
  flex: 1;
  transition: color 0.2s ease;
}
.omni-faq-q-text:hover {
  color: var(--gold-soft);
}
.omni-faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(212,183,110,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--gold);
  transition: transform 0.2s ease, background 0.2s ease;
  line-height: 1;
  font-weight: 300;
}
.omni-faq-item.open .omni-faq-icon {
  transform: rotate(45deg);
  background: rgba(212,183,110,0.12);
}
.omni-faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  max-width: 680px;
}
.omni-faq-item.open .omni-faq-a {
  display: block;
}
.omni-faq-a strong {
  color: #ffffff;
  font-weight: 700;
}
.omni-faq-a a {
  color: var(--gold);
  text-decoration: none;
}
.omni-faq-a a:hover {
  text-decoration: underline;
}
.omni-faq-cta-wrap {
  margin-top: 40px;
  padding: 24px 28px;
  background: rgba(212,183,110,0.06);
  border: 1px solid rgba(212,183,110,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 760px;
}
.omni-faq-cta-text {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
}
.omni-faq-cta-text span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  margin-top: 3px;
}
.omni-faq-cta-btn {
  background: var(--gold);
  color: var(--navy) !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 11px 22px;
  border-radius: 4px;
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
  transition: background 0.15s ease;
}
.omni-faq-cta-btn:hover { background: var(--gold-soft); }
@media (max-width: 600px) {
  .omni-faq-cta-wrap { flex-direction: column; }
  .omni-faq-cta-btn { width: 100%; text-align: center; }
}

/* ---------- FAQ ---------- */
.faq-grid {
  margin-top: 28px;
  max-width: 800px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child {
  border-top: 1px solid var(--line);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }
.faq-question::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 24px;
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-question:hover {
  color: var(--gold);
}
.faq-answer {
  padding: 0 0 22px;
}
.faq-answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}
@media (max-width: 600px) {
  .faq-question { font-size: 18px; padding: 18px 0; }
  .faq-answer p { font-size: 14px; }
}

