/* ── Design Tokens ── */
:root {
  /* Colors */
  --warm-linen: #F5F0EB;
  --soft-taupe: #E8E0D8;
  --espresso: #2C2420;
  --terracotta: #C2714F;
  --terracotta-hover: #A85D3F;
  --clay: #7B5B4C;
  --ochre: #D4A853;
  --cream: #FAF7F4;
  --walnut: #3D3028;
  --walnut-light: #4D4038;

  /* Typography */
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --section-pad-y: clamp(80px, 10vw, 140px);
  --section-pad-x: clamp(20px, 5vw, 80px);
  --container-max: 1200px;
  --container-narrow: 800px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-base: 0.3s var(--ease-out);

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(44, 36, 32, 0.08);
  --shadow-card: 0 2px 12px rgba(44, 36, 32, 0.06);
}
