/* ============================================================
   RBS FINANCIAL — Design Tokens & Component System
   Elite navy / graphite / brass-gold institutional identity
   ============================================================ */

:root {
  /* ---- Fluid type scale ---- */
  --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.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.75rem);
  --text-hero: clamp(2.75rem, 0.5rem + 6vw, 6.5rem);

  /* ---- 4px spacing system ---- */
  --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;

  /* ---- Radius ---- */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.625rem;
  --radius-xl: 0.875rem;
  --radius-full: 9999px;

  /* ---- Motion ---- */
  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);

  /* ---- Content widths ---- */
  --content-narrow: 640px;
  --content-default: 980px;
  --content-wide: 1240px;
  --content-full: 100%;

  /* ---- Fonts ---- */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;

  /* ---- Brand constants (stable across themes) ---- */
  --brand-navy-950: #060b16;
  --brand-navy-900: #0a1226;
  --brand-navy-800: #0e1830;
  --brand-navy-700: #14203f;
  --brand-navy-600: #1c2c52;
  --brand-gold-600: #a9822e;
  --brand-gold-500: #c6a15b;
  --brand-gold-400: #d9bd82;
}

/* ================= DARK MODE (default / primary) ================= */
:root,
[data-theme='dark'] {
  --color-bg: #070d1a;
  --color-surface: #0d1526;
  --color-surface-2: #111c33;
  --color-surface-offset: #16213c;
  --color-surface-offset-2: #1b2846;
  --color-surface-dynamic: #22315a;
  --color-divider: #1c283f;
  --color-border: #263454;

  --color-text: #edf0f7;
  --color-text-muted: #9aa5c4;
  --color-text-faint: #61698c;
  --color-text-inverse: #0a1226;

  --color-primary: #c6a15b;
  --color-primary-hover: #d9bd82;
  --color-primary-active: #e8d29c;
  --color-primary-highlight: #362c1c;

  --color-gold: #c6a15b;
  --color-gold-hover: #d9bd82;
  --color-gold-active: #e8d29c;
  --color-gold-highlight: #362c1c;

  --color-success: #6daa45;
  --color-success-highlight: #263120;
  --color-warning: #c98a3e;
  --color-warning-highlight: #362c1c;
  --color-error: #cf6659;
  --color-error-highlight: #3a2622;
  --color-blue: #5591c7;
  --color-blue-highlight: #1d2c3d;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.35);
  --shadow-md: 0 8px 24px oklch(0 0 0 / 0.45);
  --shadow-lg: 0 24px 60px oklch(0 0 0 / 0.55);
  --shadow-gold: 0 8px 30px oklch(0.75 0.11 85 / 0.25);
}

/* ================= LIGHT MODE ================= */
[data-theme='light'] {
  --color-bg: #f7f8fb;
  --color-surface: #ffffff;
  --color-surface-2: #fbfcfe;
  --color-surface-offset: #eef1f7;
  --color-surface-offset-2: #e6eaf3;
  --color-surface-dynamic: #dde3ee;
  --color-divider: #e3e7f0;
  --color-border: #d7dce8;

  --color-text: #0f1830;
  --color-text-muted: #545e79;
  --color-text-faint: #9aa2b8;
  --color-text-inverse: #f7f8fb;

  --color-primary: #a9822e;
  --color-primary-hover: #8a6a22;
  --color-primary-active: #6e541b;
  --color-primary-highlight: #f3e9d3;

  --color-gold: #a9822e;
  --color-gold-hover: #8a6a22;
  --color-gold-active: #6e541b;
  --color-gold-highlight: #f3e9d3;

  --color-success: #437a22;
  --color-success-highlight: #e4ecdb;
  --color-warning: #964219;
  --color-warning-highlight: #f1e0d3;
  --color-error: #a12c2c;
  --color-error-highlight: #f3dcdb;
  --color-blue: #14203f;
  --color-blue-highlight: #dde4f0;

  --shadow-sm: 0 1px 2px oklch(0.2 0.03 260 / 0.06);
  --shadow-md: 0 8px 24px oklch(0.2 0.03 260 / 0.08);
  --shadow-lg: 0 24px 60px oklch(0.2 0.03 260 / 0.12);
  --shadow-gold: 0 8px 30px oklch(0.6 0.1 85 / 0.18);
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    --color-bg: #f7f8fb;
    --color-surface: #ffffff;
    --color-surface-2: #fbfcfe;
    --color-surface-offset: #eef1f7;
    --color-surface-offset-2: #e6eaf3;
    --color-surface-dynamic: #dde3ee;
    --color-divider: #e3e7f0;
    --color-border: #d7dce8;
    --color-text: #0f1830;
    --color-text-muted: #545e79;
    --color-text-faint: #9aa2b8;
    --color-text-inverse: #f7f8fb;
    --color-primary: #a9822e;
    --color-primary-hover: #8a6a22;
    --color-primary-active: #6e541b;
    --color-primary-highlight: #f3e9d3;
    --color-gold: #a9822e;
    --color-gold-hover: #8a6a22;
    --color-gold-active: #6e541b;
    --color-gold-highlight: #f3e9d3;
    --shadow-sm: 0 1px 2px oklch(0.2 0.03 260 / 0.06);
    --shadow-md: 0 8px 24px oklch(0.2 0.03 260 / 0.08);
    --shadow-lg: 0 24px 60px oklch(0.2 0.03 260 / 0.12);
  }
}

