/* ============================================================
   TYPOGRAPHY — Les Écuries du Vieux Château
   Display : Cormorant Garamond — elegant, high-contrast serif
             carrying the heritage / château voice.
   Text/UI : Hanken Grotesk — clean modern grotesque, the
             "fresh 2026" counterpoint.
   ============================================================ */
:root {
  /* ---- Families ---- */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:    "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  /* ---- Fluid type scale (clamp: min → preferred → max) ---- */
  --fs-display:  clamp(3.25rem, 8vw, 6.5rem); /* @kind font */
  --fs-h1:       clamp(2.5rem, 5.2vw, 4.25rem); /* @kind font */
  --fs-h2:       clamp(2rem, 4vw, 3rem); /* @kind font */
  --fs-h3:       clamp(1.5rem, 2.6vw, 2.1rem); /* @kind font */
  --fs-h4:       1.5rem; /* @kind font */
  --fs-lead:     1.3125rem; /* @kind font */
  --fs-body:     1.0625rem; /* @kind font */
  --fs-sm:       0.9375rem; /* @kind font */
  --fs-xs:       0.8125rem; /* @kind font */
  --fs-eyebrow:  0.78125rem; /* @kind font */

  /* ---- Weights ---- */
  --fw-regular: 400; /* @kind font */
  --fw-medium:  500; /* @kind font */
  --fw-semibold: 600; /* @kind font */
  --fw-bold:    700; /* @kind font */
  --fw-display-light:   400; /* @kind font */
  --fw-display-medium:  500; /* @kind font */
  --fw-display-semibold: 600; /* @kind font */

  /* ---- Line heights ---- */
  --lh-tight:   1.04; /* @kind font */
  --lh-snug:    1.18; /* @kind font */
  --lh-normal:  1.6; /* @kind font */
  --lh-relaxed: 1.75; /* @kind font */

  /* ---- Letter spacing ---- */
  --ls-tight:    -0.02em; /* @kind font */
  --ls-normal:   0; /* @kind font */
  --ls-eyebrow:  0.22em; /* @kind font */
  --ls-button:   0.04em; /* @kind font */
}
