/* ═══════════════════════════════════════════════════════
   TERRAIN — Design System for House of Travellers
   Inspired by natural landscapes: forest, mud, deep sea
   ═══════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────── */
:root {
  /* Core palette — natural earth tones */
  --deep-alpine:    #1B2A21;   /* deep forest night */
  --mountain-blue:  #1A5653;   /* deep sea teal */
  --sunrise-gold:   #C8823A;   /* warm mud / terracotta */
  --misty-teal:     #3D7A6E;   /* mossy green */
  --alpine-green:   #3C6B3F;   /* forest green */
  --snow-white:     #F5F2EC;   /* natural linen */
  --warm-sand:      #E6DDD0;   /* dried earth */

  /* Functional */
  --bg:            var(--snow-white);
  --bg-alt:        #ECE7DE;
  --text:          var(--deep-alpine);
  --text-muted:    #5A6558;
  --accent:        var(--sunrise-gold);
  --accent-hover:  #B5712E;
  --surface:       #fff;
  --border:        #D4CCBE;

  /* Typography */
  --font-display:  'DM Serif Display', Georgia, serif;
  --font-body:     'Sora', system-ui, sans-serif;

  /* Spacing */
  --section-y: clamp(5rem, 10vw, 8rem);
  --container:  min(90%, 1200px);

  /* Motion */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration:  0.6s;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font: inherit; }
::selection { background: var(--accent); color: #fff; }


/* ── Scroll Progress ────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--alpine-green), var(--misty-teal));
  z-index: 9999;
  transition: none;
}

/* ── Reveal animation ───────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Fallback for no-JS */
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ── Tag pill ───────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--alpine-green);
  padding: 6px 14px;
  background: rgba(60, 107, 63, .1);
  border-radius: 100px;
}
.tag--light {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}

/* ── Buttons ────────────────────────────────────────── */
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 600;
  padding: 14px 32px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  color: var(--text);
  transition: all .35s var(--ease-out);
}
.btn-outline:hover {
  background: var(--deep-alpine);
  border-color: var(--deep-alpine);
  color: #fff;
}

/* Magnetic hover placeholder — JS applies transform */
.magnetic { transition: transform 0.3s var(--ease-spring); }


/* ═══════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: transparent;
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.header.scrolled {
  background: rgba(248, 245, 240, .92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1320px; margin: 0 auto;
  padding: 16px 32px;
}
.header__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.15rem;
  color: #fff;
  transition: color .4s;
}
.header.scrolled .header__logo { color: var(--text); }
.header__logo-icon { font-size: 1.3rem; }
.header__nav { display: flex; gap: 32px; }
.header__link {
  font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.8);
  transition: color .3s;
  position: relative;
}
.header__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--accent);
  transition: width .3s var(--ease-out);
}
.header__link:hover { color: #fff; }
.header__link:hover::after { width: 100%; }
.header.scrolled .header__link { color: var(--text-muted); }
.header.scrolled .header__link:hover { color: var(--text); }

.header__cta {
  font-size: .8rem; font-weight: 600;
  padding: 10px 24px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  border-radius: var(--radius-xl);
  transition: background .3s, transform .3s;
}
.header__cta:hover { background: rgba(255,255,255,.35); transform: translateY(-1px); }
.header.scrolled .header__cta {
  background: var(--deep-alpine);
  border-color: var(--deep-alpine);
  backdrop-filter: none;
}
.header.scrolled .header__cta:hover { background: #243a2d; }

.header__menu-btn {
  display: none;
  font-size: .85rem; font-weight: 600;
  color: #fff;
  padding: 8px 16px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: var(--radius-xl);
  transition: color .4s, border-color .4s;
}
.header.scrolled .header__menu-btn { color: var(--text); border-color: var(--border); }

/* ── Drawer ─────────────────────────────────────────── */
.drawer {
  position: fixed; inset: 0; z-index: 999;
  background: var(--deep-alpine);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease-out);
}
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer__nav { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.drawer__link {
  font-family: var(--font-display); font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: rgba(255,255,255,.7);
  transition: color .3s, transform .3s;
}
.drawer__link:hover { color: var(--accent); transform: translateX(8px); }
.drawer__footer {
  position: absolute; bottom: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .85rem; color: rgba(255,255,255,.4);
}
.drawer__footer a { transition: color .3s; }
.drawer__footer a:hover { color: var(--accent); }


/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 1;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  margin-top: 0;
}
.hero__content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 18px;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__badge svg { stroke: var(--text-muted); }
.hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}
.hero__title em {
  font-style: italic;
  color: var(--sunrise-gold);
}
.hero__subtitle {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  min-height: 1.8em;
}

