/* ═══════════════════════════════════════════════
   PRAYANAH — LUXURY TRAVEL WEBSITE
   Design System & Global Styles
═══════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  --bg:           #080808;
  --bg-2:         #0f0f0f;
  --bg-3:         #161616;
  --bg-4:         #1e1e1e;
  --gold:         #C9A255;
  --gold-light:   #E8D5A3;
  --gold-dark:    #8B6914;
  --gold-dim:     rgba(201, 162, 85, 0.15);
  --gold-border:  rgba(201, 162, 85, 0.25);
  --white:        #F5F0E8;
  --text-muted:   #888077;
  --text-dim:     #555;
  --border-dim:   rgba(255,255,255,0.06);
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-alt:     'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Montserrat', sans-serif;
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.83, 0, 0.17, 1);
  --radius:       2px;
  --section-gap:  140px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--font-sans); }
::selection { background: var(--gold-dim); color: var(--gold-light); }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ─── CONTAINER ─── */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── SECTION SPACING ─── */
.section { padding: var(--section-gap) 0; }

/* ═══════════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════════ */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease-out), width 0.3s, height 0.3s, opacity 0.3s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 162, 85, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease-out), width 0.4s, height 0.4s, opacity 0.3s;
}

.cursor.hovering { width: 16px; height: 16px; }
.cursor-follower.hovering { width: 60px; height: 60px; border-color: var(--gold); }

/* ═══════════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preloader-inner {
  text-align: center;
  z-index: 2;
}

.preloader-logo {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0;
  transform: translateY(20px);
}

.preloader-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin: 20px auto;
}

.preloader-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
}

.preloader-curtain {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--bg);
  z-index: 3;
}
.curtain-left  { left: 0; transform-origin: left; }
.curtain-right { right: 0; transform-origin: right; }

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 28px 0;
  transition: padding 0.4s var(--ease-out), background 0.4s, backdrop-filter 0.4s;
}

#navbar.scrolled {
  padding: 16px 0;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dim);
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
  margin-right: auto;
}

.nav-logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  margin: -6px 0;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
}

.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

/* ── Mega-menu dropdown ── */
.nav-item { position: relative; }
.nav-arrow {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.6em;
  transition: transform 0.3s;
  color: var(--gold);
}
.nav-has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -8px);
  margin-top: 18px;
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gold-border);
  padding: 36px 44px;
  width: 720px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 1000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
/* Bridge the gap so hover doesn't close the menu */
.nav-has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 22px;
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 44px;
}

.nav-dropdown-heading {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--gold-border);
}

.nav-dropdown-sub {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-dim);
}
.nav-dropdown-sub:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.nav-dropdown-region {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  padding-top: 4px;
}

.nav-dropdown-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav-dropdown-links a {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  transition: color 0.25s, padding-left 0.25s;
  padding: 2px 0;
}
.nav-dropdown-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

/* Mobile menu — regional grouping */
.mobile-group-heading {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 18px 0 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold-border);
}
.mobile-group-heading:first-child { margin-top: 0; }
.mobile-region-label {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 14px 0 4px;
}

@media (max-width: 768px) {
  .nav-dropdown { display: none; }  /* mobile uses inline list */
  .nav-arrow { display: none; }
}

.nav-link {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--gold); color: var(--bg); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 24px 48px 32px;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(20px);
  gap: 16px;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}

.mobile-link {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-dim);
  transition: color 0.3s;
}
.mobile-link:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.82) 0%,
    rgba(8,8,8,0.55) 50%,
    rgba(8,8,8,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  opacity: 0;
}

.eyebrow-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.eyebrow-text {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 400;
  line-height: 1.0;
  margin-bottom: 32px;
  max-width: 900px;
}

.hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
}

.hero-title-line.italic {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 480px;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  position: relative;
  z-index: 3;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(201, 162, 85, 0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 18px 40px;
  border: 1px solid rgba(245, 240, 232, 0.3);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease-out);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-large { padding: 22px 52px; font-size: 0.78rem; }
.btn-full  { width: 100%; justify-content: center; }

/* Hero extras */
.hero-scroll-hint {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
}

.hero-scroll-hint span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.6); }
}

