/* ============================================================
   DESHYATRATRIP — Premium Travel Website
   Design System & Global Styles
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Colors */
  --forest: #0E302F;
  --forest-2: #12403E;
  --sand: #E9DDC8;
  --gold: #C69A4B;
  --gold-soft: #D8B472;
  --ivory: #F8F6F0;
  --charcoal: #17201F;
  --white: #FFFFFF;
  --muted: #6E7A76;
  --line: rgba(23, 32, 31, 0.10);
  --line-light: rgba(255, 255, 255, 0.18);

  /* Typography */
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Manrope", "Inter", system-ui, -apple-system, sans-serif;

  /* Spacing */
  --container: 1320px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius-s: 12px;
  --radius-m: 18px;
  --radius-l: 26px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.5s;

  /* Shadow */
  --shadow-s: 0 8px 24px rgba(14, 48, 47, 0.08);
  --shadow-m: 0 20px 50px rgba(14, 48, 47, 0.14);
  --shadow-l: 0 40px 90px rgba(14, 48, 47, 0.22);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--forest); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }
.serif-italic { font-style: italic; color: var(--gold); }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.no-line::before { display: none; }

/* ---------- Layout Helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); margin: 18px 0 16px; }
.section-head p { color: var(--muted); font-size: 1.05rem; max-width: 52ch; }
.section-head.center p { margin-inline: auto; }
.split-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: clamp(36px, 5vw, 60px); }
.split-head .section-head { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 26px; border-radius: 999px;
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.01em;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn .arrow { transition: transform var(--dur) var(--ease); display: inline-flex; }
.btn:hover .arrow { transform: translateX(5px); }
.btn-primary { background: var(--forest); color: var(--ivory); }
.btn-primary:hover { background: var(--charcoal); box-shadow: var(--shadow-m); }
.btn-gold { background: var(--gold); color: var(--forest); }
.btn-gold:hover { background: var(--gold-soft); box-shadow: var(--shadow-m); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,0.5); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-ghost-dark { border: 1.5px solid var(--line); color: var(--charcoal); }
.btn-ghost-dark:hover { border-color: var(--forest); background: var(--forest); color: var(--ivory); }
.btn-sm { padding: 11px 20px; font-size: 0.85rem; }

.link-arrow { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.9rem; color: var(--forest); }
.link-arrow .circle {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gold);
  display: grid; place-items: center; color: var(--forest);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.link-arrow:hover .circle { transform: rotate(-45deg); background: var(--gold-soft); }

/* ---------- Icon helper ---------- */
.ico { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.ico-sm { width: 16px; height: 16px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease);
  padding: 22px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; letter-spacing: -0.02em; color: var(--white); display: flex; align-items: center; gap: 10px; transition: color var(--dur) var(--ease); }
.brand .star { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.85); position: relative; padding: 4px 0; transition: color var(--dur) var(--ease); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--gold); transition: width var(--dur) var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-icon { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: var(--white); border: 1px solid rgba(255,255,255,0.25); transition: all var(--dur) var(--ease); }
.nav-icon:hover { background: rgba(255,255,255,0.14); }

/* Scrolled state */
.nav.scrolled { background: var(--ivory); box-shadow: 0 6px 30px rgba(14,48,47,0.08); padding: 14px 0; }
.nav.scrolled .brand { color: var(--forest); }
.nav.scrolled .nav-links a { color: var(--charcoal); }
.nav.scrolled .nav-icon { color: var(--forest); border-color: var(--line); }
.nav.scrolled .btn-ghost { border-color: var(--forest); color: var(--forest); }
.nav.scrolled .btn-ghost:hover { background: var(--forest); color: var(--ivory); }

/* Solid nav for interior pages */
.nav.solid { background: var(--ivory); box-shadow: 0 6px 30px rgba(14,48,47,0.06); }
.nav.solid .brand { color: var(--forest); }
.nav.solid .nav-links a { color: var(--charcoal); }
.nav.solid .nav-icon { color: var(--forest); border-color: var(--line); }
.nav.solid .btn-ghost { border-color: var(--forest); color: var(--forest); }

.burger { display: none; width: 46px; height: 46px; border-radius: 50%; place-items: center; color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.nav.scrolled .burger, .nav.solid .burger { color: var(--forest); border-color: var(--line); }
.burger svg { width: 22px; height: 22px; }

/* Mobile full menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1100; background: var(--forest);
  display: flex; flex-direction: column; padding: 30px var(--gutter) 40px;
  transform: translateY(-100%); transition: transform 0.55s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu-top .brand { color: var(--white); }
.mm-close { width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); color: #fff; display: grid; place-items: center; }
.mm-links { margin: auto 0; display: flex; flex-direction: column; gap: 6px; }
.mm-links a {
  font-family: var(--serif); font-size: clamp(2rem, 9vw, 2.9rem); color: rgba(255,255,255,0.9);
  padding: 6px 0; transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.mm-links a:hover { color: var(--gold); padding-left: 14px; }
.mm-foot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 24px; }
.mm-social { display: flex; gap: 16px; }
.mm-social a { color: rgba(255,255,255,0.7); transition: color var(--dur) var(--ease); }
.mm-social a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transform: scale(1.08);
  background-size: cover; background-position: center;
  transition: opacity 1.4s ease, transform 7s linear;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(14,48,47,0.82) 0%, rgba(14,48,47,0.45) 45%, rgba(14,48,47,0.15) 100%); }
.hero .container { position: relative; z-index: 3; width: 100%; }
.hero-content { max-width: 720px; color: var(--white); padding-top: 60px; }
.hero-content .eyebrow { color: var(--gold-soft); }
.hero-content .eyebrow::before { background: var(--gold-soft); }
.hero-title { font-size: clamp(3rem, 8.5vw, 6.2rem); margin: 22px 0 24px; }
.hero-title span { display: block; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 46ch; color: rgba(255,255,255,0.9); margin-bottom: 38px; font-weight: 400; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Slide indicators */
.hero-indicators { position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%); z-index: 4; display: flex; flex-direction: column; gap: 20px; }
.hero-indicators button { font-family: var(--serif); font-size: 1.1rem; color: rgba(255,255,255,0.5); position: relative; padding-left: 0; transition: color var(--dur) var(--ease); }
.hero-indicators button.active { color: var(--gold); }
.hero-progress { position: absolute; left: 0; bottom: 0; height: 3px; width: 100%; background: rgba(255,255,255,0.15); z-index: 4; }
.hero-progress span { display: block; height: 100%; width: 0; background: var(--gold); }
.hero-arrows { position: absolute; right: var(--gutter); bottom: 46px; z-index: 4; display: flex; gap: 12px; }
.hero-arrows button { width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.35); color: #fff; display: grid; place-items: center; transition: all var(--dur) var(--ease); }
.hero-arrows button:hover { background: var(--gold); border-color: var(--gold); color: var(--forest); }
.hero-arrows .next { background: var(--gold); border-color: var(--gold); color: var(--forest); }