/* Typed cursor */
.typed-cursor {
  display: inline-block;
  animation: cursorBlink .75s step-end infinite;
  color: var(--sunrise-gold);
  font-weight: 300;
}
@keyframes cursorBlink { 0%,100%{opacity:1} 50%{opacity:0} }

/* search bar */
.hero__search { margin-bottom: 40px; }
.hero__search-bar {
  display: flex; align-items: center;
  background: #fff;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-xl);
  padding: 6px 6px 6px 20px;
  max-width: 520px; margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.hero__search-icon { flex-shrink: 0; color: var(--text-muted); }
.hero__search-input {
  flex: 1; border: none; background: none; outline: none;
  padding: 12px 16px;
  font-size: .9rem;
  color: var(--text);
}
.hero__search-input::placeholder { color: var(--text-muted); }
.hero__search-btn {
  flex-shrink: 0;
  padding: 12px 28px;
  background: var(--deep-alpine);
  color: #fff;
  font-weight: 600; font-size: .85rem;
  border-radius: var(--radius-xl);
  transition: background .3s, transform .3s;
}
.hero__search-btn:hover { background: #243a2d; transform: translateY(-1px); }

/* Stats — glass card */
.hero__stats {
  display: flex; justify-content: center; align-items: center; gap: 28px;
  flex-wrap: wrap;
  background: rgba(27, 42, 33, .45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 24px 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  max-width: 720px;
  margin: 0 auto;
}
.hero__stat { text-align: center; }
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 400;
  color: #fff;
}
.hero__stat span { font-size: .75rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .06em; }
.hero__stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,.25); }

/* Scroll indicator — removed */


/* ═══════════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════════ */
.marquee {
  background: var(--deep-alpine);
  padding: 16px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee__content {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}
.marquee__content span {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,.6);
  white-space: nowrap;
  padding: 0 16px;
  transition: color .3s;
}
.marquee__content span:hover { color: var(--accent); }
/* Dot separators are smaller and dimmer */
.marquee__content span:nth-child(even) {
  font-size: .6rem;
  color: rgba(255,255,255,.25);
  padding: 0 4px;
  pointer-events: none;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════════════
   DESTINATIONS
   ═══════════════════════════════════════════════════════ */
.destinations { padding: var(--section-y) 0; }
.destinations__container { width: var(--container); margin: 0 auto; }
.destinations__header { text-align: center; margin-bottom: 48px; }
.destinations__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-top: 12px;
}
.destinations__sub {
  max-width: 560px; margin: 12px auto 0; color: var(--text-muted); font-size: .95rem;
}

/* Tabs */
.destinations__tabs {
  display: flex; justify-content: center; gap: 8px;
  margin-bottom: 40px;
}
.tab {
  padding: 10px 28px;
  font-size: .85rem; font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  background: transparent;
  color: var(--text-muted);
  transition: all .3s var(--ease-out);
}
.tab.active {
  background: var(--deep-alpine);
  border-color: var(--deep-alpine);
  color: #fff;
}
.tab:hover:not(.active) { border-color: var(--text-muted); color: var(--text); }

/* Grid */
.destinations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.destinations__grid.hidden { display: none; }

/* Dest card */
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: block;
}
.dest-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.dest-card:hover img { transform: scale(1.05); }
.dest-card__info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(26,35,50,.85) 0%, transparent 100%);
}
.dest-card__info h3 {
  font-family: var(--font-display); font-size: 1.3rem; color: #fff;
  margin-bottom: 4px;
}
.dest-card__info span { font-size: .8rem; color: rgba(255,255,255,.65); }

.destinations__cta { text-align: center; margin-top: 40px; }