.hero-stats {
  position: absolute;
  bottom: 48px;
  left: 48px;
  z-index: 2;
  display: flex;
  gap: 60px;
  opacity: 0;
}

.hero-stat { text-align: left; }

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════════ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 560px;
}

.section-header {
  text-align: left;
  margin-bottom: 80px;
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about { background: var(--bg-2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 48px;
}

.about-pillars { display: flex; flex-direction: column; gap: 28px; }

.pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pillar-icon {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.pillar h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}

.pillar p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--gold-border);
}

.about-img-wrap img {
  transition: transform 8s var(--ease-out);
}

.about-img-wrap:hover img { transform: scale(1.05); }

.about-img-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
}

.img-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-img-secondary {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 280px;
  overflow: hidden;
  border: 4px solid var(--bg-2);
}

/* ═══════════════════════════════════════════════
   DESTINATIONS
═══════════════════════════════════════════════ */
.destinations { background: var(--bg); }

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 480px;
  gap: 3px;
  margin-top: 0;
}

.dest-card {
  position: relative;
  overflow: hidden;
  cursor: none;
  display: block;
  color: inherit;
  text-decoration: none;
}

.dest-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out);
}

.dest-card:hover .dest-img { transform: scale(1.08); }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.95) 0%,
    rgba(8,8,8,0.4)  50%,
    rgba(8,8,8,0.1)  100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  transition: background 0.4s;
}

.dest-card:hover .dest-overlay {
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.98) 0%,
    rgba(8,8,8,0.75) 60%,
    rgba(8,8,8,0.4)  100%
  );
}

.dest-region {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.dest-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.1;
}

.dest-tagline {
  font-family: var(--font-alt);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.dest-desc {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.7;
  margin-bottom: 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s;
}

.dest-card:hover .dest-desc { max-height: 120px; opacity: 1; }

.dest-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s 0.1s, transform 0.4s 0.1s;
}

.dest-card:hover .dest-highlights { opacity: 1; transform: translateY(0); }

.dest-highlights span {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
}

.dest-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dest-season {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.dest-btn {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s 0.15s, transform 0.4s 0.15s;
}

.dest-card:hover .dest-btn { opacity: 1; transform: translateX(0); }

.dest-meta-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dest-price {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.4s 0.1s;
}

.dest-card:hover .dest-price { opacity: 1; }


.dest-index {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: rgba(245,240,232,0.25);
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════
   PACKAGES
═══════════════════════════════════════════════ */
.packages {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

.packages-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,162,85,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pkg-card {
  background: var(--bg-3);
  border: 1px solid var(--border-dim);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
}

.pkg-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-8px);
}

.pkg-featured {
  border-color: var(--gold-border);
  background: var(--bg-4);
  transform: translateY(-16px);
}

.pkg-featured:hover { transform: translateY(-24px); }

.pkg-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 20px;
  white-space: nowrap;
}

.pkg-tier {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.pkg-price {
  margin-bottom: 8px;
  line-height: 1;
}

.price-from {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.price-val {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--white);
}

.price-per {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.pkg-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}

.pkg-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.pkg-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.pkg-features li {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.75);
  padding-left: 20px;
  position: relative;
}

.pkg-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

.pkg-btn {
  display: block;
  text-align: center;
  padding: 16px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}

.pkg-btn:hover { background: var(--gold-light); }

.pkg-btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}

.pkg-btn-ghost:hover { background: var(--gold-dim); }

/* ═══════════════════════════════════════════════
   DESTINATION PACKAGES
═══════════════════════════════════════════════ */
.dp-section {
  background: var(--bg);
}

.dp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}

/* ── Card shell ── */
.dp-card {
  background: var(--bg-3);
  border: 1px solid var(--border-dim);
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease-out);
  overflow: hidden;
}

.dp-card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: translateY(-8px);
}

/* ── Image wrapper ── */
.dp-img {
  position: relative;
  height: 260px;
  background-size: cover;
  background-position: center;
  transition: background-size 0.7s var(--ease-out);
  flex-shrink: 0;
}

.dp-card:hover .dp-img {
  background-size: 110%;
}

.dp-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(8,8,8,0.65) 100%
  );
}

.dp-duration {
  position: absolute;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
}

