/* Homepage-specific styles.
 * Sections: hero, search-dock, trust, regions, experiences, activities,
 * story, transfers, stays, marquee, journal, newsletter. */

/* ============ SECTION DEFAULTS ============ */
section { padding: 110px 0 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 46px;
  gap: 40px;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4.4vw, 68px);
  line-height: 1;
  margin: 14px 0 0;
  letter-spacing: -.01em;
  max-width: 680px;
}
.section-head h2 em { font-style: italic; color: var(--terra); }
.section-head .right { flex-shrink: 0; text-align: right; }
.section-head .right p {
  max-width: 320px;
  font-size: 14px;
  color: var(--ink-2);
  margin: 0 0 14px;
  line-height: 1.55;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 88vh;
  padding: 48px 0 60px;
  overflow: hidden;
  background: #0a2a2a;
  color: var(--paper);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  margin-bottom: 40px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  animation: wstSlowZoom 24s ease-in-out infinite alternate;
}
@keyframes wstSlowZoom {
  from { transform: scale(1.03); }
  to   { transform: scale(1.1); }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 32, 29, .45) 0%, rgba(10, 32, 29, .25) 35%, rgba(10, 32, 29, .7) 100%);
  z-index: 1;
}
.hero .wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: calc(88vh - 108px);
  justify-content: center;
  gap: 30px;
}
.hero-eye {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 253, 248, .12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 253, 248, .22);
  border-radius: 99px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--paper);
}
.hero-eye .pin {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--terra-soft);
  box-shadow: 0 0 0 3px rgba(217, 122, 90, .25);
}
.hero-headline {
  font-size: clamp(54px, 8vw, 124px);
  margin: 0;
  color: var(--paper);
  max-width: 1100px;
}
.hero-headline em { font-style: italic; color: #f5d9c0; }
.hero-sub {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(245, 239, 230, .88);
  margin: 0;
}
.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 14px;
  color: var(--paper);
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stat .n {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
  color: #f5d9c0;
}
.hero-stat .l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  color: rgba(245, 239, 230, .75);
  text-transform: uppercase;
  margin-top: 8px;
  max-width: 140px;
  line-height: 1.5;
}
.hero-loc-chip {
  position: absolute;
  left: 36px; bottom: 36px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  background: rgba(255, 253, 248, .92);
  border-radius: 99px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero-loc-chip .pin {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--terra);
  position: relative;
}
.hero-loc-chip .pin::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--paper);
}
.hero-trust-chip {
  position: absolute;
  right: 36px; bottom: 36px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(10, 32, 29, .5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 253, 248, .2);
  border-radius: 99px;
  font-size: 12.5px;
  color: var(--paper);
}
.hero-trust-chip .av { display: flex; }
.hero-trust-chip .av span {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  background-size: cover;
  background-position: center;
  margin-left: -8px;
}
.hero-trust-chip .av span:first-child { margin-left: 0; }
.hero-trust-chip .star { color: #f5d9c0; font-size: 13px; margin-left: 4px; }

/* ============ SEARCH DOCK ============ */
.search-dock {
  width: 100%;
  max-width: 1080px;
  margin: 8px auto 0;
}
.dock {
  background: var(--white);
  border: 1px solid rgba(255, 253, 248, .4);
  border-radius: var(--r-lg);
  padding: 8px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .5);
}
.dock-tabs {
  display: flex;
  gap: 4px;
  padding: 6px 6px 0;
  align-items: center;
}
.dock-tab {
  padding: 10px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.dock-tab .ico,
.dock-tab .dock-tab-ico { width: 16px; height: 16px; display: inline-block; }
.dock-tab .dock-tab-ico svg { width: 100%; height: 100%; }
.dock-tab.is-active { background: var(--ink); color: var(--paper); }
.dock-tab .badge {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
  background: var(--terra);
  color: #fff;
  padding: 2px 6px;
  border-radius: 99px;
  margin-left: 4px;
}
/* Tab panels — one form per product type, only the active one is visible. */
.dock-panel {
  display: none;
  margin: 6px 0 0;
  border-top: 1px solid var(--rule);
}
.dock-panel.is-active { display: block; }

/* Each form lays out fields horizontally with a hairline divider per cell. */
.dock-fields {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr 1fr auto;
  gap: 0;
  padding: 6px;
}
/* Transfers form has 4 cells (no zone). Wider direction cell to fit 3 pills. */
.dock-fields--transfer {
  grid-template-columns: 2.4fr 1fr 1fr auto;
}

/* Individual field cell — content (label + value) flows from the cell top so
 * every field's label and value align on one line across the row, regardless
 * of how tall the row grows to hold the stacked action buttons. */
.dock-cell {
  padding: 14px 18px;
  border-right: 1px solid var(--rule);
  cursor: pointer;
  transition: background .15s;
  position: relative;
  min-width: 0;
}
.dock-cell:last-of-type { border-right: 0; }
.dock-cell:hover { background: var(--paper); }
/* Direction cell: actionable elements are the pills themselves; the cell
 * shouldn't pretend to be clickable. */
.dock-cell[data-cell="direction"] { cursor: default; }
.dock-cell[data-cell="direction"]:hover { background: transparent; }

.dock-cell-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.dock-cell-value {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 0;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.dock-cell-value:focus { outline: 0; }
.dock-cell select.dock-cell-value {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2375726a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 14px;
  padding-right: 22px;
}
.dock-cell input[type="date"].dock-cell-value::-webkit-calendar-picker-indicator {
  opacity: .45;
  cursor: pointer;
}

/* Guests popover */
.dock-popover {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 300px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  box-shadow: 0 30px 60px -30px rgba(10, 40, 40, .35);
  padding: 10px 16px;
  z-index: 60;
}
.dock-popover[hidden] { display: none; }
.dock-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
}
.dock-stepper:last-child { border-bottom: 0; }
.dock-stepper-label {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
}
.dock-stepper-controls { display: inline-flex; align-items: center; gap: 12px; }
.dock-stepper-btn {
  width: 28px; height: 28px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  cursor: pointer;
  transition: all .15s;
}
.dock-stepper-btn:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.dock-stepper-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.dock-stepper input[type="number"] {
  width: 28px;
  text-align: center;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  outline: 0;
  -moz-appearance: textfield;
}
.dock-stepper input[type="number"]::-webkit-outer-spin-button,
.dock-stepper input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Submit button — full-height teal pill flush against the dock right edge */
.dock-submit {
  margin: 0;
  background: var(--teal);
  color: var(--paper);
  border: 0;
  border-radius: var(--r-md);
  padding: 0 28px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  align-self: stretch;
  min-height: 56px;
  transition: background .18s ease, transform .18s ease;
}
.dock-submit:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
}
.dock-submit svg { width: 16px; height: 16px; }

