/* NapSac Wine Tours — Design Tokens */
/* Palette: Deep Burgundy/Wine primary, Rich Gold accent, Charcoal + Cream surfaces */

:root,
[data-theme='light'] {
  /* === TYPE SCALE === */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 7rem);

  /* === 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-32: 8rem;

  /* === WINE COUNTRY PALETTE — LIGHT MODE === */
  /* Surfaces: warm cream/ivory */
  --color-bg: #F5F0E8;
  --color-surface: #FAF7F2;
  --color-surface-2: #FDFCFA;
  --color-surface-offset: #EDE6DA;
  --color-surface-offset-2: #E5DDD0;
  --color-surface-dynamic: #D9CFBF;
  --color-divider: #C8BFA8;
  --color-border: #BEB5A0;

  /* Text */
  --color-text: #1A1208;
  --color-text-muted: #6B5D48;
  --color-text-faint: #A99880;
  --color-text-inverse: #FAF7F2;

  /* Primary: Deep Burgundy/Wine */
  --color-primary: #6B1A2A;
  --color-primary-hover: #521320;
  --color-primary-active: #3A0D16;
  --color-primary-highlight: #E8CDD2;

  /* Accent: Rich Gold */
  --color-gold: #B8860B;
  --color-gold-hover: #9A6F09;
  --color-gold-active: #7D5908;
  --color-gold-highlight: #EDE0C0;

  /* Secondary: Deep Charcoal */
  --color-charcoal: #1C1410;
  --color-charcoal-light: #3A3028;

  /* === RADII === */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* === TRANSITIONS === */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* === SHADOWS (warm toned) === */
  --shadow-sm: 0 1px 3px oklch(0.15 0.04 30 / 0.08);
  --shadow-md: 0 4px 16px oklch(0.15 0.04 30 / 0.12);
  --shadow-lg: 0 12px 40px oklch(0.15 0.04 30 / 0.18);
  --shadow-xl: 0 24px 64px oklch(0.15 0.04 30 / 0.24);

  /* === CONTENT WIDTHS === */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;

  /* === FONTS === */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
}

/* Dark mode intentionally disabled — site always uses light (warm cream) palette */