/* ── Card body ── */
.dp-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 24px;
}

.dp-region {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.dp-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 6px;
}

.dp-name em {
  display: block;
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-top: 2px;
}

.dp-sep {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 16px 0;
  flex-shrink: 0;
}

.dp-highlights {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.dp-highlights li {
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.58);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.dp-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 1px;
  background: var(--gold);
}

/* ── Footer ── */
.dp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border-dim);
  gap: 12px;
}

.dp-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}

.dp-from {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.dp-val {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.dp-per {
  font-size: 0.58rem;
  color: var(--text-muted);
}

.dp-btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 24px;
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  flex-shrink: 0;
}

.dp-btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.dp-disclaimer {
  max-width: 880px;
  margin: 48px auto 0;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.dp-grid-bespoke {
  grid-template-columns: minmax(0, 460px);
  justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .dp-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .dp-grid-bespoke { grid-template-columns: minmax(0, 460px); }
}

@media (max-width: 640px) {
  .dp-grid { grid-template-columns: 1fr; gap: 16px; }
  .dp-img  { height: 220px; }
  .dp-body { padding: 24px 20px 20px; }
}

/* ═══════════════════════════════════════════════
   DESTINATION DETAIL PAGES
═══════════════════════════════════════════════ */
.destpage { background: var(--bg); }

.destpage-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 24px 100px;
}

/* Background slideshow (or video) */
.destpage-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.destpage-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 2s ease-in-out, transform 8s linear;
}
.destpage-hero-slide.active {
  opacity: 1;
  transform: scale(1.08);
}
.destpage-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.destpage-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8,8,8,0.55) 0%,
    rgba(8,8,8,0.42) 45%,
    rgba(8,8,8,0.82) 100%
  );
}
.destpage-hero > .container {
  position: relative;
  z-index: 2;
}

.destpage-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 56px;
  transition: gap 0.3s, color 0.3s;
}
.destpage-back:hover { gap: 16px; color: var(--gold-light); }

.destpage-region {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.destpage-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.destpage-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
  font-size: 0.7em;
  margin-top: 8px;
}

.destpage-intro {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.02rem;
  color: rgba(245, 240, 232, 0.85);
  line-height: 1.85;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7);
}

/* Quick facts strip */
.destpage-facts {
  background: var(--bg-2);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  padding: 60px 0;
}
.destpage-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.destpage-fact {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid var(--border-dim);
}
.destpage-fact:last-child { border-right: none; }
.destpage-fact-label {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.destpage-fact-val {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.3;
}

/* Closing CTA */
.destpage-cta {
  padding: 120px 0;
  background: var(--bg);
  text-align: center;
}
.destpage-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}
.destpage-cta h2 em {
  font-style: italic;
  color: var(--gold-light);
}
.destpage-cta p {
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.85;
}

/* Responsive */
@media (max-width: 800px) {
  .destpage-hero { padding: 120px 20px 70px; min-height: 88vh; }
  .destpage-facts-grid { grid-template-columns: repeat(2, 1fr); }
  .destpage-fact { border-bottom: 1px solid var(--border-dim); }
  .destpage-fact:nth-child(2) { border-right: none; }
  .destpage-fact:nth-last-child(-n+2) { border-bottom: none; }
  .destpage-cta { padding: 80px 0; }
}

/* ═══════════════════════════════════════════════
   EXPERIENCE BUILDER
═══════════════════════════════════════════════ */
.experiences { background: var(--bg); }

.experiences-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  align-items: start;
}

.exp-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 2;
  margin-top: 8px;
}

.exp-builder {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.exp-step {
  border-left: 1px solid var(--gold-border);
  padding-left: 36px;
  position: relative;
}

.step-num {
  position: absolute;
  left: -24px;
  top: 0;
  width: 46px;
  height: 46px;
  background: var(--bg);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}

/* Destination selector */
.dest-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dest-sel-btn {
  padding: 10px 20px;
  border: 1px solid var(--border-dim);
  color: rgba(245,240,232,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}

.dest-sel-btn:hover,
.dest-sel-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* Experience tags */
.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.exp-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--border-dim);
  color: rgba(245,240,232,0.6);
  font-size: 0.78rem;
  cursor: none;
  transition: all 0.3s;
  user-select: none;
}

