/* ═══════════════════════════════════════════
   ANVIR SAFARIS — CONSOLIDATED STYLESHEET
   Merges: main + itineraries + 6 trip-detail pages
═══════════════════════════════════════════ */

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

:root {
  --green-deep: #1b3a2d;
  --green-mid:  #2d5c45;
  --green-light:#e8f0eb;
  --gold:       #b8893a;
  --gold-light: #f5edd8;
  --cream:      #f8f4ee;
  --sand:       #ede5d6;
  --text-dark:  #0d0d0d;
  --text-mid:   #111111;
  --text-muted: #8a8a7a;
  --white:      #ffffff;
  --serif: 'Cormorant Garamond', 'Palatino Linotype', Palatino, Georgia, serif;
  --sans:  'Nunito Sans', 'Gill Sans', 'Trebuchet MS', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.85;
  overflow-x: hidden;
}

/* ── UTILITY ── */
.anvir-host { font-weight: 500; color: var(--gold); }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: transparent;
  transition: background 0.4s, padding 0.3s;
}
nav.scrolled { background: rgba(27,58,45,0.97); padding: 12px 48px; }

.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-wrap { width: 46px; height: 38px; overflow: hidden; flex-shrink: 0; }
.nav-logo-img {
  width: 46px; height: 46px;
  object-fit: cover; object-position: top center;
  mix-blend-mode: screen; display: block;
}
.nav-wordmark {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  letter-spacing: 0.1em; color: var(--white); text-transform: uppercase;
}
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.82); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-cta {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white); background: var(--gold);
  padding: 10px 20px; border: none; cursor: pointer;
  text-decoration: none; transition: background 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: #9a7030; }

/* Hamburger toggle (used on inner pages) */
.menu-toggle {
  display: none;
  background: none; border: none;
  color: var(--white); font-size: 30px;
  cursor: pointer; z-index: 101; margin-left: auto;
}

/* Animated ham-btn (trip-detail pages) */
.ham-btn {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px;
  cursor: pointer; background: none; border: none; padding: 8px; z-index: 200;
}
.ham-btn span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.92);
  transition: all 0.3s ease; transform-origin: center;
}
.ham-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Slide-in drawer */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  z-index: 150; opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 300px; max-width: 85vw;
  background: var(--green-deep); z-index: 160;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.drawer-logo {
  font-family: var(--serif); font-size: 16px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--white);
}
.drawer-close {
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 24px; cursor: pointer; line-height: 1; padding: 4px;
  transition: color 0.2s;
}
.drawer-close:hover { color: var(--white); }
.drawer-links {
  display: flex; flex-direction: column;
  padding: 32px 24px; gap: 0; flex: 1;
}
.drawer-links a {
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); text-decoration: none;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.drawer-links a:last-of-type { border-bottom: none; }
.drawer-links a:hover { color: var(--white); }
.drawer-cta-wrap { padding: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.drawer-cta {
  display: block; text-align: center;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); background: var(--gold);
  padding: 16px 24px; text-decoration: none;
}
.drawer-cta:hover { background: #9a7030; }

/* ═══════════════════════════════════════════
   SHARED LAYOUT
═══════════════════════════════════════════ */
section { padding: 96px 48px; }
.container { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(36px, 4vw, 56px);
  font-weight: 300; line-height: 1.15; color: var(--text-dark); margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--green-mid); }
.section-body {
  font-family: var(--sans); font-size: 16px; font-weight: 400;
  color: var(--text-mid); line-height: 1.9; max-width: 640px;
}
.divider { width: 48px; height: 1px; background: var(--gold); margin: 28px 0; }

/* ── BUTTONS ── */
.btn-primary {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); background: var(--gold);
  padding: 16px 36px; border: none; cursor: pointer;
  text-decoration: none; transition: background 0.2s; display: inline-block;
}
.btn-primary:hover { background: #9a7030; }
.btn-outline {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.82); background: transparent;
  padding: 16px 36px; border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer; text-decoration: none; transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { color: var(--white); border-color: rgba(255,255,255,0.7); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }






/* ═══════════════════════════════════════════
   HOME PAGE — HERO
═══════════════════════════════════════════ */
.hero {
  height: 100vh; min-height: 700px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background-image: url('../../images/tz.jpg');
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,24,16,0.72) 0%, rgba(27,58,45,0.58) 50%, rgba(10,24,16,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 860px; padding: 0 32px;
  animation: fadeUp 1.2s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 22px;
}
.hero-headline {
  font-family: var(--serif); font-size: clamp(54px, 8vw, 96px);
  font-weight: 300; line-height: 1.05; color: var(--white);
  margin-bottom: 28px; letter-spacing: -0.01em;
}
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto 44px;
  line-height: 1.8; letter-spacing: 0.02em;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); background: var(--gold);
  padding: 16px 36px; border: none; cursor: pointer;
  text-decoration: none; transition: background 0.2s;
}
.btn-primary:hover { background: #9a7030; }
.btn-outline {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.82); background: transparent;
  padding: 16px 36px; border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.btn-outline:hover { color: var(--white); border-color: rgba(255,255,255,0.7); }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.25); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }


