:root {
  --ml-indigo: #161C36;
  --ml-atlantic-blue: #234971;
  --ml-turquoise: #6CA19F;
  --ml-green: #2B8066;
  --ml-ochre: #9A6424;
  --ml-sand: #C8AD8E;
  --ml-clay: #4F3B32;
  --ml-earth: #3A2219;
  --ml-ivory: #EAECE8;
  --ml-terracotta: #8B4A32;

  --bg: var(--ml-indigo);
  --cream: var(--ml-ivory);
  --muted: rgba(234, 236, 232, 0.52);
  --glass-border: rgba(108, 161, 159, 0.22);
  --radius: 12px;
  --zellige-pattern: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 24h48M24 0v48M8 8l32 32M40 8L8 40' stroke='%236CA19F' stroke-width='0.35' opacity='0.15'/%3E%3Ccircle cx='24' cy='24' r='3' fill='%232B8066' opacity='0.1'/%3E%3C/svg%3E");
}

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

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--ml-indigo);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

main { position: relative; z-index: 1; }

/* ── Header ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s, backdrop-filter 0.35s;
}

header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(22, 28, 54, 0.88), transparent);
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.35s;
}

header.scrolled {
  background: rgba(22, 28, 54, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--glass-border);
}

header.scrolled::before { opacity: 0; }

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--cream);
}

.logo-icon {
  width: 28px; height: 28px;
  color: var(--ml-turquoise);
}

.logo-text {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-desktop a:hover { color: var(--ml-sand); }

.nav-cta {
  font-family: inherit;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ml-ivory);
  background: rgba(43, 128, 102, 0.25);
  border: 1px solid rgba(108, 161, 159, 0.35);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.nav-cta:hover { background: rgba(43, 128, 102, 0.4); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(22, 28, 54, 0.97);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}

.mobile-nav[hidden] { display: none; }

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--cream);
  text-decoration: none;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1569381002471-e3a8b3971f50?auto=format&fit=crop&w=2000&q=75') center 40% / cover no-repeat;
  transition: background-image 0.8s ease;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 28, 54, 0.55) 0%, rgba(22, 28, 54, 0.2) 40%, rgba(22, 28, 54, 0.75) 100%),
    linear-gradient(90deg, rgba(22, 28, 54, 0.5) 0%, transparent 55%);
}

.hero[data-tint="desert"] .hero-gradient {
  background: linear-gradient(180deg, rgba(58, 34, 25, 0.5) 0%, rgba(22, 28, 54, 0.25) 45%, rgba(22, 28, 54, 0.8) 100%);
}

.hero[data-tint="city"] .hero-gradient {
  background: linear-gradient(180deg, rgba(22, 28, 54, 0.6) 0%, rgba(43, 128, 102, 0.15) 40%, rgba(22, 28, 54, 0.82) 100%);
}

.hero[data-tint="mountain"] .hero-gradient {
  background: linear-gradient(180deg, rgba(35, 73, 113, 0.45) 0%, rgba(22, 28, 54, 0.2) 45%, rgba(22, 28, 54, 0.85) 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: max(6rem, calc(4.5rem + env(safe-area-inset-top))) 1.5rem max(2rem, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.hero-content { max-width: 36rem; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ml-sand);
  margin-bottom: 1rem;
}

.hero-eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ml-turquoise);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-title-line { display: block; }

.hero-title-line--accent {
  font-style: italic;
  color: var(--ml-sand);
}

.hero-lede {
  margin-top: 1.25rem;
  max-width: 28rem;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Floating glass search ── */
.hero-search-glass {
  background: rgba(234, 236, 232, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(234, 236, 232, 0.22);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.25rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.search-widget {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.7fr 1.1fr auto;
  gap: 0.65rem;
  align-items: end;
}

.search-field label {
  display: block;
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(234, 236, 232, 0.65);
  margin-bottom: 0.4rem;
}

.search-field--autocomplete .search-input-wrap { z-index: 20; }

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(22, 28, 54, 0.35);
  border: 1px solid rgba(234, 236, 232, 0.15);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input-wrap:focus-within {
  border-color: rgba(108, 161, 159, 0.5);
  box-shadow: 0 0 0 3px rgba(108, 161, 159, 0.12);
}

.search-input-wrap input,
.search-input-wrap select {
  width: 100%;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--ml-ivory);
  background: transparent;
  border: none;
  outline: none;
  padding: 0.75rem 0.85rem;
}

.search-input-wrap select {
  cursor: pointer;
  color-scheme: dark;
}

.search-input-wrap input[type="date"] { color-scheme: dark; }

.search-input-wrap input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.9);
  cursor: pointer;
}

