/* ==========================================================================
   Maison Lumière — Design Tokens
   Centraliserade värden. Ändra här för att uppdatera hela sajtens utseende.
   ========================================================================== */

:root {
  /* Färger — varm, skandinavisk premium-palett */
  --color-bg: #faf7f2;
  --color-bg-alt: #f2ece2;
  --color-surface: #ffffff;
  --color-ink: #221f1b;
  --color-ink-soft: #55504a;
  --color-ink-faint: #8b857c;
  --color-line: #e3dbcd;
  --color-line-strong: #cfc3ac;
  --color-accent: #a3854f;
  --color-accent-dark: #7d6539;
  --color-accent-soft: #ede3d0;
  --color-white: #ffffff;
  --color-focus: #1d6fa5;
  --color-success-bg: #eef4ea;
  --color-success-ink: #3c5c2e;

  /* Typografi */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  --fs-h1: clamp(2.4rem, 4.5vw + 1rem, 4.2rem);
  --fs-h2: clamp(1.9rem, 2.5vw + 1rem, 2.8rem);
  --fs-h3: clamp(1.35rem, 1.2vw + 1rem, 1.75rem);
  --fs-lead: clamp(1.05rem, 0.4vw + 1rem, 1.25rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.78rem;

  --lh-tight: 1.15;
  --lh-normal: 1.6;

  /* Spacing scale */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --container-max: 1180px;
  --container-narrow: 760px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-pill: 999px;

  /* Elevation */
  --shadow-sm: 0 1px 3px rgba(34, 31, 27, 0.06);
  --shadow-md: 0 8px 30px rgba(34, 31, 27, 0.08);
  --shadow-lg: 0 20px 60px rgba(34, 31, 27, 0.12);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 150ms;
  --duration-base: 260ms;
  --duration-slow: 420ms;

  --header-height: 76px;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --duration-fast: 0.01ms;
    --duration-base: 0.01ms;
    --duration-slow: 0.01ms;
  }
}