/* ═══════════════════════════════════════════
   HOME PAGE — PROMISE BAND
═══════════════════════════════════════════ */
.promise-band { background: var(--green-deep); padding: 72px 48px; }
.promise-band .container { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.promise-quote {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300; font-style: italic; color: var(--white);
  line-height: 1.3; position: relative; padding-left: 28px;
}
.promise-quote::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 2px; height: calc(100% - 16px); background: var(--gold);
}
.promise-text {
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.88); line-height: 1.9;
}
.promise-text p + p { margin-top: 16px; }
.curious-phrase { font-style: italic; color: var(--gold); }

/* ═══════════════════════════════════════════
   HOME PAGE — DESTINATIONS
═══════════════════════════════════════════ */
.destinations { background: var(--sand); }
.dest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 56px; }
.dest-card { position: relative; overflow: hidden; min-height: 380px; display: flex; align-items: flex-end; }
.dest-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.dest-card:hover .dest-bg { transform: scale(1.04); }
.dest-card-1 .dest-bg { background-image: url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?w=900&q=80&auto=format&fit=crop'); }
.dest-card-2 .dest-bg { background-image: url('https://images.unsplash.com/photo-1504714146340-959ca07e1f38?w=900&q=80&auto=format&fit=crop'); }
.dest-content {
  position: relative; z-index: 2; padding: 36px 40px;
  background: linear-gradient(to top, rgba(10,25,16,0.94) 0%, rgba(10,25,16,0.4) 60%, transparent 100%);
  width: 100%;
}
.dest-name { font-family: var(--serif); font-size: 36px; font-weight: 300; color: var(--white); margin-bottom: 6px; }
.dest-tag {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.dest-desc { font-family: var(--sans); font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 320px; }

/* ═══════════════════════════════════════════
   HOME PAGE — VALUES
═══════════════════════════════════════════ */
.values { background: var(--cream); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 64px; }
.value-num { font-family: var(--serif); font-size: 64px; font-weight: 300; color: #b8893a; line-height: 1; margin-bottom: 16px; }
/*rgba(184, 137, 58, 0.18);*/
.value-name { font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--green-deep); margin-bottom: 6px; }
.value-rule { width: 32px; height: 1px; background: var(--gold); margin: 12px 0 16px; }
.value-body { font-family: var(--sans); font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.85; }
.value-line { font-family: var(--serif); font-size: 15px; font-style: italic; color: var(--green-mid); margin-top: 16px; }

/* ═══════════════════════════════════════════
   HOME PAGE — PERMISSION
═══════════════════════════════════════════ */
.permission { background: var(--gold-light); padding: 80px 48px; }
.permission .container { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.perm-quote { font-family: var(--serif); font-size: clamp(24px, 2.8vw, 38px); font-weight: 300; line-height: 1.4; color: var(--green-deep); }
.perm-quote em { font-style: italic; color: var(--gold); }
.perm-body { font-family: var(--sans); font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.9; }
.perm-body p + p { margin-top: 16px; }

/* ═══════════════════════════════════════════
   HOME PAGE — PROCESS
═══════════════════════════════════════════ */
.process { background: var(--green-light); }
.process-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; margin-top: 56px; }
.process-intro .section-body { max-width: 100%; }
.process-highlight-label {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.process-steps { display: flex; flex-direction: column; }
.process-step { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid rgba(27,58,45,0.12); }
.process-step:last-child { border-bottom: none; }
.step-number { font-family: var(--serif); font-size: 36px; font-weight: 300; color: var(--gold); opacity: 0.6; line-height: 1; }
.step-title { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--green-deep); margin-bottom: 6px; }
.step-body { font-family: var(--sans); font-size: 15px; font-weight: 400; color: var(--text-mid); line-height: 1.85; }

/* ═══════════════════════════════════════════
   HOME PAGE — FEELINGS
═══════════════════════════════════════════ */
.feelings { background: var(--green-deep); }
.feelings .section-title { color: var(--white); }
.feelings .section-title em { color: var(--gold); }
.feelings .section-body { color: rgba(255,255,255,0.85); }
.feelings .divider { background: var(--gold); }
.feelings-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 56px; }
.feeling-cell { padding: 44px 40px; border: 1px solid rgba(255,255,255,0.06); transition: background 0.3s; }
.feeling-cell:hover { background: rgba(255,255,255,0.04); }
.feeling-icon { width: 36px; height: 36px; border-radius: 50%; margin-bottom: 20px; }
.feeling-name { font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--white); margin-bottom: 4px; }
.feeling-rule { width: 24px; height: 1px; margin: 12px 0 14px; }
.feeling-body { font-family: var(--sans); font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.85); line-height: 1.8; }