/* ═══════════════════════════════════════════════════════
   PARALLAX DIVIDER
   ═══════════════════════════════════════════════════════ */
.parallax-divider {
  position: relative;
  height: 50vh; min-height: 350px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.parallax-divider img {
  position: absolute; inset: 0;
  width: 100%; height: 120%; object-fit: cover;
  will-change: transform;
}
.parallax-divider__overlay {
  position: absolute; inset: 0;
  background: rgba(26, 35, 50, .55);
}
.parallax-divider__text {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  color: #fff;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════ */
.how-it-works { padding: var(--section-y) 0; background: var(--bg-alt); }
.how__container { width: var(--container); margin: 0 auto; }
.how__header { text-align: center; margin-bottom: 56px; }
.how__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.8rem); margin-top: 12px;
}
.how__sub { color: var(--text-muted); margin-top: 8px; }

.how__steps {
  display: flex; align-items: flex-start; justify-content: center; gap: 0;
}
.how__step {
  flex: 1; max-width: 280px; text-align: center;
  padding: 0 20px;
}
.how__step-num {
  font-family: var(--font-display); font-size: 2.5rem;
  color: rgba(60, 107, 63, .2);
  line-height: 1;
  margin-bottom: 16px;
}
.how__step-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--mountain-blue);
  transition: all .4s var(--ease-out);
}
.how__step:hover .how__step-icon {
  background: var(--deep-alpine);
  border-color: var(--deep-alpine);
  color: var(--accent);
  transform: translateY(-4px);
}
.how__step h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 400;
  margin-bottom: 8px;
}
.how__step p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

.how__step-connector {
  width: 60px; height: 1px;
  background: var(--border);
  margin-top: 80px;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════
   TRAVEL TYPES
   ═══════════════════════════════════════════════════════ */
.types { padding: var(--section-y) 0; }
.types__container { width: var(--container); margin: 0 auto; text-align: center; }
.types__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 12px 0 48px;
}
.types__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.type-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: default;
}
.type-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out);
  filter: brightness(.55);
}
.type-card:hover .type-card__img { transform: scale(1.06); filter: brightness(.45); }
.type-card__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(26,35,50,.85) 0%, transparent 100%);
  text-align: left;
}
.type-card__body h3 {
  font-family: var(--font-display); font-size: 1.1rem; color: #fff;
  margin-bottom: 4px;
}
.type-card__body p { font-size: .75rem; color: rgba(255,255,255,.6); line-height: 1.5; }


/* ═══════════════════════════════════════════════════════
   PACKAGES
   ═══════════════════════════════════════════════════════ */
.packages { padding: var(--section-y) 0; background: var(--bg-alt); }
.packages__container { width: var(--container); margin: 0 auto; }
.packages__header { text-align: center; margin-bottom: 48px; }
.packages__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.8rem); margin-top: 12px;
}
.packages__sub { max-width: 560px; margin: 12px auto 0; color: var(--text-muted); font-size: .95rem; }
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pkg-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  border: 1px solid var(--border);
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(26,35,50,.1);
}
.pkg-card__img {
  display: block;
  width: 100%; height: 200px; object-fit: cover;
}
.pkg-card__body { padding: 18px 20px 20px; }
.pkg-card__badge {
  display: inline-block;
  font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  padding: 3px 10px; border-radius: 100px;
  background: rgba(60, 107, 63, .1); color: var(--alpine-green);
  margin-bottom: 8px;
}
.pkg-card__title {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 400;
  margin-bottom: 10px;
}
.pkg-card__pricing {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 6px;
}
.pkg-card__pricing::before { content: 'from'; font-size: .75rem; color: var(--text-muted); font-weight: 500; }
.pkg-card__price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--deep-alpine); }
.pkg-card__original {
  font-size: .8rem; color: var(--text-muted);
  text-decoration: line-through;
}
.pkg-card__save {
  display: inline-block;
  font-size: .7rem; font-weight: 600; color: #fff;
  background: var(--alpine-green); padding: 2px 10px; border-radius: 100px;
  margin-bottom: 12px;
}