/* =========================================================
 * Flatpickr — re-skin Tourfic's bundled date picker to editorial tokens.
 * The calendar element is appended to <body>, so we can't scope it inside
 * .dock-panel. Selectors apply globally but only Flatpickr instances we
 * create from the dock will show on the homepage.
 * ========================================================= */
.flatpickr-calendar.open {
  background: var(--white) !important;
  border: 1px solid var(--rule) !important;
  border-radius: var(--r-md) !important;
  box-shadow: 0 30px 60px -30px rgba(10, 40, 40, .35) !important;
  font-family: var(--sans) !important;
  color: var(--ink) !important;
  padding: 6px !important;
}
.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after { border-bottom-color: var(--rule) !important; }
.flatpickr-months .flatpickr-month {
  color: var(--ink) !important;
  fill: var(--ink) !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  color: var(--ink) !important;
  font-family: var(--sans) !important;
  font-weight: 600 !important;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  color: var(--ink) !important;
  fill: var(--ink) !important;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg { fill: var(--terra) !important; }

.flatpickr-weekdays { background: transparent !important; }
.flatpickr-weekday {
  color: var(--muted) !important;
  font-family: var(--mono) !important;
  font-size: 10px !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
}

.flatpickr-day {
  color: var(--ink) !important;
  font-family: var(--sans) !important;
  font-size: 13px !important;
  border-radius: 8px !important;
  border-color: transparent !important;
}
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay { color: var(--muted) !important; }
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover {
  background: var(--paper-2) !important;
  border-color: var(--paper-2) !important;
}
.flatpickr-day.today {
  border: 1px solid var(--terra) !important;
  color: var(--terra) !important;
}
.flatpickr-day.today:hover { background: var(--terra) !important; color: var(--paper) !important; }

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.selected:hover {
  background: var(--teal) !important;
  border-color: var(--teal) !important;
  color: var(--paper) !important;
}
.flatpickr-day.inRange {
  background: var(--paper-2) !important;
  border-color: var(--paper-2) !important;
  color: var(--ink) !important;
  box-shadow: -5px 0 0 var(--paper-2), 5px 0 0 var(--paper-2) !important;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: var(--rule) !important;
  background: transparent !important;
}

/* CTA-only panel (Transfers) */
/* Transfers tab — From/To airport pill toggle */
.dock-direction {
  display: inline-flex;
  gap: 4px;
  padding: 3px;
  background: var(--paper);
  border-radius: 99px;
  margin-top: 2px;
}
.dock-dir {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 0;
  background: transparent;
  border-radius: 99px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.dock-dir svg { width: 16px; height: 16px; flex-shrink: 0; }
.dock-dir:hover { color: var(--ink); }
.dock-dir.is-active {
  background: var(--ink);
  color: var(--paper);
}

.dock-panel--cta { padding: 28px; }
.dock-cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.dock-cta-eye {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.dock-cta-copy {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-2);
  max-width: 600px;
  line-height: 1.55;
}
.dock-submit--link {
  text-decoration: none;
  min-height: 48px;
  padding: 12px 24px;
}
.field {
  padding: 14px 18px;
  border-right: 1px solid var(--rule);
  cursor: pointer;
  transition: background .15s;
}
.field:last-of-type { border-right: 0; }
.field:hover { background: var(--paper); }
.field .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.field .value { font-size: 14.5px; color: var(--ink); font-weight: 500; }
.field .value .ph { color: var(--muted); font-weight: 400; }
.search-btn {
  margin: 6px;
  background: var(--teal);
  color: var(--paper);
  border-radius: var(--r-md);
  padding: 0 28px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.search-btn:hover { background: var(--teal-deep); }
.search-btn svg { width: 16px; height: 16px; }

/* ============ TRUST STRIP ============ */
.trust {
  margin-top: 38px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-cell {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--rule);
}
.trust-cell:last-child { border-right: 0; }
.trust-cell .ico {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--paper-2);
  display: grid;
  place-items: center;
  color: var(--teal);
  flex-shrink: 0;
}
.trust-cell .t { font-size: 14px; font-weight: 600; color: var(--ink); }
.trust-cell .d {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.4;
}

/* ============ REGIONS ============ */
.regions {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  grid-template-rows: 340px 220px;
  gap: 14px;
}
.region {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #0a2a2a;
  cursor: pointer;
}
.region .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s ease;
}
.region:hover .bg { transform: scale(1.06); }
.region::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 40, 40, 0) 35%, rgba(10, 40, 40, .7) 100%);
}
.region-content {
  position: absolute;
  left: 22px; right: 22px; bottom: 20px;
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}
.region-content .name { font-family: var(--serif); font-size: 32px; line-height: 1; }
.region-content .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .9;
  margin-top: 8px;
}
.region-content .arrow-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(245, 239, 230, .95);
  color: var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 14px;
  transition: background .2s;
}
.region:hover .arrow-btn { background: var(--terra); color: var(--paper); }
.region.is-big { grid-column: 1; grid-row: 1 / span 2; }
.region.is-big .name { font-size: 48px; }
.region-tag {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(10, 40, 40, .5);
  padding: 5px 10px;
  border-radius: 99px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

/* ============ EXPERIENCES ============ */
.exp-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}
.exp-nav { display: flex; gap: 8px; }
.experiences {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.exp-card.is-hidden { display: none; }

/* ===== Sub-section header (Guided land tours / Activities & adventures) ===== */
.sub-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  margin: 0 0 28px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.sub-head .sub-eye {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -.01em;
  color: var(--ink);
  white-space: nowrap;
}
.sub-head .sub-eye .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terra);
}
.sub-head .sub-eye .count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.sub-head .sub-desc {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 480px;
}
.sub-head .sub-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.exp-spacer { height: 90px; }

