/* ==========================================================================
   MONT — DESIGN TOKENS
   Colors, type and spacing pulled from the Figma design (mont_website-1.pdf).
   Change values here to re-skin the whole site from one place.
   ========================================================================== */

:root {
  /* ---- Brand palette -------------------------------------------------- */
  --color-terracotta:        #a3563a;
  --color-terracotta-dark:   #8a4630;
  --color-terracotta-light:  #db9a84;

  --color-ochre:             #d9a441;
  --color-ochre-dark:        #bf8c30;

  --color-olive:             #6e6946;
  --color-olive-light:       #beba8a;

  --color-dusty-rose:        #db9a84;
  --color-slate-blue:        #6d7f96;

  /* Warm neutrals used for section backgrounds */
  --color-cream:             #fbf2ed;
  --color-cream-soft:        #fdf6f2;
  --color-blush:             #f9e3d8;
  --color-sand:              #f5f0e6;
  --color-white:             #ffffff;
  --color-placeholder:       #d9d9d9;

  /* Text */
  --color-ink:               #1c1a17;
  --color-body:              #4a4640;
  --color-muted:             #7a746b;

  /* Hero watercolor wash (fallback gradient when no texture image is set) */
  --gradient-hero: linear-gradient(#6C6940);

  /* Logo wordmark gradient (from brand guidelines) */
  --gradient-logo-dot: linear-gradient(#E16430);

  /* ---- Typography -------------------------------------------------- */
/* ---- Typography -------------------------------------------------- */
  --font-logo: "Literata", serif;
  --font-heading: "Montserrat", serif;
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;

  /* ---- Layout -------------------------------------------------------- */
  --container-width: 1200px;
  --container-padding: clamp(1.25rem, 4vw, 3rem);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-card: 0 12px 30px -12px rgba(28, 26, 23, 0.15);
  --shadow-soft: 0 4px 14px rgba(28, 26, 23, 0.08);

  --transition-base: 220ms ease;
}
