/* Buggy Ride Dubai — homepage v2
   Inspired by dunebuggyadventure.co: bright photo cards, badges, checkmark lists, stats blocks.
   Warm sand bg, orange/teal/gold palette, Inter as primary, Fraunces for accent. */

:root {
  --orange: #E8652B;
  --orange-deep: #C2410C;
  --orange-soft: #FFF1E8;
  --teal: #0D4F5C;
  --teal-deep: #072F38;
  --teal-night: #0a1418;
  --gold: #D4A843;
  --gold-soft: #F5E5B8;
  --bg: #F7F3EC;
  --bg-warm: #FBF7F0;
  --ink: #141210;
  --ink-soft: #4a4742;
  --paper: #FFFFFF;
  --hairline: rgba(13, 79, 92, 0.12);
  --hairline-gold: rgba(212, 168, 67, 0.32);
  --shadow-sm: 0 2px 8px rgba(20,18,16,0.04);
  --shadow-md: 0 8px 24px rgba(20,18,16,0.08);
  --shadow-lg: 0 24px 60px -16px rgba(20,18,16,0.18);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--orange); color: var(--paper); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 2px; }

.skip { position:absolute; left:-9999px; top:8px; padding:8px 14px; background:var(--teal-deep); color:var(--bg); z-index:999; font-size:12px; }
.skip:focus { left: 8px; }

.wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* Type primitives */
.serif-it { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; }
.mono-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 600;
}
.mono-tag::before { content: ''; width: 24px; height: 1.5px; background: var(--orange-deep); display: inline-block; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: background .2s, color .2s, border-color .2s, transform .2s var(--ease-spring), box-shadow .25s;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--orange); color: var(--paper); box-shadow: 0 6px 20px -8px rgba(232,101,43,.55); }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(232,101,43,.7); }
.btn-ghost { background: transparent; color: var(--teal-deep); border-color: var(--teal); }
.btn-ghost:hover { background: var(--teal-deep); color: var(--bg); border-color: var(--teal-deep); }
.btn-white { background: var(--paper); color: var(--teal-deep); }
.btn-white:hover { background: var(--gold); color: var(--teal-deep); }
.btn-gold-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: var(--teal-deep); }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn .arrow { transition: transform .25s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   HEADER (pure CSS — independent of Tailwind for reliability)
   ============================================================ */

/* Utility bar */
.utility-bar {
  background: var(--teal-night);
  color: rgba(247, 243, 236, 0.78);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  transition: height .3s var(--ease-out);
}
.utility-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  white-space: nowrap;
  overflow: hidden;
}
.utility-left, .utility-right {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
}
.utility-right { flex-shrink: 0; }
.util-live, .util-pin, .util-link { white-space: nowrap; }
.util-live { display: inline-flex; align-items: center; gap: 8px; }
.live-dot { position: relative; width: 8px; height: 8px; display: inline-block; flex-shrink: 0; }
.live-ping { position: absolute; inset: 0; border-radius: 50%; background: var(--gold); opacity: 0.75; animation: ping 1.6s cubic-bezier(0,0,0.2,1) infinite; }
.live-core { position: relative; display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
@keyframes ping { 75%, 100% { transform: scale(2.2); opacity: 0; } }
.util-pin { display: inline-flex; align-items: center; gap: 6px; color: rgba(247, 243, 236, 0.55); overflow: hidden; text-overflow: ellipsis; }
.util-pin svg { width: 12px; height: 12px; flex-shrink: 0; }
.util-link { color: inherit; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: color .25s; }
.util-link:hover { color: var(--gold); }
.util-link svg { width: 12px; height: 12px; flex-shrink: 0; }

/* Progressive hide on narrow screens */
@media (max-width: 1280px) { .util-pin { display: none; } }
@media (max-width: 1100px) { .utility-right .util-link:first-child .label-text { display: none; } }
@media (max-width: 900px)  { .util-live span:last-child::after { content: none; } }
@media (max-width: 640px)  { .utility-bar { display: none; } }

/* Main header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
  transition: background .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
}
.site-header.scrolled {
  background: rgba(247, 243, 236, 0.96);
  box-shadow: 0 2px 24px rgba(20, 18, 16, 0.06);
  border-bottom-color: rgba(212, 168, 67, 0.22);
}
.utility-bar:has(+ .site-header.scrolled) { height: 0; overflow: hidden; }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 640px) { .header-inner { height: 64px; } }

/* Brand mark */
.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark .logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #F2C46A 0%, #E8652B 45%, #C2410C 100%);
  color: var(--paper);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(232, 101, 43, 0.32);
  transition: transform .5s var(--ease-spring), box-shadow .4s var(--ease-out);
}
.brand-mark:hover .logo {
  transform: scale(1.06) rotate(-4deg);
  box-shadow: 0 8px 24px rgba(232, 101, 43, 0.45);
}
.brand-mark .logo .logo-letter { position: relative; z-index: 2; margin-top: 1px; }
.brand-mark .logo .logo-ring { position: absolute; inset: 4px; border: 1px solid rgba(255,255,255,0.32); border-radius: 8px; pointer-events: none; }
.brand-mark .logo .logo-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .8s var(--ease-out);
  pointer-events: none;
}
.brand-mark:hover .logo .logo-shimmer { transform: translateX(110%); }

