/*
  Lavish Cutz — Design Tokens
  Adapted from the Rains INT editorial system: warm bone canvas, near-black
  ink, flat charcoal pill buttons, zero shadows, zero rounded cards, massive
  tight-leaded display type. The one chromatic voice is the shop's own red —
  reserved for tiny labels, active states and booking selections only.
*/

:root {
  /* ---------- Color ---------- */
  --bone: #f3ede4;        /* page canvas — warm off-white, not cool gray */
  --cream: #ede4d6;       /* secondary surface, alternating section bg */
  --ink: #15120f;         /* primary text — near-black, warm bias */
  --paper: #ffffff;       /* card / inverted-text surfaces */
  --charcoal: #221e1a;    /* filled pill button, inverted sections */
  --charcoal-deep: #0f0d0b;
  --graphite: #3a352f;    /* secondary dark surface */
  --ash: #a89d8d;         /* muted helper text, tertiary metadata */
  --hairline: rgba(21, 18, 15, 0.14);
  --hairline-on-dark: rgba(243, 237, 228, 0.18);
  --black: #000000;

  --lavish-red: #af1e2d;       /* the one accent — labels, actives, selections */
  --lavish-red-deep: #8c1723;
  --lavish-red-tint: #f4dcdd;

  /* ---------- Typography ---------- */
  --font-display: 'Archivo', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Kaushan Script', cursive;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --text-caption: 0.75rem;   /* 12px */
  --text-sm: 0.875rem;       /* 14px */
  --text-body: 1rem;         /* 16px */
  --text-lg: 1.25rem;        /* 20px */
  --text-xl: 2rem;           /* 32px */
  --text-2xl: 2.75rem;       /* 44px */
  --text-3xl: clamp(2.5rem, 7vw, 4rem);      /* fluid — never overflows narrow phones */
  --text-4xl: clamp(2.75rem, 8.5vw, 6rem);
  --text-5xl: clamp(2.75rem, 10.5vw, 9rem);
  --text-6xl: clamp(3rem, 12.5vw, 13rem);

  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.06em;
  --tracking-wider: 0.12em;
  --tracking-widest: 0.2em;

  --leading-display: 0.88;
  --leading-tight: 1.02;
  --leading-body: 1.5;

  /* ---------- Spacing (8px base) ---------- */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.5rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-10: 5rem;
  --space-12: 6rem;
  --space-16: 8rem;
  --space-20: 10rem;

  /* ---------- Shape — sharp cards, pill controls only ---------- */
  --radius-card: 0px;
  --radius-input: 0px;
  --radius-pill: 9999px;

  /* ---------- Layout ---------- */
  --page-max: 1520px;
  --page-pad: clamp(1.25rem, 4vw, 4rem);
  --header-h: 92px;
  --header-h-scrolled: 72px;

  /* ---------- Motion ---------- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 200ms;
  --dur-med: 480ms;
  --dur-slow: 900ms;
}

@media (max-width: 900px) {
  :root {
    --header-h: 76px;
    --header-h-scrolled: 64px;
  }
}
