/**
 * Design tokens — Dear Jane landing (light, 2026)
 * Reference mood: warm, confident, human (Bumble-like clarity without copying assets)
 */
:root {
  --color-bg: #ffffff;
  --color-bg-subtle: #f7f7f8;
  --color-bg-elevated: #ffffff;
  --color-ink: #121212;
  --color-ink-muted: #5c5c5f;
  --color-ink-soft: #8e8e93;
  --color-line: rgba(18, 18, 18, 0.08);
  --color-line-strong: rgba(18, 18, 18, 0.12);

  /* Accent — unified with the luxe-gold button tone (was the brighter
     honey #f4b400; now matches --color-luxe-gold so every "accent"
     surface, kicker, focus ring and glow speaks the same warm gold
     language as the primary CTA pill). */
  --color-accent: #c8a45c;
  --color-accent-soft: rgba(200, 164, 92, 0.16);
  --color-accent-deep: #a37e3a;

  --color-mesh-1: #fff8e8;
  --color-mesh-2: #ffeef5;
  --color-mesh-3: #eef6ff;

  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  /* All headings / display slots — Ivy Presto Headline (ivy-presto.css). */
  --font-heading: "Ivy Presto Headline", "Ivy Presto Display", Georgia, "Times New Roman", serif;
  --font-display: var(--font-heading);
  /* Serif slots on marketing sections — same family so hero + sections stay one voice. */
  --font-serif: var(--font-heading);

  /* Luxe palette — deep ink hero + warm cream copy + brushed-gold accents.
     Used by .hero--luxe and .values-grid sections to flip the page out of
     the bright daytime palette and into an evening-premium register. */
  --color-luxe-ink:        #0d1117;
  --color-luxe-ink-soft:   #161b24;
  --color-luxe-cream:      #f5ebd5;
  --color-luxe-cream-soft: rgba(245, 235, 213, 0.78);
  --color-luxe-cream-mute: rgba(245, 235, 213, 0.55);
  --color-luxe-gold:       #c8a45c;
  --color-luxe-gold-deep:  #a37e3a;
  --color-luxe-gold-soft:  rgba(200, 164, 92, 0.16);
  --color-luxe-line:       rgba(245, 235, 213, 0.12);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(18, 18, 18, 0.06);
  --shadow-md: 0 12px 40px rgba(18, 18, 18, 0.08);
  --shadow-lg: 0 24px 80px rgba(18, 18, 18, 0.1);

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

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --header-h: 72px;
  --content-max: 1120px;
  --safe-bottom: env(safe-area-inset-bottom, 0);
}

@media (prefers-color-scheme: dark) {
  /* Keep marketing landing light per product spec */
  :root {
    color-scheme: light;
  }
}
