:root {
  /* Color palette — warm, alpine, editorial */
  --bg: #fbfaf6;
  --bg-elev: #ffffff;
  --text: #2c2419;
  --text-soft: #4a3f30;
  --text-mute: #6a5d4a;
  --accent: #5d6e4a;
  --accent-dark: #44523a;
  --warmth: #b8654d;
  --warmth-dark: #964f3a;
  --soft: #e8dcc4;
  --soft-2: #f1e8d3;
  --line: #d9cfb8;
  --line-soft: #ece4d0;

  /* Typography */
  --font-serif: "Fraunces", "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Type scale (mobile-first) */
  --fs-xs: 0.8125rem;   /* 13 */
  --fs-sm: 0.9375rem;   /* 15 */
  --fs-base: 1rem;      /* 16 */
  --fs-md: 1.125rem;    /* 18 */
  --fs-lg: 1.375rem;    /* 22 */
  --fs-xl: 1.75rem;     /* 28 */
  --fs-2xl: 2.25rem;    /* 36 */
  --fs-3xl: 2.875rem;   /* 46 */
  --fs-4xl: 3.5rem;     /* 56 */

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Layout */
  --nav-h: 64px;
  --container: 1200px;
  --container-narrow: 880px;
  --container-wide: 1400px;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(44, 36, 25, 0.06);
  --shadow-md: 0 6px 18px rgba(44, 36, 25, 0.08);
  --shadow-lg: 0 24px 60px rgba(44, 36, 25, 0.14);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 150ms;
  --dur-med: 280ms;
  --dur-slow: 480ms;
}

@media (min-width: 720px) {
  :root {
    --nav-h: 76px;
    --fs-xl: 2rem;
    --fs-2xl: 2.75rem;
    --fs-3xl: 3.5rem;
    --fs-4xl: 4.5rem;
  }
}