/* Section A — Guided land tours: 3-col grid with bigger cards */
.experiences.land-tours {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.experiences.land-tours .exp-img { aspect-ratio: 5/4; }
.experiences.land-tours .exp-title { font-size: 24px; }
.experiences.land-tours .exp-body { padding: 22px 22px 24px; }

/* Section B — Activities: trailing "browse the full library" promo card */
.exp-promo {
  background: var(--paper-2);
  border: 1px dashed var(--rule);
  border-radius: var(--r-md);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease;
}
.exp-promo:hover { border-color: var(--terra); }
.exp-promo .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.exp-promo h4 {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.1;
  margin: 8px 0 0;
  font-weight: 400;
  color: var(--ink);
}
.exp-promo h4 em { font-style: italic; color: var(--terra); }
.exp-promo .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.exp-promo .arrow-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  transition: background .2s;
}
.exp-promo:hover .arrow-btn { background: var(--terra); }
.exp-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -30px rgba(10, 40, 40, .3);
}
/* Whole-card click target — title link stretched over the card. The heart
 * button is lifted above it (below) so it stays an independent control. */
.exp-title a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.exp-img {
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: #0a3838;
}
.exp-img .badge {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 99px;
  background: var(--paper);
  color: var(--ink);
}
.exp-img .badge.is-recommend { background: var(--terra); color: #fff; }
.exp-img .badge.is-first { background: var(--teal); color: #fff; }
.exp-img .badge.is-gold { background: var(--gold); color: #fff; }
.exp-img .badge.is-family { background: var(--terra); color: #fff; }
.exp-img .heart {
  position: absolute;
  z-index: 2;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(245, 239, 230, .92);
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--ink-2);
}
.exp-img .heart:hover { color: var(--terra); }
.exp-img .price-tag {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(10, 32, 29, .85);
  color: var(--paper);
  padding: 8px 12px;
  border-radius: 99px;
  font-size: 12.5px;
  backdrop-filter: blur(8px);
}
.exp-img .price-tag .num { font-family: var(--serif); font-size: 17px; margin-right: 4px; }
.exp-img .price-tag .per { opacity: .7; }
.exp-body { padding: 18px 18px 20px; }
.exp-loc {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.exp-loc::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--terra);
}
.exp-title {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.15;
  margin: 10px 0 12px;
  color: var(--ink);
}
.exp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--muted);
}
.exp-meta .rating { display: flex; align-items: center; gap: 6px; color: var(--ink); }
.exp-meta .rating .star { color: var(--terra); }
.exp-meta .duration { display: inline-flex; align-items: center; gap: 6px; }

