/* ===== DESIGN TOKENS — Sotos Legal Documents ===== */
:root,
[data-theme='light'] {
  /* Surfaces — warm parchment/off-white, authoritative navy */
  --color-bg: #f6f4ee;
  --color-surface: #ffffff;
  --color-surface-2: #fbfaf6;
  --color-surface-offset: #eeeae0;
  --color-surface-offset-2: #e6e0d2;
  --color-divider: #ded7c7;
  --color-border: #d2c9b4;

  --color-text: #16233b;
  --color-text-muted: #556074;
  --color-text-faint: #97a0ae;
  --color-text-inverse: #f6f4ee;

  /* Primary — Deep Navy (authority, trust) */
  --color-primary: #0d2947;
  --color-primary-hover: #0a1e35;
  --color-primary-active: #071527;
  --color-primary-highlight: #d8e0ea;

  /* Accent — Gold (service, honor, VA ribbon) */
  --color-gold: #a9832f;
  --color-gold-hover: #8c6c26;
  --color-gold-active: #6f551e;
  --color-gold-highlight: #ecdfbe;

  --color-success: #3d6b3f;
  --color-success-highlight: #d7e5d5;
  --color-error: #8c2f2f;
  --color-error-highlight: #ecd6d6;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 2px oklch(0.2 0.02 250 / 0.08);
  --shadow-md: 0 4px 16px oklch(0.2 0.02 250 / 0.1);
  --shadow-lg: 0 16px 40px oklch(0.2 0.02 250 / 0.16);

  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
}

[data-theme='dark'] {
  --color-bg: #0e1626;
  --color-surface: #141e33;
  --color-surface-2: #182640;
  --color-surface-offset: #1b2740;
  --color-surface-offset-2: #223050;
  --color-divider: #263354;
  --color-border: #33436b;

  --color-text: #e8e6dd;
  --color-text-muted: #a3aec2;
  --color-text-faint: #6c7793;
  --color-text-inverse: #16233b;

  --color-primary: #c9d6e8;
  --color-primary-hover: #e3ebf5;
  --color-primary-active: #f4f7fb;
  --color-primary-highlight: #24344f;

  --color-gold: #d9b45f;
  --color-gold-hover: #e8c878;
  --color-gold-active: #f2da9c;
  --color-gold-highlight: #3a3020;

  --color-success: #7fb586;
  --color-success-highlight: #1f3221;
  --color-error: #d98a8a;
  --color-error-highlight: #3a2020;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 4px 16px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 16px 40px oklch(0 0 0 / 0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0e1626;
    --color-surface: #141e33;
    --color-surface-2: #182640;
    --color-surface-offset: #1b2740;
    --color-surface-offset-2: #223050;
    --color-divider: #263354;
    --color-border: #33436b;
    --color-text: #e8e6dd;
    --color-text-muted: #a3aec2;
    --color-text-faint: #6c7793;
    --color-text-inverse: #16233b;
    --color-primary: #c9d6e8;
    --color-primary-hover: #e3ebf5;
    --color-primary-active: #f4f7fb;
    --color-primary-highlight: #24344f;
    --color-gold: #d9b45f;
    --color-gold-hover: #e8c878;
    --color-gold-active: #f2da9c;
    --color-gold-highlight: #3a3020;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
    --shadow-md: 0 4px 16px oklch(0 0 0 / 0.35);
    --shadow-lg: 0 16px 40px oklch(0 0 0 / 0.5);
  }
}

/* Type scale */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
}

/* ===== LAYOUT PRIMITIVES ===== */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 5vw, var(--space-10));
}

.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}