/* ═══════════════════════════════════════════
   HOME PAGE — OUR STORY / FOUNDERS
═══════════════════════════════════════════ */
.founders { background: var(--sand); }
.founders-grid { display: grid; grid-template-columns: 5fr 4fr; gap: 72px; align-items: start; }
.founders-text .section-body { max-width: 100%; }
.founders-text p + p { margin-top: 20px; }
.founders-card { background: var(--green-deep); padding: 40px 36px; margin-top: 4px; }
.fc-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.fc-stat { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.fc-stat:last-child { border-bottom: none; }
.fc-stat-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.fc-stat-value { font-family: var(--serif); font-size: 17px; font-weight: 300; color: var(--white); line-height: 1.4; }

/* ═══════════════════════════════════════════
   HOME PAGE — TESTIMONIAL SLIDER
═══════════════════════════════════════════ */
.testimonials { background: var(--cream); padding: 96px 48px; }
.slider-wrap { position: relative; overflow: hidden; margin-top: 56px; }
.slides { display: flex; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.slide { min-width: 100%; padding: 0 4px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.slide-stars { display: flex; gap: 4px; justify-content: center; margin-bottom: 20px; }
.star { color: var(--gold); font-size: 18px; }
.slide-quote {
  font-family: var(--serif); font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 300; font-style: italic; color: var(--green-deep);
  max-width: 800px; line-height: 1.6; margin-bottom: 28px;
}
.slide-attr { display: flex; align-items: center; gap: 12px; justify-content: center; }
.slide-name { font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); }
.slide-google {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  color: var(--text-muted); text-decoration: none;
  border: 0.5px solid rgba(0,0,0,0.15); padding: 4px 10px;
  border-radius: 4px; transition: border-color 0.2s;
}
.slide-google:hover { border-color: rgba(0,0,0,0.3); }
.google-g {
  width: 14px; height: 14px;
  background: linear-gradient(135deg, #4285F4 25%, #34A853 25% 50%, #FBBC05 50% 75%, #EA4335 75%);
  border-radius: 50%; display: inline-block; flex-shrink: 0;
}
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; }
.slider-prev, .slider-next {
  width: 38px; height: 38px; border: 0.5px solid var(--text-muted);
  background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--text-mid); font-size: 16px; transition: all 0.2s; font-family: var(--sans);
}
.slider-prev:hover, .slider-next:hover { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); }
.slider-dots { display: flex; gap: 8px; align-items: center; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(0,0,0,0.2); cursor: pointer; transition: all 0.2s; border: none; }
.dot.active { background: var(--gold); transform: scale(1.3); }

/* ═══════════════════════════════════════════
   HOME PAGE — GLOBAL CTA
═══════════════════════════════════════════ */
.cta-section { background: var(--green-deep); text-align: center; padding: 100px 48px; }
.cta-title { font-family: var(--serif); font-size: clamp(40px, 5vw, 72px); font-weight: 300; color: var(--white); margin-bottom: 20px; line-height: 1.15; }
.cta-title em { font-style: italic; color: var(--gold); }
.cta-body { font-family: var(--sans); font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.82); max-width: 500px; margin: 0 auto 48px; line-height: 1.8; }