.brand-mark .brand-text { line-height: 1.1; }
.brand-mark .name {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.brand-mark .name-accent { color: var(--orange); }
.brand-mark .est {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.est-dot { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

@media (max-width: 640px) {
  .header-inner { width: 100%; max-width: 100%; margin-left: 0; margin-right: 0; padding: 0 12px; gap: 8px; }
  .brand-mark { gap: 8px; min-width: 0; }
  .brand-mark .logo { width: 36px; height: 36px; font-size: 19px; border-radius: 9px; flex: 0 0 36px; }
  .brand-mark .brand-text { display: flex; flex-direction: column; min-width: 0; }
  .brand-mark .name { font-size: 15px; gap: 4px; white-space: nowrap; }
  .brand-mark .est { font-size: 8px; letter-spacing: 0.14em; margin-top: 1px; white-space: nowrap; }
  .header-cta { gap: 6px; }
  .header-phone { display: none; }
  .cta-book { padding: 9px 12px; font-size: 12.5px; gap: 6px; }
  .cta-book .cta-arrow { display: none; }
  .nav-toggle { width: 38px; height: 38px; flex: 0 0 38px; }
}

@media (max-width: 430px) {
  .header-inner { padding: 0 10px; gap: 6px; }
  .brand-mark { gap: 7px; min-width: 0; }
  .brand-mark .logo { width: 34px; height: 34px; font-size: 18px; flex: 0 0 34px; }
  .brand-mark .brand-text { display: flex; flex-direction: column; min-width: 0; }
  .brand-mark .name { font-size: 14px; }
  .brand-mark .est { display: none; }
  .header-cta { gap: 6px; }
  .cta-book { padding: 9px 11px; font-size: 12px; gap: 5px; }
  .cta-book .cta-arrow { display: none; }
  .nav-toggle { width: 36px; height: 36px; flex: 0 0 36px; }
}

@media (max-width: 360px) {
  .brand-mark .est { display: none; }
  .brand-mark .name { font-size: 13px; }
}

/* Primary nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: color .3s var(--ease-out);
}
.nav-link > span:first-child {
  position: relative; z-index: 1;
  display: inline-block;
  transition: transform .3s var(--ease-spring);
}
.nav-link:hover > span:first-child { transform: translateY(-2px); }
.nav-link:hover { color: var(--orange); }
.nav-underline {
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s var(--ease-out);
  pointer-events: none;
}
.nav-link:hover .nav-underline { transform: scaleX(1); }
.nav-link.active { color: var(--orange); }
.nav-link.active::before {
  content: '';
  position: absolute;
  left: 50%; top: 2px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--gold);
}
.nav-link.active .nav-underline { transform: scaleX(1); }

@media (max-width: 1024px) { .nav { display: none; } }

/* Right CTA cluster */
.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  text-decoration: none;
  transition: border-color .25s, background .25s, transform .25s var(--ease-spring);
}
.header-phone:hover {
  border-color: rgba(232, 101, 43, 0.4);
  background: var(--orange-soft);
  transform: translateY(-1px);
}
.header-phone .phone-icon {
  display: grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--paper);
  box-shadow: 0 2px 8px rgba(232, 101, 43, 0.35);
  transition: box-shadow .3s;
}
.header-phone:hover .phone-icon { box-shadow: 0 4px 16px rgba(232, 101, 43, 0.55); }
.header-phone .phone-icon svg { width: 14px; height: 14px; }
.header-phone .phone-text { display: flex; flex-direction: column; line-height: 1.1; }
.header-phone .phone-label { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.header-phone .phone-num { font-size: 13.5px; font-weight: 600; color: var(--ink); }

@keyframes phone-vibrate {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(-15deg); }
  40% { transform: rotate(15deg); }
  60% { transform: rotate(-10deg); }
  80% { transform: rotate(10deg); }
}
.header-phone:hover .phone-vibe { animation: phone-vibrate .55s ease-in-out; }

@media (max-width: 1280px) {
  .header-phone .phone-text { display: none; }
  .header-phone { padding: 6px; }
}
@media (max-width: 1024px) { .header-phone { display: none; } }
@media (max-width: 1024px) { .nav { display: none; } }

/* Book Now CTA */
.cta-book {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: var(--paper);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(232, 101, 43, 0.32);
  transition: transform .3s var(--ease-spring), box-shadow .3s, padding .3s;
  overflow: hidden;
}
.cta-book:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(232, 101, 43, 0.5);
}
.cta-book .cta-label { position: relative; z-index: 2; }
.cta-book .cta-arrow { position: relative; z-index: 2; transition: transform .3s var(--ease-spring); }
.cta-book:hover .cta-arrow { transform: translateX(4px); }
.cta-book .cta-dot { position: relative; z-index: 2; width: 6px; height: 6px; display: inline-block; margin-left: 2px; }
.cta-book .cta-dot .dot-ping { position: absolute; inset: 0; border-radius: 50%; background: var(--gold-soft); opacity: 0.9; animation: ping 1.4s cubic-bezier(0,0,0.2,1) infinite; }
.cta-book .cta-dot .dot-core { position: relative; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-soft); }
.cta-book .cta-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
  transform: translateX(-110%);
  transition: transform 1s var(--ease-out);
  pointer-events: none;
}
.cta-book:hover .cta-shimmer { transform: translateX(110%); }

