/* ============================================================
   SITE TOURS & TRAVELS LIMITED
   Shared Stylesheet — css/styles.css
   Loaded by every HTML page
============================================================ */

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --bg:           #0b1a0e;
  --surface:      #132016;
  --surface-2:    #1c2e1f;
  --primary:      #c8a96e;
  --primary-lt:   #dfc08a;
  --accent:       #d95828;
  --text:         #f0ead6;
  --text-dim:     #b8c9a8;
  --text-muted:   #7a9070;
  --card-bg:      #141f16;
  --border:       rgba(200, 169, 110, 0.14);
  --border-hover: rgba(200, 169, 110, 0.35);

  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Lato', sans-serif;
  --italic: 'Cormorant Garamond', Georgia, serif;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  --w:  1340px;
  --px: clamp(1.25rem, 5vw, 3rem);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.wrap {
  max-width: var(--w);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* ============================================================
   EYEBROW / SECTION LABEL
============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--primary);
  flex-shrink: 0;
}
.eyebrow--center {
  justify-content: center;
}
.eyebrow--center::before {
  display: none;
}
.eyebrow--center::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--primary);
  flex-shrink: 0;
}

/* ============================================================
   TYPOGRAPHY HELPERS
============================================================ */
.section-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.375rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--text);
  margin-block: 0.875rem 1.125rem;
}
.section-lead {
  font-size: 1.0625rem;
  line-height: 1.78;
  color: rgba(240, 234, 214, 0.6);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.125rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-105%) skewX(-20deg);
  transition: transform 0.5s var(--ease-out);
}
.btn:hover::after { transform: translateX(105%) skewX(-20deg); }

.btn-gold {
  background: var(--primary);
  color: var(--bg);
}
.btn-gold:hover {
  background: var(--primary-lt);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200, 169, 110, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(240, 234, 214, 0.35);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

/* ============================================================
   SCROLL REVEAL ANIMATION
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }
.d6 { transition-delay: 0.6s; }

/* ============================================================
   KEYFRAME ANIMATIONS
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-line {
  0%, 100% { opacity: 0.25; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.85); }
}

/* ============================================================
   NAVBAR
============================================================ */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  padding-block: 1.625rem;
  transition: padding 0.4s var(--ease-in-out), background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.pinned {
  background: rgba(11, 26, 14, 0.94);
  backdrop-filter: blur(24px) saturate(1.4);
  padding-block: 0.9rem;
  border-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 46px;
  width: 46px;
  object-fit: cover;
  border-radius: 2px;
}
.nav__logo-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
.nav__logo-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 0.1em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav__links a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 234, 214, 0.75);
  transition: color 0.25s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s var(--ease-out);
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--primary);
}
.nav__links a[aria-current="page"]::after,
.nav__links a:hover::after {
  width: 100%;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   MOBILE DRAWER
============================================================ */
.drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.drawer.open { display: flex; }
.drawer__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
}
.drawer a {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  transition: color 0.25s;
}
.drawer a:hover,
.drawer a[aria-current="page"] {
  color: var(--primary);
}

/* ============================================================
   HOME HERO
============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
/* Carousel container */
.hero__carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Individual slides — stacked, crossfade */
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.hero__slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Slide background with Ken Burns zoom */
.hero__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
  transition: transform 18s ease;
  will-change: transform;
}
.hero__slide.active .hero__slide-bg {
  transform: scale(1.04);
}

/* Arrow buttons */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(11, 26, 14, 0.42);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 169, 110, 0.3);
  color: var(--primary);
  font-size: 1.25rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
  line-height: 1;
}
.hero__arrow:hover {
  background: rgba(200, 169, 110, 0.2);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.08);
}
.hero__arrow--prev { left: 1.75rem; }
.hero__arrow--next { right: 1.75rem; }

/* Dot indicators — sit inside hero__content-wrap above the body text */
.hero__dots {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 0.25rem;
}
.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240, 234, 214, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.35s, transform 0.35s var(--ease-out), width 0.35s var(--ease-out);
}
.hero__dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 4px;
  transform: none;
}