/* ═══════════════════════════════════════════
   ITINERARIES PAGE — HERO BAND
═══════════════════════════════════════════ */
.itin-hero { height: 70vh; min-height: 480px; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.itin-hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1920&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center;
}
.itin-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,24,16,0.68) 0%, rgba(27,58,45,0.52) 50%, rgba(10,24,16,0.72) 100%);
}
.itin-hero-content { position: relative; z-index: 2; max-width: 740px; padding: 0 32px; }

.itin-band { background: var(--green-deep); padding: 64px 48px; }
.itin-band .container { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.itin-band-quote {
  font-family: var(--serif); font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 300; font-style: italic; color: var(--white);
  line-height: 1.4; padding-left: 22px; border-left: 2px solid var(--gold);
}
.itin-band-body { font-family: var(--sans); font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.85); line-height: 1.9; }
.itin-band-body p + p { margin-top: 14px; }

.custom-bridge { background: var(--sand); padding: 44px 48px; }
.custom-bridge .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.custom-bridge-text { font-family: var(--serif); font-size: clamp(19px, 2.2vw, 26px); font-weight: 300; color: var(--green-deep); line-height: 1.4; }

/* ═══════════════════════════════════════════
   ITINERARIES PAGE — TRIP CARDS GRID
═══════════════════════════════════════════ */
.trips-section { background: var(--cream); padding: 80px 48px; }
.trips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 26px; margin-top: 48px; }

.trip-card {
  background: var(--white); border: 0.5px solid rgba(0,0,0,0.1);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
}
.trip-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.trip-card-img { height: 230px; position: relative; overflow: hidden; }
.trip-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.trip-card:hover .trip-card-img img { transform: scale(1.04); }
.trip-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--green-deep); color: var(--white);
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; padding: 5px 12px;
}
.trip-card-avatar { position: absolute; bottom: 14px; left: 14px; font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.11em; text-transform: uppercase; padding: 4px 10px; }
.trip-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.trip-card-dest { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.trip-card-name { font-family: var(--serif); font-size: 24px; font-weight: 300; color: var(--green-deep); margin-bottom: 4px; }
.trip-card-tagline { font-family: var(--sans); font-size: 12px; font-weight: 300; color: var(--text-muted); margin-bottom: 12px; font-style: italic; }
.trip-card-parks { font-family: var(--sans); font-size: 12px; font-weight: 300; color: var(--text-mid); margin-bottom: 14px; padding-bottom: 14px; border-bottom: 0.5px solid rgba(0,0,0,0.08); }
.trip-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.trip-card-price { font-family: var(--serif); font-size: 20px; font-weight: 300; color: var(--green-deep); }
.trip-card-price span { font-family: var(--sans); font-size: 10px; font-weight: 300; color: var(--text-muted); display: block; letter-spacing: 0.05em; }
.trip-card-cta {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white); background: var(--gold); padding: 10px 18px;
  text-decoration: none; transition: background 0.2s;
}
.trip-card-cta:hover { background: #9a7030; }

/* ═══════════════════════════════════════════
   ITINERARIES PAGE — NOELA SECTION
═══════════════════════════════════════════ */
.noela-section { background: var(--sand); padding: 80px 48px; }
.noela-section .container { display: flex; align-items: flex-start; gap: 48px; }
.noela-photo { background: var(--green-light); width: 280px; height: 340px; flex-shrink: 0; overflow: hidden; position: relative; border-radius: 2px; }
.noela-body {}
.noela-quote { font-family: var(--serif); font-size: clamp(22px, 2.8vw, 36px); font-weight: 300; font-style: italic; color: var(--green-deep); line-height: 1.4; margin-bottom: 20px; }
.noela-text { font-family: var(--sans); font-size: 16px; font-weight: 400; color: var(--text-mid); line-height: 1.9; margin-bottom: 28px; }
.noela-personal {
  font-family: var(--serif); font-size: 17px; font-weight: 300; font-style: italic;
  color: var(--green-mid); line-height: 1.7; margin-top: 16px; margin-bottom: 28px;
  padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.08);
}

/* ═══════════════════════════════════════════
   TRIP DETAIL PAGES — HERO (bottom-anchored)
═══════════════════════════════════════════ */
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
/* Note: .hero on detail pages uses flex-direction:column + justify-content:flex-end */
/* The shared .hero rule above covers height/min-height.
   Detail pages override display direction via inline or page-specific rules.
   We add the detail-page variant as a modifier class if needed:        */
.hero--bottom {
  display: flex; flex-direction: column; justify-content: flex-end;
  height: 88vh; min-height: 580px;
}