/* ============ ACTIVITIES ============ */
.activities {
  background: var(--ink);
  color: var(--paper);
  padding: 110px 0;
  margin-top: 110px;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.activities .wrap { position: relative; z-index: 2; }
.activities .section-head h2 { color: var(--paper); }
.activities .section-head h2 em { color: var(--terra-soft); }
.activities .section-head .right p { color: #bcb7a7; }
.activities .text-link { color: var(--paper); border-color: var(--paper); }
.activities .eyebrow { color: #bcb7a7; }
.act-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}
.act-tile {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
}
.act-tile .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease;
}
.act-tile:hover .bg { transform: scale(1.08); }
.act-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .75));
  pointer-events: none;
}
.act-info {
  position: absolute;
  left: 18px; right: 18px; bottom: 16px;
  color: var(--paper);
  z-index: 2;
}
.act-info .cat {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 6px;
}
.act-info .nm { font-family: var(--serif); font-size: 22px; line-height: 1.1; }
.act-info .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 12px;
  opacity: .9;
}
.act-tile.is-featured { grid-column: span 2; grid-row: span 2; }
.act-tile.is-featured .nm { font-size: 38px; }
.act-marquee {
  font-family: var(--serif);
  font-size: 130px;
  line-height: 1;
  color: rgba(255, 253, 248, .05);
  white-space: nowrap;
  position: absolute;
  bottom: -20px;
  left: 0; right: 0;
  letter-spacing: -.02em;
  font-style: italic;
  pointer-events: none;
}