/* ================================================================
   LAYOUT PRIMITIVES
   ================================================================ */

.wrap {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
@media (min-width: 900px) {
  .wrap {
    padding-inline: var(--space-10);
  }
}

.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
  position: relative;
}
.section--tight {
  padding-block: clamp(var(--space-10), 5vw, var(--space-16));
}
.section--surface {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.section--offset {
  background: var(--color-surface-offset);
}
.section--navy {
  background: radial-gradient(120% 140% at 15% 0%, var(--brand-navy-700) 0%, var(--brand-navy-900) 55%, var(--brand-navy-950) 100%);
  color: #edf0f7;
}
[data-theme='light'] .section--navy {
  color: #edf0f7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--color-gold);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}
h4, h5 {
  font-family: var(--font-body);
  font-weight: 700;
}

.h-hero {
  font-size: var(--text-hero);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.h-1 {
  font-size: var(--text-2xl);
  line-height: 1.08;
}
.h-2 {
  font-size: var(--text-xl);
  line-height: 1.15;
}
.h-3 {
  font-size: var(--text-lg);
  line-height: 1.3;
  font-family: var(--font-body);
  font-weight: 700;
}

.lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 62ch;
  line-height: 1.55;
}
.body-text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 68ch;
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: var(--space-8);
}
@media (min-width: 780px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ================================================================
   BUTTONS
   ================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
}
.btn-gold {
  background: linear-gradient(155deg, var(--brand-gold-400), var(--brand-gold-600));
  color: #1a1204;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(155deg, var(--brand-gold-500), var(--brand-gold-600));
  transform: translateY(-1px);
}
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn-ghost {
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-2) var(--space-3);
}
.btn-ghost:hover { color: var(--color-gold); }

.btn-sm { padding: var(--space-3) var(--space-6); font-size: var(--text-xs); }

/* ================================================================
   HEADER / NAV
   ================================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium);
}
.site-header--hidden { transform: translateY(-100%); }
.site-header--scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-4);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
  text-decoration: none;
}
.main-nav a, .mobile-nav a { text-decoration: none; }
.brand-mark { width: 34px; height: 34px; flex-shrink: 0; color: var(--color-gold); }
.brand-word {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}
.brand-word span { color: var(--color-gold); }
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 5px;
  line-height: 1.25;
}
@media (min-width: 1100px) {
  .brand-word { font-size: 1.35rem; }
  .brand-sub { font-size: 0.74rem; white-space: nowrap; }
}

.main-nav { display: none; }
@media (min-width: 1100px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-6);
  }
}
@media (min-width: 1440px) { .main-nav { gap: var(--space-8); } }
.main-nav a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  position: relative;
  padding-block: var(--space-1);
  white-space: nowrap;
}
@media (min-width: 1100px) and (max-width: 1279px) {
  .main-nav { gap: var(--space-4); }
  .main-nav a { font-size: 0.85rem; }
  .header-inner { gap: var(--space-4); }
  .header-actions { gap: var(--space-3); }
  .header-actions .btn { padding-inline: var(--space-4); font-size: 0.85rem; }
  .brand-word { font-size: 1.2rem; }
  .brand-sub { font-size: 0.66rem; }
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--color-text); }
.main-nav a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--color-gold);
}

.header-actions { display: flex; align-items: center; gap: var(--space-4); }
.header-actions .btn { display: none; }
@media (min-width: 1100px) { .header-actions .btn { display: inline-flex; } }
.mobile-nav .btn { margin-top: var(--space-3); justify-content: center; }

.theme-toggle, .menu-toggle {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.theme-toggle:hover, .menu-toggle:hover { color: var(--color-gold); border-color: var(--color-gold); }
.menu-toggle { display: inline-flex; }
@media (min-width: 1100px) { .menu-toggle { display: none; } }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4) 0 var(--space-6);
  border-top: 1px solid var(--color-divider);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: var(--space-3) var(--space-2);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius-sm);
}
.mobile-nav a:hover { background: var(--color-surface-offset); color: var(--color-gold); }
@media (min-width: 1100px) { .mobile-nav { display: none !important; } }

/* ================================================================
   HERO
   ================================================================ */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--space-20), 12vw, var(--space-32)) clamp(var(--space-16), 8vw, var(--space-24));
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, oklch(0.06 0.03 260 / 0.55) 0%, oklch(0.05 0.03 260 / 0.88) 60%, var(--brand-navy-950) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}
.hero-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 1.25rem + 4.5vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #f5f2e9;
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 24px oklch(0 0 0 / 0.45);
}
.hero-brand span {
  color: var(--brand-gold-500);
  background: linear-gradient(180deg, #e6cf97 0%, var(--brand-gold-500) 55%, var(--brand-gold-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content .eyebrow { color: var(--brand-gold-500); }
.hero-content h1 { color: #f5f2e9; margin-block: var(--space-6) var(--space-6); }
.hero-content .lede { color: #cdd5e6; }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-10); }

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-20);
  padding-top: var(--space-10);
  border-top: 1px solid oklch(1 0 0 / 0.12);
}
@media (min-width: 780px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--brand-gold-400);
  line-height: 1;
}
.stat-label {
  font-size: var(--text-xs);
  color: #b7c0d6;
  margin-top: var(--space-2);
  letter-spacing: 0.02em;
}

/* ================================================================
   CARDS
   ================================================================ */

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}
.card--interactive { transition: transform var(--transition-interactive), box-shadow var(--transition-interactive), border-color var(--transition-interactive); }
.card--interactive:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in oklab, var(--color-gold), transparent 45%);
}
.card-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-gold-highlight);
  color: var(--color-gold);
  margin-bottom: var(--space-5);
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { font-family: var(--font-body); font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--space-3); }
.card p { color: var(--color-text-muted); font-size: var(--text-sm); line-height: 1.65; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: var(--color-surface-offset);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

/* ================================================================
   NUMBERED PROCESS
   ================================================================ */

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-6);
  padding-block: var(--space-8);
  border-bottom: 1px solid var(--color-divider);
}
.process-step:last-child { border-bottom: none; }
.process-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-gold);
  line-height: 1;
  min-width: 2.5ch;
}