.hero__fade {
  position: absolute;
  inset: 0;
  /* Heavier bottom-left vignette so text always reads cleanly */
  background:
    linear-gradient(to top,  rgba(11,26,14,0.97) 0%, rgba(11,26,14,0.72) 32%, rgba(11,26,14,0.25) 62%, rgba(11,26,14,0.15) 100%),
    linear-gradient(to right, rgba(11,26,14,0.72) 0%, rgba(11,26,14,0.38) 40%, transparent 70%);
  z-index: 1;
}
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 50% at 0% 80%, rgba(200,169,110,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 80% 15%, rgba(217,88,40,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Bottom-left anchor block */
.hero__content-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 var(--px) 3.5rem;
  max-width: min(760px, 60vw);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero__body {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.2s forwards;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--primary);
}
.hero__eyebrow::after { display: none; }
.hero__h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8.5vw, 6.5rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.35);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) 0.45s forwards;
}
.hero__h1 em {
  font-style: italic;
  color: var(--primary);
}
.hero__tagline {
  font-family: var(--italic);
  font-size: clamp(1.1rem, 2.5vw, 1.625rem);
  font-weight: 300;
  color: rgba(240,234,214,0.92);
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 14px rgba(0,0,0,0.5);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.7s forwards;
}

/* Service label — animates in on each slide change */
.hero__service-label {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(240, 234, 214, 0.55);
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.55s ease, transform 0.55s var(--ease-out);
}
.hero__service-label--in {
  opacity: 1;
  transform: translateY(0);
}

.hero__dream {
  font-family: var(--italic);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--primary);
  margin-bottom: 1.75rem;
  text-shadow: 0 1px 14px rgba(0,0,0,0.45);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.9s forwards;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.1s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: var(--px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: pulse-line 2.4s ease-in-out infinite;
}
.hero__scroll-label {
  font-size: 0.5625rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240,234,214,0.4);
}

