/* ==========================================================================
   STEEPED — Design Tokens
   Brand: Megan Elliott | steeped.meganelliott.co
   ========================================================================== */

/* --- Self-Hosted Fonts --- */
@font-face {
  font-family: 'HV Florentino';
  src: url('../assets/fonts/HVFlorentino-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HV Florentino';
  src: url('../assets/fonts/HVFlorentino-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  /* Brand Colors */
  --latte-foam: #F6F1EB;
  --soft-espresso: #4A3A32;
  --burnt-caramel: #7F503D;
  --chocolate-plum: #6B4A4E;
  --cocoa-grey: #8A7F78;
  --white: #FFFFFF;

  /* Derived Colors */
  --overlay-plum: rgba(107, 74, 78, 0.65);
  --text-muted: rgba(74, 58, 50, 0.55);
  --border-light: rgba(138, 127, 120, 0.2);
  --border-medium: rgba(138, 127, 120, 0.35);
  --shadow-soft: rgba(74, 58, 50, 0.08);
  --shadow-medium: rgba(74, 58, 50, 0.12);
  --latte-foam-dark: #EDE6DD;

  /* Typography */
  --font-display: 'HV Florentino', Georgia, 'Times New Roman', serif;
  --font-body: 'Mulish', 'Segoe UI', system-ui, sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.25rem;

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

  /* Layout */
  --content-max-width: 720px;
  --page-max-width: 1100px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 50px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}