.search-input-wrap--stepper input { padding-right: 4.25rem; }

.guest-stepper {
  position: absolute;
  right: 0.4rem;
  display: flex;
  gap: 0.2rem;
}

.stepper-btn {
  width: 26px; height: 26px;
  font-size: 0.95rem;
  color: var(--ml-ivory);
  background: rgba(43, 128, 102, 0.3);
  border: 1px solid rgba(108, 161, 159, 0.3);
  border-radius: 6px;
  cursor: pointer;
}

.stepper-btn:hover { background: rgba(43, 128, 102, 0.45); }

.autocomplete-list {
  position: absolute;
  left: 0; right: 0; top: calc(100% + 4px);
  list-style: none;
  padding: 0.3rem;
  background: rgba(22, 28, 54, 0.98);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  max-height: 220px;
  overflow-y: auto;
  z-index: 30;
}

.autocomplete-list[hidden] { display: none; }

.autocomplete-item {
  display: block;
  width: 100%;
  text-align: left;
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--ml-ivory);
  background: transparent;
  border: none;
  border-radius: 6px;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
}

.autocomplete-item:hover,
.autocomplete-item.is-highlighted { background: rgba(43, 128, 102, 0.25); }

.autocomplete-curated {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ml-turquoise);
  margin-left: 0.35rem;
}

.search-submit {
  height: 44px;
  padding: 0 1.25rem;
  font-family: inherit;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ml-ivory);
  background: linear-gradient(135deg, var(--ml-green), var(--ml-atlantic-blue));
  border: 1px solid rgba(108, 161, 159, 0.4);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.search-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(43, 128, 102, 0.35);
}

.search-note {
  margin-top: 0.75rem;
  min-height: 1.1rem;
  font-size: 0.78rem;
  color: var(--ml-turquoise);
}

.search-note.is-error { color: #e8a090; }

.search-powered {
  margin-top: 0.5rem;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(234, 236, 232, 0.45);
}

.request-confirm {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(108, 161, 159, 0.35);
  background: rgba(43, 128, 102, 0.15);
}

.request-confirm[hidden] { display: none; }

.request-confirm-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--ml-sand);
  margin-bottom: 0.35rem;
}

.request-confirm-text {
  font-size: 0.88rem;
  color: var(--ml-ivory);
  line-height: 1.5;
}

.request-confirm-detail {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.request-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.request-modal[hidden] { display: none; }

.request-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 28, 54, 0.72);
  backdrop-filter: blur(6px);
}

.request-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  padding: 2rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--glass-border);
  background: linear-gradient(145deg, rgba(35, 73, 113, 0.4), rgba(22, 28, 54, 0.98));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.request-modal-eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ml-turquoise);
  margin-bottom: 0.75rem;
}

.request-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.request-modal-lede {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.request-modal-summary {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(22, 28, 54, 0.5);
  border: 1px solid rgba(108, 161, 159, 0.15);
}

.request-modal-summary div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
}

.request-modal-summary dt {
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.58rem;
}

.request-modal-summary dd {
  color: var(--ml-ivory);
  text-align: right;
}

.request-modal-close {
  width: 100%;
  font-family: inherit;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ml-ivory);
  background: linear-gradient(135deg, var(--ml-green), var(--ml-atlantic-blue));
  border: 1px solid rgba(108, 161, 159, 0.35);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  cursor: pointer;
}

.request-modal-close:hover {
  box-shadow: 0 8px 24px rgba(43, 128, 102, 0.3);
}

/* ── Shared sections ── */
.section-wrap,
.observer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-eyebrow {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ml-ochre);
  margin-bottom: 0.65rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  line-height: 1.1;
}

.section-lede {
  margin-top: 0.75rem;
  max-width: 36rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Observer ── */
.observer-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--ml-earth) 0%, #121820 100%);
  border-top: 1px solid rgba(108, 161, 159, 0.12);
}