/* ============ STORY ============ */
.story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-imgs { position: relative; height: 680px; }
.story-imgs .si {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 60px -30px rgba(10, 40, 40, .4);
}
.story-imgs .si1 { left: 0; top: 0; width: 60%; height: 380px; }
.story-imgs .si2 { right: 0; top: 140px; width: 48%; height: 300px; }
.story-imgs .si3 {
  left: 30px; bottom: 0;
  width: 55%; height: 280px;
  border: 6px solid var(--paper);
}
.story-stat {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: 0 24px 50px -30px rgba(10, 40, 40, .4);
  right: -10px;
  bottom: 30px;
}
.story-stat .n {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
  color: var(--teal);
}
.story-stat .l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 6px;
}
.story-copy h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 64px;
  line-height: .98;
  margin: 18px 0 24px;
  letter-spacing: -.01em;
}
.story-copy h2 em { font-style: italic; color: var(--terra); }
.story-copy p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 18px;
  max-width: 520px;
}
.story-pillars {
  margin: 32px 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 560px;
}
.pillar {
  padding: 18px;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  background: rgba(255, 253, 248, .6);
}
.pillar .n {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pillar .t { font-family: var(--serif); font-size: 22px; line-height: 1.1; margin-bottom: 4px; }
.pillar .d { font-size: 13px; color: var(--ink-2); line-height: 1.45; }

/* ============ TRANSFERS ============ */
.transfers {
  margin-top: 120px;
  background: var(--teal);
  color: var(--paper);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  position: relative;
}
.tf-left { padding: 64px; }
.tf-eye {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: rgba(245, 239, 230, .7);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tf-eye::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terra-soft);
}
.tf-left h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  margin: 18px 0 22px;
  letter-spacing: -.01em;
}
.tf-left h2 em { font-style: italic; color: #9ad7d3; }
.tf-left p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(245, 239, 230, .86);
  max-width: 480px;
  margin: 0 0 30px;
}
.tf-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  max-width: 520px;
  margin-bottom: 36px;
}
.tf-point { display: flex; gap: 12px; align-items: flex-start; }
.tf-point .num {
  font-family: var(--mono);
  font-size: 11px;
  color: #9ad7d3;
  letter-spacing: .1em;
  width: 28px;
  flex-shrink: 0;
}
.tf-point .h { font-family: var(--serif); font-size: 18px; margin-bottom: 2px; }
.tf-point .d {
  font-size: 12.5px;
  color: rgba(245, 239, 230, .75);
  line-height: 1.45;
}
.tf-cta { display: inline-flex; gap: 12px; }
.tf-right {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 520px;
}
.tf-card {
  position: absolute;
  left: -50px; top: 50%;
  transform: translateY(-50%);
  width: 280px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-md);
  padding: 22px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .5);
}
.tf-card h4 {
  font-family: var(--serif);
  font-size: 18px;
  margin: 0 0 4px;
  font-weight: 400;
}
.tf-card .eta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.tf-card .step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
}
.tf-card .step:last-child { border-bottom: 0; }
.tf-card .step .dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--paper-2);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--teal);
  flex-shrink: 0;
}
.tf-card .step.is-done .dot { background: var(--teal); color: var(--paper); }
.tf-card .step .t { font-size: 13.5px; font-weight: 500; }
.tf-card .step .s {
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px;
  font-family: var(--mono);
  letter-spacing: .05em;
}

/* ============ STAYS — concierge WhatsApp panel ============ */
.stays-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
  margin-top: 36px;
}
.stays-photo {
  position: relative;
  margin: 0;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-color: #0a3838;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stays-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, .55));
  pointer-events: none;
}
.stays-photo-badge {
  position: absolute;
  left: 18px; top: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 99px;
  background: var(--paper);
  color: var(--ink);
  z-index: 2;
}
.stays-pitch {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px 0;
}
.stays-pitch-eye {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.stays-pitch-h {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.1;
  margin: 0 0 22px;
  color: var(--ink);
}
.stays-pitch-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.stays-pitch-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--ink);
}
.stays-pitch-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .4em;
  width: 18px; height: 10px;
  border-left: 2px solid var(--terra);
  border-bottom: 2px solid var(--terra);
  transform: rotate(-45deg);
}
.stays-pitch-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 14px 22px;
  border-radius: 99px;
  background: #25D366;
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}
.stays-pitch-cta:hover { background: #1ebe57; transform: translateY(-1px); }
.stays-pitch-cta svg { width: 20px; height: 20px; }
.stays-pitch-cta .arrow { font-size: 17px; line-height: 1; }
.stays-pitch-foot {
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--muted);
}

/* WhatsApp variant of the dock submit button (Hotels + Accommodations tabs) */
.dock-submit--wa {
  background: #25D366 !important;
  color: #fff !important;
}
.dock-submit--wa:hover { background: #1ebe57 !important; }
.dock-submit--wa svg { width: 18px; height: 18px; }
.dock-cta-note--inline {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--muted);
  text-align: center;
}
/* Action column — primary Search button with the WhatsApp sister button
 * stacked directly beneath it (Experiences / Transfers / Car Rental). */
.dock-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dock-actions .dock-submit { width: 100%; }
/* Secondary WhatsApp button — shorter than the primary so it reads as the
 * sister action under the Search button. */
.dock-submit--wa-alt {
  min-height: 44px;
  font-size: 13px;
  text-decoration: none;
}
.dock-submit--wa-alt svg { width: 16px; height: 16px; }

/* ============ MARQUEE ============ */
.marquee {
  margin-top: 130px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: wstMarquee 38s linear infinite;
  font-family: var(--serif);
  font-size: 42px;
  color: var(--ink-2);
  font-style: italic;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee-track span::after {
  content: "✺";
  color: var(--terra);
  font-style: normal;
  font-size: 24px;
}
@keyframes wstMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ JOURNAL / GUIDE ============ */
.guide-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
}
.guide-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--rule);
}
.guide-img {
  aspect-ratio: 5/3;
  background-size: cover;
  background-position: center;
  background-color: #1a201d;
}
.guide-body { padding: 24px 24px 28px; }
.guide-eye {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 10px;
}
.guide-title {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--ink);
}
.guide-card.is-featured .guide-title { font-size: 36px; line-height: 1.05; }
.guide-card.is-featured .guide-img { aspect-ratio: 4/3; }
.guide-excerpt {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 18px;
}
.guide-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  font-size: 12px;
  color: var(--muted);
}
.guide-meta .read { font-family: var(--mono); letter-spacing: .1em; }

