/**
 * SPL Villas design tokens.
 *
 * Colour values are measured from the live splvillas.com stylesheets
 * (`template_sr-base.min.css` :root) unless noted. Burnt orange is the site's
 * --primary and carries every CTA; olive is --secondary and is the colour SPL
 * use across their printed itinerary collateral. This app leans on that split:
 * olive = "this is your travel document", orange = "this is a thing you tap".
 *
 * Typography substitutes Google Fonts for SPL's Adobe Fonts kit:
 *   contralto-big -> Playfair Display   (high-contrast transitional serif)
 *   sofia-pro     -> Figtree            (geometric-humanist sans)
 */

:root {
  /* Brand */
  --orange: #ea591c;
  --orange-dark: #c9490f;
  --orange-tint: #fdefe9;
  --olive: #939a32;
  --olive-dark: #767c26;
  --olive-deep: #4b5015;
  --olive-tint: #f2f4e6;
  --rose: #ccab9a;
  --rose-tint: #f6ede8;
  --blush: #f1e7e3;
  --teal: #387675;
  --teal-mid: #88c1c3;
  --teal-pale: #b8dcdc;

  /* Neutrals */
  --ink: #121212;
  --ink-soft: #3a3a3a;
  --muted: #4d4d4d;
  --muted-light: #757575;
  --border: #e5e5e5;
  --border-soft: #efefef;
  --surface: #ffffff;
  --canvas: #fbfaf9;

  /* Type */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radii — measured: SPL buttons 8px, cards 16px */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(18, 18, 18, 0.05);
  --shadow-md: 0 3px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.14);
  --shadow-card: 0 3px 20px rgba(0, 0, 0, 0.2);

  /* Layout */
  --container: 1220px;
  --gutter: 20px;
  --header-h: 60px;
  --anchorbar-h: 52px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 160ms;
  --t-med: 280ms;
  --t-slow: 520ms;
}

@media (min-width: 900px) {
  :root {
    --gutter: 40px;
    --header-h: 72px;
    --anchorbar-h: 58px;
  }
}
