/* ============================================
   @FONT-FACE — Bootzy TM + CC-SoftEdge
   ============================================ */

@font-face {
  font-family: 'Bootzy TM';
  src: local('Bootzy TM'), local('BootzyTM'),
       url('fonts/BootzyTM.woff2') format('woff2'),
       url('fonts/BootzyTM.woff') format('woff'),
       url('fonts/BootzyTM.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CC-SoftEdge';
  src: url('fonts/CC-SoftEdge.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

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

:root {
  --red: #C4372A;
  --cream: #F2EDE4;
  --black: #1A1A1A;
  --text: #1A1A1A;
  --text-muted: #5a5248;
  --text-light: #9a9490;
  --border: #ccc7be;
  --surface: #e8e2d8;
  --font-display: 'Bootzy TM', serif;
  --font-body: 'CC-SoftEdge', Helvetica, Arial, sans-serif;
  --max-width: 1200px;
  --section-gap: 72px;
  --section-gap-mobile: 48px;
}

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

body {
  background-color: var(--cream);
  background-image: url('images/texture.jpg');
  background-repeat: repeat;
  background-blend-mode: screen;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

/* ============================================
   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);
}

.intro {
  padding-bottom: 24px;
}

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

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

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

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

.section-title-img {
  display: block;
  margin: 0 auto;
  width: auto;
  max-height: clamp(80px, 12vw, 140px);
  height: auto;
}

.itinerary-section .section-title-img {
  max-height: clamp(58px, 8.7vw, 101px);
}

.accommodation-section .section-title-img {
  max-height: clamp(92px, 13.8vw, 161px);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: normal;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

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

/* On red sections → white fill */
.btn-light {
  background: #fff;
  color: var(--red);
  border: 2px solid #fff;
}

.btn-light:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* On cream sections → red fill */
.btn-dark {
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
}

.btn-dark:hover {
  background: #a82e22;
  border-color: #a82e22;
}

.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, border-color 0.3s ease;
}

.nav.scrolled {
  background: var(--cream);
  padding: 14px 32px;
  border-bottom: 1px solid var(--border);
}

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

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

.nav-logo-img {
  display: block;
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.nav.scrolled .nav-logo-img {
  filter: brightness(0);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: #fff;
  white-space: nowrap;
  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: var(--red);
  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: rgba(0, 0, 0, 0.28);
}

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

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.82;
}

.hero-title {
  margin: 0;
}

.hero-title-img {
  display: block;
  width: clamp(220px, 50vw, 580px);
  height: auto;
}

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

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

.meta-dot {
  opacity: 0.5;
}

.hero-content .btn {
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.hero-content .btn:hover {
  background: rgba(255, 255, 255, 0.30);
  border-color: rgba(255, 255, 255, 0.7);
}

.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.6;
}

.scroll-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  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 {
  background-color: var(--cream);
  background-image: url('images/texture.jpg');
  background-repeat: repeat;
  background-blend-mode: screen;
  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 {
  margin-bottom: 24px;
}

.intro-heading-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 520px;
}

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

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

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

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

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

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

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

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

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

.tab {
  flex-shrink: 0;
  padding: 10px 22px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: all 0.2s ease;
}

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

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

.tab-panels {
  position: relative;
}

.tab-panel {
  display: none;
}

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

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

.itinerary-section {
  background-color: var(--cream);
  background-image: url('images/texture.jpg');
  background-repeat: repeat;
  background-blend-mode: screen;
  padding-top: 80px !important;
}

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

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

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

.day-number {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--red);
  text-transform: uppercase;
}

.day-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: normal;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.day-title-img {
  display: block;
  width: auto;
  max-height: clamp(53px, 7.5vw, 90px);
  height: auto;
}

.accom-title-img {
  display: block;
  width: auto;
  max-height: clamp(55px, 8vw, 100px);
  height: auto;
}

.host-name-img {
  display: block;
  width: auto;
  max-height: clamp(60px, 9vw, 110px);
  height: auto;
}

.included-title-img {
  display: block;
  width: auto;
  max-height: clamp(70px, 11vw, 130px);
  height: auto;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
}

.badge-easy,
.badge-moderate,
.badge-time {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}

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

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

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

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

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

.accommodation-section {
  background-color: var(--cream);
  background-image: url('images/texture.jpg');
  background-repeat: repeat;
  background-blend-mode: screen;
  padding-top: 54px;
}

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

#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;
  background: var(--surface);
}

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

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

.accom-night {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--red);
  text-transform: uppercase;
}