.back-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 20px; transition: color 0.2s;
}
.back-link:hover { color: var(--white); }
.hero-title {
  font-family: var(--serif); font-size: clamp(42px, 6vw, 80px);
  font-weight: 300; color: var(--white); line-height: 1.04; margin-bottom: 14px;
}
.hero-tagline { font-family: var(--sans); font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.82); font-style: italic; }

/* ── STATS BAR ── */
.stats-bar { background: var(--green-deep); padding: 22px 64px; }
.stats-inner { display: flex; flex-wrap: wrap; gap: 0; }
.stat-item { padding: 8px 28px 8px 0; border-right: 1px solid rgba(255,255,255,0.1); margin-right: 28px; }
.stat-item:last-child { border-right: none; margin-right: 0; }
.stat-label { font-family: var(--sans); font-size: 9px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.42); margin-bottom: 3px; }
.stat-value { font-family: var(--serif); font-size: 16px; font-weight: 300; color: var(--white); }
.stat-value.gold { color: var(--gold); }

/* ── INTRO HOOK ── */
.intro-hook { background: var(--cream); padding: 72px 64px; }
.intro-hook-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.intro-hook-left { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.intro-hook-right {}
.intro-sentence {
  font-family: var(--serif); font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 300; font-style: italic; color: var(--green-deep);
  line-height: 1.5; border-left: 2px solid var(--gold); padding-left: 24px; margin: 0;
}
.itin-intro { font-family: var(--sans); font-size: 15px; font-weight: 400; color: var(--text-mid); line-height: 1.85; max-width: 680px; margin-bottom: 40px; }

/* ── HIGHLIGHTS ── */
.highlights { background: var(--sand); padding: 72px 64px; }
.hl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 40px; }
.hl-left {}
.hl-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.hl-item { display: flex; gap: 16px; align-items: flex-start; }
.hl-star { color: var(--gold); font-size: 14px; flex-shrink: 0; margin-top: 4px; }
.hl-text { font-family: var(--sans); font-size: 15px; font-weight: 400; color: var(--text-mid); line-height: 1.7; }
.hl-text strong { font-weight: 600; color: var(--text-dark); }
.hl-right { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; gap: 12px; align-items: start; }
.hl-img-tall { grid-row: 1/4; grid-column: 1; overflow: hidden; aspect-ratio: 3/5; }
.hl-img-tall img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.hl-img-tall:hover img { transform: scale(1.04); }
.hl-img-sm { overflow: hidden; aspect-ratio: 3/2; }
.hl-img-sm img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.hl-img-sm:hover img { transform: scale(1.04); }

/* ── ITINERARY ACCORDION ── */
.itinerary-section { background: var(--cream); padding: 72px 64px; }
.day-item { border-bottom: 0.5px solid rgba(0,0,0,0.1); }
.day-header { display: flex; align-items: baseline; gap: 24px; padding: 20px 0; cursor: pointer; user-select: none; }
.day-header:hover .day-title-text { color: var(--gold); }
.day-period { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); width: 80px; flex-shrink: 0; }
.day-title-text { font-family: var(--serif); font-size: clamp(18px, 2vw, 24px); font-weight: 400; color: var(--green-deep); flex: 1; transition: color 0.2s; }
.day-arrow { font-size: 10px; color: var(--text-muted); transition: transform 0.3s; width: 16px; text-align: center; flex-shrink: 0; }
.day-item.open .day-arrow { transform: rotate(180deg); }
.day-body { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.day-item.open .day-body { max-height: 600px; }
.day-body-inner { padding: 4px 0 28px 104px; }
.day-meta-row { display: flex; gap: 16px; margin-bottom: 14px; flex-wrap: wrap; }
.day-meta-pill { font-family: var(--sans); font-size: 11px; font-weight: 400; color: var(--green-mid); background: var(--green-light); padding: 4px 12px; border-radius: 2px; }
.day-meta-label { font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-mid); display: block; margin-bottom: 2px; }
.day-narrative { font-family: var(--sans); font-size: 15px; font-weight: 400; color: var(--text-mid); line-height: 1.9; }
.day-highlight {
  font-family: var(--serif); font-size: 16px; font-weight: 300; font-style: italic;
  color: var(--green-deep); margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(0,0,0,0.08);
}