@media (max-width: 640px) {
  .cta-book { padding: 10px 16px; font-size: 13px; }
  .cta-book .cta-dot { display: none; }
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background .25s, border-color .25s;
}
.nav-toggle:hover {
  background: var(--orange-soft);
  border-color: rgba(232, 101, 43, 0.2);
}
.nav-toggle .hamburger {
  position: relative;
  width: 22px; height: 16px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.nav-toggle .hamburger span {
  display: block; height: 2px; width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform .3s var(--ease-spring), opacity .25s;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) { .nav-toggle { display: inline-flex; } }

/* Mobile drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--teal-night);
  color: var(--bg);
  border-top: 1px solid rgba(212, 168, 67, 0.18);
}
.mobile-nav.open {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  top: var(--brd-header-h, 64px);
  bottom: 0;
  z-index: 95;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-nav-list { padding: 24px clamp(16px, 4vw, 32px); display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-link {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(212, 168, 67, 0.14);
  color: var(--bg);
  text-decoration: none;
  transition: padding-left .3s var(--ease-out), color .25s;
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover, .mobile-nav-link:focus-visible { color: var(--gold); padding-left: 10px; }
.mobile-nav-link.active { color: var(--orange); }
.mobile-nav-link.active .mn-num,
.mobile-nav-link.active .mn-arrow { color: var(--gold); }
.mn-num { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 10px; letter-spacing: 0.18em; color: var(--gold); }
.mn-label { font-family: 'Fraunces', serif; font-style: italic; font-size: 26px; flex: 1; }
.mn-arrow { color: var(--gold); font-size: 20px; }

.mobile-nav-cta {
  padding: 18px clamp(16px, 4vw, 32px);
  border-top: 1px solid rgba(212, 168, 67, 0.18);
  display: flex; flex-direction: column; gap: 10px;
}
.mn-cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background .25s, color .25s;
}
.mn-cta-primary { background: var(--orange); color: var(--paper); }
.mn-cta-primary:hover { background: var(--orange-deep); }
.mn-cta-primary svg { width: 16px; height: 16px; }
.mn-cta-outline { border: 1px solid rgba(212, 168, 67, 0.4); color: var(--bg); }
.mn-cta-outline:hover { background: var(--gold); color: var(--teal-deep); }

/* ============================================================
   EXPERIENCE REEL — video + image slider (Splide custom theme)
   Optimizations: lazy video src, IntersectionObserver play/pause,
   skeleton shimmer poster, mute toggle, prefers-reduced-motion safe
   ============================================================ */
.experience { background: var(--bg-warm); }

/* Video frame — standalone, full-width container */
.video-frame {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 21 / 9;
  background: #0a0402;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 60px -20px rgba(20, 18, 16, 0.25);
}
@media (max-width: 720px) { .video-frame { aspect-ratio: 4 / 5; border-radius: 16px; } }
.video-frame .experience-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.video-skeleton {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, #1a0a05 25%, #3a1a0a 50%, #1a0a05 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.6s linear infinite;
  z-index: 0;
  opacity: 1;
  transition: opacity .4s var(--ease-out);
}
.video-frame[data-video-ready] .video-skeleton { opacity: 0; pointer-events: none; }
@keyframes skeleton-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Mute toggle */
.video-mute-toggle {
  position: absolute; top: 16px; right: 16px; z-index: 4;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(20, 18, 16, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--paper);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .25s, transform .25s;
}
.video-mute-toggle:hover { background: rgba(232, 101, 43, 0.75); transform: scale(1.06); }
.video-mute-toggle .ico-sound { display: none; }
.video-mute-toggle[aria-pressed="true"] .ico-muted { display: none; }
.video-mute-toggle[aria-pressed="true"] .ico-sound { display: block; }

/* Play overlay (shows when paused) */
.video-play-overlay {
  position: absolute; inset: 0; z-index: 3;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(7,47,56,0.05) 0%, rgba(7,47,56,0.45) 100%);
  border: 0;
  cursor: pointer;
  color: var(--paper);
  transition: opacity .3s var(--ease-out), background .3s;
  opacity: 1;
}
.video-frame[data-playing] .video-play-overlay { opacity: 0; pointer-events: none; }
.video-play-overlay:hover { background: linear-gradient(180deg, rgba(232,101,43,0.15) 0%, rgba(7,47,56,0.55) 100%); }
.video-play-overlay svg {
  position: relative; z-index: 2;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.45));
  margin-left: 4px;
}
.play-ring {
  position: absolute;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(232, 101, 43, 0.92);
  box-shadow: 0 12px 40px rgba(232, 101, 43, 0.5), 0 0 0 8px rgba(255, 255, 255, 0.08);
  transition: transform .35s var(--ease-spring);
}
.video-play-overlay:hover .play-ring { transform: scale(1.08); }