/* CTA row */
.pkg-card__cta-row {
  display: flex; align-items: center; gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.pkg-card__call-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200, 130, 58, .12);
  border-radius: 50%;
  color: var(--accent);
  flex-shrink: 0;
  transition: background .3s;
}
.pkg-card__call-icon:hover { background: rgba(200, 130, 58, .2); }
.pkg-card__book-btn {
  flex: 1;
  display: block;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  font-weight: 600; font-size: .85rem;
  text-align: center;
  border-radius: var(--radius-xl);
  transition: background .3s, transform .3s;
}
.pkg-card__book-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.packages__cta { text-align: center; margin-top: 40px; }


/* ═══════════════════════════════════════════════════════
   PROMO BANNER
   ═══════════════════════════════════════════════════════ */
.promo {
  padding: var(--section-y) 0;
  background: linear-gradient(135deg, var(--deep-alpine), #1A3A2E);
}
.promo__container {
  width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
  align-items: center;
}
.promo__tag {
  display: inline-block;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: 6px 16px; border-radius: 100px;
  background: var(--accent); color: var(--deep-alpine);
  margin-bottom: 20px;
}
.promo__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.2rem); color: #fff;
  line-height: 1.3; margin-bottom: 16px;
}
.promo__title em { color: var(--accent); font-style: italic; }
.promo__text { color: rgba(255,255,255,.65); font-size: .95rem; margin-bottom: 28px; line-height: 1.7; }
.promo__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--accent); color: var(--deep-alpine);
  font-weight: 600; font-size: .9rem;
  border-radius: var(--radius-xl);
  transition: background .3s, transform .3s;
}
.promo__btn:hover { background: var(--accent-hover); transform: translateY(-2px); }
.promo__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.promo__visual img { width: 100%; height: 100%; object-fit: cover; }


/* ═══════════════════════════════════════════════════════
   WHY HOT
   ═══════════════════════════════════════════════════════ */
.why { padding: var(--section-y) 0; }
.why__container {
  width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start;
}
.why__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2; margin: 12px 0 16px;
}
.why__title em { font-style: italic; color: var(--misty-teal); }
.why__text { color: var(--text-muted); font-size: .95rem; line-height: 1.7; margin-bottom: 28px; }

.why__trust { display: flex; flex-direction: column; gap: 14px; }
.why__trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: .85rem; font-weight: 600;
  color: var(--mountain-blue);
}
.why__trust-item svg { flex-shrink: 0; color: var(--accent); }

.why__right { display: flex; flex-direction: column; gap: 16px; }
.why-card {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,35,50,.08);
}
.why-card__num {
  font-family: var(--font-display); font-size: 1.8rem;
  color: rgba(60,107,63,.3);
  line-height: 1;
  flex-shrink: 0;
}
.why-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 400; margin-bottom: 4px; }
.why-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }


/* ═══════════════════════════════════════════════════════
   WANDERLUST GALLERY
   ═══════════════════════════════════════════════════════ */
.gallery { padding: var(--section-y) 0; background: var(--bg-alt); }
.gallery__header {
  text-align: center;
  margin-bottom: 48px;
  width: var(--container); margin-left: auto; margin-right: auto;
  padding-top: 0;
}
.gallery__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.8rem); margin-top: 12px;
}
.gallery__mosaic {
  width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.gallery__item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.gallery__item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery__item:nth-child(3) { grid-column: 3; grid-row: 1; }
.gallery__item:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }
.gallery__item:nth-child(5) { grid-column: 4; grid-row: 1; }
.gallery__item:nth-child(6) { grid-column: 4; grid-row: 2; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__label {
  position: absolute; bottom: 12px; left: 12px;
  font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  color: #fff;
  padding: 4px 14px;
  background: rgba(26,35,50,.6);
  backdrop-filter: blur(8px);
  border-radius: 100px;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }


/* ═══════════════════════════════════════════════════════
   GIFT A TRIP — Full-width immersive section
   ═══════════════════════════════════════════════════════ */
.gift {
  padding: 0;
  background: linear-gradient(135deg, var(--deep-alpine) 0%, #1A3A2E 50%, var(--mountain-blue) 100%);
  position: relative;
  overflow: hidden;
}
.gift::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=1920&q=30') center/cover no-repeat;
  opacity: .08;
}
.gift__container {
  width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px;
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative; z-index: 1;
}

/* Card mockup */
.gift__card-mockup {
  perspective: 800px;
  display: flex; justify-content: center;
}
.gift__card-front {
  position: relative;
  width: 340px; height: 210px;
  background: linear-gradient(135deg, #243A2E, var(--mountain-blue));
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #fff;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,.35);
  transform: rotateY(-5deg) rotateX(3deg);
  transition: transform .5s var(--ease-out);
}
.gift__card-front:hover { transform: rotateY(0) rotateX(0); }

.gift__card-shine {
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,.06) 38%,
    rgba(255,255,255,.12) 40%,
    rgba(255,255,255,.06) 42%,
    transparent 50%
  );
  animation: cardShine 4s ease-in-out infinite;
}
@keyframes cardShine {
  0%,100% { transform: translateX(-100%) rotate(0); }
  50% { transform: translateX(100%) rotate(0); }
}

