/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #ffffff;
  --text: #0d0d0d;
  --text-muted: #7a7570;
  --text-light: #a09a94;
  --border: #e8e3dd;
  --surface: #f7f4f0;
  --btn-dark: #1a1510;
  --btn-dark-hover: #2c2416;
  --easy: #3d6b4f;
  --easy-bg: #edf5f0;
  --moderate: #8b6914;
  --moderate-bg: #fdf4e3;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --section-gap: 72px;
  --section-gap-mobile: 48px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */

.display-bold {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
}

.display-italic {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
}

.display-caps {
  letter-spacing: 0.05em;
}

/* ============================================
   LAYOUT HELPERS
   ============================================ */

.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-narrow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

/* Tighten specific section transitions */
.intro {
  padding-bottom: 24px;
}

.itinerary-section {
  padding-top: 40px;
}

.hosts-section {
  padding-bottom: 24px;
}

.gallery-section {
  padding-top: 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
}

.btn-light:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
}

.btn-dark {
  background: var(--btn-dark);
  color: #fff;
}

.btn-dark:hover {
  background: var(--btn-dark-hover);
}

.btn-full {
  width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  padding: 14px 32px;
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-logo span {
  font-style: italic;
  font-weight: 500;
}

.nav.scrolled .nav-logo {
  color: var(--text);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: rgba(255,255,255,0.15);
}

.nav.scrolled .nav-cta {
  border-color: var(--text);
  color: var(--text);
}

.nav.scrolled .nav-cta:hover {
  background: var(--text);
  color: #fff;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #2c3e2d;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.8;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 140px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-title em {
  font-style: italic;
  font-weight: 500;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 28px);
  font-style: italic;
  font-weight: 400;
  opacity: 0.92;
  margin-top: 4px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  flex-wrap: nowrap;
  justify-content: center;
  white-space: nowrap;
}

.meta-dot {
  opacity: 0.5;
}

.hero-content .btn {
  margin-top: 12px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.65;
}

.scroll-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: #fff;
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ============================================
   INTRO SECTION
   ============================================ */

.intro {
  overflow: hidden;
  padding-bottom: 24px !important;
}

.intro-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.intro-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}

.intro-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 520px;
}

.intro-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.intro-img-main {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

.intro-img-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.intro-img-stack img {
  aspect-ratio: 3/4;
  border-radius: 8px;
  background: var(--surface);
}

/* ============================================
   TABS (shared for itinerary + accommodation)
   ============================================ */

.tabs-wrapper {
  margin-bottom: 40px;
}

.tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  flex-shrink: 0;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.tab:hover {
  border-color: var(--text);
  color: var(--text);
}

.tab.active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

.tab-panels {
  position: relative;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ============================================
   DAILY EXPERIENCE (ITINERARY)
   ============================================ */

.itinerary-section {
  background: var(--bg);
  padding-top: 40px !important;
}

.day-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  animation: fadeSlideIn 0.4s ease;
}

.day-image {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}

.day-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.day-number {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-light);
  text-transform: uppercase;
}

.day-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.15;
}

.day-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.badge-easy {
  background: var(--easy-bg);
  color: var(--easy);
}

.badge-moderate {
  background: var(--moderate-bg);
  color: var(--moderate);
}

.badge-time {
  background: var(--surface);
  color: var(--text-muted);
}

.day-schedule {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.schedule-block {
  border-left: 2px solid var(--border);
  padding-left: 16px;
}

.schedule-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}

.schedule-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================================
   WHERE YOU'RE STAYING
   ============================================ */

.accommodation-section {
  background: var(--surface);
}

.accommodation-section .tabs {
  justify-content: center;
}

/* Day 4 image — shift down to show people not sky */
#day4 .day-image img {
  object-position: center 72%;
}

.accom-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  animation: fadeSlideIn 0.4s ease;
}

.accom-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.accom-img-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accom-img-wrap img {
  aspect-ratio: 3/4;
  border-radius: 10px;
  background: #d0ccc7;
}

.accom-img-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
}

.accom-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accom-night {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-light);
  text-transform: uppercase;
}

.accom-name {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  line-height: 1.2;
}

.accom-alt {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.accom-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-top: 4px;
}

.accom-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.accom-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.detail-icon {
  font-size: 15px;
  width: 22px;
  text-align: center;
}

/* ============================================
   HOSTS
   ============================================ */

.hosts-section {
  background: var(--bg);
  padding-bottom: 24px !important;
}

.hosts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.host-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.host-image-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}

.host-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.host-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.1;
}

.host-ig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.host-ig:hover {
  color: var(--text);
}

.ig-icon {
  display: flex;
  align-items: center;
}

.host-bio {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 4px;
  max-width: 480px;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery-section {
  background: var(--bg);
  overflow: hidden;
  padding-top: 40px !important;
  padding-bottom: 24px !important;
}

.gallery-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
  display: block;
}

.gallery-container {
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 24px;
  cursor: grab;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.gallery-slide {
  flex: 0 0 calc(85vw - 48px);
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4/5;
}

.gallery-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: all 0.2s ease;
  z-index: 10;
}