/* ============ NEWSLETTER ============ */
.news {
  margin-top: 110px;
  background: var(--paper-2);
  border-radius: var(--r-xl);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.news-shell {
  position: absolute;
  right: -60px; bottom: -100px;
  font-family: var(--serif);
  font-size: 380px;
  color: rgba(12, 74, 74, .05);
  line-height: 1;
  font-style: italic;
  pointer-events: none;
}
.news-copy { position: relative; z-index: 2; }
.news h2 {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  margin: 14px 0 18px;
  font-weight: 400;
  letter-spacing: -.01em;
}
.news h2 em { font-style: italic; color: var(--terra); }
.news p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 440px;
  margin: 0;
}
.news-form {
  display: flex;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 99px;
  padding: 6px 6px 6px 22px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.news-form input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: 0;
  font: inherit;
  font-size: 14px;
  padding: 14px 8px;
  color: var(--ink);
}
.news-form input::placeholder { color: var(--muted); }
.news-form button {
  background: var(--ink);
  color: var(--paper);
  border-radius: 99px;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 13px;
}
.news-tags {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.news-tags span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--white);
  padding: 6px 12px;
  border-radius: 99px;
  border: 1px solid var(--rule);
}

/* =========================================================
 * RESPONSIVE — tablet ≤1100px
 * ========================================================= */
@media (max-width: 1100px) {
  :root { --pad: 28px; }
  .hero-headline { font-size: clamp(48px, 8vw, 86px); }

  .dock-fields { grid-template-columns: 1.4fr 1fr 1fr auto; }
  .field:nth-child(4) { display: none; }

  .regions {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 340px 260px 260px;
    gap: 12px;
  }
  .region.is-big { grid-column: span 2; grid-row: auto; height: 340px; }

  .experiences { grid-template-columns: repeat(3, 1fr); }
  .experiences.land-tours { grid-template-columns: repeat(3, 1fr); }
  .sub-head { grid-template-columns: 1fr; gap: 14px; padding: 16px 0; }
  .sub-head .sub-actions { justify-content: flex-start; }
  .exp-spacer { height: 64px; }

  .act-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 260px 260px; }
  .act-tile.is-featured { grid-column: span 3; grid-row: auto; height: 300px; }

  .stays-split { grid-template-columns: 1fr; gap: 28px; }
  .stays-photo { min-height: 320px; }

  .guide-grid { grid-template-columns: 1fr 1fr; }
  .guide-card.is-featured { grid-column: span 2; }
  .guide-card.is-featured .guide-title { font-size: 30px; }

  .story { grid-template-columns: 1fr; gap: 40px; }
  .story-imgs { height: 520px; max-width: 600px; margin: 0 auto; }

  .transfers { grid-template-columns: 1fr; }
  .tf-left { padding: 48px; }
  .tf-right { min-height: 360px; }
  .tf-card {
    position: relative;
    left: auto; top: auto;
    transform: none;
    margin: -200px auto 0;
    width: 88%;
  }

  .news { padding: 60px 40px; }
  .news h2 { font-size: 46px; }
}

/* =========================================================
 * RESPONSIVE — mobile ≤720px
 * ========================================================= */