/* ============================================================
   PAGE BANNER (inner pages)
============================================================ */
.page-banner {
  padding-top: 140px;
  padding-bottom: 4.5rem;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.page-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.28) saturate(0.75);
}
.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,26,14,0.55) 0%,
    rgba(11,26,14,0.7) 100%
  );
}
.page-banner__body {
  position: relative;
  z-index: 1;
}
.page-banner__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,234,214,0.45);
  margin-bottom: 1.25rem;
}
.page-banner__breadcrumb a {
  color: rgba(240,234,214,0.45);
  transition: color 0.25s;
}
.page-banner__breadcrumb a:hover { color: var(--primary); }
.page-banner__breadcrumb span { color: var(--primary); }
.page-banner__h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 0.875rem;
}
.page-banner__h1 em {
  font-style: italic;
  color: var(--primary);
}
.page-banner__sub {
  font-family: var(--italic);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: rgba(240,234,214,0.65);
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about {
  padding-block: clamp(5rem, 10vw, 9rem);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: 'AFRICA';
  position: absolute;
  top: 2rem; right: -3rem;
  font-family: var(--serif);
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 900;
  color: rgba(200,169,110,0.035);
  pointer-events: none;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.about__h2 {
  font-family: var(--serif);
  font-size: clamp(2.375rem, 5vw, 3.875rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text);
  margin-block: 1rem 1.25rem;
}
.about__h2 em { font-style: italic; color: var(--primary); }
.about__sub {
  font-family: var(--italic);
  font-size: 1.1875rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.about__p {
  font-size: 1.0625rem;
  line-height: 1.82;
  color: rgba(240,234,214,0.68);
  margin-bottom: 2.5rem;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-block: 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.stat { text-align: center; }
.stat__n {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.stat__l {
  font-size: 0.6875rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
/* Photo collage */
.about__photos {
  position: relative;
  height: clamp(400px, 55vw, 580px);
}
.about__photo-main {
  position: absolute;
  top: 0; right: 0;
  width: 80%; height: 85%;
  object-fit: cover;
}
.about__photo-inset {
  position: absolute;
  bottom: 0; left: 0;
  width: 52%; height: 52%;
  object-fit: cover;
  outline: 5px solid var(--bg);
}
.about__badge {
  position: absolute;
  top: 47%; left: 35%;
  transform: translate(-50%, -50%);
  width: 106px; height: 106px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  outline: 4px solid var(--bg);
}
.about__badge-n {
  font-family: var(--serif);
  font-size: 1.875rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.about__badge-l {
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}

/* Why Choose Us value cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}
.value-card {
  background: var(--card-bg);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.value-card__icon {
  display: block;
  width: 2.125rem;
  height: 2.125rem;
  color: var(--primary);
  stroke: var(--primary);
  stroke-width: 1.5;
  margin-bottom: 1.25rem;
}
.value-card__title {
  font-family: var(--serif);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.value-card__text {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: rgba(240,234,214,0.6);
}

/* ============================================================
   DESTINATIONS SECTION
============================================================ */
.destinations {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.destinations::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 0% 50%, rgba(200,169,110,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(217,88,40,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.destinations__hd {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.125rem;
  position: relative;
  z-index: 1;
}
.dest-card {
  position: relative;
  height: clamp(380px, 42vw, 540px);
  overflow: hidden;
  cursor: pointer;
}
.dest-card__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease-out);
}
.dest-card:hover .dest-card__img { transform: scale(1.09); }
.dest-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,26,14,0.97) 0%,
    rgba(11,26,14,0.55) 42%,
    rgba(11,26,14,0.18) 100%
  );
  transition: background 0.5s;
}
.dest-card:hover .dest-card__veil {
  background: linear-gradient(
    to top,
    rgba(11,26,14,0.99) 0%,
    rgba(11,26,14,0.78) 55%,
    rgba(11,26,14,0.42) 100%
  );
}
.dest-card__body {
  position: absolute;
  inset: 0;
  padding: 1.75rem 1.375rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.dest-card__num {
  position: absolute;
  top: 1.125rem; right: 1.25rem;
  font-family: var(--serif);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(200,169,110,0.45);
}
.dest-card__country {
  font-family: var(--serif);
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}
.dest-card__nick {
  font-family: var(--italic);
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 0.875rem;
  opacity: 0.9;
}
.dest-card__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(240,234,214,0.72);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease-out), opacity 0.5s;
  opacity: 0;
}
.dest-card:hover .dest-card__desc {
  max-height: 220px;
  opacity: 1;
}
/* On the destinations page, always show description */
.dest-card--always-show .dest-card__desc {
  max-height: 220px;
  opacity: 1;
}
.dest-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 0.875rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s 0.1s, transform 0.4s var(--ease-out) 0.1s;
}
.dest-card:hover .dest-card__cta,
.dest-card--always-show .dest-card__cta {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   SERVICES SECTION
============================================================ */
.services {
  padding-block: clamp(5rem, 10vw, 9rem);
}
.services__hd { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.125rem;
}
.svc-card {
  background: var(--card-bg);
  padding: 2.25rem 2rem 2rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.svc-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.45s var(--ease-out);
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}
.svc-card:hover::before { width: 100%; }
.svc-icon {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
  stroke: var(--primary);
  stroke-width: 1.5;
  margin-bottom: 1.375rem;
}
.svc-name {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.svc-desc { font-size: 0.9375rem; line-height: 1.72; color: rgba(240,234,214,0.58); }

/* ============================================================
   TESTIMONIALS SECTION
============================================================ */
.testimonials {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '\201C';
  position: absolute;
  top: -4rem; left: -1.5rem;
  font-family: var(--serif);
  font-size: clamp(14rem, 30vw, 28rem);
  color: rgba(200,169,110,0.045);
  line-height: 1;
  pointer-events: none;
}
.testimonials__hd { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.375rem;
}
.testi-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
}
.testi-card__qmark {
  font-family: var(--serif);
  font-size: 4.5rem;
  color: var(--primary);
  line-height: 0.5;
  margin-bottom: 1.5rem;
  opacity: 0.55;
}
.testi-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}
.star { font-size: 0.9375rem; color: var(--primary); }
.star--dim { color: rgba(200,169,110,0.2); }
.testi-card__quote {
  font-family: var(--italic);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.78;
  color: rgba(240,234,214,0.78);
  flex: 1;
  margin-bottom: 2rem;
}
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.testi-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
}
.testi-card__name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.testi-card__role {
  font-size: 0.6875rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 0.15rem;
}

/* ============================================================
   CTA BAND
============================================================ */
.cta-band {
  position: relative;
  padding-block: clamp(5rem, 10vw, 8.5rem);
  text-align: center;
  overflow: hidden;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.32) saturate(0.7);
}
.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(11,26,14,0.88) 0%,
    rgba(200,169,110,0.07) 50%,
    rgba(11,26,14,0.88) 100%
  );
}
.cta-band__body { position: relative; z-index: 1; }
.cta-band__h2 {
  font-family: var(--serif);
  font-size: clamp(2.375rem, 5.5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text);
  margin-block: 1rem 0.875rem;
}
.cta-band__sub {
  font-family: var(--italic);
  font-size: clamp(1.0625rem, 2vw, 1.3125rem);
  font-style: italic;
  color: rgba(240,234,214,0.65);
  margin-bottom: 2.75rem;
}