section + section,
.section + .section {
  border-top: 1px solid var(--color-divider);
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.header--hidden {
  transform: translateY(-100%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}
.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--color-primary);
}
[data-theme='dark'] .brand-mark {
  color: var(--color-gold);
}
.brand-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.1;
}
.brand-name span {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-hover);
  font-weight: 600;
  margin-top: 2px;
}
[data-theme='dark'] .brand-name span {
  color: var(--color-gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-links {
  display: flex;
  gap: var(--space-6);
  list-style: none;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--color-primary);
}
[data-theme='dark'] .nav-links a:hover {
  color: var(--color-gold);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
}
.nav-toggle:hover {
  background: var(--color-surface-offset);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: var(--space-5);
  padding: var(--space-6) clamp(var(--space-4), 5vw, var(--space-10)) var(--space-8);
  border-top: 1px solid var(--color-divider);
  background: var(--color-bg);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  list-style: none;
}
.mobile-menu-links a {
  display: block;
  padding: var(--space-3) 0;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-divider);
}

.theme-toggle {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
}
.theme-toggle:hover {
  background: var(--color-surface-offset);
  color: var(--color-text);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
[data-theme='dark'] .btn-primary {
  background: var(--color-gold);
  color: #201804;
}
[data-theme='dark'] .btn-primary:hover {
  background: var(--color-gold-hover);
}
.btn-gold {
  background: var(--color-gold);
  color: #201804;
}
.btn-gold:hover {
  background: var(--color-gold-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  border-color: var(--color-border);
  color: var(--color-text);
  background: var(--color-surface);
}
.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
[data-theme='dark'] .btn-ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}
.btn-block {
  width: 100%;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--space-20), 10vw, var(--space-32)) clamp(var(--space-16), 8vw, var(--space-24));
  background: linear-gradient(180deg, var(--color-surface-offset) 0%, var(--color-bg) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-hover);
  background: var(--color-gold-highlight);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}
[data-theme='dark'] .eyebrow {
  color: var(--color-gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-text);
  margin-bottom: var(--space-6);
}
.hero h1 em {
  font-style: normal;
  color: var(--color-primary);
}
[data-theme='dark'] .hero h1 em {
  color: var(--color-gold);
}
.hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-bottom: var(--space-8);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.hero-trust svg {
  width: 16px;
  height: 16px;
  color: var(--color-success);
  flex-shrink: 0;
}
.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, oklch(0.15 0.03 250 / 0.55) 100%);
}
.hero-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  right: var(--space-5);
  z-index: 2;
  color: #fff;
}
.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
}
.hero-badge span {
  font-size: var(--text-xs);
  opacity: 0.85;
}

/* ===== SECTION HEADINGS ===== */
.section-head {
  max-width: 640px;
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-hover);
  margin-bottom: var(--space-3);
  display: block;
}
[data-theme='dark'] .section-eyebrow {
  color: var(--color-gold);
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.section-head p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  max-width: 900px;
  margin-inline: auto;
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
}
.service-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
[data-theme='dark'] .service-card.featured {
  border-color: var(--color-gold);
}
.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
}
[data-theme='dark'] .service-icon {
  background: var(--color-surface-offset-2);
  color: var(--color-gold);
}
.service-icon svg {
  width: 24px;
  height: 24px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
}
.service-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.status-pill {
  align-self: flex-start;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.status-pill.active {
  background: var(--color-success-highlight);
  color: var(--color-success);
}
.status-pill.soon {
  background: var(--color-gold-highlight);
  color: var(--color-gold-hover);
}
[data-theme='dark'] .status-pill.soon {
  color: var(--color-gold);
}

/* ===== PROCESS ===== */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  counter-reset: step;
}
.process-step {
  position: relative;
  padding-top: var(--space-10);
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-family: var(--font-display);
  font-size: var(--text-base);
}
[data-theme='dark'] .process-step::before {
  background: var(--color-gold);
  color: var(--color-primary-active);
}
.process-step h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.process-step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ===== CREDENTIALS BAND ===== */
.credentials-band {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
[data-theme='dark'] .credentials-band {
  background: var(--color-surface-offset);
  color: var(--color-text);
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.credential-item {
  text-align: center;
  padding: var(--space-6);
}
.credential-item .value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}
.credential-item .label {
  font-size: var(--text-sm);
  opacity: 0.85;
}

/* ===== DOCUMENTS CHECKLIST ===== */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 1100px;
  margin-inline: auto;
}
.checklist-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}
.checklist-card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  margin-bottom: var(--space-5);
}
[data-theme='dark'] .checklist-card-icon {
  background: var(--color-surface-offset-2);
  color: var(--color-gold);
}
.checklist-card-icon svg {
  width: 22px;
  height: 22px;
}
.checklist-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.checklist-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
}
.checklist-items li {
  position: relative;
  padding-left: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: none;
}
.checklist-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-gold);
}
.checklist-footnote {
  max-width: 640px;
  margin: var(--space-8) auto 0;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ===== FEE / PRICING CARD ===== */
.fee-card {
  max-width: 680px;
  margin-inline: auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 5vw, var(--space-12));
  box-shadow: var(--shadow-md);
  text-align: center;
}
.fee-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding-bottom: var(--space-8);
  margin-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-divider);
}
.fee-percent {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-gold-hover);
  line-height: 1;
}
[data-theme='dark'] .fee-percent {
  color: var(--color-gold);
}
.fee-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
}
.fee-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  text-align: left;
  margin-bottom: var(--space-8);
}
.fee-points li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-text);
  max-width: none;
}
.fee-points li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-success);
}
.fee-points li span {
  max-width: none;
}
.fee-note {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-6);
}

