/* ═══════════════════════════════════════════════════════
   WORLD CLASS HOLIDAYS — Design System
   Apple-level premium travel website
═══════════════════════════════════════════════════════ */

/* ── Tokens ────────────────────────────────────────── */
:root {
  --black:      #000000;
  --dark:       #0A0A0A;
  --dark-2:     #111111;
  --dark-3:     #1C1C1E;
  --gold:       #C4973A;
  --gold-light: #E8B96A;
  --gold-pale:  #F5E6C8;
  --white:      #FFFFFF;
  --off-white:  #F8F6F1;
  --gray-1:     #8A8A8A;
  --gray-2:     #3A3A3A;
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --shadow-sm:  0 2px 16px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:   cubic-bezier(0.25, 0, 0, 1);
  --transition: 0.5s var(--ease-spring);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
input, button { font-family: inherit; border: none; outline: none; }

/* ── Container ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(196,151,58,0.35);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196,151,58,0.45);
}
.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(0,0,0,0.2);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ── Scroll Reveal ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-spring), transform 0.7s var(--ease-spring);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav.scrolled .nav__logo-text,
.nav.scrolled .nav__logo-mark,
.nav.scrolled .nav__links a {
  color: var(--dark);
}
.nav.scrolled .btn--outline {
  border-color: rgba(0,0,0,0.2);
  color: var(--dark);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-right: auto;
}
.nav__logo-mark {
  color: var(--gold);
  font-size: 1.2rem;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.4s;
  letter-spacing: 0.01em;
}
.nav__links {
  display: flex;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav.scrolled .nav__links a { color: var(--gray-1); }
.nav.scrolled .nav__links a:hover { color: var(--dark); }
.nav__cta { display: none; }
@media (min-width: 900px) { .nav__cta { display: inline-flex; } }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .nav__burger span { background: var(--dark); }
@media (max-width: 899px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 2rem;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.06);
  gap: 0.25rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--dark);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav__mobile .btn { margin-top: 1rem; text-align: center; justify-content: center; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=85');
  background-size: cover;
  background-position: center;
  will-change: transform;
  animation: kenBurns 22s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.20) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 5rem;
  width: 100%;
}
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  transition-delay: 0.1s;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  transition-delay: 0.2s;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
  transition-delay: 0.3s;
}
.hero__search { transition-delay: 0.45s; }

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-xl);
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  max-width: 700px;
  gap: 0;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.search-bar__field {
  flex: 1;
  padding: 0.5rem 1.5rem 0.5rem 0;
  min-width: 0;
}
.search-bar__field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.2rem;
}
.search-bar__field input {
  background: none;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 400;
  width: 100%;
}
.search-bar__field input::placeholder { color: rgba(255,255,255,0.55); }
.search-bar__divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  margin: 0 0.5rem;
  flex-shrink: 0;
}
.search-bar__btn {
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 0.9rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(196,151,58,0.4);
}
.search-bar__btn:hover {
  background: var(--gold-light);
  transform: scale(1.03);
}

/* Scroll Hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero__scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ══════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════ */
.stats {
  padding: 4rem 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 700px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
.stats__item p {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-1);
  margin-top: 0.4rem;
}
.stats__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
}
.stats__suffix {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════════════════════ */
.section { padding: 7rem 0; }
.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section__sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray-1);
  line-height: 1.7;
}
.section__cta { text-align: center; margin-top: 3rem; }

/* ══════════════════════════════════════════════════════
   DESTINATIONS
══════════════════════════════════════════════════════ */
.destinations { background: var(--off-white); }
.dest__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
@media (max-width: 900px) { .dest__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .dest__grid { grid-template-columns: 1fr; } }

.dest__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
  cursor: pointer;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-spring);
  box-shadow: var(--shadow-sm);
}
.dest__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.dest__card--large {
  grid-column: span 1;
  grid-row: span 2;
}
@media (max-width: 900px) { .dest__card--large { grid-column: span 2; grid-row: span 1; } }
@media (max-width: 600px) { .dest__card--large { grid-column: span 1; } }

.dest__img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-spring);
}
.dest__card--large .dest__img { min-height: 500px; }
.dest__card:hover .dest__img { transform: scale(1.05); }

.dest__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, transparent 100%);
  color: var(--white);
}
.dest__region {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}
.dest__info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.dest__card--large .dest__info h3 { font-size: 2.2rem; }
.dest__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}
.dest__link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.3s;
}
.dest__link:hover { gap: 0.7rem; }
.dest__link span { transition: transform 0.3s; }
.dest__card:hover .dest__link span { transform: translateX(4px); }

/* ══════════════════════════════════════════════════════
   PACKAGES
══════════════════════════════════════════════════════ */
.packages { background: var(--white); }
.pkg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .pkg__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pkg__grid { grid-template-columns: 1fr; } }