.observer-header { margin-bottom: 2rem; }

.observer-card {
  background: rgba(22, 28, 54, 0.65);
  border: 1px solid rgba(108, 161, 159, 0.2);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  max-width: 640px;
}

.observer-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.observer-label {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ml-turquoise);
}

.observer-month {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.observer-dest {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.observer-signals {
  list-style: none;
  margin-bottom: 1.5rem;
}

.observer-signals li {
  font-size: 0.9rem;
  color: var(--ml-ivory);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(108, 161, 159, 0.12);
}

.observer-signals li:last-child { border-bottom: none; }

.observer-cta {
  font-family: inherit;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ml-sand);
  background: transparent;
  border: 1px solid rgba(200, 173, 142, 0.35);
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  cursor: not-allowed;
  opacity: 0.7;
}

.observer-note {
  margin-top: 0.75rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Experiences ── */
.experiences-section {
  padding: 5rem 0;
  background: var(--ml-indigo);
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.exp-card {
  position: relative;
  min-height: 280px;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.exp-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.exp-card:hover .exp-card-bg { transform: scale(1.04); }

.exp-card-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(22, 28, 54, 0.92) 100%);
}

.exp-card-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.15rem;
  z-index: 2;
}

.exp-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

.exp-card-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Destinations ── */
.destinations-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--ml-indigo) 0%, var(--ml-earth) 100%);
}

.destinations-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.dest-card {
  position: relative;
  min-height: 300px;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  text-align: left;
  background: var(--ml-clay);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.dest-card--featured {
  grid-column: span 2;
  min-height: 340px;
}

.dest-card:hover {
  transform: translateY(-3px);
  border-color: rgba(108, 161, 159, 0.45);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.dest-card.is-selected {
  border-color: var(--ml-turquoise);
  box-shadow: 0 0 0 1px var(--ml-green), 0 12px 40px rgba(108, 161, 159, 0.15);
}

.dest-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.dest-card:hover .dest-card-bg { transform: scale(1.05); }

.dest-card-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(22, 28, 54, 0.55) 55%, rgba(22, 28, 54, 0.94) 100%);
}

.dest-card-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.25rem;
  z-index: 2;
}

.dest-card-tag {
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ml-sand);
  margin-bottom: 0.4rem;
  display: block;
}

.dest-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.dest-card--featured .dest-card-name { font-size: 2.25rem; }

.dest-card-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 32ch;
}

.dest-card-arrow {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  color: var(--ml-sand);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 2;
}

.dest-card:hover .dest-card-arrow { opacity: 1; }

/* ── Travel Packs ── */
.packs-section {
  padding: 5rem 0;
  background: var(--ml-indigo);
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.pack-card {
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--glass-border);
  background: rgba(35, 73, 113, 0.15);
  transition: border-color 0.25s, transform 0.25s;
}

.pack-card:hover {
  border-color: rgba(108, 161, 159, 0.4);
  transform: translateY(-2px);
}

.pack-tag {
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ml-turquoise);
  display: block;
  margin-bottom: 0.65rem;
}

.pack-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.pack-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Development notice ── */
.notice-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, rgba(43, 128, 102, 0.12), rgba(154, 100, 36, 0.08));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.notice-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.notice-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--ml-ivory);
  margin-bottom: 0.5rem;
}

.notice-text--accent {
  color: var(--ml-sand);
  font-style: italic;
  margin-bottom: 0;
}

/* ── Footer ── */
.site-footer {
  padding: 2.5rem 1.5rem 3rem;
  background: var(--ml-earth);
  border-top: 1px solid var(--glass-border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand p {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}

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

.footer-meta {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(234, 236, 232, 0.35);
}

/* ── Reveal animations (CSS only) ── */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: reveal-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-delay { animation-delay: 0.2s; }

@keyframes reveal-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .search-widget {
    grid-template-columns: 1fr 1fr;
  }
  .search-field--autocomplete { grid-column: 1 / -1; }
  .search-submit { grid-column: 1 / -1; width: 100%; }
  .experiences-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
  .destinations-track { grid-template-columns: 1fr; }
  .dest-card--featured { grid-column: span 1; }
  .search-widget { grid-template-columns: 1fr; }
  .hero-layout { padding-top: max(5rem, calc(4rem + env(safe-area-inset-top))); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