.gallery-btn:hover {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

.gallery-prev { left: 20px; }
.gallery-next { right: 20px; }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  padding: 0 24px;
}

.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  padding: 0;
}

.gallery-dot.active {
  background: var(--text);
  width: 20px;
  border-radius: 3px;
}

/* ============================================
   WHAT'S INCLUDED
   ============================================ */

.included-section {
  background: var(--bg);
  padding-top: 40px !important;
}

.included-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.included-left h2 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 16px;
}

.included-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 280px;
  margin-bottom: 24px;
}

.included-arrows {
  font-size: 24px;
  color: var(--border);
  letter-spacing: 4px;
}

.included-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.included-col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

.included-col-title.not {
  color: var(--text-light);
}

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

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}

.check {
  color: var(--easy);
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.additional-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.additional-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.additional-icon {
  font-size: 20px;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.additional-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 3px;
}

.additional-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ============================================
   FAQ
   ============================================ */

.faq-section {
  background: var(--surface);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
}

.faq-question:hover {
  color: var(--text);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  transition: all 0.2s ease;
  color: var(--text-muted);
}

.faq-item.open .faq-icon {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ============================================
   APPLY SECTION
   ============================================ */

.apply-section {
  position: relative;
  padding: 80px 24px;
}

.apply-bg {
  position: absolute;
  inset: 0;
  background-color: #1a2510;
  background-size: cover;
  background-position: center;
}

.apply-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 8, 0.82);
}

.apply-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.apply-header {
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.apply-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}

.apply-price {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 80px);
  font-weight: 700;
  line-height: 1;
}

.apply-price span {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  font-style: italic;
  opacity: 0.75;
  display: block;
  margin-top: 4px;
}

.apply-dates {
  font-size: 13px;
  letter-spacing: 0.1em;
  opacity: 0.65;
  text-transform: uppercase;
}

/* FORM */
.apply-form-wrap {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.apply-form-wrap iframe {
  border-radius: 8px;
}

.placeholder-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.apply-note {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
}

.apply-deposit-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--text);
  color: #fff;
  padding: 48px 24px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-logo span {
  font-style: italic;
  font-weight: 500;
}

.footer-tagline {
  font-size: 12px;
  letter-spacing: 0.1em;
  opacity: 0.45;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  opacity: 0.6;
  margin-top: 4px;
}

.footer-links a {
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TABLET (600px+)
   ============================================ */

@media (min-width: 600px) {
  .intro-images {
    grid-template-columns: 1.6fr 1fr;
  }

  .intro-img-main {
    grid-row: 1 / 3;
    aspect-ratio: auto;
    min-height: 400px;
  }

  .intro-img-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .intro-img-stack img {
    flex: 1;
    aspect-ratio: auto;
    min-height: 0;
  }

  .hosts-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .host-image-wrap {
    aspect-ratio: 3/4;
  }

  .gallery-slide {
    flex: 0 0 calc(50vw - 24px);
  }

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

  .included-right {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   DESKTOP (900px+)
   ============================================ */

@media (min-width: 900px) {
  :root {
    --section-gap: 96px;
  }

  .section-header {
    margin-bottom: 56px;
  }

  /* Intro — text top-aligns with image top */
  .intro-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  /* Images: big image left, 2 small images right — all same total height */
  .intro-images {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 12px;
    height: 500px;
  }

  .intro-img-main {
    height: 100%;
    width: 100%;
    aspect-ratio: auto;
    border-radius: 8px;
    overflow: hidden;
    grid-row: unset;
  }

  .intro-img-stack {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    grid-column: unset;
    grid-row: unset;
  }

  .intro-img-stack img {
    flex: 1;
    min-height: 0;
    width: 100%;
    aspect-ratio: auto;
    border-radius: 8px;
  }

  /* Day layout */
  .day-layout {
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .day-image {
    aspect-ratio: 4/3;
    position: sticky;
    top: 80px;
  }

  /* Centre itinerary tabs on desktop */
  .itinerary-section .tabs {
    justify-content: center;
  }

  /* Accommodation layout */
  .accom-layout {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }

  .accom-images {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .accom-img-wrap img {
    aspect-ratio: 3/4;
  }

  /* Host cards — vertical stack so images are generous */
  .host-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .host-image-wrap {
    aspect-ratio: 5/4;
  }

  .host-bio {
    max-width: 100%;
  }

  /* Ensure Sam's bio starts at same height as Elias & Kajsa's */
  .host-name {
    min-height: 2.4em;
    display: flex;
    align-items: flex-start;
  }

  /* Gallery — smaller slides so more are visible at once */
  .gallery-track {
    padding: 0 48px;
    gap: 12px;
  }

  .gallery-slide {
    flex: 0 0 calc(24vw - 24px);
    max-width: 340px;
  }

  .gallery-btn {
    display: flex;
  }

  /* Included */
  .included-inner {
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
  }

  .included-right {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  /* Apply form */
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   LARGE DESKTOP (1200px+)
   ============================================ */

@media (min-width: 1200px) {
  .day-layout {
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
  }

  .gallery-slide {
    flex: 0 0 calc(28vw - 32px);
  }
}