/* ---------- Trip Planner ---------- */
.planner {
  position: relative; z-index: 5; margin-top: -70px;
  background: var(--white); border-radius: var(--radius-m); box-shadow: var(--shadow-l);
  padding: 12px; display: grid; grid-template-columns: repeat(5, 1fr) auto; gap: 6px;
}
.planner-field { padding: 14px 18px; border-radius: var(--radius-s); transition: background var(--dur) var(--ease); position: relative; }
.planner-field + .planner-field::before { content: ""; position: absolute; left: 0; top: 20%; height: 60%; width: 1px; background: var(--line); }
.planner-field:hover { background: var(--ivory); }
.planner-field label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 700; display: flex; align-items: center; gap: 7px; }
.planner-field input, .planner-field select {
  border: none; background: transparent; font-family: var(--sans); font-size: 0.95rem; font-weight: 500;
  color: var(--charcoal); width: 100%; margin-top: 6px; outline: none;
}
.planner-field select { cursor: pointer; }
.planner-btn { display: grid; place-items: center; }
.planner-btn .btn { height: 100%; padding-inline: 30px; }

/* ============================================================
   DESTINATION CARDS (editorial grid)
   ============================================================ */
.dest-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.dest-card {
  position: relative; border-radius: var(--radius-m); overflow: hidden; min-height: 340px;
  display: flex; align-items: flex-end; color: #fff; isolation: isolate;
}
.dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.9s var(--ease); }
.dest-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(14,48,47,0.85) 0%, rgba(14,48,47,0.15) 55%, transparent 100%); }
.dest-card:hover img { transform: scale(1.06); }
.dest-card .dc-body { padding: 26px; width: 100%; }
.dest-card .dc-region { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); font-weight: 700; }
.dest-card h3 { font-size: 1.9rem; margin: 6px 0 8px; }
.dest-card p { font-size: 0.9rem; color: rgba(255,255,255,0.82); max-width: 34ch; margin-bottom: 16px; opacity: 0; max-height: 0; transition: opacity var(--dur) var(--ease), max-height var(--dur) var(--ease); }
.dest-card:hover p { opacity: 1; max-height: 80px; }
.dc-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.4); display: grid; place-items: center; transition: all var(--dur) var(--ease); }
.dest-card:hover .dc-arrow { background: var(--gold); border-color: var(--gold); color: var(--forest); }
/* spans */
.span-7 { grid-column: span 7; }
.span-5 { grid-column: span 5; }
.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }
.span-8 { grid-column: span 8; }
.tall { min-height: 460px; }

/* ============================================================
   EXPERIENCE STRIP (horizontal scroll)
   ============================================================ */
.exp-scroll { display: flex; gap: 22px; overflow-x: auto; padding-bottom: 16px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.exp-scroll::-webkit-scrollbar { height: 6px; }
.exp-scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.exp-card { flex: 0 0 min(80vw, 380px); scroll-snap-align: start; border-radius: var(--radius-m); overflow: hidden; position: relative; min-height: 480px; display: flex; align-items: flex-end; color: #fff; isolation: isolate; }
.exp-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.9s var(--ease); }
.exp-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(14,48,47,0.9), transparent 60%); }
.exp-card:hover img { transform: scale(1.06); }
.exp-body { padding: 30px; }
.exp-body .num { font-family: var(--serif); font-size: 0.95rem; color: var(--gold-soft); }
.exp-body h3 { font-size: 1.75rem; margin: 8px 0 10px; }
.exp-body p { font-size: 0.9rem; color: rgba(255,255,255,0.82); }

/* ============================================================
   ITINERARY CARDS
   ============================================================ */
.itin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.itin-card { background: var(--white); border-radius: var(--radius-m); overflow: hidden; box-shadow: var(--shadow-s); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); display: flex; flex-direction: column; }
.itin-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }
.itin-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.itin-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.itin-card:hover .itin-media img { transform: scale(1.07); }
.itin-tag { position: absolute; top: 16px; left: 16px; background: rgba(248,246,240,0.92); color: var(--forest); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; }
.itin-fav { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.9); display: grid; place-items: center; color: var(--forest); transition: all var(--dur) var(--ease); }
.itin-fav:hover, .itin-fav.saved { background: var(--gold); color: var(--forest); }
.itin-fav.saved svg { fill: var(--forest); }
.itin-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.itin-meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--muted); }
.itin-meta span { display: inline-flex; align-items: center; gap: 6px; }
.itin-body h3 { font-size: 1.45rem; }
.itin-body p { font-size: 0.9rem; color: var(--muted); flex: 1; }
.itin-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--line); }
.itin-price { font-size: 0.8rem; color: var(--muted); }
.itin-price b { display: block; font-family: var(--serif); font-size: 1.35rem; color: var(--forest); font-weight: 700; }