.scam-warning {
  max-width: 680px;
  margin: var(--space-8) auto 0;
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  background: var(--color-warning-highlight, var(--color-gold-highlight));
  border: 1px solid var(--color-warning, var(--color-gold));
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: left;
}
.scam-warning-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  color: var(--color-warning, var(--color-gold-hover));
}
.scam-warning-icon svg {
  width: 20px;
  height: 20px;
}
.scam-warning h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.scam-warning p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: none;
}
.scam-warning a {
  color: var(--color-primary);
  font-weight: 600;
}
[data-theme='dark'] .scam-warning a {
  color: var(--color-gold);
}

/* ===== 2026 RATE TABLE ===== */
.rates-table-wrap {
  max-width: 800px;
  margin-inline: auto;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}
.rates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  min-width: 480px;
}
.rates-table th,
.rates-table td {
  padding: var(--space-4) var(--space-5);
  text-align: center;
  border-bottom: 1px solid var(--color-divider);
  white-space: nowrap;
}
.rates-table th:first-child,
.rates-table td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--color-text);
}
.rates-table thead th {
  background: var(--color-surface-offset);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  font-weight: 700;
}
.rates-table tbody tr:last-child td {
  border-bottom: none;
}
.rates-table tbody tr.rate-100 td {
  background: var(--color-gold-highlight);
  font-weight: 700;
  color: var(--color-text);
}
.rates-table tbody tr:hover td {
  background: var(--color-surface-offset);
}
.rates-table tbody tr.rate-100:hover td {
  background: var(--color-gold-highlight);
}
.rates-footnote {
  max-width: 800px;
  margin: var(--space-5) auto var(--space-16);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
}
.rates-footnote a {
  color: var(--color-text-muted);
  text-decoration: underline;
}