/* ================================================================
   TABLE (service tiers)
   ================================================================ */

.tier-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: var(--text-sm);
}
.tier-table th, .tier-table td {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  border-bottom: 1px solid var(--color-divider);
  vertical-align: top;
}
.tier-table thead th {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  border-bottom: 1px solid var(--color-border);
}
.tier-table tbody tr:hover { background: var(--color-surface-offset); }
.tier-table td strong { color: var(--color-text); }

/* ================================================================
   FOOTER
   ================================================================ */

.site-footer {
  background: var(--brand-navy-950);
  color: #aab4cf;
  border-top: 1px solid oklch(1 0 0 / 0.08);
}
.footer-grid {
  display: grid;
  gap: var(--space-10);
  padding-block: var(--space-20) var(--space-12);
}
@media (min-width: 780px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-grid h5 {
  color: #edf0f7;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.footer-grid a { color: #aab4cf; font-size: var(--text-sm); display: block; padding-block: var(--space-1); }
.footer-grid a:hover { color: var(--brand-gold-400); }
.footer-bottom {
  border-top: 1px solid oklch(1 0 0 / 0.08);
  padding-block: var(--space-6);
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  align-items: center; justify-content: space-between;
  font-size: var(--text-xs);
  color: #6d7797;
}
.footer-disclaimer {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: 0 var(--space-6) var(--space-16);
  font-size: var(--text-xs);
  color: #5c6688;
  line-height: 1.7;
}
@media (min-width: 900px) { .footer-disclaimer { padding-inline: var(--space-10); } }

/* ================================================================
   MISC / UTILITIES
   ================================================================ */

.divider-gold {
  width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--brand-gold-500), transparent);
  margin-block: var(--space-6);
}

.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; }

.split {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse { direction: rtl; }
  .split--reverse > * { direction: ltr; }
}

.cta-band {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  padding: clamp(var(--space-12), 6vw, var(--space-20));
  color: #f5f2e9;
}
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-band::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(120deg, oklch(0.05 0.03 260 / 0.9), oklch(0.08 0.03 260 / 0.72));
}
.cta-band > * { position: relative; z-index: 1; }

.check-list { display: flex; flex-direction: column; gap: var(--space-3); }
.check-list li { display: flex; gap: var(--space-3); align-items: flex-start; font-size: var(--text-sm); color: var(--color-text-muted); }
.check-list svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--color-gold); margin-top: 3px; }

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-8);
  color: var(--color-text-faint);
}
.logo-strip span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.breadcrumb-hero {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24)) var(--space-16);
  background: radial-gradient(120% 140% at 85% -10%, var(--brand-navy-700) 0%, var(--brand-navy-900) 55%, var(--brand-navy-950) 100%);
  color: #edf0f7;
}
.breadcrumb-hero .eyebrow { color: var(--brand-gold-500); }
.breadcrumb-hero h1 { color: #f5f2e9; margin-block: var(--space-5) var(--space-4); }
.breadcrumb-hero .lede { color: #cdd5e6; }

/* form */
.form-field { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-5); }
.form-field label { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-text-muted); }
.form-field input, .form-field select, .form-field textarea {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: var(--text-base);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--color-gold);
  outline: none;
  box-shadow: 0 0 0 3px var(--color-gold-highlight);
}
.form-row { display: grid; gap: var(--space-5); }
@media (min-width: 700px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease-premium), transform 0.7s var(--ease-premium); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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