.pkg__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-spring);
}
.pkg__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.pkg__img {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-spring);
  overflow: hidden;
}
.pkg__card:hover .pkg__img { transform: scale(1.04); }
.pkg__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-xl);
}
.pkg__badge--new { background: #1D6344; }
.pkg__body {
  padding: 1.75rem;
}
.pkg__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.pkg__body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.pkg__body > p {
  font-size: 0.9rem;
  color: var(--gray-1);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.pkg__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.pkg__features li {
  font-size: 0.85rem;
  color: var(--dark);
  font-weight: 400;
}
.pkg__features li::first-letter { color: var(--gold); }
.pkg__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.pkg__price { display: flex; align-items: baseline; gap: 0.25rem; }
.pkg__from {
  font-size: 0.72rem;
  color: var(--gray-1);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pkg__amount {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
}
.pkg__per {
  font-size: 0.75rem;
  color: var(--gray-1);
}

/* ══════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════ */
.how { background: var(--off-white); }
.how__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
@media (max-width: 800px) {
  .how__grid { grid-template-columns: 1fr; }
  .how__connector { display: none; }
}
.how__step {
  text-align: center;
  padding: 2rem 1.5rem;
}
.how__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}
.how__step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.how__step p {
  font-size: 0.9rem;
  color: var(--gray-1);
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}
.how__connector {
  margin-top: 3.5rem;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--gold-pale), var(--gold), var(--gold-pale));
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   QUOTE BAND
══════════════════════════════════════════════════════ */
.quote-band {
  background: var(--dark-3);
  padding: 6rem 0;
}
.quote-band blockquote {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}
.quote-band blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.quote-band blockquote cite {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.testimonials { background: var(--white); overflow: hidden; }
.testi__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  transition: transform 0.6s var(--ease-spring);
}
@media (max-width: 1000px) { .testi__track { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .testi__track { grid-template-columns: 1fr; } }

.testi__card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}
.testi__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.testi__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testi__card > p {
  font-size: 0.92rem;
  color: var(--dark);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testi__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi__author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testi__author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}
.testi__author span {
  font-size: 0.78rem;
  color: var(--gray-1);
}
.testi__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.testi__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.testi__dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ══════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════ */
.about { background: var(--off-white); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 800px) {
  .about__inner { grid-template-columns: 1fr; gap: 3rem; }
}
.about__img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: var(--dark);
}
.about__text p {
  font-size: 0.95rem;
  color: var(--gray-1);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about__text .btn { margin-top: 1.5rem; }

/* ══════════════════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════════════════ */
.newsletter {
  background: var(--dark);
  padding: 5rem 0;
}
.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 800px) {
  .newsletter__inner { flex-direction: column; text-align: center; }
}
.newsletter__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.newsletter__text p {
  font-size: 0.9rem;
  color: var(--gray-1);
  max-width: 420px;
  line-height: 1.65;
}
.newsletter__form {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
@media (max-width: 500px) {
  .newsletter__form { flex-direction: column; width: 100%; }
  .newsletter__form .btn { justify-content: center; }
}
.newsletter__form input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  min-width: 260px;
  transition: border-color 0.3s;
}
.newsletter__form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter__form input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.11);
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: #080808;
  padding: 5rem 0 2.5rem;
  color: var(--white);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand .nav__logo { margin-bottom: 1rem; }
.footer__brand .nav__logo-text { color: var(--white); }
.footer__brand > p {
  font-size: 0.875rem;
  color: var(--gray-1);
  line-height: 1.7;
  max-width: 280px;
  margin-top: 0.5rem;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gray-1);
  transition: var(--transition);
}
.footer__social a svg { width: 16px; height: 16px; }
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer__col a {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-1);
  margin-bottom: 0.7rem;
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
}
.footer__legal a:hover { color: var(--gray-1); }

/* ══════════════════════════════════════════════════════
   INNER PAGES — PAGE HERO
══════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenBurns 20s ease-in-out infinite alternate;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-hero__content .section__eyebrow { color: var(--gold-light); }
.page-hero__content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-top: 0.5rem;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE SEARCH BAR
══════════════════════════════════════════════════════ */
@media (max-width: 700px) {
  .search-bar {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 1rem;
    gap: 0.75rem;
  }
  .search-bar__divider { display: none; }
  .search-bar__field { padding: 0; }
  .search-bar__btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════
   STAGGER DELAYS for reveal elements
══════════════════════════════════════════════════════ */
.dest__card:nth-child(1) { transition-delay: 0s; }
.dest__card:nth-child(2) { transition-delay: 0.08s; }
.dest__card:nth-child(3) { transition-delay: 0.16s; }
.dest__card:nth-child(4) { transition-delay: 0.24s; }
.dest__card:nth-child(5) { transition-delay: 0.32s; }
.dest__card:nth-child(6) { transition-delay: 0.40s; }
.pkg__card:nth-child(1)  { transition-delay: 0s; }
.pkg__card:nth-child(2)  { transition-delay: 0.1s; }
.pkg__card:nth-child(3)  { transition-delay: 0.2s; }
.stats__item:nth-child(1){ transition-delay: 0s; }
.stats__item:nth-child(2){ transition-delay: 0.08s; }
.stats__item:nth-child(3){ transition-delay: 0.16s; }
.stats__item:nth-child(4){ transition-delay: 0.24s; }
