/* ═══════════════════════════════════════════════════════════
   VOYAGEUR — Main Stylesheet
   Luxury Tours & Travel
═══════════════════════════════════════════════════════════ */

/* ── 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(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --bg:          #0A0E1A;
  --surface:     #111827;
  --surface-2:   #1C2333;
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dim:    rgba(201,168,76,0.15);
  --cream:       #F5EDD6;
  --white:       #FFFFFF;
  --muted:       #8A94A8;
  --border:      rgba(201,168,76,0.2);
  --overlay:     rgba(10,14,26,0.65);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --radius-sm:   4px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --radius-full: 9999px;

  --trans:       all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow:  all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── UTILITY ───────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--gold);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,237,214,0.4);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--link {
  padding: 0;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid transparent;
}
.btn--link:hover { border-bottom-color: var(--gold); }
.btn--sm { padding: 10px 22px; font-size: 12px; }

/* ── NAVIGATION ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: var(--trans-slow);
}
.nav.scrolled {
  background: rgba(10,14,26,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.nav__logo-mark { color: var(--gold); font-size: 14px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav__links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,237,214,0.75);
  transition: var(--trans);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 24px; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: var(--trans);
}

/* ── MOBILE MENU ───────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__close {
  position: absolute;
  top: 28px; right: 28px;
  color: var(--cream);
  font-size: 24px;
  font-weight: 300;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}
.mobile-menu__links a {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--cream);
  transition: var(--trans);
}
.mobile-menu__links a:hover { color: var(--gold); }

/* ── SECTION COMMON ────────────────────────────────────── */
.section { padding: 120px 0; }
.section__header { margin-bottom: 64px; }
.section__header--center { text-align: center; }
.section__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
}
.section__title em {
  font-style: italic;
  color: var(--gold);
}
.section__cta { text-align: center; margin-top: 56px; }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.1); }
  to { transform: scale(1.02); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,14,26,0.2) 0%,
    rgba(10,14,26,0.1) 40%,
    rgba(10,14,26,0.85) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 160px;
  width: 100%;
}
.hero__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: heroFadeUp 0.8s ease 0.3s both;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.hero__line {
  display: block;
  animation: heroFadeUp 0.8s ease both;
}
.hero__line:nth-child(1) { animation-delay: 0.45s; }
.hero__line:nth-child(2) { animation-delay: 0.6s; }
.hero__line:nth-child(3) { animation-delay: 0.75s; }
.hero__line--italic {
  font-style: italic;
  color: var(--gold-light);
  padding-left: 60px;
}
.hero__sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(245,237,214,0.7);
  margin-bottom: 40px;
  animation: heroFadeUp 0.8s ease 0.9s both;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.8s ease 1.05s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  right: 48px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: heroFadeUp 1s ease 1.3s both;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}
.hero__scroll-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-lr;
}