/* Live meta strip */
.video-meta {
  position: absolute; bottom: 16px; left: 16px; z-index: 4;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(20, 18, 16, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--paper);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.video-meta .dot { position: relative; width: 8px; height: 8px; display: inline-block; }
.video-meta .dot-ping { position: absolute; inset: 0; border-radius: 50%; background: var(--orange); opacity: 0.85; animation: ping 1.4s cubic-bezier(0,0,0.2,1) infinite; }
.video-meta .dot-core { position: relative; display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }

/* Image-based slide cards */
.slide-card {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.slide-card .slide-bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.slide-card .slide-caption {
  position: relative;
  margin: 32px;
  padding: 28px 32px;
  border-radius: 16px;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  max-width: 520px;
  box-shadow: 0 20px 50px rgba(20, 18, 16, 0.25);
}
.slide-card .cap-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--paper);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.slide-card h3 {
  margin: 0 0 8px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}
.slide-card p { margin: 0 0 14px; font-size: 14px; line-height: 1.5; color: var(--ink-soft); }
.slide-card .cap-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(232, 101, 43, 0.32);
  transition: transform .25s var(--ease-spring), box-shadow .25s;
}
.slide-card .cap-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(232, 101, 43, 0.5); }

/* Splide arrows + pagination — brand theme */
.splide-hero .splide__arrows { position: absolute; inset: 0; pointer-events: none; }
.splide-hero .splide__arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--hairline);
  color: var(--ink);
  opacity: 1;
  pointer-events: auto;
  transition: background .25s, transform .25s var(--ease-spring), box-shadow .25s;
  box-shadow: 0 4px 14px rgba(20, 18, 16, 0.18);
}
.splide-hero .splide__arrow:hover { background: var(--orange); color: var(--paper); transform: translateY(-50%) scale(1.06); }
.splide-hero .splide__arrow svg { width: 18px; height: 18px; fill: currentColor; }
.splide-hero .splide__arrow--prev { left: 16px; }
.splide-hero .splide__arrow--next { right: 16px; }

.splide-hero .splide__pagination {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20, 18, 16, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.splide-hero .splide__pagination__page {
  width: 8px; height: 8px;
  margin: 0;
  border-radius: 50%;
  background: rgba(247, 243, 236, 0.4);
  transition: background .25s, width .3s;
  opacity: 1;
}
.splide-hero .splide__pagination__page.is-active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* Progress bar */
.splide-hero .splide__progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(247, 243, 236, 0.15); z-index: 5; }
.splide-hero .splide__progress__bar { height: 100%; background: linear-gradient(90deg, var(--orange), var(--gold)); transition: width .4s var(--ease-out); }

/* Mobile */
@media (max-width: 720px) {
  .splide-hero .splide__slide { aspect-ratio: 4 / 5; }
  .slide-card .slide-caption { margin: 16px; padding: 20px; max-width: none; }
  .slide-card h3 { font-size: 20px; }
  .splide-hero .splide__arrow { width: 40px; height: 40px; }
  .video-meta { font-size: 10px; padding: 6px 10px; }
  .play-ring { width: 64px; height: 64px; }
}

/* prefers-reduced-motion: kill autoplay + animations */
@media (prefers-reduced-motion: reduce) {
  .video-skeleton { animation: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 78vh;
  background: var(--teal-deep);
  color: var(--paper);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  overflow: hidden;
  background: var(--teal-night);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  /* Color-grade video toward brand palette (warm orange/teal-deep cast) */
  filter: saturate(0.85) contrast(1.08) brightness(0.78);
}

/* Layer 1 — color tint via blend mode (warms the dunes, kills cool blue casts) */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(232,101,43,0.28) 0%, rgba(13,79,92,0.32) 60%, rgba(7,47,56,0.55) 100%);
  mix-blend-mode: multiply;
}

/* Layer 2 — readability gradient (top-fade, bottom-darken, vignette) */
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7,47,56,0.65) 0%, rgba(7,47,56,0.28) 35%, rgba(10,20,24,0.86) 100%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(10,20,24,0.75) 0%, transparent 65%),
    radial-gradient(ellipse 70% 50% at 0% 50%, rgba(7,47,56,0.45) 0%, transparent 60%);
}