.accom-name {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: normal;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.accom-desc {
  font-size: 14px;
  line-height: 1.82;
  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: 14px;
  width: 22px;
  text-align: center;
}

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

.hosts-section {
  background-color: var(--cream);
  background-image: url('images/texture.jpg');
  background-repeat: repeat;
  background-blend-mode: screen;
  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;
  overflow: hidden;
  background: var(--surface);
  border-radius: 20px;
}

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

.host-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: normal;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.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.82;
  color: var(--text-muted);
  margin-top: 4px;
  max-width: 480px;
}

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

.gallery-section {
  background-color: var(--red);
  background-image: url('images/texture.jpg');
  background-repeat: repeat;
  background-blend-mode: screen;
  overflow: hidden;
  padding-top: 40px !important;
  padding-bottom: 48px !important;
}

.gallery-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  display: block;
}

.gallery-section .section-title-img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.gallery-container {
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 10px;
  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;
  overflow: hidden;
  background: rgba(0,0,0,0.15);
  aspect-ratio: 4/5;
  border-radius: 20px;
}

.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: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: background 0.2s ease;
  z-index: 10;
}

.gallery-btn:hover {
  background: #fff;
}

.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: rgba(255,255,255,0.3);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  padding: 0;
}

.gallery-dot.active {
  background: #fff;
  width: 20px;
}

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

.included-section {
  background-color: var(--cream);
  background-image: url('images/texture.jpg');
  background-repeat: repeat;
  background-blend-mode: screen;
  padding-top: 40px !important;
}

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

.included-left h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: normal;
  line-height: 1.0;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

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

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

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

.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: 14px;
  line-height: 1.5;
  color: var(--text);
}

.check {
  color: var(--red);
  font-size: 14px;
  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: 18px;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

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

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

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

.faq-section {
  background-color: var(--cream);
  background-image: url('images/texture.jpg');
  background-repeat: repeat;
  background-blend-mode: screen;
}

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

.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: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  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(--black);
  border-color: var(--black);
  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: 500px;
  padding-bottom: 20px;
}

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

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

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

.apply-bg {
  position: absolute;
  inset: 0;
  background-color: var(--red);
  background-image: url('images/texture.jpg');
  background-repeat: repeat;
  background-blend-mode: screen;
  background-size: cover;
  background-position: center;
}

.apply-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(196, 55, 42, 0.76);
  background-image: url('images/texture.jpg');
  background-repeat: repeat;
  background-blend-mode: screen;
}

.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: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 1;
}

.apply-price {
  font-family: var(--font-display);
  font-size: clamp(58px, 8vw, 92px);
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.apply-price span {
  font-family: var(--font-body);
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 400;
  opacity: 0.72;
  display: block;
  margin-top: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.apply-dates {
  font-size: 10px;
  letter-spacing: 0.18em;
  opacity: 1;
  text-transform: uppercase;
}

.apply-form-wrap {
  background: #fff;
  padding: 20px 20px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.apply-form-wrap iframe {
  margin-top: -60px;
}

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

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

.apply-legal {
  font-size: 11px;
  line-height: 1.65;
  color: rgba(255,255,255,0.38);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

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

.footer {
  background: var(--black);
  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: 26px;
  font-weight: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-logo-img {
  display: block;
  width: auto;
  max-width: clamp(180px, 30vw, 320px);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-size: 11px;
  letter-spacing: 0.14em;
  opacity: 0.4;
  text-transform: uppercase;
}

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

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

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

.footer-legal {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-legal a {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.7);
}

/* ============================================
   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+)
   ============================================ */

/* ============================================
   MOBILE NAV
   ============================================ */

@media (max-width: 599px) {
  .nav {
    padding: 16px 20px;
  }

  .nav.scrolled {
    padding: 12px 20px;
  }

  .nav-logo-img {
    height: 18px;
  }

  .nav-cta {
    font-size: 10px;
    padding: 8px 14px;
    letter-spacing: 0.1em;
  }

  .hero-meta {
    white-space: normal;
    flex-wrap: wrap;
    gap: 4px 6px;
    font-size: 9px;
  }

  .hero-title-img {
    width: clamp(200px, 72vw, 320px);
  }
}

@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);
  }

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

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

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

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

  .intro-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

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

  .intro-img-main {
    height: 100%;
    width: 100%;
    aspect-ratio: auto;
    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;
  }

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

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

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

  .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-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .host-name {
    min-height: 2.2em;
    display: flex;
    align-items: flex-start;
  }

  .gallery-track {
    padding: 0 48px;
    gap: 12px;
  }

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

  .gallery-btn {
    display: flex;
  }

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

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

/* ============================================
   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);
  }
}

/* ============================================
   FORCE LIGHT MODE — override dark mode
   ============================================ */

@media (prefers-color-scheme: dark) {
  html, body {
    background-color: #F2EDE4 !important;
    color: #1A1A1A !important;
  }
}