/* ── INCLUSIONS ── */
.inclusions-section { background: var(--sand); padding: 72px 64px; }
.inc-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-ask {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white); background: var(--gold); padding: 12px 22px;
  text-decoration: none; white-space: nowrap; transition: background 0.2s;
  flex-shrink: 0; align-self: center;
}
.btn-ask:hover { background: #9a7030; }
.inc-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.inc-col-list { list-style: none; padding: 0; margin: 0; }
.inc-col-list li {
  font-family: var(--sans); font-size: 14px; font-weight: 400; color: var(--text-mid);
  line-height: 1.6; padding: 12px 0; border-bottom: 0.5px solid rgba(0,0,0,0.08);
  display: flex; gap: 12px; align-items: flex-start;
}
.inc-col-list li::before { content: "•"; color: var(--gold); font-size: 16px; flex-shrink: 0; line-height: 1.4; margin-top: 1px; }

/* ── PRICING ── */
.pricing-section { background: var(--white); padding: 72px 64px; }
.price-card { background: var(--cream); border: 0.5px solid rgba(0,0,0,0.1); padding: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 32px; }
.price-amount { font-family: var(--serif); font-size: clamp(44px, 5vw, 68px); font-weight: 300; color: var(--green-deep); line-height: 1; }
.price-pp { font-family: var(--sans); font-size: 11px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; }
.price-note { font-family: var(--sans); font-size: 14px; font-weight: 400; color: var(--text-mid); line-height: 1.8; }
.price-note + .price-note { margin-top: 14px; }

/* ── PERFECT FOR ── */
.perfect-for { background: var(--gold-light); padding: 72px 64px; }
.pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 36px; }
.pf-card { background: var(--white); padding: 28px 24px; border-top: 2px solid var(--gold); }
.pf-num { font-family: var(--serif); font-size: 36px; font-weight: 300; color: rgba(184,137,58,0.22); margin-bottom: 10px; line-height: 1; }
.pf-title { font-family: var(--serif); font-size: 19px; font-weight: 400; color: var(--green-deep); margin-bottom: 10px; }
.pf-body { font-family: var(--sans); font-size: 14px; font-weight: 400; color: var(--text-mid); line-height: 1.75; }

/* ── FINAL CTA (trip detail pages) ── */
.final-cta { background: var(--green-deep); padding: 96px 48px; text-align: center; }
.fc-title { font-family: var(--serif); font-size: clamp(34px, 5vw, 62px); font-weight: 300; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.fc-title em { font-style: italic; color: var(--gold); }
.fc-body { font-family: var(--sans); font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.85); max-width: 580px; margin: 0 auto 44px; line-height: 1.85; }

/* ═══════════════════════════════════════════
   HOTEL SLIDER
═══════════════════════════════════════════ */
.hotels-section { background: var(--white); padding: 72px 64px; }
.hotels-section h2 { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 44px); font-weight: 300; color: var(--text-dark); margin-bottom: 8px; }
.hotels-section .hs-sub { font-family: var(--sans); font-size: 14px; font-weight: 400; color: var(--text-muted); margin-bottom: 36px; line-height: 1.6; }
.hs-wrap { position: relative; }
.hs-track { display: flex; gap: 20px; overflow: hidden; scroll-behavior: smooth; }
.hs-slide { flex: 0 0 380px; position: relative; height: 300px; overflow: hidden; border-radius: 2px; flex-shrink: 0; }
.hs-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.hs-slide:hover img { transform: scale(1.04); }
.hs-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,24,16,0.82) 0%, transparent 100%);
  padding: 36px 20px 20px;
}
.hs-box { display: inline-block; background: rgba(27,58,45,0.88); padding: 12px 16px; max-width: 240px; }
.hs-loc { font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; display: block; }
.hs-name { font-family: var(--serif); font-size: 17px; font-weight: 300; color: var(--white); line-height: 1.2; text-decoration: none; display: block; transition: color 0.2s; }
.hs-name:hover { color: var(--gold); }
.hs-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; background: var(--white); border: 0.5px solid rgba(0,0,0,0.15);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: all 0.2s; font-size: 16px; color: var(--green-deep);
  user-select: none; font-family: var(--sans);
}
.hs-arrow:hover { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); }
.hs-prev { left: -22px; }
.hs-next { right: -22px; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer{
  background:#0f2318;
  padding:70px 48px 30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:50px;
  max-width:1200px;
  margin:0 auto;
}

.footer-col{
  display:flex;
  flex-direction:column;
}

.footer-logo{
  font-family:var(--serif);
  font-size:20px;
  font-weight:400;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--white);
}