@media (max-width: 720px) {
  :root { --pad: 20px; --r-xl: 24px; --r-lg: 18px; }
  section { padding: 72px 0 0; }

  /* HERO */
  .hero {
    min-height: auto;
    padding: 28px 0 36px;
    border-radius: 0 0 var(--r-xl) var(--r-xl);
  }
  .hero .wrap {
    min-height: auto;
    gap: 20px;
    padding: 0 var(--pad);
  }
  .hero-headline { font-size: clamp(48px, 12vw, 72px); line-height: .96; }
  .hero-sub { font-size: 15px; max-width: none; }
  .hero-eye { font-size: 9.5px; padding: 6px 12px; letter-spacing: .14em; }
  .hero-stats { gap: 18px; margin-top: 6px; }
  .hero-stat { flex: 1; min-width: 0; }
  .hero-stat .n { font-size: 28px; }
  .hero-stat .l { font-size: 9px; max-width: none; letter-spacing: .12em; }
  .hero-stat:nth-child(4) { display: none; }
  .hero-loc-chip,
  .hero-trust-chip { display: none; }

  /* SEARCH DOCK */
  .search-dock { padding: 0; }
  .dock { padding: 6px; border-radius: 18px; }
  .dock-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 6px;
    gap: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .dock-tabs::-webkit-scrollbar { display: none; }
  .dock-tab { flex-shrink: 0; padding: 9px 14px; font-size: 12px; }
  .dock-tab .ico { width: 14px; height: 14px; }
  .dock-fields {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    border-top: 0;
    padding: 4px;
  }
  /* Cells stack on mobile — the divider must be horizontal, not a stray
     vertical line left over from the desktop border-right. */
  .dock-cell {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    padding: 12px 14px;
  }
  .dock-cell:last-of-type { border-bottom: 0; }
  /* Direction pills fill the cell as equal thirds and wrap cleanly inside
     it — never overflow the dock. */
  .dock-direction { display: flex; width: 100%; }
  .dock-dir {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    gap: 4px;
    padding: 8px 6px;
    font-size: 11.5px;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
  }
  .dock-dir svg { width: 14px; height: 14px; }
  .field {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    padding: 12px 14px;
    border-radius: 10px;
  }
  .field:last-of-type { border-bottom: 0; }
  .field .label { font-size: 9px; }
  .field .value { font-size: 14px; }
  .search-btn {
    margin: 6px 4px;
    width: calc(100% - 8px);
    justify-content: center;
    padding: 14px;
    border-radius: 12px;
  }

  /* TRUST */
  .trust { margin-top: 28px; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .trust-cell { padding: 16px 14px; gap: 10px; }
  .trust-cell:nth-child(2),
  .trust-cell:nth-child(4) { border-right: 0; }
  .trust-cell:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .trust-cell .t { font-size: 12.5px; }
  .trust-cell .d { font-size: 11px; }
  .trust-cell .ico { width: 26px; height: 26px; }

  /* SECTION HEADS */
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
  }
  .section-head h2 { font-size: 38px; }
  .section-head .right { text-align: left; flex-shrink: 1; }
  .section-head .right p { max-width: none; }

  /* REGIONS */
  .regions {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }
  .region,
  .region.is-big { height: 220px; grid-column: auto; grid-row: auto; }
  .region.is-big .name { font-size: 36px; }
  .region-content .name { font-size: 26px; }
  .region-content .meta { font-size: 9px; }

  /* EXPERIENCES */
  .exp-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
  }
  .chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .chips::-webkit-scrollbar { display: none; }
  .chip { flex-shrink: 0; font-size: 12px; padding: 8px 12px; }
  .exp-nav { align-self: flex-end; }
  .experiences { grid-template-columns: 1fr 1fr; gap: 14px; }
  .experiences.land-tours { grid-template-columns: 1fr; gap: 18px; }
  .experiences.land-tours .exp-title { font-size: 19px; }
  .experiences.land-tours .exp-body { padding: 16px 16px 18px; }
  .sub-head .sub-eye { font-size: 22px; }
  .sub-head .sub-desc { font-size: 13px; }
  .exp-spacer { height: 48px; }
  .exp-promo { padding: 20px 18px; }
  .exp-promo h4 { font-size: 22px; }
  .exp-body { padding: 14px 14px 16px; }
  .exp-title { font-size: 16px; margin: 8px 0 10px; }
  .exp-loc { font-size: 9px; }
  .exp-meta { font-size: 11px; }
  .exp-img .badge { font-size: 8.5px; padding: 4px 7px; }
  .exp-img .price-tag { font-size: 11px; padding: 6px 10px; }
  .exp-img .price-tag .num { font-size: 14px; }
  .exp-img .heart { width: 30px; height: 30px; font-size: 12px; }

  /* ACTIVITIES */
  .activities {
    padding: 64px 0;
    margin-top: 72px;
    border-radius: var(--r-xl);
  }
  .activities .wrap { padding: 0 22px; }
  .act-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }
  .act-tile { height: 200px; }
  .act-tile.is-featured { grid-column: span 2; height: 260px; }
  .act-tile.is-featured .nm { font-size: 28px; }
  .act-info .nm { font-size: 17px; }
  .act-info .cat { font-size: 8.5px; }
  .act-marquee { font-size: 80px; bottom: -10px; }

  /* STORY */
  .story { gap: 32px; }
  .story-imgs { height: 420px; max-width: none; }
  .story-imgs .si1 { width: 65%; height: 240px; }
  .story-imgs .si2 { width: 50%; height: 200px; top: 100px; }
  .story-imgs .si3 { width: 58%; height: 190px; left: 18px; border-width: 4px; }
  .story-stat { padding: 14px 16px; right: 0; bottom: 10px; }
  .story-stat .n { font-size: 28px; }
  .story-copy h2 { font-size: 40px; }
  .story-copy p { font-size: 14.5px; }
  .story-pillars { grid-template-columns: 1fr; gap: 10px; }
  .pillar { padding: 14px 16px; }
  .pillar .t { font-size: 18px; }
  .pillar .d { font-size: 12.5px; }

  /* TRANSFERS */
  .transfers { margin-top: 72px; }
  .tf-left { padding: 32px 24px 28px; }
  .tf-left h2 { font-size: 38px; }
  .tf-left p { font-size: 14.5px; }
  .tf-points { grid-template-columns: 1fr; gap: 14px 0; margin-bottom: 24px; }
  .tf-right { min-height: 280px; }
  .tf-card { margin: -140px auto 0; width: 90%; padding: 18px; }
  .tf-card h4 { font-size: 16px; }
  .tf-cta { flex-direction: column; width: 100%; }
  .tf-cta .btn { width: 100%; justify-content: center; }

  /* STAYS */
  .stays-split { gap: 22px; margin-top: 24px; }
  .stays-photo { min-height: 240px; }
  .stays-pitch-h { font-size: 24px; margin-bottom: 16px; }
  .stays-pitch-list li { font-size: 14.5px; }
  .stays-pitch-cta { width: 100%; justify-content: center; }

  /* MARQUEE */
  .marquee { margin-top: 80px; padding: 14px 0; }
  .marquee-track { font-size: 28px; gap: 32px; animation-duration: 28s; }
  .marquee-track span { gap: 32px; }
  .marquee-track span::after { font-size: 16px; }

  /* GUIDE */
  .guide-grid { grid-template-columns: 1fr; gap: 18px; }
  .guide-card.is-featured { grid-column: auto; }
  .guide-card.is-featured .guide-title { font-size: 24px; }
  .guide-card.is-featured .guide-img { aspect-ratio: 5/3; }
  .guide-body { padding: 18px 18px 20px; }
  .guide-title { font-size: 18px; }

  /* NEWSLETTER */
  .news {
    margin-top: 72px;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px;
    border-radius: var(--r-xl);
  }
  .news h2 { font-size: 38px; }
  .news p { font-size: 14.5px; }
  .news-shell { font-size: 240px; right: -30px; bottom: -60px; }
  .news-form {
    flex-direction: column;
    border-radius: 18px;
    padding: 8px;
    align-items: stretch;
    gap: 6px;
  }
  .news-form input { padding: 14px; text-align: center; }
  .news-form button { width: 100%; padding: 14px; border-radius: 12px; }
  .news-tags { justify-content: flex-start; }
  .news-tags span { font-size: 9.5px; padding: 5px 10px; }
}