/* ============================================================
   WHY / DARK SECTION
   ============================================================ */
.dark-section { background: var(--forest); color: var(--ivory); }
.dark-section .section-head h2 { color: var(--white); }
.dark-section .section-head p { color: rgba(248,246,240,0.72); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 4px; margin-top: 30px; }
.why-item { padding: 34px 30px; border: 1px solid rgba(255,255,255,0.1); transition: background var(--dur) var(--ease); }
.why-item:hover { background: rgba(255,255,255,0.04); }
.why-item .ico { width: 34px; height: 34px; color: var(--gold); }
.why-item h3 { font-size: 1.35rem; margin: 18px 0 10px; color: var(--white); }
.why-item p { font-size: 0.9rem; color: rgba(248,246,240,0.66); }

/* ============================================================
   EDITORIAL SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split-media { border-radius: var(--radius-l); overflow: hidden; aspect-ratio: 4/5; position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media.tall-media { aspect-ratio: 3/4; }
.split-text h2 { font-size: clamp(2rem, 4.5vw, 3.3rem); margin: 18px 0 22px; }
.split-text p { color: var(--muted); margin-bottom: 18px; }
.split-badge { position: absolute; bottom: 24px; left: 24px; background: var(--white); border-radius: var(--radius-s); padding: 18px 22px; box-shadow: var(--shadow-m); }
.split-badge b { font-family: var(--serif); font-size: 2rem; color: var(--forest); display: block; }
.split-badge span { font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-track { display: flex; gap: 26px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 14px; scrollbar-width: none; }
.testi-track::-webkit-scrollbar { display: none; }
.testi-card { flex: 0 0 min(88vw, 420px); scroll-snap-align: center; background: var(--white); border-radius: var(--radius-m); padding: 36px; box-shadow: var(--shadow-s); border: 1px solid var(--line); }
.testi-card .quote-mark { font-family: var(--serif); font-size: 3.5rem; line-height: 0.6; color: var(--gold); }
.testi-card blockquote { font-family: var(--serif); font-size: 1.3rem; line-height: 1.4; margin: 18px 0 24px; color: var(--charcoal); }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testi-author b { display: block; font-size: 0.95rem; }
.testi-author span { font-size: 0.82rem; color: var(--muted); }
.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-top: 4px; }

/* ============================================================
   INSTAGRAM GRID
   ============================================================ */
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.ig-item { aspect-ratio: 1; border-radius: var(--radius-s); overflow: hidden; position: relative; }
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.ig-item::after { content: ""; position: absolute; inset: 0; background: rgba(14,48,47,0); transition: background var(--dur) var(--ease); }
.ig-item:hover img { transform: scale(1.08); }
.ig-item:hover::after { background: rgba(14,48,47,0.35); }
.ig-item .ig-ico { position: absolute; inset: 0; margin: auto; width: 30px; height: 30px; color: #fff; opacity: 0; transition: opacity var(--dur) var(--ease); z-index: 2; }
.ig-item:hover .ig-ico { opacity: 1; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter { background: var(--forest); color: var(--ivory); text-align: center; }
.newsletter h2 { font-size: clamp(2rem, 5vw, 3.4rem); color: var(--white); margin-bottom: 14px; }
.newsletter p { color: rgba(248,246,240,0.72); max-width: 46ch; margin: 0 auto 32px; }
.news-form { display: flex; gap: 10px; max-width: 500px; margin: 0 auto; background: rgba(255,255,255,0.08); padding: 8px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.15); }
.news-form input { flex: 1; background: transparent; border: none; outline: none; color: #fff; padding: 0 20px; font-size: 0.95rem; }
.news-form input::placeholder { color: rgba(255,255,255,0.5); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--charcoal); color: rgba(248,246,240,0.7); padding: clamp(56px, 8vw, 96px) 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { max-width: 30ch; font-size: 0.92rem; margin-bottom: 22px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: grid; place-items: center; color: rgba(255,255,255,0.7); transition: all var(--dur) var(--ease); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--forest); }
.footer-col h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 0.9rem; padding: 6px 0; transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease); }
.footer-col a:hover { color: #fff; padding-left: 6px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 26px; font-size: 0.82rem; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero { position: relative; min-height: 62vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; padding-bottom: clamp(40px, 6vw, 80px); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(14,48,47,0.85), rgba(14,48,47,0.25)); }
.page-hero-content { max-width: 720px; }
.page-hero h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); margin: 18px 0 16px; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.88); max-width: 50ch; }
.breadcrumb { display: flex; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.breadcrumb a:hover { color: var(--gold); }

/* ============================================================
   FILTERS
   ============================================================ */
.filter-bar { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 40px; padding: 20px; background: var(--white); border-radius: var(--radius-m); box-shadow: var(--shadow-s); }
.filter-bar select { padding: 12px 18px; border: 1px solid var(--line); border-radius: 999px; font-family: var(--sans); font-size: 0.88rem; color: var(--charcoal); background: var(--ivory); cursor: pointer; outline: none; transition: border var(--dur) var(--ease); }
.filter-bar select:focus { border-color: var(--gold); }
.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.chip { padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); font-size: 0.85rem; font-weight: 600; color: var(--muted); background: var(--white); transition: all var(--dur) var(--ease); }
.chip:hover { border-color: var(--forest); color: var(--forest); }
.chip.active { background: var(--forest); color: var(--ivory); border-color: var(--forest); }

/* ============================================================
   GALLERY (masonry)
   ============================================================ */
