/* ==========================================================================
   Voshé — Design tokens
   ========================================================================== */

:root {
  /* Brand palette */
  --color-black: #191714;
  --color-dark: #2b2723;
  --color-taupe: #75685f;
  --color-beige: #c7af96;
  --color-sand: #e4d6c6;
  --color-cream: #f7f2eb;
  --color-ivory: #fcfaf7;
  --color-champagne: #b79b73;
  --color-white: #ffffff;
  --color-success: #25d366;
  --color-text: #38322e;
  --color-muted: #706963;

  /* Semantic */
  --color-bg: var(--color-ivory);
  --color-bg-alt: var(--color-cream);
  --color-surface: var(--color-white);
  --color-border: rgba(117, 104, 95, 0.18);
  --color-border-strong: rgba(117, 104, 95, 0.32);
  --color-overlay: rgba(25, 23, 20, 0.48);
  --color-overlay-strong: rgba(25, 23, 20, 0.62);
  --color-focus: var(--color-champagne);
  --color-error: #9b3b2e;
  --color-whatsapp: #25d366;

  /* Typography */
  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", Tahoma, sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: clamp(1.75rem, 2.5vw, 2.25rem);
  --fs-3xl: clamp(2.25rem, 4vw, 3.25rem);
  --fs-4xl: clamp(2.75rem, 5.5vw, 4.25rem);
  --fs-hero: clamp(2.5rem, 6vw, 4.75rem);

  --lh-tight: 1.15;
  --lh-snug: 1.35;
  --lh-base: 1.65;
  --lh-relaxed: 1.8;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-section: clamp(3.5rem, 8vw, 6.5rem);

  /* Layout */
  --container: 72rem;
  --container-narrow: 48rem;
  --container-wide: 80rem;
  --gutter: clamp(1rem, 4vw, 2rem);

  /* Header */
  --header-top-h: 2.5rem;
  --header-main-h: 7rem;
  --header-h: calc(var(--header-top-h) + var(--header-main-h));

  /* Radius & shadows */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --shadow-sm: 0 1px 2px rgba(25, 23, 20, 0.06);
  --shadow-md: 0 8px 24px rgba(25, 23, 20, 0.08);
  --shadow-lg: 0 16px 40px rgba(25, 23, 20, 0.12);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 180ms;
  --duration: 320ms;
  --duration-slow: 650ms;

  /* Z-index */
  --z-sticky: 100;
  --z-dropdown: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-whatsapp: 500;
  --z-skip: 600;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --duration-fast: 0ms;
    --duration: 0ms;
    --duration-slow: 0ms;
  }
}
