/* ============================================
   VipCheapTour Design System — Design Tokens
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Unbounded:wght@400;500;600;700;800&family=Caveat:wght@500;700&display=swap');

:root {
  /* ---- Brand ---- */
  --vct-teal:           #14b8b8;
  --vct-teal-deep:      #0e7f7f;
  --vct-teal-ink:       #0f2a2e;
  --vct-cream:          #f4e9b3;
  --vct-cream-soft:     #fbf6dd;
  --vct-orange:         #ff6a1a;
  --vct-orange-active:  #e55409;
  --vct-orange-soft:    #ffd9c2;
  --vct-coral:          #ff8a5b;

  /* ---- Surface ---- */
  --vct-canvas:         #ffffff;
  --vct-paper:          #fffdf7;
  --vct-surface-soft:   #f6f4ec;
  --vct-surface-warm:   #faf2e0;
  --vct-surface-cool:   #e8f7f7;

  /* ---- Hairlines / Borders ---- */
  --vct-hairline:       #e6e1d4;
  --vct-hairline-soft:  #f0ece0;
  --vct-border-strong:  #c8bfa6;

  /* ---- Text ---- */
  --vct-ink:            #0f2a2e;
  --vct-body:           #2b3f44;
  --vct-muted:          #6a7a7e;
  --vct-muted-soft:     #99a4a7;
  --vct-on-primary:     #ffffff;
  --vct-on-cream:       #0f2a2e;

  /* ---- Semantic ---- */
  --vct-success:        #2f9e6b;
  --vct-warning:        #e0a02b;
  --vct-error:          #d23b2d;
  --vct-info:           #0e7f7f;

  /* ---- Stars / Rating ---- */
  --vct-star:           #ff6a1a;

  /* ---- Scrim ---- */
  --vct-scrim:          rgba(15, 42, 46, 0.55);

  /* ============================================
     TYPE TOKENS
     ============================================ */
  --vct-font-display:   'Unbounded', 'Manrope', system-ui, sans-serif;
  --vct-font-body:      'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --vct-font-script:    'Caveat', 'Comic Sans MS', cursive;

  /* Sizes */
  --vct-text-display-3xl: 96px;
  --vct-text-display-2xl: 64px;
  --vct-text-display-xl:  48px;
  --vct-text-display-lg:  36px;
  --vct-text-display-md:  28px;
  --vct-text-display-sm:  22px;
  --vct-text-title-lg:    20px;
  --vct-text-title-md:    18px;
  --vct-text-title-sm:    16px;
  --vct-text-body-md:     16px;
  --vct-text-body-sm:     14px;
  --vct-text-caption:     13px;
  --vct-text-micro:       11px;

  /* Weights */
  --vct-w-light:    300;
  --vct-w-regular:  400;
  --vct-w-medium:   500;
  --vct-w-semibold: 600;
  --vct-w-bold:     700;
  --vct-w-black:    800;

  /* ============================================
     SPACING (4px base)
     ============================================ */
  --vct-space-xxs: 2px;
  --vct-space-xs:  4px;
  --vct-space-sm:  8px;
  --vct-space-md:  12px;
  --vct-space-base:16px;
  --vct-space-lg:  24px;
  --vct-space-xl:  32px;
  --vct-space-2xl: 48px;
  --vct-space-3xl: 64px;
  --vct-space-section: 96px;

  /* ============================================
     RADII
     ============================================ */
  --vct-radius-xs:  6px;
  --vct-radius-sm:  10px;
  --vct-radius-md:  16px;
  --vct-radius-lg:  24px;
  --vct-radius-xl:  32px;
  --vct-radius-pill: 999px;

  /* ============================================
     SHADOWS
     ============================================ */
  --vct-shadow-card:
    rgba(15, 42, 46, 0.04) 0 1px 2px,
    rgba(15, 42, 46, 0.06) 0 4px 12px;
  --vct-shadow-float:
    rgba(15, 42, 46, 0.05) 0 2px 4px,
    rgba(15, 42, 46, 0.08) 0 8px 24px,
    rgba(15, 42, 46, 0.04) 0 16px 48px;
  --vct-shadow-press:
    rgba(15, 42, 46, 0.04) 0 1px 1px inset;

  /* ============================================
     TRANSITIONS
     ============================================ */
  --vct-ease-out:   cubic-bezier(0.2, 0.8, 0.2, 1);
  --vct-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --vct-dur-fast:   140ms;
  --vct-dur-base:   220ms;
  --vct-dur-slow:   420ms;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--vct-paper);
  color: var(--vct-ink);
  font-family: var(--vct-font-body);
  font-size: var(--vct-text-body-md);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *::before, *::after { box-sizing: border-box; }
button { font-family: inherit; }
a { text-decoration: none; color: inherit; }
img { display: block; }