.masonry { columns: 3; column-gap: 18px; }
.masonry-item { break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius-m); overflow: hidden; position: relative; cursor: pointer; }
.masonry-item img { width: 100%; transition: transform 0.8s var(--ease); }
.masonry-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,48,47,0.7), transparent 50%); opacity: 0; transition: opacity var(--dur) var(--ease); }
.masonry-item:hover::after { opacity: 1; }
.masonry-item:hover img { transform: scale(1.05); }
.masonry-cap { position: absolute; bottom: 18px; left: 18px; color: #fff; z-index: 2; opacity: 0; transform: translateY(10px); transition: all var(--dur) var(--ease); }
.masonry-item:hover .masonry-cap { opacity: 1; transform: translateY(0); }
.masonry-cap b { font-family: var(--serif); font-size: 1.2rem; display: block; }
.masonry-cap span { font-size: 0.78rem; color: var(--gold-soft); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(11,20,19,0.95); display: none; place-items: center; padding: 40px; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: var(--radius-s); }
.lb-close, .lb-prev, .lb-next { position: absolute; width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); color: #fff; display: grid; place-items: center; transition: all var(--dur) var(--ease); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); border-color: var(--gold); color: var(--forest); }
.lb-close { top: 30px; right: 30px; }
.lb-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 30px; top: 50%; transform: translateY(-50%); }
.lb-counter { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-feature { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; margin-bottom: 70px; }
.blog-feature .bf-media { border-radius: var(--radius-l); overflow: hidden; aspect-ratio: 16/11; }
.blog-feature .bf-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-feature h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 16px 0; }
.blog-feature p { color: var(--muted); margin-bottom: 22px; }
.blog-meta { display: flex; gap: 16px; font-size: 0.82rem; color: var(--muted); align-items: center; }
.blog-cat { color: var(--gold); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.74rem; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 32px; }
.blog-card { display: flex; flex-direction: column; gap: 14px; }
.blog-card .bc-media { border-radius: var(--radius-m); overflow: hidden; aspect-ratio: 3/2; }
.blog-card .bc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.blog-card:hover .bc-media img { transform: scale(1.06); }
.blog-card h3 { font-size: 1.35rem; transition: color var(--dur) var(--ease); }
.blog-card:hover h3 { color: var(--gold); }
.blog-card p { font-size: 0.9rem; color: var(--muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(30px, 5vw, 64px); }
.contact-info .ci-item { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-info .ci-item .ci-ico { width: 50px; height: 50px; border-radius: 50%; background: var(--sand); color: var(--forest); display: grid; place-items: center; flex-shrink: 0; }
.contact-info .ci-item b { display: block; font-family: var(--serif); font-size: 1.2rem; }
.contact-info .ci-item span { font-size: 0.9rem; color: var(--muted); }
.form-card { background: var(--white); border-radius: var(--radius-l); padding: clamp(26px, 4vw, 46px); box-shadow: var(--shadow-m); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 8px; color: var(--charcoal); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-s);
  font-family: var(--sans); font-size: 0.92rem; color: var(--charcoal); background: var(--ivory);
  outline: none; transition: border var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: var(--white); }
.field textarea { resize: vertical; min-height: 120px; }
.field.error input, .field.error select, .field.error textarea { border-color: #c0392b; }
.field .err-msg { color: #c0392b; font-size: 0.78rem; margin-top: 6px; display: none; }
.field.error .err-msg { display: block; }
.form-success { display: none; text-align: center; padding: 30px; }
.form-success.show { display: block; }
.form-success .ico { width: 56px; height: 56px; color: var(--gold); margin: 0 auto 16px; }
.form-success h3 { font-size: 1.6rem; margin-bottom: 8px; }

/* ============================================================
   TIMELINE (itinerary detail)
   ============================================================ */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ""; position: absolute; left: 12px; top: 10px; bottom: 10px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding-bottom: 44px; }
.tl-item::before { content: ""; position: absolute; left: -34px; top: 6px; width: 22px; height: 22px; border-radius: 50%; background: var(--gold); border: 4px solid var(--ivory); }
.tl-day { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.tl-item h3 { font-size: 1.5rem; margin: 6px 0 10px; }
.tl-item p { color: var(--muted); margin-bottom: 14px; }
.tl-item .tl-media { border-radius: var(--radius-m); overflow: hidden; aspect-ratio: 16/9; margin-bottom: 14px; max-width: 480px; }
.tl-item .tl-media img { width: 100%; height: 100%; object-fit: cover; }

/* Accordion */
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-head { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; text-align: left; font-family: var(--serif); font-size: 1.2rem; color: var(--charcoal); }
.accordion-head .plus { flex-shrink: 0; transition: transform var(--dur) var(--ease); color: var(--gold); }
.accordion-item.open .plus { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); }
.accordion-body p { color: var(--muted); padding-bottom: 22px; }

/* Sticky CTA (mobile itinerary) */
.sticky-cta { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--white); box-shadow: 0 -8px 30px rgba(14,48,47,0.1); padding: 14px var(--gutter); display: none; align-items: center; justify-content: space-between; z-index: 900; }
.sticky-cta .sc-price b { font-family: var(--serif); font-size: 1.3rem; color: var(--forest); }
.sticky-cta .sc-price span { font-size: 0.78rem; color: var(--muted); display: block; }

/* ============================================================
   MISC (Key takeaway box, includes/excludes)
   ============================================================ */
.info-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--white); border-radius: var(--radius-m); overflow: hidden; box-shadow: var(--shadow-s); margin: -60px 0 0; position: relative; z-index: 5; }
.info-bar .ib-item { padding: 26px; text-align: center; border-right: 1px solid var(--line); }
.info-bar .ib-item:last-child { border-right: none; }
.info-bar .ib-item .ico { color: var(--gold); margin: 0 auto 10px; }
.info-bar .ib-item span { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.info-bar .ib-item b { display: block; font-family: var(--serif); font-size: 1.3rem; color: var(--forest); margin-top: 4px; }

.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.incl-list li { display: flex; gap: 12px; padding: 10px 0; font-size: 0.95rem; }
.incl-list li .ico { color: #2e8b57; }
.excl-list li .ico { color: #c0392b; }

/* Cookie bar */
.cookie-bar { position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 720px; margin: 0 auto; background: var(--charcoal); color: var(--ivory); padding: 18px 24px; border-radius: var(--radius-m); box-shadow: var(--shadow-l); display: flex; align-items: center; justify-content: space-between; gap: 20px; z-index: 1500; flex-wrap: wrap; }
.cookie-bar p { font-size: 0.86rem; flex: 1; min-width: 240px; }
.cookie-bar .cb-btns { display: flex; gap: 10px; }
.cookie-bar.hide { display: none; }

/* 404 */
.notfound { min-height: 100vh; display: grid; place-items: center; text-align: center; position: relative; color: #fff; padding: 40px; }
.notfound img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.notfound::after { content: ""; position: absolute; inset: 0; background: rgba(14,48,47,0.7); z-index: -1; }
.notfound h1 { font-size: clamp(5rem, 18vw, 12rem); color: var(--gold); line-height: 1; }
.notfound h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin: 10px 0 14px; }
.notfound p { color: rgba(255,255,255,0.8); margin-bottom: 28px; max-width: 40ch; margin-inline: auto; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   LEFT SIDE RAIL (feature dock)
   ============================================================ */
:root { --rail: 88px; }
.side-rail {
  position: fixed; left: 0; top: 0; height: 100vh; width: var(--rail);
  background: var(--forest); z-index: 1050;
  display: flex; flex-direction: column; align-items: center;
  padding: 24px 0 28px;
}
.rail-burger {
  width: 46px; height: 46px; border-radius: 12px; color: #fff;
  display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.14);
  transition: background var(--dur) var(--ease);
}
.rail-burger:hover { background: rgba(255,255,255,0.1); }
.rail-nav { margin: auto 0; display: flex; flex-direction: column; gap: 12px; }
.rail-ico {
  position: relative; width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; color: rgba(255,255,255,0.6);
  transition: all var(--dur) var(--ease);
}
.rail-ico:hover { color: #fff; background: rgba(255,255,255,0.08); }
.rail-ico.active { background: var(--ivory); color: var(--forest); box-shadow: var(--shadow-s); }
.rail-ico .rail-tip {
  position: absolute; left: 60px; top: 50%; transform: translateY(-50%) translateX(-6px);
  background: var(--charcoal); color: #fff; font-size: 0.72rem; font-weight: 600;
  padding: 6px 12px; border-radius: 8px; white-space: nowrap; opacity: 0; pointer-events: none;
  transition: all var(--dur) var(--ease); font-family: var(--sans);
}
.rail-ico:hover .rail-tip { opacity: 1; transform: translateY(-50%) translateX(0); }
.rail-scroll { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.rail-scroll span {
  writing-mode: vertical-rl; text-orientation: mixed; font-size: 0.6rem;
  letter-spacing: 0.32em; color: rgba(255,255,255,0.5); text-transform: uppercase; font-weight: 600;
}
.rail-scroll .r-line { width: 1px; height: 42px; background: rgba(255,255,255,0.28); }
.rail-scroll .r-dot { width: 9px; height: 9px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.45); animation: railPulse 2.4s var(--ease) infinite; }
@keyframes railPulse { 0%,100% { transform: translateY(0); opacity: 0.5; } 50% { transform: translateY(6px); opacity: 1; } }

/* Logo image in brand */
.brand-logo { height: 54px; width: auto; display: block; }
.nav.scrolled .brand-logo, .nav.solid .brand-logo { height: 50px; }
.footer-brand .brand-logo, .mobile-menu-top .brand-logo { height: 56px; }

/* Logo on DARK backgrounds → clean white chip so a white-bg logo looks intentional */
.footer-brand .brand { display: inline-block; }
.footer-brand .brand-logo {
  background: #fff; padding: 10px 14px; border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18); height: 66px;
}
.logo-chip {
  display: inline-flex; background: #fff; padding: 12px 16px; border-radius: 16px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.28);
}
.logo-chip .brand-logo { height: 74px; background: none; padding: 0; box-shadow: none; }
/* 404 logo must not inherit the full-screen background-image rule */
.notfound .brand-logo { position: static; inset: auto; width: auto; height: 74px; object-fit: contain; }

/* Shift content right for the rail on desktop */
@media (min-width: 1081px) {
  body { padding-left: var(--rail); }
  .nav { left: var(--rail); width: calc(100% - var(--rail)); }
  .cookie-bar { left: calc(var(--rail) + 20px); }
}
@media (max-width: 1080px) {
  .side-rail { display: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .burger { display: grid; }
  .nav-right .btn { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .planner { grid-template-columns: 1fr 1fr; }
  .planner-btn { grid-column: 1 / -1; }
  .planner-field + .planner-field::before { display: none; }
  .split { grid-template-columns: 1fr; }
  .split-media { aspect-ratio: 16/11; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-feature { grid-template-columns: 1fr; }
  .info-bar { grid-template-columns: 1fr 1fr; margin-top: 0; }
  .masonry { columns: 2; }
  .dest-grid > * { grid-column: 1 / -1 !important; }
  .incl-grid { grid-template-columns: 1fr; gap: 24px; }
  .sticky-cta { display: flex; }
}
@media (max-width: 620px) {
  .planner { grid-template-columns: 1fr; }
  .hero-indicators { display: none; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .split-head { flex-direction: column; align-items: flex-start; }
  .hero-arrows { left: var(--gutter); right: auto; }
}

/* ============================================================
   MOBILE HARDENING (fixes)
   ============================================================ */
/* tablet planner: avoid 6 cramped columns */
@media (min-width: 621px) and (max-width: 1080px) {
  .planner { grid-template-columns: 1fr 1fr 1fr; }
  .planner-btn { grid-column: 1 / -1; }
  .planner-field + .planner-field::before { display: none; }
}
@media (max-width: 1080px) {
  /* nav must clear the hidden side-rail and never overflow */
  .nav { left: 0; width: 100%; }
  body { padding-left: 0; }
  .nav-inner { gap: 12px; }
  .nav-right { gap: 8px; }
  /* show a compact Plan button on mobile instead of hiding everything */
  .brand-logo { height: 48px; }
  .nav.scrolled .brand-logo, .nav.solid .brand-logo { height: 46px; }
}
@media (max-width: 768px) {
  /* mobile-friendly hero height using small-viewport units */
  .hero { min-height: 90vh; min-height: 90svh; }
  .page-hero { min-height: 56vh !important; }
  .hero-content { padding-top: 40px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
  /* planner should sit below the hero, not overlap awkwardly */
  .planner { margin-top: 20px; gap: 4px; }
  .exp-card { flex-basis: 82vw; min-height: 420px; }
  .section-head h2 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .info-bar { grid-template-columns: 1fr 1fr; }
  .timeline { padding-left: 30px; }
}
@media (max-width: 420px) {
  .nav-right .btn.btn-sm { padding: 9px 14px; font-size: 0.78rem; }
  .brand-logo { height: 42px; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   URGENCY / PROMO BANNER + COUNTDOWN
   ============================================================ */
.promo-strip {
  background: linear-gradient(90deg, #C69A4B, #D8B472, #C69A4B);
  color: var(--forest); text-align: center; font-weight: 600; font-size: 0.86rem;
  padding: 9px 16px; display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap; position: relative; z-index: 1060;
}
.promo-strip b { font-weight: 800; }
.promo-strip .ps-dot { width: 7px; height: 7px; border-radius: 50%; background: #B23B3B; animation: blink 1.1s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

.offer-band {
  background: var(--forest); color: var(--ivory); border-radius: var(--radius-l);
  padding: clamp(26px, 4vw, 44px); display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.offer-band::after { content: "%"; position: absolute; right: -10px; bottom: -30px; font-family: var(--serif); font-size: 12rem; color: rgba(198,154,75,0.12); font-weight: 700; }
.offer-band .ob-left { position: relative; z-index: 2; }
.offer-band .eyebrow { color: var(--gold-soft); }
.offer-band .eyebrow::before { background: var(--gold-soft); }
.offer-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 10px 0 6px; }
.offer-band p { color: rgba(248,246,240,0.75); max-width: 40ch; }
.countdown { display: flex; gap: 12px; position: relative; z-index: 2; }
.cd-box { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-s); padding: 14px 16px; text-align: center; min-width: 70px; }
.cd-box b { font-family: var(--serif); font-size: 2.2rem; color: var(--gold-soft); display: block; line-height: 1; }
.cd-box span { font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* ============================================================
   TRENDING GETAWAY CARDS (with scarcity)
   ============================================================ */
.getaway-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.getaway-card {
  background: var(--white); border-radius: var(--radius-m); overflow: hidden;
  box-shadow: var(--shadow-s); display: flex; flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.getaway-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }
.gc-media { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.gc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.getaway-card:hover .gc-media img { transform: scale(1.07); }
.gc-scarcity {
  position: absolute; top: 12px; left: 12px; background: #B23B3B; color: #fff;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.03em; padding: 6px 11px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px; box-shadow: 0 6px 16px rgba(178,59,59,0.4);
}
.gc-scarcity .ps-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: blink 1.1s infinite; }
.gc-state { position: absolute; top: 12px; right: 12px; background: rgba(14,48,47,0.82); color: #fff; font-size: 0.68rem; font-weight: 700; padding: 6px 11px; border-radius: 999px; }
.gc-viewers { position: absolute; bottom: 12px; left: 12px; background: rgba(23,32,31,0.72); color: #fff; font-size: 0.7rem; font-weight: 600; padding: 5px 10px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; backdrop-filter: blur(4px); }
.gc-viewers .eye { width: 8px; height: 8px; border-radius: 50%; background: #4ea36b; box-shadow: 0 0 0 3px rgba(78,163,107,0.3); }
.gc-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.gc-body h3 { font-size: 1.3rem; line-height: 1.15; }
.gc-meta { display: flex; gap: 14px; font-size: 0.78rem; color: var(--muted); }
.gc-meta span { display: inline-flex; align-items: center; gap: 5px; }
.gc-foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.gc-price s { color: var(--muted); font-size: 0.82rem; margin-right: 6px; }
.gc-price b { font-family: var(--serif); font-size: 1.4rem; color: var(--forest); }
.gc-price small { display: block; font-size: 0.68rem; color: #4ea36b; font-weight: 700; }
.gc-book { background: var(--gold); color: var(--forest); font-weight: 700; font-size: 0.82rem; padding: 10px 16px; border-radius: 999px; white-space: nowrap; transition: all var(--dur) var(--ease); }
.gc-book:hover { background: var(--gold-soft); transform: translateX(2px); }

/* ============================================================
   LIVE BOOKING TOAST
   ============================================================ */
.booking-toast {
  position: fixed; bottom: 22px; left: 22px; z-index: 1400; max-width: 320px;
  background: var(--white); border-radius: 14px; box-shadow: var(--shadow-l);
  padding: 12px 16px 12px 12px; display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line); transform: translateY(140%); opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.booking-toast.show { transform: translateY(0); opacity: 1; }
.booking-toast .bt-img { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.booking-toast .bt-text { font-size: 0.82rem; line-height: 1.35; color: var(--charcoal); }
.booking-toast .bt-text b { color: var(--forest); }
.booking-toast .bt-text span { display: block; font-size: 0.7rem; color: var(--muted); margin-top: 2px; }
.booking-toast .bt-verified { color: #4ea36b; font-weight: 700; }
@media (max-width: 520px) {
  .booking-toast { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .offer-band { flex-direction: column; align-items: flex-start; }
  .countdown { width: 100%; }
  .cd-box { flex: 1; min-width: 0; }
}
/* keep booking toast above mobile sticky CTA when both present */
.sticky-cta { z-index: 1300; }

/* ============================================================
   v3 — IMAGE HANDLING + MOBILE POLISH + ADVANCED UI
   (ui-ux-pro-max pass: perf, touch, spacing, a11y)
   ============================================================ */

/* Fade-in + branded fallback for any failed image */
.img-fade { opacity: 0; transition: opacity 0.7s var(--ease); }
.img-fade.img-loaded { opacity: 1; }
.img-broken {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-2) 60%, #0a2422 100%);
  position: relative;
}
.img-broken::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 24 24' fill='none' stroke='%23C69A4B' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' opacity='0.55'%3E%3Cpath d='M3 20l6-8 4 5 3-4 5 7z'/%3E%3Ccircle cx='8' cy='7' r='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* Give image containers a solid ground so nothing flashes white while loading */
.dest-card, .exp-card, .gc-media, .itin-media, .bf-media, .bc-media,
.masonry-item, .split-media, .tl-media, .ig-item, .page-hero { background: #13403c; }

/* Accessibility — visible keyboard focus everywhere */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, .gc-media:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px;
}

/* Advanced: subtle glass on the trip planner + scrolled nav (Liquid-Glass cue) */
.planner { backdrop-filter: saturate(1.1); }
.nav.scrolled { background: rgba(248,246,240,0.82); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); }

/* Card lift refinement */
.getaway-card, .itin-card { will-change: transform; }

/* ---- MOBILE-FIRST SPACING & IMAGE FIXES (≤768px) ---- */
@media (max-width: 768px) {
  :root { --gutter: 20px; }
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 30px; }

  /* Destination editorial cards: readable heights + always-show copy on touch */
  .dest-card { min-height: 340px !important; border-radius: 16px; }
  .dest-card.tall { min-height: 380px !important; }
  .dest-card p { opacity: 1 !important; max-height: 120px !important; } /* no hover on touch */
  .dest-card .dc-body { padding: 22px; }

  /* Getaway + itinerary cards: comfortable single-column rhythm */
  .getaway-grid { grid-template-columns: 1fr; gap: 20px; }
  .itin-grid { grid-template-columns: 1fr; gap: 20px; }
  .gc-media, .itin-media { aspect-ratio: 16/10; }
  .gc-body { padding: 18px; }
  .gc-body h3 { font-size: 1.25rem; }

  /* Experience carousel: peek the next card so it reads as swipeable */
  .exp-scroll { gap: 16px; padding-inline: 2px; }
  .exp-card { flex-basis: 78vw; min-height: 400px; }

  /* Trending offer band: stack cleanly */
  .offer-band { padding: 26px 22px; gap: 20px; }
  .cd-box { padding: 12px; min-width: 62px; }
  .cd-box b { font-size: 1.8rem; }

  /* Instagram: even 2-col grid with breathing room */
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Timeline + detail spacing */
  .info-bar .ib-item { padding: 18px 12px; }
  .info-bar .ib-item b { font-size: 1rem; }
  .tl-item { padding-bottom: 34px; }
  .tl-item .tl-media { max-width: 100%; }

  /* Testimonials fill width nicely */
  .testi-card { flex-basis: 84vw; padding: 28px; }

  /* Footer: tighter, centered brand */
  .footer-top { gap: 30px 24px; }
  .footer-brand .brand-logo { height: 58px; }

  /* Touch targets — meet 44px min */
  .nav-icon, .burger, .rail-burger { min-width: 44px; min-height: 44px; }
  .gc-book { padding: 12px 16px; }
  .link-arrow .circle { width: 44px; height: 44px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.6rem, 12vw, 3.4rem); }
  .hero-sub { font-size: 1rem; }
  .section-head h2 { font-size: clamp(1.8rem, 8.5vw, 2.3rem); }
  .offer-band h2 { font-size: 1.5rem; }
  .cd-box b { font-size: 1.5rem; }
  .cd-box span { font-size: 0.58rem; }
  .btn { padding: 14px 22px; }
  .planner { padding: 10px; }
  .planner-field { padding: 12px 14px; }
}

/* Respect reduced-motion (a11y) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-slide { transition: opacity 0.3s ease !important; }
}

/* ============================================================
   v4 — ADVANCED MOTION + CARD FRAMING (ui-ux-pro-max pass)
   ============================================================ */

/* Staggered card reveal */
.stagger { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.stagger.in { opacity: 1; transform: none; }

/* Ken-burns: card image settles from a gentle zoom as it reveals */
.dest-grid .stagger img, .getaway-grid .stagger .gc-media img,
.itin-grid .stagger .itin-media img, .blog-grid .stagger .bc-media img {
  transform: scale(1.14); transition: transform 1.3s var(--ease);
}
.dest-grid .stagger.in img, .getaway-grid .stagger.in .gc-media img,
.itin-grid .stagger.in .itin-media img, .blog-grid .stagger.in .bc-media img {
  transform: scale(1);
}

/* Premium sheen sweep on gold/primary buttons */
.btn-gold, .btn-primary, .gc-book { position: relative; overflow: hidden; }
.btn-gold::after, .btn-primary::after, .gc-book::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.7s var(--ease); pointer-events: none;
}
.btn-gold:hover::after, .btn-primary:hover::after, .gc-book:hover::after { left: 130%; }

/* Gentle float on the hero indicators active number + rail dot */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.hero-indicators button.active { animation: floaty 2.6s var(--ease) infinite; }

/* Animated shimmer on eyebrow accent line */
.eyebrow::before { background: linear-gradient(90deg, var(--gold), var(--gold-soft), var(--gold)); background-size: 200% 100%; animation: shimmerline 3s linear infinite; }
@keyframes shimmerline { to { background-position: -200% 0; } }

/* Soft entrance for hero content on load */
@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero-content > * { animation: heroIn 0.9s var(--ease) both; }
.hero-content .eyebrow { animation-delay: 0.05s; }
.hero-content .hero-title { animation-delay: 0.18s; }
.hero-content .hero-sub { animation-delay: 0.32s; }
.hero-content .hero-cta { animation-delay: 0.46s; }

/* ---- MOBILE: frame images as floating cards (proper margins) ---- */
@media (max-width: 768px) {
  :root { --gutter: 22px; }
  .dest-grid, .getaway-grid, .itin-grid, .blog-grid { gap: 20px; }

  /* each media block reads as a distinct, elevated card — not full-bleed */
  .dest-card { box-shadow: var(--shadow-m); border-radius: 20px; overflow: hidden; }
  .getaway-card, .itin-card, .blog-card .bc-media { box-shadow: var(--shadow-s); }
  .getaway-card { border-radius: 20px; }

  /* breathing room around section imagery */
  .split-media, .bf-media { border-radius: 20px; margin-inline: 0; }
  .exp-card { border-radius: 20px; }

  /* trip-detail + interior hero: inset the image slightly so it doesn't feel edge-locked */
  .page-hero { border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; }
}

/* Respect reduced motion for the new bits too */
@media (prefers-reduced-motion: reduce) {
  .stagger { opacity: 1 !important; transform: none !important; }
  .hero-content > * { animation: none !important; }
  .hero-indicators button.active { animation: none !important; }
  .eyebrow::before { animation: none !important; }
  .dest-grid .stagger img, .getaway-grid .stagger .gc-media img,
  .itin-grid .stagger .itin-media img, .blog-grid .stagger .bc-media img { transform: none !important; }
}

/* ============================================================
   ADMIN PANEL + CERTIFICATE UI
   ============================================================ */
.admin-body { background: var(--ivory); }
.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px;
  background: linear-gradient(135deg, var(--forest), #0a2422); }
.admin-auth-card { width: 100%; max-width: 420px; background: var(--white); border-radius: var(--radius-l);
  padding: clamp(26px, 5vw, 44px); box-shadow: var(--shadow-l); }

.admin-topbar { position: sticky; top: 0; z-index: 100; background: var(--forest); color: #fff;
  display: flex; align-items: center; justify-content: space-between; padding: 12px clamp(16px, 4vw, 40px); }
.admin-topbar-right { display: flex; align-items: center; gap: 16px; }
.admin-tlink { color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 600; }
.admin-tlink:hover { color: #fff; }
.admin-note { background: #fdf3e0; color: #8a6d3b; font-size: 0.82rem; text-align: center; padding: 10px 16px; border-bottom: 1px solid #f0e2c8; }

.admin-shell { max-width: 1240px; margin: 0 auto; padding: 26px clamp(16px, 4vw, 40px) 80px; }
.admin-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.admin-tab { padding: 11px 20px; border-radius: 999px; background: var(--white); border: 1px solid var(--line);
  font-weight: 600; font-size: 0.9rem; color: var(--muted); transition: all var(--dur) var(--ease); }
.admin-tab:hover { border-color: var(--forest); color: var(--forest); }
.admin-tab.active { background: var(--forest); color: var(--ivory); border-color: var(--forest); }

.admin-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.admin-card { background: var(--white); border-radius: var(--radius-m); padding: 24px; box-shadow: var(--shadow-s); border: 1px solid var(--line); }
.admin-card h3 { font-size: 1.3rem; margin-bottom: 16px; }

.admin-list { display: flex; flex-direction: column; gap: 10px; max-height: 620px; overflow-y: auto; }
.admin-row { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--ivory); }
.admin-row-main { min-width: 0; }
.admin-row-main b { display: block; font-family: var(--sans); font-weight: 700; font-size: 0.95rem; color: var(--charcoal); }
.admin-row-main span { font-size: 0.8rem; color: var(--muted); word-break: break-word; }
.admin-row-act { display: flex; gap: 6px; flex-shrink: 0; flex-wrap: wrap; justify-content: flex-end; }
.mini { padding: 7px 12px; border-radius: 8px; font-size: 0.78rem; font-weight: 600; background: var(--sand); color: var(--forest); transition: all var(--dur) var(--ease); }
.mini:hover { background: var(--forest); color: #fff; }
.mini.danger { background: #f7e2e0; color: #b23b3b; }
.mini.danger:hover { background: #b23b3b; color: #fff; }
.mini.gold { background: var(--gold); color: var(--forest); }
.mini.gold:hover { background: var(--gold-soft); }
.admin-empty { color: var(--muted); font-size: 0.88rem; padding: 16px; text-align: center; }
.tagpill { display: inline-block; font-family: var(--sans); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.04em;
  background: var(--gold); color: var(--forest); padding: 2px 8px; border-radius: 999px; vertical-align: middle; margin-left: 6px; }

/* Modals */
.admin-modal { position: fixed; inset: 0; z-index: 1600; background: rgba(11,20,19,0.6); backdrop-filter: blur(4px);
  display: none; align-items: flex-start; justify-content: center; padding: 30px 16px; overflow-y: auto; }
.admin-modal.open { display: flex; }
.admin-modal-card { width: 100%; max-width: 640px; background: var(--white); border-radius: var(--radius-l);
  padding: 26px; box-shadow: var(--shadow-l); margin: auto; }
.admin-modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.admin-modal-head h3 { font-size: 1.4rem; }
.admin-badge-form { background: var(--ivory); border-radius: var(--radius-m); padding: 18px; margin-bottom: 18px; }
.admin-badge-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.badge-chip { display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 10px 14px; border: 1px solid var(--line); border-radius: 10px; font-size: 0.85rem; }
.admin-cert-actions { display: flex; justify-content: center; }

/* Certificate stage */
.cert-stage { background: var(--forest); border-radius: var(--radius-l); padding: clamp(14px, 3vw, 30px);
  box-shadow: var(--shadow-l); overflow-x: auto; }
.cert-stage svg { width: 100%; height: auto; display: block; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
#certRender svg, #memCert svg { max-width: 100%; }
.cert-dl { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 820px) {
  .admin-grid2 { grid-template-columns: 1fr; }
}