.footer-tagline{
  font-family:var(--sans);
  font-size:11px;
  font-weight:300;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold);
  margin-top:6px;
  margin-bottom:18px;
}

.footer-text{
  font-size:14px;
  line-height:1.9;
  color:rgba(255,255,255,.62);
  max-width:280px;
}

.footer-heading{
  font-family:var(--sans);
  font-size:11px;
  font-weight:600;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:22px;
}

.footer-links{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.footer-links a{
  font-size:12px;
  font-weight:300;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.58);
  text-decoration:none;
  transition:color .2s ease;
}

.footer-links a:hover{
  color:var(--white);
}

.footer-contact-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:16px;
}

.footer-contact-item i{
  color:var(--gold);
  font-size:13px;
  margin-top:5px;
}

.footer-contact-item a{
  color:rgba(255,255,255,.68);
  text-decoration:none;
  font-size:14px;
  line-height:1.7;
  transition:color .2s ease;
}

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

.footer-socials{
  display:flex;
  gap:14px;
  margin-top:6px;
}

.footer-socials a{
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.7);
  text-decoration:none;
  transition:all .25s ease;
}

.footer-socials a:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:var(--white);
  transform:translateY(-2px);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:50px;
  padding-top:24px;
  text-align:center;
  font-size:12px;
  color:rgba(255,255,255,.35);
  letter-spacing:.05em;
}

/* Responsive */
@media(max-width:991px){
  .footer-grid{
    grid-template-columns:repeat(2,1fr);
    gap:40px;
  }
}