/* Layer 3 — gold-hour accent at top edge (subtle, pulls eye to headline) */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(212,168,67,0.18) 0%, transparent 18%);
}
.hero-bg svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }

/* Hero mute toggle pill */
.hero-mute-toggle {
  position: absolute; right: 24px; bottom: 24px; z-index: 5;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(20, 18, 16, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--paper);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .25s, transform .25s var(--ease-spring);
}
.hero-mute-toggle:hover { background: rgba(232,101,43,0.85); transform: scale(1.06); }
.hero-mute-toggle .ico-sound { display: none; }
.hero-mute-toggle[aria-pressed="true"] .ico-muted { display: none; }
.hero-mute-toggle[aria-pressed="true"] .ico-sound { display: block; }

.hero-inner { position: relative; z-index: 2; padding: clamp(32px, 5vw, 60px) 0 clamp(32px, 5vw, 56px); width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(212,168,67,.16);
  border: 1px solid rgba(212,168,67,.4);
  color: var(--gold-soft);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow .pulse { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 0 rgba(212,168,67,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(212,168,67,.6);} 70%{box-shadow:0 0 0 12px rgba(212,168,67,0);} 100%{box-shadow:0 0 0 0 rgba(212,168,67,0);} }

.hero h1 {
  margin: 0 0 24px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 350;
  font-size: clamp(44px, 7.5vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  max-width: 920px;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.hero h1 .accent { color: var(--orange); font-style: italic; }
.hero h1 .accent-gold { color: var(--gold); display: inline-block; margin-left: .12em; }

.hero-sub { font-size: clamp(16px, 1.6vw, 19px); color: rgba(255,255,255,.8); max-width: 620px; margin: 0 0 36px; line-height: 1.55; }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-ctas .btn { padding: 16px 28px; font-size: 15px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(247, 243, 236, 0.10);
  border: 1px solid rgba(247, 243, 236, 0.18);
  border-radius: 18px;
  overflow: hidden;
  max-width: 760px;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 12px 40px rgba(7, 47, 56, 0.35), inset 0 1px 0 rgba(247, 243, 236, 0.12);
}
.hero-stat {
  position: relative;
  padding: 22px 20px;
  background: transparent;
}
.hero-stat + .hero-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 22%; bottom: 22%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(212,168,67,0.55), transparent);
}
.hero-stat .num {
  display: block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--orange);
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(232, 101, 43, 0.35);
}
.hero-stat .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.4;
  display: block;
}

@media (max-width: 800px) { .hero-stats { grid-template-columns: repeat(2, 1fr); max-width: 480px; } }

/* ===== Trust strip ===== */
.trust {
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
  padding: 22px 0;
}
.trust .wrap { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 4vw, 56px); flex-wrap: wrap; }
.trust-badge { display: inline-flex; align-items: center; gap: 10px; }
.trust-badge .icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg);
  display: grid; place-items: center;
  color: var(--orange-deep);
}
.trust-badge .icon svg { width: 18px; height: 18px; }
.trust-badge .text { display: flex; flex-direction: column; line-height: 1.15; }
.trust-badge .text strong { font-size: 13.5px; color: var(--ink); font-weight: 600; }
.trust-badge .text span { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.16em; color: var(--teal); text-transform: uppercase; }

/* ===== Section base ===== */
section { padding: clamp(48px, 6.5vw, 88px) 0; position: relative; }
.section-head { margin-bottom: clamp(28px, 3.5vw, 44px); text-align: center; }
.section-head .eyebrow { margin-bottom: 12px; }
.section-head h2 {
  margin: 0 0 12px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 350;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 820px;
  margin-left: auto; margin-right: auto;
}
.section-head h2 .accent { color: var(--orange); }
.section-head .lead { color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; max-width: 620px; margin: 0 auto; }

/* ===== Adventure grid (6 cards with badges) ===== */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 28px);
}
.adv-card {
  position: relative;
  background: var(--paper);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  display: flex; flex-direction: column;
}
.adv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.adv-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--teal-deep);
}
.adv-img img, .adv-img svg { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease-out); }
.adv-card:hover .adv-img img, .adv-card:hover .adv-img svg { transform: scale(1.06); }
.adv-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,18,16,.25) 100%);
}
.badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
  color: var(--paper);
  box-shadow: 0 4px 12px rgba(20,18,16,.2);
}
.badge.popular { background: var(--orange); }
.badge.value { background: var(--teal); }
.badge.luxury { background: var(--teal-deep); border: 1px solid var(--gold); color: var(--gold); }
.badge.new { background: var(--gold); color: var(--teal-deep); }
.badge.thrill { background: var(--orange-deep); }
.badge.heritage { background: var(--teal); color: var(--gold-soft); }

