:root {
  /* ── Backgrounds ────────────────────────────── */
  --bg: #F6F3EE;
  /* warm ivory */
  --surface: #EFEAE3;
  /* subtle warm surface */
  --card: #FFFFFF;
  /* clean card */

  /* ── Borders ────────────────────────────────── */
  --border: rgba(0, 0, 0, 0.08);
  --border-gold: rgba(201, 168, 112, 0.35);

  /* ── Brand colors ───────────────────────────── */
  --gold: #B8945F;
  /* softened gold */
  --gold-light: #D7B97F;
  --gold-alpha-20: rgba(201, 168, 112, 0.20);
  --gold-tint-05: rgba(184, 148, 95, 0.05);
  /* actual --gold color at 5% */
  --ember: #C4472D;
  /* refined warm accent */
  --ember-hover: #A73722;

  /* ── Text ───────────────────────────────────── */
  --text-1: #2A2622;
  /* rich espresso */
  --text-2: #5C554F;
  /* medium warm gray */
  --text-3: #9A948D;
  /* subtle muted */
  --text-on-dark: #0a0a0a;
  /* near-black for dark-bg text */
  --text-white: #ffffff;

  /* ── Typography ─────────────────────────────── */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* ── Radius ─────────────────────────────────── */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 24px;
  --r-pill: 100px;
  --r-circle: 50%;

  /* ── Shadows ────────────────────────────────── */
  --shadow-gold: 0 8px 32px rgba(184, 148, 95, 0.18);
  --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.06);
  --shadow-nav: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-drawer: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-btn-ember: 0 8px 24px rgba(217, 79, 53, 0.35);
  --shadow-focus-gold: 0 0 0 3px rgba(184, 148, 95, 0.12);

  /* ── Layout ─────────────────────────────────── */
  --wrap-max: 1240px;
  --wrap-pad: 32px;
  --section-pad-x: 40px;
  --section-pad-y: 120px;
  --section-pad-y-sm: 80px;

  /* ── Navbar ─────────────────────────────────── */
  --navbar-height: 72px;
  --navbar-z: 100;
  --navbar-bg-scrolled: rgba(246, 243, 238, 0.92);
  --mobile-nav-bg: rgba(246, 243, 238, 0.97);
  --mobile-nav-z: 99;

  /* ── Hero / decorative ──────────────────────── */
  --hero-grid-line: rgba(0, 0, 0, 0.04);
  --hero-grid-size: 80px 80px;
  --hero-gold-glow: rgba(184, 148, 95, 0.12);
  --hero-ember-glow: rgba(196, 71, 45, 0.07);
  --hero-badge-bg: rgba(255, 255, 255, 0.72);

  /* ── Step number ghost color ────────────────── */
  --step-num-color: rgba(201, 168, 112, 0.12);

  /* ── Quote mark color ───────────────────────── */
  --quote-color: rgba(201, 168, 112, 0.15);

  /* ── Animation ──────────────────────────────── */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.2s;
  --duration-base: 0.3s;
  --duration-slow: 0.4s;
  --duration-ticker: 24s;

  /* ── Spacing tokens ─────────────────────────── */
  --sp-4: 4px;
  --sp-6: 6px;
  --sp-8: 8px;
  --sp-10: 10px;
  --sp-12: 12px;
  --sp-14: 14px;
  --sp-16: 16px;
  --sp-20: 20px;
  --sp-24: 24px;
  --sp-28: 28px;
  --sp-32: 32px;
  --sp-36: 36px;
  --sp-40: 40px;
  --sp-44: 44px;
  --sp-48: 48px;
  --sp-60: 60px;
  --sp-80: 80px;

  /* ── Font sizes ─────────────────────────────── */
  --fs-10: 10px;
  --fs-11: 11px;
  --fs-12: 12px;
  --fs-13: 13px;
  --fs-14: 14px;
  --fs-15: 15px;
  --fs-16: 16px;
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-22: 22px;
  --fs-24: 24px;
  --fs-26: 26px;
}

/* ── Logo image sizing ───────────────────────── */
.logo-img {
  display: block;
  height: 36px;
  width: auto;
  object-fit: contain;
}

.footer-brand .logo-img {
  height: 32px;
}

/* Flash messages (from base layout) */
.flash-messages {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: var(--wrap-pad);
}
.flash-messages .flash {
  padding: 12px 16px;
  border-radius: var(--r-sm);
  margin-bottom: 16px;
}
.flash-messages .flash.success {
  background: rgba(184, 148, 95, 0.15);
  color: var(--text-1);
}
.flash-messages .flash.error {
  background: rgba(196, 71, 45, 0.12);
  color: var(--ember);
}

.preview-banner {
  background: var(--gold-tint-05);
  border: 1px solid var(--border-gold);
  color: var(--text-2);
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
}