.gift__card-tag {
  font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  color: var(--accent);
}
.gift__card-heading {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
  line-height: 1.3;
}
.gift__card-from { font-size: .75rem; color: rgba(255,255,255,.5); }
.gift__card-from em { color: rgba(255,255,255,.8); font-style: normal; }
.gift__card-amount {
  font-family: var(--font-display); font-size: 1.3rem;
  color: var(--accent);
}
.gift__card-brand {
  font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.3);
}

/* Content side */
.gift__content { color: #fff; }
.gift__content .tag {
  background: rgba(255,255,255,.1);
  color: var(--accent);
}
.gift__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 12px 0 16px; color: #fff;
}
.gift__title em { font-style: italic; color: var(--accent); }
.gift__text {
  color: rgba(255,255,255,.65); font-size: .95rem; line-height: 1.7; margin-bottom: 28px;
}

/* Pre-made gift packages */
.gift__packages {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 28px;
}
.gift__pkg {
  padding: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all .3s var(--ease-out);
  cursor: pointer;
}
.gift__pkg:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.gift__pkg-amount {
  font-family: var(--font-display); font-size: 1.3rem;
  color: var(--accent);
  display: block; margin-bottom: 4px;
}
.gift__pkg-label {
  font-size: .7rem; font-weight: 500; text-transform: uppercase; letter-spacing: .06em;
  color: rgba(255,255,255,.5);
}

.gift__features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.gift__feature {
  display: flex; align-items: center; gap: 12px;
  font-size: .88rem; color: rgba(255,255,255,.7);
}
.gift__feature svg { flex-shrink: 0; color: var(--accent); }

.gift__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: var(--accent); color: #fff;
  font-weight: 600; font-size: .9rem;
  border-radius: var(--radius-xl);
  transition: background .3s, transform .3s;
}
.gift__btn:hover { background: var(--accent-hover); transform: translateY(-2px); }


/* ═══════════════════════════════════════════════════════
   OUR STORY
   ═══════════════════════════════════════════════════════ */
.story { padding: var(--section-y) 0; background: var(--bg-alt); }
.story__container {
  width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.story__image { border-radius: var(--radius-lg); overflow: hidden; }
.story__image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.story__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 12px 0 16px; line-height: 1.2;
}
.story__title em { font-style: italic; color: var(--misty-teal); }
.story__text {
  color: var(--text-muted); font-size: .95rem; line-height: 1.7; margin-bottom: 16px;
}
.story__quote {
  position: relative;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  padding: 20px 0 0 24px;
  border-left: 3px solid var(--accent);
  margin-top: 24px;
  line-height: 1.6;
}
.story__quote cite {
  display: block; margin-top: 12px;
  font-family: var(--font-body); font-style: normal;
  font-size: .8rem; color: var(--text-muted); font-weight: 500;
}


/* ═══════════════════════════════════════════════════════
   MISSION & VISION
   ═══════════════════════════════════════════════════════ */