.price-pill {
  position: absolute;
  bottom: 14px; right: 14px;
  background: var(--paper);
  color: var(--orange-deep);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(20,18,16,.18);
  display: inline-flex; align-items: baseline; gap: 6px;
}
.price-pill .from { font-family:'JetBrains Mono',monospace; font-size:9px; letter-spacing:.16em; color:var(--teal); text-transform:uppercase; font-weight:600; }
.price-pill .num { font-family:'Inter Tight',sans-serif; font-size:18px; font-weight:700; }

.adv-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.adv-body h3 {
  margin: 0;
  font-family:'Fraunces', serif;
  font-style: italic;
  font-weight: 450;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}
.adv-meta { display: flex; gap: 16px; font-family:'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 0.14em; color: var(--teal); text-transform: uppercase; }
.adv-meta span { display: inline-flex; align-items: center; gap: 6px; }
.adv-meta svg { width: 12px; height: 12px; }
.adv-body p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }
.adv-features { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.adv-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--ink); }
.adv-features li::before {
  content: '';
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--orange-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23E8652B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M3.5 8.5l3 3 6-7'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.adv-actions { display: flex; flex-direction: column; gap: 12px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--hairline); }
.adv-actions .price-line { font-family:'JetBrains Mono',monospace; font-size:11px; letter-spacing:.14em; color:var(--teal); text-transform:uppercase; }
.adv-actions .price-line strong { color: var(--orange-deep); font-size: 16px; font-family:'Inter Tight',sans-serif; }
.adv-actions .btn-row { display: flex; gap: 8px; }
.adv-actions .btn-row .btn { flex: 1; justify-content: center; }
.btn-outline-teal { background: transparent; color: var(--teal-deep); border: 1.5px solid var(--teal); }
.btn-outline-teal:hover { background: var(--teal-deep); color: var(--bg); border-color: var(--teal-deep); }

@media (max-width: 1000px) { .adv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .adv-grid { grid-template-columns: 1fr; } }

/* ===== Why-choose grid (6 tiles, friendly with icon circles) ===== */
.why {
  background: var(--bg-warm);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-tile {
  background: var(--paper);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.why-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  display: grid; place-items: center;
}
.why-icon svg { width: 28px; height: 28px; }
.why-tile.alt .why-icon { background: rgba(13,79,92,.1); color: var(--teal); }
.why-tile.alt2 .why-icon { background: rgba(212,168,67,.18); color: var(--orange-deep); }
.why-tile h4 {
  margin: 0;
  font-family:'Fraunces',serif;
  font-style: italic;
  font-weight: 450;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
.why-tile p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* ===== Home packages (scoped so pillar/vehicle pages keep their own card systems) ===== */
body[data-page="home"] .pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 30px);
  align-items: stretch;
}
body[data-page="home"] .pkg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s;
}
body[data-page="home"] .pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,101,43,.22);
}
body[data-page="home"] .pkg-card.featured {
  border-color: rgba(212,168,67,.45);
  box-shadow: 0 22px 54px -28px rgba(194,65,12,.34);
}
body[data-page="home"] .pkg-card .ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--teal-deep);
  font: 700 10px/1 "JetBrains Mono", monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(20,18,16,.18);
}
body[data-page="home"] .pkg-img {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 0;
  overflow: hidden;
  background: var(--orange-soft);
}
body[data-page="home"] .pkg-img img,
body[data-page="home"] .pkg-img svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease-out);
}
body[data-page="home"] .pkg-card:hover .pkg-img img,
body[data-page="home"] .pkg-card:hover .pkg-img svg { transform: scale(1.045); }
body[data-page="home"] .pkg-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  padding: 24px;
}
body[data-page="home"] .pkg-body h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 480;
  font-size: clamp(24px, 2.4vw, 31px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
}
body[data-page="home"] .pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}
body[data-page="home"] .pkg-price-row .from,
body[data-page="home"] .pkg-price-row .unit {
  font: 600 10px/1 "JetBrains Mono", monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
}
body[data-page="home"] .pkg-price-row .num {
  color: var(--orange-deep);
  font-weight: 800;
  font-size: 20px;
}
body[data-page="home"] .pkg-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.45;
}
body[data-page="home"] .pkg-features li {
  position: relative;
  padding-left: 20px;
}
body[data-page="home"] .pkg-features li::before {
  content: "";
  position: absolute;
  top: .58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-soft);
}
body[data-page="home"] .pkg-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ===== Home location cards ===== */
body[data-page="home"] .loc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 30px);
}
body[data-page="home"] .loc-card {
  position: relative;
  display: block;
  min-height: clamp(360px, 42vw, 520px);
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(13,79,92,.15);
  background: var(--teal-deep);
  color: var(--paper);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
body[data-page="home"] .loc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
body[data-page="home"] .loc-card > img,
body[data-page="home"] .loc-card > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
}
body[data-page="home"] .loc-card:hover > img,
body[data-page="home"] .loc-card:hover > svg { transform: scale(1.045); }
body[data-page="home"] .loc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,20,24,.03) 20%, rgba(10,20,24,.22) 48%, rgba(10,20,24,.92) 100%),
    radial-gradient(circle at 78% 18%, rgba(245,229,184,.22), transparent 28%);
}
body[data-page="home"] .loc-body {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 12px;
}
body[data-page="home"] .loc-body .country {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--teal-deep);
  font: 700 10px/1 "JetBrains Mono", monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}