@media(max-width:767px){

  .footer{
    padding:55px 20px 25px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .footer-bottom{
    margin-top:40px;
    text-align:left;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (768px – 1099px)
═══════════════════════════════════════════ */
@media (max-width: 1099px) {
  nav { padding: 16px 32px; }
  nav.scrolled { padding: 12px 32px; }
  section { padding: 72px 32px; }
  .container { max-width: 100%; padding: 0 8px; }

  /* Home sections */
  .promise-band { padding: 56px 32px; }
  .promise-band .container { grid-template-columns: 1fr; gap: 36px; }
  .destinations .dest-grid { gap: 2px; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .permission { padding: 64px 32px; }
  .permission .container { grid-template-columns: 1fr; gap: 36px; }
  .process-grid { grid-template-columns: 1fr; gap: 36px; }
  .feelings-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .founders-grid { grid-template-columns: 1fr; gap: 40px; }
  .founders-card { margin-top: 0; }

  /* Itineraries page */
  .itin-band .container { grid-template-columns: 1fr; gap: 36px; }
  .custom-bridge { padding: 36px 32px; }
  .trips-section { padding: 64px 32px; }
  .trips-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .noela-section { padding: 64px 32px; }
  .noela-section .container { gap: 36px; }
  .noela-photo { width: 220px; height: 280px; }

  /* Trip detail pages */
  .hero-content { padding: 40px 40px; }
  .stats-bar { padding: 20px 40px; }
  .intro-hook, .highlights, .itinerary-section,
  .inclusions-section, .pricing-section, .perfect-for { padding-left: 40px; padding-right: 40px; }
  .hotels-section { padding: 56px 40px; }
  .price-card { grid-template-columns: 1fr; gap: 28px; }
  .pf-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hl-grid { gap: 32px; }

  .hs-prev { left: -16px; }
  .hs-next { right: -16px; }

  .cta-section { padding: 72px 32px; }
  footer { padding: 36px 32px; flex-direction: column; align-items: flex-start; gap: 28px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 767px)
═══════════════════════════════════════════ */
@media (max-width: 767px) {
  /* Nav */
  nav { padding: 14px 20px; position: relative; align-items: center; }
  nav.scrolled { padding: 10px 20px; }
  .nav-wordmark { font-size: 15px; }
  .nav-logo-wrap { width: 36px; height: 30px; }
  .nav-logo-img { width: 36px; height: 36px; }

  /* Mobile nav variants */
  /* Simple toggle (home/itineraries) */
  .menu-toggle {
    display: block !important; visibility: visible !important; opacity: 1 !important;
    position: relative !important; z-index: 9999 !important;
    margin-left: auto !important; background: none !important; border: none !important;
    color: #ffffff !important; font-size: 32px !important; cursor: pointer !important;
  }
  .nav-links {
    display: none !important;
    position: absolute; top: 70px; left: 0; width: 100%;
    background: #1b3a2d; flex-direction: column;
    padding: 20px; gap: 16px; list-style: none;
  }
  .nav-links.active { display: flex !important; flex-direction: column !important; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; width: 100%; color: #fff; font-size: 14px; text-decoration: none; }

  /* Ham-btn (trip detail) */
  .ham-btn { display: flex; }
  /* On pages using ham-btn, also hide standard links/cta */
  .nav-cta { display: none !important; }

  section { padding: 56px 20px; }
  .container { max-width: 100%; }

  /* Home — hero */
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 20px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 0.18em; margin-bottom: 14px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary, .btn-outline { width: 100%; max-width: 300px; text-align: center; padding: 16px 20px; }

  /* Home — promise */
  .promise-band { padding: 48px 20px; }
  .promise-band .container { grid-template-columns: 1fr; gap: 28px; }
  .promise-quote { font-size: clamp(22px, 6vw, 30px); padding-left: 16px; }

  /* Home — destinations */
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card { min-height: 300px; }

  /* Home — values */
  .values-grid { grid-template-columns: 1fr; gap: 40px; }
  .value-num { font-size: 48px; }

  /* Home — permission */
  .permission { padding: 48px 20px; }
  .permission .container { grid-template-columns: 1fr; gap: 28px; }

  /* Home — process */
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-intro { padding-right: 0; }
  .process-step { grid-template-columns: 44px 1fr; gap: 16px; padding: 20px 0; }

  /* Home — feelings */
  .feelings-grid { grid-template-columns: 1fr; }
  .feeling-cell { padding: 32px 20px; }

  /* Home — founders */
  .founders-grid { grid-template-columns: 1fr; gap: 32px; }
  .founders-card { padding: 28px 22px; }

  /* Home — testimonials */
  .testimonials { padding: 56px 20px; }

  /* Home — CTA */
  .cta-section { padding: 64px 20px; }
  .cta-section div[style] { flex-direction: column; align-items: center; }

  /* Itineraries page */
  .itin-hero { height: 55vh; min-height: 360px; }
  .itin-hero-content { padding: 0 20px; }
  .itin-band { padding: 48px 20px; }
  .itin-band .container { grid-template-columns: 1fr; gap: 28px; }
  .custom-bridge { padding: 32px 20px; }
  .custom-bridge .container { flex-direction: column; align-items: flex-start; gap: 20px; }
  .trips-section { padding: 48px 20px; }
  .trips-grid { grid-template-columns: 1fr; gap: 20px; }
  .noela-section { padding: 48px 20px; }
  .noela-section .container { flex-direction: column; gap: 28px; }
  .noela-photo { width: 100%; height: 280px; }

  /* Trip detail pages */
  nav.detail-page { background: rgba(27,58,45,0.97) !important; }
  .hero--bottom { min-height: 100svh; }
  .hero-content { padding: 28px 20px; }
  .stats-bar { padding: 16px 20px; }
  .stats-inner { flex-direction: column; gap: 0; }
  .stat-item { border-right: none; padding-right: 0; margin-right: 0; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-bottom: none; }
  .intro-hook, .highlights, .itinerary-section,
  .inclusions-section, .pricing-section, .perfect-for { padding: 48px 20px; }
  .intro-hook-grid { grid-template-columns: 1fr; gap: 32px; }
  .intro-sentence { font-size: 20px; padding-left: 16px; }
  .hl-grid { grid-template-columns: 1fr; }
  .hl-right { grid-template-columns: 1fr 1fr; }
  .inc-two-col { grid-template-columns: 1fr; }
  .inc-header { align-items: flex-start; }
  .price-card { grid-template-columns: 1fr; padding: 28px 22px; }
  .pf-grid { grid-template-columns: 1fr; }
  .day-body-inner { padding: 4px 0 24px 20px; }
  .day-meta-row { gap: 8px; }
  .final-cta { padding: 64px 20px; }

  /* Hotel slider */
  .hotels-section { padding: 48px 20px; }
  .hs-slide { flex: 0 0 280px; height: 240px; }
  .hs-prev { left: -12px; }
  .hs-next { right: -12px; }
  .hs-arrow { width: 36px; height: 36px; font-size: 13px; }

  footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}

/* ── NOSCRIPT FALLBACK ── */
@media (prefers-reduced-motion: no-preference) {
  /* intentionally empty — keep animation classes active */
}