.exp-tag input { display: none; }

.exp-tag:has(input:checked),
.exp-tag:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: var(--gold-dim);
}

/* Accommodation */
.acc-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.acc-btn {
  flex: 1;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  border: 1px solid var(--border-dim);
  color: rgba(245,240,232,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-align: center;
  transition: all 0.3s;
}

.acc-btn:hover,
.acc-btn.active {
  border-color: var(--gold);
  color: var(--gold-light);
  background: var(--gold-dim);
}

.acc-icon { font-size: 1.5rem; }

/* Duration */
.duration-selector {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dur-btn {
  padding: 10px 20px;
  border: 1px solid var(--border-dim);
  color: rgba(245,240,232,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}

.dur-btn:hover,
.dur-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.exp-cta { text-align: left; }

.exp-note {
  margin-top: 16px;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════ */
.gallery { background: var(--bg-2); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 6px;
  margin-top: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: none;
}

.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 20px;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, transparent 100%);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.8);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testimonials {
  position: relative;
  overflow: hidden;
  padding: var(--section-gap) 0;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(60%);
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.88);
}

.testimonials .container { position: relative; z-index: 1; }

.testimonial-swiper {
  margin-top: 60px;
  padding-bottom: 60px !important;
}

.testi-card {
  background: rgba(22,22,22,0.7);
  border: 1px solid var(--border-dim);
  backdrop-filter: blur(10px);
  padding: 56px 60px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.testi-stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 32px;
}

.testi-quote {
  font-family: var(--font-alt);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(245,240,232,0.85);
  line-height: 1.9;
  margin-bottom: 40px;
  font-weight: 300;
}

.testi-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.testi-trip {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Swiper overrides */
.testimonial-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 1px;
  border-radius: 0;
  background: var(--text-dim);
  opacity: 1;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 60px;
}

.testimonial-prev,
.testimonial-next {
  color: var(--gold) !important;
  width: 48px !important;
  height: 48px !important;
  border: 1px solid var(--gold-border) !important;
  border-radius: 0 !important;
  transition: background 0.3s;
}

.testimonial-prev:hover,
.testimonial-next:hover { background: var(--gold-dim) !important; }

.testimonial-prev::after,
.testimonial-next::after { font-size: 1rem !important; }

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact { background: var(--bg-2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

.contact-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 2;
  margin: 28px 0 48px;
}

.contact-details { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
}

.contact-item a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--bg-3);
  border: 1px solid var(--border-dim);
  padding: 52px 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.9rem;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group select option {
  background: var(--bg-3);
  color: var(--white);
}

.form-group textarea { resize: none; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer { background: #050505; border-top: 1px solid var(--border-dim); }

.footer-top { padding: 80px 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: border-color 0.3s, color 0.3s;
}

.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h5 {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border-dim);
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p { font-size: 0.75rem; color: var(--text-dim); }
.footer-bottom a { color: var(--text-muted); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .about-grid { gap: 60px; }
  .about-img-secondary { left: -30px; }
  .experiences-inner { gap: 60px; }
  .contact-grid { gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .packages-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .pkg-featured { transform: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }
  .gallery-item.wide { grid-column: span 1; }
  .experiences-inner { grid-template-columns: 1fr; gap: 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 80px; }
  .container { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: none; }
  .hero-scroll-hint { display: none; }
  .cursor, .cursor-follower { display: none; }
  body, button { cursor: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .destinations-grid { grid-template-columns: 1fr; }
  .dest-desc { max-height: 100px; opacity: 1; }
  .dest-highlights { opacity: 1; transform: none; }
  .dest-btn { opacity: 1; transform: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 36px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .testi-card { padding: 36px 28px; }
  .testi-quote { font-size: 1rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 0 24px; padding-top: 100px; padding-bottom: 60px; }
  .acc-options { grid-template-columns: repeat(2, 1fr); display: grid; }
  .nav-container { padding: 0 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .section-title { font-size: 2.2rem; }
  .dest-card { height: 420px; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ─── Smooth hover for all interactive elements ─── */
a, button, [onclick] {
  transition: opacity 0.2s;
}

/* ─── Gold rule divider utility ─── */
.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}