body[data-page="home"] .loc-body h3 {
  margin: 0;
  color: var(--paper);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 430;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -.025em;
  text-shadow: 0 10px 24px rgba(0,0,0,.26);
}
body[data-page="home"] .loc-body p {
  margin: 0;
  max-width: 34ch;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
  font-size: 14.5px;
}
body[data-page="home"] .loc-body .meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
body[data-page="home"] .loc-body .meta span,
body[data-page="home"] .loc-link {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.88);
  font: 700 10px/1 "JetBrains Mono", monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
}
body[data-page="home"] .loc-link {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--paper);
  box-shadow: 0 14px 28px rgba(194,65,12,.24);
}

@media (max-width: 1000px) {
  body[data-page="home"] .pkg-grid,
  body[data-page="home"] .loc-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  body[data-page="home"] .loc-card { min-height: 430px; }
}
@media (max-width: 560px) {
  body[data-page="home"] .pkg-body { padding: 20px; }
  body[data-page="home"] .loc-card { min-height: 360px; border-radius: 20px; }
  body[data-page="home"] .loc-body { left: 18px; right: 18px; bottom: 18px; }
}

/* ===== Process (4 steps) ===== */
.process {
  background: var(--teal-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400' fill='none' stroke='%23D4A843' stroke-opacity='0.12' stroke-width='1'><path d='M0 80 Q200 40 400 80 T800 60'/><path d='M0 200 Q220 160 400 190 T800 170'/><path d='M0 320 Q220 280 400 310 T800 290'/></svg>");
  background-size: cover;
}
.process .section-head h2 { color: var(--paper); }
.process .section-head .lead { color: rgba(255,255,255,.7); }
.process .section-head .eyebrow { color: var(--gold); }
.process .section-head .eyebrow::before { background: var(--gold); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,168,67,.2);
  border-radius: 20px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.step .num {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--gold);
  color: var(--teal-deep);
  display: grid; place-items: center;
  font-family:'Fraunces',serif;
  font-style:italic;
  font-weight: 600;
  font-size: 22px;
}
.step h4 { margin: 0; font-family:'Fraunces',serif; font-style:italic; font-weight: 450; font-size: 22px; letter-spacing:-.02em; line-height: 1.15; color: var(--paper); }
.step p { margin: 0; color: rgba(255,255,255,.72); font-size: 14.5px; line-height: 1.55; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

/* ===== Reviews (stats + 3 cards) ===== */
.reviews-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 56px;
  background-color: var(--paper);
}
.rs-cell { background: var(--paper); padding: 28px 22px; text-align: center; }
.rs-cell .num { display:block; font-family:'Fraunces',serif; font-style:italic; font-weight: 400; font-size: clamp(36px, 4vw, 56px); color: var(--orange-deep); line-height: 1; letter-spacing:-.02em; margin-bottom: 8px; }
.rs-cell .label { font-family:'JetBrains Mono',monospace; font-size: 10.5px; letter-spacing:.16em; color: var(--teal); text-transform: uppercase; }
@media (max-width: 700px) { .reviews-stats { grid-template-columns: 1fr 1fr; } }

