/* ── Design tokens ────────────────────────────────────── */
:root {
  /* Ink & text */
  --booking-color-ink: #11201f;
  --booking-color-text: #1a2d2b;
  --booking-color-muted: #5c6f6a;
  --booking-color-faint: #8fa29d;

  /* Surfaces */
  --booking-color-surface: #ffffff;
  --booking-color-surface-alt: #f4f8f6;
  --booking-color-surface-warm: #fdfaf4;

  /* Brand accents - lagoon & vegetation */
  --booking-color-lagoon: #0d9488;
  --booking-color-lagoon-dark: #0a6b62;
  --booking-color-lagoon-light: #5eead4;
  --booking-color-lagoon-tint: #e6f7f4;
  --booking-color-leaf: #256d4f;
  --booking-color-leaf-light: #4a9b78;

  /* Warm sand for subtle backgrounds */
  --booking-color-sand: #f5efe4;
  --booking-color-sand-dark: #e8dfce;

  /* Border & shadow */
  --booking-color-border: #d9e2de;
  --booking-color-border-light: #ecf1ee;
  --booking-color-focus: #0d9488;

  /* Status */
  --booking-color-success: #16a34a;
  --booking-color-warning: #d97706;
  --booking-color-error: #dc2626;

  /* Radius */
  --booking-radius-sm: 8px;
  --booking-radius-md: 14px;
  --booking-radius-lg: 20px;
  --booking-radius-full: 9999px;

  /* Shadow */
  --booking-shadow-soft: 0 2px 8px rgba(17, 32, 31, 0.06);
  --booking-shadow-card: 0 4px 16px rgba(17, 32, 31, 0.08);
  --booking-shadow-sticky: 0 8px 32px rgba(17, 32, 31, 0.12);
  --booking-shadow-hero: 0 24px 64px rgba(17, 32, 31, 0.18);

  /* Typography */
  --booking-font-sans: "Inter", "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --booking-font-display: "Cormorant Garamond", "Georgia", serif;

  /* Spacing scale */
  --booking-space-xs: 4px;
  --booking-space-sm: 8px;
  --booking-space-md: 16px;
  --booking-space-lg: 24px;
  --booking-space-xl: 32px;
  --booking-space-2xl: 48px;
  --booking-space-3xl: 64px;

  /* Layout */
  --booking-max-width: 1280px;
  --booking-header-height: 64px;

  /* Transitions */
  --booking-transition-fast: 0.15s ease;
  --booking-transition-normal: 0.25s ease;
}