/* ============================================================
   TICKETS SECTION
============================================================ */
.tickets-section {
  padding-block: clamp(5rem, 10vw, 8rem);
}
.tickets-section .inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.tickets-section .inner p {
  font-size: 1.0625rem;
  line-height: 1.78;
  color: rgba(240,234,214,0.6);
  margin-block: 1.25rem 2.25rem;
}
.airlines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  text-align: left;
}
.airline-card {
  background: var(--card-bg);
  padding: 2rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.airline-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.airline-card__icon {
  display: block;
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  stroke: var(--primary);
  stroke-width: 1.5;
  flex-shrink: 0;
}
.airline-card__name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.airline-card__text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(240,234,214,0.55);
}

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact-section {
  padding-block: clamp(5rem, 10vw, 8rem);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}
.contact-info__h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text);
  margin-block: 1rem 1.5rem;
  line-height: 1.1;
}
.contact-info__h2 em { font-style: italic; color: var(--primary); }
.contact-info__intro {
  font-size: 1.0625rem;
  line-height: 1.78;
  color: rgba(240,234,214,0.65);
  margin-bottom: 2.5rem;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.125rem;
}
.contact-item__icon {
  width: 44px; height: 44px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item__label {
  font-size: 0.625rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.3rem;
}
.contact-item__value {
  font-size: 1rem;
  color: rgba(240,234,214,0.75);
  line-height: 1.5;
}
.contact-cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-cta-box__h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.contact-cta-box__p {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: rgba(240,234,214,0.6);
}

/* ============================================================
   CONTACT FORM
============================================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.625rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.8125rem 1rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240,234,214,0.25);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8a96e' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option {
  background: var(--surface);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  margin-top: 0.5rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(200,169,110,0.08);
  border: 1px solid var(--border);
}
.form-success.visible { display: block; }
.form-success__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.form-success__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.form-success__text { font-size: 0.9375rem; color: rgba(240,234,214,0.6); }

/* WhatsApp contact item */
.contact-item--wa .contact-item__icon {
  background: #128c7e;
  border-color: #128c7e;
}
.contact-item--wa .contact-item__value a { color: #25d366; }

/* ============================================================
   MISSION SECTION (Why Choose Us page)
============================================================ */
.mission {
  padding-block: clamp(5rem, 10vw, 9rem);
  overflow: hidden;
  position: relative;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.mission-quote {
  font-family: var(--italic);
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
  border-left: 3px solid var(--primary);
  padding-left: 1.5rem;
  margin-block: 1.25rem 1.75rem;
}
.mission-body {
  font-size: 1.0625rem;
  line-height: 1.82;
  color: rgba(240,234,214,0.65);
  margin-bottom: 2.5rem;
}
.mission-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.mstat { text-align: center; }
.mstat__n {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.mstat__l {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.mission-image { position: relative; }
.mission-image img {
  width: 100%;
  height: clamp(400px, 50vw, 580px);
  object-fit: cover;
}
.mission-image__tag {
  position: absolute;
  bottom: 1.5rem;
  left: -1.5rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.625rem 1.375rem;
}

/* ============================================================
   PROCESS SECTION (How We Work)
============================================================ */
.process {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--surface);
  position: relative;
}
.process__hd { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 0.6rem;
  left: calc(12.5% + 0.5rem);
  right: calc(12.5% + 0.5rem);
  height: 1px;
  background: linear-gradient(to right, var(--primary), var(--accent), var(--primary));
  opacity: 0.25;
}
.process-step {
  padding-inline: 2rem;
}
.process-step:first-child { padding-left: 0; }
.process-step:last-child  { padding-right: 0; }
.process-step__dot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.375rem;
}
.process-step__dot::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(200,169,110,0.15);
}
.process-step__num {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}
.process-step__title {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.875rem;
  line-height: 1.3;
}
.process-step__text {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: rgba(240,234,214,0.55);
}

/* Responsive for new sections */
@media (max-width: 900px) {
  .mission-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .mission-image img { height: 380px; }
  .mission-image__tag { left: 0; }
  .mission-stats   { grid-template-columns: repeat(4, 1fr); }
  .process-grid    { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-grid::before { display: none; }
  .process-step    { padding-inline: 0; }
  .form-row        { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .process-grid    { grid-template-columns: 1fr; }
  .mission-stats   { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid var(--border);
  padding-block: clamp(3rem, 6vw, 5rem) 2.25rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.footer__brand { display: flex; flex-direction: column; gap: 1.25rem; }
.footer__logo { display: flex; align-items: center; gap: 0.875rem; }
.footer__logo img {
  height: 42px; width: 42px;
  object-fit: cover;
  border-radius: 2px;
}
.footer__logo-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}
.footer__logo-sub {
  display: block;
  font-size: 0.5625rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 0.1em;
}
.footer__blurb {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: rgba(240,234,214,0.45);
  max-width: 290px;
}
.footer__partner {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}
.footer__partner-label {
  font-size: 0.5625rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer__partner img {
  height: 26px;
  width: auto;
  object-fit: contain;
  opacity: 0.65;
}
.footer__col h4 {
  font-size: 0.625rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.375rem;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer__col ul a {
  font-size: 0.9375rem;
  color: rgba(240,234,214,0.5);
  transition: color 0.25s;
}
.footer__col ul a:hover { color: var(--primary); }
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(200,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__copy { font-size: 0.8125rem; color: rgba(240,234,214,0.3); letter-spacing: 0.04em; }
.footer__tagline {
  font-family: var(--italic);
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--primary);
  opacity: 0.65;
}

/* ============================================================
   SHARED JS SCRIPT (included inline in each page)
   — navbar pin, scroll reveal, mobile drawer
============================================================ */

/* ============================================================
   WHATSAPP FLOATING BUBBLE
============================================================ */
.wa-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
  text-decoration: none;
}
.wa-float:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.4);
}
.wa-icon {
  width: 30px;
  height: 30px;
  stroke-width: 2.2px;
}

/* ============================================================
   PACKAGES PAGE
============================================================ */
.packages-page {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--bg);
}
.pkgs-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* Sidebar Filters */
.pkgs-sidebar {
  position: sticky;
  top: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem;
}
.filter-group {
  margin-bottom: 2rem;
}
.filter-group:last-child { margin-bottom: 0; }
.filter-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.125rem;
}
.filter-select {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: var(--sans);
  border-radius: 2px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(200,169,110,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.filter-select:focus {
  outline: none;
  border-color: var(--primary);
  background-color: rgba(255,255,255,0.06);
}

/* Package Cards Grid */
.pkgs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pkg-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
  height: 100%;
}
.pkg-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}
.pkg-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.pkg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.pkg-card:hover .pkg-img {
  transform: scale(1.1);
}
.pkg-price-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
  border-left: 2px solid var(--primary);
}
.pkg-price-val {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.125rem;
}
.pkg-price-unit {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0.25rem;
}

.pkg-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.pkg-location {
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.pkg-title {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.875rem;
  color: #fff;
}
.pkg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
}
.pkg-tag {
  font-size: 0.6875rem;
  padding: 0.25rem 0.625rem;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 1200px) {
  .pkgs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .pkgs-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .pkgs-sidebar { position: relative; top: 0; }
}
@media (max-width: 600px) {
  .pkgs-grid { grid-template-columns: 1fr; }
}

/* Responsive Breakpoints (already at end, but making sure these apply to new classes) */
@media (max-width: 1200px) {
  .dest-grid      { grid-template-columns: repeat(3, 1fr); }
  .services-grid  { grid-template-columns: repeat(3, 1fr); }
  .footer__grid   { grid-template-columns: 1fr 1fr; }
  .values-grid    { grid-template-columns: repeat(2, 1fr); }
  .airlines-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about__grid     { grid-template-columns: 1fr; gap: 3.5rem; }
  .about__photos   { height: 400px; }
  .dest-grid       { grid-template-columns: repeat(2, 1fr); }
  .dest-card       { height: 380px; }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .testi-grid      { grid-template-columns: 1fr; max-width: 580px; margin-inline: auto; }
  .contact-grid    { grid-template-columns: 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger     { display: flex; }
}
@media (max-width: 600px) {
  .dest-grid       { grid-template-columns: 1fr; }
  .services-grid   { grid-template-columns: 1fr; }
  .footer__grid    { grid-template-columns: 1fr; }
  .footer__bottom  { flex-direction: column; text-align: center; }
  .hero__ctas      { flex-direction: column; align-items: center; }
  .about__stats    { grid-template-columns: repeat(3, 1fr); }
  .values-grid     { grid-template-columns: 1fr; }
  .airlines-grid   { grid-template-columns: 1fr; }
}