.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.review-card .text { font-size: 15.5px; line-height: 1.55; color: var(--ink); flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--hairline); }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange);
  color: var(--paper);
  display: grid; place-items: center;
  font-family:'Fraunces',serif;
  font-style:italic;
  font-weight: 500;
  font-size: 18px;
  flex-shrink: 0;
}
.review-author.alt { background: var(--teal); }
.review-author.alt2 { background: var(--gold); color: var(--teal-deep); }
.review-author .info { display: flex; flex-direction: column; line-height: 1.2; }
.review-author .info strong { font-size: 14.5px; color: var(--ink); }
.review-author .info span { font-family:'JetBrains Mono',monospace; font-size: 10px; letter-spacing:.16em; color: var(--teal); text-transform: uppercase; margin-top: 4px; }
@media (max-width: 900px) { .review-cards { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

/* ===== FAQ ===== */
.faq { background: var(--bg-warm); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.faq-list { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item[open] { border-color: var(--orange); box-shadow: 0 6px 20px -10px rgba(232,101,43,.25); }
.faq-item summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .q { font-family:'Fraunces',serif; font-style:italic; font-weight: 450; font-size: clamp(17px, 1.8vw, 20px); color: var(--ink); line-height: 1.3; letter-spacing:-.01em; }
.faq-item .toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange-deep);
  display: grid; place-items: center;
  font-size: 22px; font-weight: 300;
  flex-shrink: 0;
  transition: transform .3s var(--ease-spring), background .3s, color .3s;
}
.faq-item[open] .toggle { transform: rotate(45deg); background: var(--orange); color: var(--paper); }
.faq-item .answer { padding: 0 24px 24px; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* ===== Final CTA ===== */
.final {
  background: var(--teal-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.final-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.final::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400' fill='none' stroke='%23D4A843' stroke-opacity='0.18' stroke-width='1'><path d='M0 80 Q200 40 400 80 T800 60'/><path d='M0 200 Q220 160 400 190 T800 170'/><path d='M0 320 Q220 280 400 310 T800 290'/></svg>");
  background-size: cover;
  opacity: .8;
}
.final h2 {
  margin: 0 0 20px;
  font-family:'Fraunces',serif;
  font-style:italic;
  font-weight: 350;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: var(--paper);
}
.final h2 .accent { color: var(--gold); }
.final p { color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.55; max-width: 520px; margin: 0 0 32px; }
.final .ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.final .ctas .btn { padding: 16px 26px; font-size: 15px; }
.final-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(212,168,67,.3);
  border-radius: 20px;
  padding: 28px;
  display: grid; gap: 16px;
  backdrop-filter: blur(8px);
}
.final-card .label { font-family:'JetBrains Mono',monospace; font-size: 10px; letter-spacing:.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 4px; }
.final-card .row { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: rgba(255,255,255,.04); border-radius: 12px; transition: background .2s; }
.final-card a.row:hover { background: rgba(212,168,67,.14); }
.final-card .row .icon { width: 40px; height: 40px; border-radius: 12px; background: var(--gold); color: var(--teal-deep); display:grid; place-items:center; flex-shrink:0; }
.final-card .row .icon svg { width: 20px; height: 20px; }
.final-card .row .text { display: flex; flex-direction: column; line-height: 1.2; }
.final-card .row .text strong { color: var(--paper); font-size: 15.5px; font-weight: 600; }
.final-card .row .text span { font-family:'JetBrains Mono',monospace; font-size: 10px; letter-spacing:.16em; color: rgba(255,255,255,.65); text-transform: uppercase; margin-top: 4px; }
@media (max-width: 900px) { .final-inner { grid-template-columns: 1fr; } }

/* ===== Footer ===== */
.site-footer { background: var(--teal-night); color: var(--bg); padding: 56px 0 24px; border-top: 2px solid var(--gold); margin-top: 0; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 28px; border-bottom: 1px solid rgba(212,168,67,.2); }
.foot-col h5 { font-family:'JetBrains Mono',monospace; font-size: 11px; font-weight: 600; letter-spacing:.2em; color: var(--gold); text-transform: uppercase; margin: 0 0 18px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col li, .foot-col a { font-size: 14px; color: var(--bg); }
.foot-col a:hover { color: var(--gold); }
.foot-col .brand-name { font-family:'Fraunces',serif; font-style:italic; font-size: 26px; color: var(--bg); margin: 0 0 14px; line-height: 1; letter-spacing:-.01em; }
.foot-col .manifesto { font-size: 14px; color: rgba(247, 243, 236, 0.72); line-height: 1.55; max-width: 280px; }
.foot-col .social { display: flex; gap: 8px; margin-top: 18px; }
.foot-col .social a { width: 36px; height: 36px; border: 1px solid rgba(212,168,67,.4); display: grid; place-items: center; border-radius: 50%; font-family:'JetBrains Mono',monospace; font-size: 11px; font-weight: 600; transition: all .2s; }
.foot-col .social a:hover { background: var(--gold); color: var(--teal-night); border-color: var(--gold); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; gap: 16px; flex-wrap: wrap; }
.foot-bottom .copy, .foot-bottom .pay { font-family:'JetBrains Mono',monospace; font-size: 10px; letter-spacing:.2em; color: rgba(247, 243, 236, 0.55); text-transform: uppercase; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }

/* ===== Reveals (opt-in pattern: only hidden when JS ready + not yet revealed) =====
   Default state: visible (so content always shows even if JS fails).
   When <html class="js-anim-ready"> is set + element NOT .in-view → hide.
   IntersectionObserver in animations.js adds .in-view → element fades in via transition. */
.reveal,
.reveal-stagger > * {
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
html.js-anim-ready .reveal:not(.in-view) {
  opacity: 0; transform: translateY(20px);
}
html.js-anim-ready .reveal-stagger:not(.in-view) > * {
  opacity: 0; transform: translateY(20px);
}
html.js-anim-ready .reveal-stagger.in-view > * {
  transition-delay: calc(var(--i, 0) * 60ms);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}