/* ===== RATE LOOKUP TOOL ===== */
.rate-tool {
  max-width: 560px;
  margin-inline: auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 5vw, var(--space-10));
  text-align: center;
  box-shadow: var(--shadow-md);
}
.rate-tool h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.rate-tool > p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}
.rate-tool-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  text-align: left;
  margin-bottom: var(--space-6);
}
.rate-tool-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-6);
  background: var(--color-primary-highlight);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
}
[data-theme='dark'] .rate-tool-result {
  background: var(--color-surface-offset-2);
}
.rate-tool-amount {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-primary);
}
[data-theme='dark'] .rate-tool-amount {
  color: var(--color-gold);
}
.rate-tool-period {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 600;
}
.rate-tool-disclaimer {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(var(--space-10), 6vw, var(--space-16));
  align-items: center;
}
.about-grid--full {
  grid-template-columns: 1fr;
}
.about-copy--centered {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.about-copy--centered .pull-quote {
  text-align: left;
}
.about-copy--centered .section-eyebrow {
  display: block;
}
.about-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-copy h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-5);
  color: var(--color-text);
}
.about-copy p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.about-copy p:last-of-type {
  margin-bottom: 0;
}
.pull-quote {
  border-left: 3px solid var(--color-gold);
  padding-left: var(--space-5);
  margin-block: var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: var(--content-narrow);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  text-align: left;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-text);
}
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform var(--transition-interactive);
}
.faq-item[data-open='true'] .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item[data-open='true'] .faq-answer {
  grid-template-rows: 1fr;
}
.faq-answer-inner {
  overflow: hidden;
}
.faq-answer p {
  padding: 0 var(--space-6) var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ===== BOOKING / CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-16));
}
.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 4vw, var(--space-10));
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.contact-card > p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  text-decoration: none;
  color: var(--color-text);
  padding: var(--space-3);
  border-radius: var(--radius-md);
}
.contact-method:hover {
  background: var(--color-surface-offset);
}
.contact-method--static:hover {
  background: none;
}
.contact-method--static {
  cursor: default;
}
.contact-method-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
}
[data-theme='dark'] .contact-method-icon {
  background: var(--color-surface-offset-2);
  color: var(--color-gold);
}
.contact-method-icon svg {
  width: 20px;
  height: 20px;
}
.contact-method strong {
  display: block;
  font-size: var(--text-sm);
}
.contact-method span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.form-group {
  margin-bottom: var(--space-5);
}
.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  font-size: var(--text-sm);
  color: var(--color-text);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-highlight);
}
[data-theme='dark'] .form-group input:focus,
[data-theme='dark'] .form-group select:focus,
[data-theme='dark'] .form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-highlight);
}
.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-3);
  text-align: center;
}
.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
}
.privacy-note svg {
  flex-shrink: 0;
  color: var(--color-success);
}
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-8) 0;
}
.form-success.show {
  display: block;
}
.form-success svg {
  width: 48px;
  height: 48px;
  color: var(--color-success);
  margin-inline: auto;
  margin-bottom: var(--space-4);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.form-success p {
  color: var(--color-text-muted);
  margin-inline: auto;
}

/* ===== DISCLAIMER BAND ===== */
.disclaimer-band {
  background: var(--color-surface-offset);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  padding-block: var(--space-8);
}
.disclaimer-band p + p {
  margin-top: var(--space-3);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
[data-theme='dark'] .footer {
  background: #0a1120;
  color: #e5e3da;
  border-top: 1px solid var(--color-divider);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-10);
  padding-block: var(--space-16);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.footer-brand .brand-mark {
  color: var(--color-gold);
}
.footer-brand .brand-name {
  color: var(--color-text-inverse);
}
[data-theme='dark'] .footer-brand .brand-name {
  color: #e5e3da;
}
.footer p {
  font-size: var(--text-sm);
  opacity: 0.85;
  max-width: 40ch;
}
.footer h4 {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
  opacity: 0.75;
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer a {
  color: inherit;
  text-decoration: none;
  font-size: var(--text-sm);
  opacity: 0.92;
}
.footer a:hover {
  opacity: 1;
  color: var(--color-gold);
}
.footer-bottom {
  border-top: 1px solid oklch(1 0 0 / 0.12);
  padding-block: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  opacity: 0.8;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  z-index: 100;
  text-decoration: none;
}
.skip-link:focus {
  top: var(--space-4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual,
  .about-visual {
    order: -1;
    max-width: 420px;
    margin-inline: auto;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .checklist-grid {
    grid-template-columns: 1fr;
  }
  .credentials-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .nav-actions .btn-primary {
    display: none;
  }
  .nav-toggle {
    display: grid;
    place-items: center;
    color: var(--color-text);
  }
}

@media (max-width: 700px) {
  .brand-name {
    font-size: var(--text-base);
  }
  .rate-tool-controls {
    grid-template-columns: 1fr;
  }
  .brand-name span {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-list {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }
}