.mission { padding: var(--section-y) 0; background: var(--deep-alpine); }
.mission__container {
  width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.mission__card {
  padding: 48px 40px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
}
.mission__card p {
  font-size: 1.05rem; line-height: 1.7;
  color: rgba(255,255,255,.7);
  margin-top: 16px;
}


/* ═══════════════════════════════════════════════════════
   TESTIMONIAL
   ═══════════════════════════════════════════════════════ */
.testimonial { padding: var(--section-y) 0; }
.testimonial__container {
  width: min(90%, 800px); margin: 0 auto;
  text-align: center;
  position: relative;
}
.testimonial__quote-icon { color: var(--accent); margin-bottom: 24px; }
.testimonial__text {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.6;
  margin-bottom: 24px;
}
.testimonial__meta {
  display: flex; flex-direction: column; gap: 8px; align-items: center;
}
.testimonial__meta span { font-size: .85rem; font-weight: 600; }
.testimonial__google {
  font-size: .8rem; color: var(--mountain-blue);
  transition: color .3s;
}
.testimonial__google:hover { color: var(--accent); }


/* ═══════════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════════ */
.blog { padding: var(--section-y) 0; background: var(--bg-alt); }
.blog__container { width: var(--container); margin: 0 auto; }
.blog__header { text-align: center; margin-bottom: 48px; }
.blog__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.8rem); margin-top: 12px;
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(26,35,50,.08);
}
.blog-card__img {
  aspect-ratio: 16/10; overflow: hidden;
}
.blog-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 20px; }
.blog-card__tag {
  display: inline-block;
  font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  padding: 3px 10px;
  background: rgba(60,107,63,.1); color: var(--alpine-green);
  border-radius: 100px;
  margin-bottom: 10px;
}
.blog-card__body h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 400;
  margin-bottom: 12px; line-height: 1.4;
}
.blog-card__cta {
  font-size: .8rem; font-weight: 600; color: var(--mountain-blue);
  transition: color .3s;
}
.blog-card:hover .blog-card__cta { color: var(--accent); }
.blog__cta { text-align: center; margin-top: 40px; }


/* ═══════════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════════ */
.newsletter { padding: var(--section-y) 0; }
.newsletter__container {
  width: min(90%, 580px); margin: 0 auto;
  text-align: center;
}
.newsletter__icon { color: var(--mountain-blue); margin-bottom: 20px; }
.newsletter__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px;
}
.newsletter__text { color: var(--text-muted); font-size: .9rem; margin-bottom: 28px; }
.newsletter__form {
  display: flex; gap: 8px;
  max-width: 460px; margin: 0 auto;
}
.newsletter__input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  font-size: .9rem;
  outline: none;
  transition: border-color .3s;
}
.newsletter__input:focus { border-color: var(--accent); }
.newsletter__btn {
  padding: 14px 28px;
  background: var(--deep-alpine); color: #fff;
  font-weight: 600; font-size: .85rem;
  border-radius: var(--radius-xl);
  border: none;
  transition: background .3s, transform .3s;
}
.newsletter__btn:hover { background: #243347; transform: translateY(-1px); }
.newsletter__note {
  display: block; margin-top: 14px;
  font-size: .75rem; color: var(--text-muted);
}


/* ═══════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════ */
.contact { padding: var(--section-y) 0; background: var(--bg-alt); }
.contact__container {
  width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
}
.contact__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 12px 0 16px;
}
.contact__text { color: var(--text-muted); font-size: .95rem; line-height: 1.7; margin-bottom: 32px; }
.contact__details { display: flex; flex-direction: column; gap: 20px; }
.contact__detail h4 { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 4px; }
.contact__detail a, .contact__detail p { font-size: .9rem; }
.contact__detail a { transition: color .3s; }
.contact__detail a:hover { color: var(--accent); }

.contact__social { display: flex; gap: 16px; margin-top: 28px; }
.contact__social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all .3s;
}
.contact__social a:hover {
  background: var(--deep-alpine);
  border-color: var(--deep-alpine);
  color: #fff;
}