/* Hero Marquee */
.hero__marquee-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  background: rgba(201,168,76,0.12);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  overflow: hidden;
  padding: 12px 0;
}
.hero__marquee {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
}
.hero__marquee-dot { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── STATS ─────────────────────────────────────────────── */
.stats {
  background: var(--surface);
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.stat-item {
  text-align: center;
  flex: 1;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.stats__divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── DESTINATION MASONRY ───────────────────────────────── */
.destinations-featured { background: var(--bg); }
.dest-masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 480px 320px;
  gap: 16px;
}
.dest-masonry__stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.dest-card--wide {
  grid-column: 1 / -1;
  height: 320px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,26,0.9) 0%, rgba(10,14,26,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: var(--trans);
}
.dest-card__country {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.dest-card__name {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}
.dest-card__desc {
  font-size: 13px;
  color: rgba(245,237,214,0.7);
  margin-bottom: 16px;
  max-width: 300px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--trans);
}
.dest-card:hover .dest-card__desc {
  opacity: 1;
  transform: translateY(0);
}
.dest-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.dest-card__link span {
  transition: transform 0.3s ease;
}
.dest-card:hover .dest-card__link span { transform: translateX(6px); }

/* ── HOW IT WORKS ──────────────────────────────────────── */
.how-it-works {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.how-it-works__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.04) 0%, transparent 60%),
                    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.04) 0%, transparent 60%);
}
.steps {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.step {
  flex: 1;
  text-align: center;
  padding: 48px 32px;
  position: relative;
}
.step__icon-wrap {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto 28px;
}
.step__num {
  position: absolute;
  top: -16px; left: -16px;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  z-index: 0;
}
.step__icon {
  width: 88px;
  height: 88px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  position: relative;
  z-index: 1;
  transition: var(--trans);
}
.step:hover .step__icon {
  background: rgba(201,168,76,0.25);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.step__title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.step__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.step__connector {
  width: 80px;
  height: 1px;
  border-top: 1px dashed rgba(201,168,76,0.35);
  flex-shrink: 0;
}

/* ── TOUR CARDS / CAROUSEL ─────────────────────────────── */
.tours-featured { background: var(--bg); overflow: hidden; }
.tour-carousel-wrap { position: relative; margin-top: 48px; }
.tour-carousel {
  display: flex;
  gap: 24px;
  padding: 0 calc((100vw - 1280px) / 2) 0 calc((100vw - 1280px) / 2 + 40px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.tour-carousel::-webkit-scrollbar { display: none; }
.tour-card {
  min-width: 360px;
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  scroll-snap-align: start;
  transition: var(--trans);
  flex-shrink: 0;
}
.tour-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.tour-card__image {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.tour-card__image img {
  transition: transform 0.6s ease;
}
.tour-card:hover .tour-card__image img { transform: scale(1.06); }
.tour-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}
.tour-card__badge--bestseller { background: var(--gold); color: var(--bg); }
.tour-card__badge--new { background: #2DD4BF; color: var(--bg); }
.tour-card__badge--limited { background: #F87171; color: var(--white); }
.tour-card__body { padding: 24px; }
.tour-card__meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.tour-card__title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.tour-card__stars {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 16px;
}
.tour-card__stars span { color: var(--muted); font-size: 12px; }
.tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tour-card__price { font-size: 14px; color: var(--muted); }
.tour-card__price strong { color: var(--gold); font-size: 18px; }
.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 32px calc((100vw - 1280px) / 2 + 40px) 0;
}
.carousel-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--cream);
  font-size: 18px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}
.carousel-btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testimonials { background: var(--surface-2); }
.testimonial-slider { position: relative; max-width: 820px; margin: 0 auto; text-align: center; }
.testimonial-big-quote {
  font-family: var(--font-display);
  font-size: 200px;
  line-height: 0.8;
  color: rgba(201,168,76,0.08);
  position: absolute;
  top: -20px; left: -40px;
  pointer-events: none;
  z-index: 0;
}
.testimonial-slides { position: relative; min-height: 200px; }
.testimonial-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.testimonial-slide.active { display: flex; animation: fadeInUp 0.6s ease; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.6;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.testimonial-author img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  font-family: var(--font-body);
  margin-bottom: 2px;
}
.testimonial-author span {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.testimonial-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}
.tdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--trans);
}
.tdot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* ── GALLERY STRIP ─────────────────────────────────────── */
.gallery-strip { background: var(--bg); padding: 120px 0 80px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 48px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item__hover {
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  opacity: 0;
  transition: var(--trans);
}
.gallery-item:hover .gallery-item__hover { opacity: 1; }

/* ── CTA BAND ──────────────────────────────────────────── */
.cta-band {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,26,0.78);
}
.cta-band__content {
  position: relative;
  z-index: 2;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-band__title em { font-style: italic; color: var(--gold); }
.cta-band__sub {
  font-size: 16px;
  color: rgba(245,237,214,0.7);
  margin-bottom: 40px;
}
.cta-band__form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
}
.cta-band__input {
  flex: 1;
  padding: 14px 24px;
  background: rgba(245,237,214,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: var(--trans);
}
.cta-band__input::placeholder { color: var(--muted); }
.cta-band__input:focus { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.cta-band__micro {
  font-size: 12px;
  color: var(--muted);
}

/* ── FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: 80px;
}
.footer__top-line {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin-bottom: 64px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}
.footer__logo span { color: var(--gold); }
.footer__brand-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer__socials {
  display: flex;
  gap: 16px;
}
.footer__socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  transition: var(--trans);
}
.footer__socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer__heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links li, .footer__links a {
  font-size: 14px;
  color: var(--muted);
  transition: var(--trans);
}
.footer__links a:hover { color: var(--cream); }
.footer__whatsapp {
  color: #25D366 !important;
}
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 13px;
  color: var(--muted);
}

/* ── SCROLL REVEAL ANIMATIONS ──────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="fade-left"] { transform: translateX(-32px); }
[data-reveal="fade-left"].revealed { transform: translateX(0); }
[data-reveal="fade-right"] { transform: translateX(32px); }
[data-reveal="fade-right"].revealed { transform: translateX(0); }

/* ── PAGE-SPECIFIC: DESTINATIONS PAGE ─────────────────── */
.page-hero {
  height: 60vh;
  min-height: 480px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 8s ease-out forwards;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,14,26,0.3) 0%, rgba(10,14,26,0.8) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 40px 80px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.page-hero__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: var(--white);
}
.page-hero__title em { font-style: italic; color: var(--gold-light); }

/* Breadcrumb */
.breadcrumb {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.breadcrumb__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.breadcrumb__inner a { color: var(--muted); transition: var(--trans); }
.breadcrumb__inner a:hover { color: var(--gold); }
.breadcrumb__inner span { color: var(--gold); }

/* Filter Bar */
.filter-bar {
  padding: 40px 0 32px;
  background: var(--bg);
  position: sticky;
  top: 72px;
  z-index: 50;
  border-bottom: 1px solid var(--border);
}
.filter-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  font-family: var(--font-body);
  transition: var(--trans);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* Destinations grid */
.destinations-grid {
  padding: 64px 0 120px;
  background: var(--bg);
}
.destinations-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dest-grid-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
  transition: var(--trans);
}
.dest-grid-card:hover { transform: translateY(-8px); box-shadow: 0 32px 80px rgba(0,0,0,0.5); }
.dest-grid-card img { transition: transform 0.6s ease; }
.dest-grid-card:hover img { transform: scale(1.06); }
.dest-grid-card__info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,26,0.92) 0%, rgba(10,14,26,0.05) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.dest-grid-card__region {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.dest-grid-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}
.dest-grid-card__desc {
  font-size: 13px;
  color: rgba(245,237,214,0.65);
  margin-bottom: 16px;
  line-height: 1.5;
}
.dest-grid-card__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.dest-grid-card:hover .dest-grid-card__link { gap: 14px; }

/* ── TOURS PAGE ────────────────────────────────────────── */
.tours-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding: 64px 0 120px;
}
.tours-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}
.filter-group { margin-bottom: 40px; }
.filter-group__title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  transition: var(--trans);
}
.filter-check:hover { color: var(--cream); }
.filter-check input { accent-color: var(--gold); }
.tours-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.tour-list-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--trans);
}
.tour-list-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.tour-list-card__img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.tour-list-card__img img { transition: transform 0.6s ease; }
.tour-list-card:hover .tour-list-card__img img { transform: scale(1.06); }
.tour-list-card__body { padding: 24px; }
.tour-list-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.tag {
  padding: 3px 10px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  color: var(--muted);
}
.tour-list-card__name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.tour-list-card__meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}
.tour-list-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.tour-list-card__price { font-size: 13px; color: var(--muted); }
.tour-list-card__price strong { color: var(--gold); font-size: 17px; }