/* =========================================================
 * RESPONSIVE — small mobile ≤400px
 * ========================================================= */
@media (max-width: 400px) {
  .hero-headline { font-size: 46px; }
  .section-head h2 { font-size: 32px; }
  .experiences { grid-template-columns: 1fr; }
  .exp-img { aspect-ratio: 5/4; }
  .act-grid { grid-template-columns: 1fr; }
  .act-tile,
  .act-tile.is-featured { grid-column: auto; height: 220px; }
  .trust-row { grid-template-columns: 1fr; }
  .trust-cell { border-right: 0; border-bottom: 1px solid var(--rule); }
  .trust-cell:last-child { border-bottom: 0; }
}

/* ============ "COMING SOON" MODAL ============ */
.wst-cs-modal[hidden] { display: none; }
.wst-cs-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.wst-cs-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 30, .55);
}
.wst-cs-modal__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 42px 34px 36px;
  text-align: center;
  box-shadow: 0 40px 80px -30px rgba(10, 40, 40, .5);
  animation: wst-cs-in .22s ease;
}
@keyframes wst-cs-in {
  from { opacity: 0; transform: translateY(12px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.wst-cs-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.wst-cs-modal__close:hover { background: var(--ink); color: var(--paper); }
.wst-cs-modal__icon {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
}
.wst-cs-modal__icon svg { width: 24px; height: 24px; }
.wst-cs-modal__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  margin: 0 0 8px;
  color: var(--ink);
}
.wst-cs-modal__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
