/* =========================================================
   VALCOM TRAVEL — BRAND TOKENS  ·  "Daylight Folio" (light)
   Crisp, white, professional. Navy ink on white, gold as the
   single accent. Sampled from the V·T crest:
     · gold        #C9A24B
     · champagne   #E8D6A8
     · navy ink    #0B1B2D
   Dual action: WhatsApp green + navy "Call" button.
   Shadows are soft neutral grey (never navy-heavy). Motion GPU-only.
   ========================================================= */

:root {
  /* ---- BRAND CORES (exact) ---- */
  --navy:#0B1B2D;
  --gold:#C9A24B;
  --champagne:#E8D6A8;

  /* ---- NAVY / INK RAMP (text + strong surfaces) ---- */
  --navy-950:#060F1A;
  --navy-900:#0B1B2D;   /* display headings, footer */
  --navy-800:#12263A;
  --ink-900:#0E1A26;    /* primary heading ink */
  --ink-700:#1C2A38;    /* body-strong ink on white (AAA) */
  --ink-500:#4A5563;    /* muted text on white (darkened for crisper read) */
  --ink-400:#7A8694;    /* faint meta text */

  /* ---- GOLD RAMP ---- */
  --gold-800:#7E5F1E;
  --gold-700:#9C7726;   /* gold text on white (AA) */
  --gold-600:#B68C33;
  --gold-500:#C9A24B;   /* === BRAND GOLD === */
  --gold-400:#D9B868;
  --gold-300:#E8D6A8;
  --gold-200:#F3E8C8;
  --gold-100:#FBF4E2;   /* faint gold wash (badge / chip fill) */

  /* ---- PAPER / SURFACES (warm ivory, not clinical white) ---- */
  --paper:#FBFAF6;      /* === page background — warm ivory === */
  --card:#FFFFFF;       /* raised card = cleaner white, pops off the ivory */
  --paper-2:#F4EFE4;    /* alternating section / warm sand band */
  --paper-3:#EDE6D6;    /* deeper well / footer */
  --line:#E8E0CF;       /* hairline */
  --line-2:#D7CDB6;     /* stronger hairline */

  /* ---- ACTION ---- */
  --whatsapp:#25D366;
  --whatsapp-deep:#128C7E;

  /* ---- SEMANTIC ---- */
  --bg:var(--paper);
  --bg-elev:var(--paper-2);
  --text:var(--ink-700);
  --text-dim:var(--ink-500);

  /* ---- TYPE ---- */
  --font-display:'Cinzel', 'Trajan Pro', Georgia, serif;
  --font-accent:'Cormorant Garamond', Georgia, serif;
  --font-body:'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* fluid scale */
  --fs-hero:clamp(2.6rem, 6.6vw, 5.6rem);
  --fs-h2:clamp(1.85rem, 4vw, 3.1rem);
  --fs-h3:clamp(1.12rem, 1.7vw, 1.4rem);
  --fs-lead:clamp(1.04rem, 1.4vw, 1.24rem);
  --fs-body:clamp(1rem, 1.1vw, 1.06rem);
  --fs-eyebrow:clamp(0.72rem, 0.9vw, 0.8rem);

  /* ---- SPACE / SHAPE ---- */
  --maxw:1240px;
  --gutter:clamp(1.1rem, 4vw, 3rem);
  --section-y:clamp(4.2rem, 8.5vw, 7.5rem);
  --radius:14px;
  --radius-sm:10px;
  --radius-lg:22px;

  /* ---- SHADOW (warm umber-tinted — not generic black) ---- */
  --shadow-card:0 1px 2px rgba(74,55,24,.06), 0 20px 44px -24px rgba(74,55,24,.26);
  --shadow-hover:0 2px 8px rgba(74,55,24,.10), 0 38px 70px -30px rgba(74,55,24,.34);
  --shadow-soft:0 14px 38px -22px rgba(74,55,24,.22);

  /* ---- MOTION ---- */
  --ease:cubic-bezier(0.22, 1, 0.36, 1);
  --dur:0.55s;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}