/* ── ABOUT PAGE ────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  background: var(--bg);
}
.about-split__image {
  position: relative;
  overflow: hidden;
}
.about-split__image img { height: 100%; object-fit: cover; }
.about-split__content {
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: 80px 0;
}
.value-card {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--trans);
}
.value-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}
.value-card__icon { font-size: 36px; margin-bottom: 16px; }
.value-card__title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.value-card__desc { font-size: 14px; color: var(--muted); line-height: 1.7; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  text-align: center;
  transition: var(--trans);
}
.team-card__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--border);
  transition: var(--trans);
}
.team-card:hover .team-card__photo {
  border-color: var(--gold);
  transform: scale(1.02);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.team-card__bio { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── CONTACT PAGE ──────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  padding: 80px 0;
  gap: 80px;
}
.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  min-height: 500px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.contact-map iframe {
  width: 100%;
  flex: 1;
  border: none;
  filter: invert(90%) hue-rotate(180deg);
}
.contact-info {
  padding: 24px;
  border-top: 1px solid var(--border);
}
.contact-info__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--muted);
}
.contact-info__item span:first-child { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.contact-form__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-form__title em { font-style: italic; color: var(--gold); }
.contact-form__sub { font-size: 15px; color: var(--muted); margin-bottom: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: var(--trans);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  background: rgba(45,212,191,0.1);
  border: 1px solid rgba(45,212,191,0.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: #2DD4BF;
  font-size: 15px;
  margin-top: 20px;
}
.form-success.show { display: block; animation: fadeInUp 0.5s ease; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .dest-masonry { grid-template-rows: 400px 260px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-split { grid-template-columns: 1fr; }
  .about-split__image { height: 400px; }
  .about-split__content { padding: 64px 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .tours-layout { grid-template-columns: 1fr; }
  .tours-sidebar { position: relative; top: auto; }
  .tour-carousel { padding: 0 20px; }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .dest-masonry { grid-template-columns: 1fr; grid-template-rows: auto; }
  .dest-masonry__stack { grid-template-rows: auto; }
  .dest-card--large { height: 400px; }
  .dest-card--wide { height: 280px; }
  .steps { flex-direction: column; }
  .step__connector { width: 1px; height: 40px; border-top: none; border-left: 1px dashed rgba(201,168,76,0.35); }
  .stats__grid { display: grid; grid-template-columns: 1fr 1fr; }
  .stats__divider { display: none; }
  .tour-card { min-width: 300px; }
  .destinations-grid__grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .tours-list { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band__form { flex-direction: column; }
  .hero__scroll-indicator { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero__line--italic { padding-left: 0; }
  .destinations-grid__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
}
@media (max-width: 1280px) {
  .tour-carousel { padding: 0 20px; }
  .carousel-controls { padding: 32px 20px 0; }
}

/* ── PREFERS REDUCED MOTION ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