/* Form */
.contact__form {
  display: flex; flex-direction: column; gap: 20px;
  background: var(--surface);
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-muted);
}
.form-group input, .form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  outline: none;
  transition: border-color .3s;
  resize: vertical;
  font-size: .9rem;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  padding: 14px 28px;
  background: var(--deep-alpine); color: #fff;
  font-weight: 600; font-size: .9rem;
  border-radius: var(--radius-xl);
  border: none;
  transition: background .3s, transform .3s;
  align-self: flex-start;
}
.form-submit:hover { background: #243347; transform: translateY(-1px); }


/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer { background: var(--deep-alpine); padding: 64px 0 32px; }
.footer__container { width: var(--container); margin: 0 auto; }
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo {
  font-family: var(--font-display); font-size: 1.15rem; color: #fff;
  margin-bottom: 12px; display: block;
}
.footer__brand p { font-size: .85rem; color: rgba(255,255,255,.4); line-height: 1.7; }
.footer__col h4 {
  font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer__col a {
  display: block; font-size: .85rem; color: rgba(255,255,255,.55);
  padding: 4px 0;
  transition: color .3s;
}
.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: .8rem; color: rgba(255,255,255,.3);
}
.footer__credit a { color: var(--accent); transition: opacity .3s; }
.footer__credit a:hover { opacity: .7; }


/* ═══════════════════════════════════════════════════════
   WHATSAPP FAB + BTT
   ═══════════════════════════════════════════════════════ */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px;
  background: #25D366; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .35);
  transition: transform .3s var(--ease-spring);
  opacity: 0; pointer-events: none;
}
.wa-fab.visible { opacity: 1; pointer-events: auto; }
.wa-fab:hover { transform: scale(1.1); }

.btt {
  position: fixed; bottom: 96px; right: 28px; z-index: 900;
  width: 44px; height: 44px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: transform .3s var(--ease-spring), opacity .3s;
  opacity: 0; pointer-events: none;
}
.btt.visible { opacity: 1; pointer-events: auto; }
.btt:hover { transform: translateY(-3px); }


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__menu-btn { display: block; }

  .types__grid { grid-template-columns: repeat(3, 1fr); }
  .types__grid .type-card:nth-child(4),
  .types__grid .type-card:nth-child(5) { display: none; }

  .gallery__mosaic { grid-template-columns: repeat(3, 1fr); }

  .promo__container { grid-template-columns: 1fr; }
  .promo__visual { display: none; }
}

@media (max-width: 768px) {
  :root { --section-y: clamp(3.5rem, 8vw, 5rem); }

  .header__inner { padding: 14px 20px; }

  .hero__stats { gap: 16px; }
  .hero__stat-divider { display: none; }
  .hero__stat strong { font-size: 1.2rem; }
  .hero__search-bar { flex-direction: column; padding: 8px; border-radius: var(--radius-lg); }
  .hero__search-input { width: 100%; padding: 12px 16px; }
  .hero__search-btn { width: 100%; justify-content: center; }

  .destinations__grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card:nth-child(n+5) { display: none; }

  .how__steps { flex-direction: column; align-items: center; gap: 32px; }
  .how__step-connector { width: 1px; height: 40px; margin: 0; }

  .types__grid { grid-template-columns: repeat(2, 1fr); }
  .types__grid .type-card:nth-child(n+3) { display: none; }

  .packages__grid { grid-template-columns: 1fr 1fr; }
  .packages__grid .pkg-card:nth-child(n+7) { display: none; }

  .why__container { grid-template-columns: 1fr; gap: 40px; }
  .gallery__mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--wide { grid-column: span 2; }

  .gift__container { grid-template-columns: 1fr; gap: 40px; }
  .gift__visual { order: -1; }
  .gift__card-front { width: 300px; height: 185px; padding: 22px; }
  .gift__packages { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  .story__container { grid-template-columns: 1fr; gap: 32px; }
  .mission__container { grid-template-columns: 1fr; }
  .contact__container { grid-template-columns: 1fr; gap: 40px; }

  .blog__grid { grid-template-columns: 1fr; }
  .blog__grid .blog-card:nth-child(n+3) { display: none; }

  .newsletter__form { flex-direction: column; }

  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .destinations__grid { grid-template-columns: 1fr; }
  .dest-card { aspect-ratio: 16/10; }
  .dest-card:nth-child(n+4) { display: none; }

  .packages__grid { grid-template-columns: 1fr; }
  .packages__grid .pkg-card:nth-child(n+5) { display: none; }

  .gallery__mosaic { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 1; }
  .gallery__mosaic .gallery__item:nth-child(n+5) { display: none; }

  .footer__top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
