@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');

:root {
  color-scheme: dark;
  --bg: #160f09;
  --bg-soft: #211710;
  --paper: #f0e7dc;
  --muted: #c2b4a4;
  --blue: #b8d0db;
  --blue-deep: #749eaf;
  --coral: #ea7d79;
  --sand: #d9b985;
  --ink: #061827;
  --max: 1220px;
  --copy: 760px;
  --nav: 82px;
}

:root[data-theme="ice"] {
  color-scheme: light;
  --bg: #b8d0db;
  --bg-soft: #dce8ec;
  --paper: #061827;
  --muted: #355260;
  --blue: #5a321f;
  --blue-deep: #385c6e;
  --coral: #a94146;
  --sand: #7c542e;
  --ink: #f6efdf;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--paper);
  font: 20px/1.72 Kazimir, Georgia, serif;
  text-rendering: optimizeLegibility;
}
body::selection { background: var(--coral); color: #160f09; }
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .28em; }
button { font: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--coral); outline-offset: 5px; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--bg);
  font: 700 12px/1.3 "Space Mono", monospace;
}
.skip-link:focus { transform: none; }

.lucide {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.exp-nav {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  min-height: var(--nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  color: #fff;
}
.exp-nav::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgb(5 11 14 / .68), transparent);
  pointer-events: none;
}
.brand {
  font: 700 clamp(25px, 3vw, 34px)/1 Kazimir, Georgia, serif;
  text-decoration: none;
  letter-spacing: -.02em;
}
.nav-links { display: flex; align-items: center; gap: 10px; }
.nav-link, .theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 13px;
  border: 0;
  border-radius: 999px;
  background: rgb(5 12 16 / .28);
  color: #fff;
  backdrop-filter: blur(10px);
  text-decoration: none;
  font: 700 11px/1.2 "Space Mono", monospace;
  transition: background .2s ease, transform .2s ease;
}
.theme-toggle { width: 42px; justify-content: center; cursor: pointer; }
.nav-link:hover, .theme-toggle:hover { background: rgb(5 12 16 / .58); transform: translateY(-1px); }

:is(.tour-page, .article-page) .exp-nav {
  position: fixed;
  z-index: 60;
  background: rgb(5 12 16 / .58);
  border-bottom: 1px solid rgb(255 255 255 / .12);
  box-shadow: 0 10px 36px rgb(0 0 0 / .12);
  backdrop-filter: blur(18px) saturate(1.16);
}
:is(.tour-page, .article-page) .exp-nav::after { display: none; }
.nav-book {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 16px;
  transform: translateX(-50%);
  border: 0;
  border-radius: 999px;
  background: var(--coral);
  color: #160f09;
  box-shadow: 0 8px 28px rgb(0 0 0 / .18);
  cursor: pointer;
  font: 700 11px/1.2 "Space Mono", monospace;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease;
}
.nav-book:hover { transform: translate(-50%, -2px); background: #f1a09b; }
:root[data-theme="ice"] .nav-book { color: #fff; }

.booking-dialog {
  width: min(620px, calc(100% - 32px));
  max-width: none;
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: var(--paper);
}
.booking-dialog::backdrop { background: rgb(2 8 11 / .5); backdrop-filter: blur(7px); }
.booking-bubble {
  position: relative;
  padding: clamp(38px, 7vw, 66px) clamp(22px, 6vw, 54px) clamp(30px, 6vw, 48px);
  border: 1px solid color-mix(in srgb, var(--blue) 42%, transparent);
  border-radius: clamp(24px, 4vw, 38px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  box-shadow: 0 30px 100px rgb(0 0 0 / .35);
  backdrop-filter: blur(28px) saturate(1.18);
  text-align: center;
}
.booking-dialog[open] .booking-bubble { animation: booking-arrive .28s cubic-bezier(.2,.8,.2,1) both; }
.booking-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--blue) 34%, transparent);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}
.booking-kicker,.booking-service-label { color: var(--coral); font: 700 11px/1.5 "Space Mono",monospace; letter-spacing: .08em; text-transform: uppercase; }
.booking-bubble h2 { margin: 12px 0 24px; font-size: clamp(37px, 7vw, 58px); }
.booking-phone { display: inline-flex; align-items: center; gap: 10px; color: var(--paper); font: 700 clamp(22px, 4vw, 31px)/1.3 Kazimir,Georgia,serif; text-decoration: none; }
.booking-phone:hover span { text-decoration: underline; }
.booking-service-label { margin-top: 30px; }
.booking-services { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 13px; }
.booking-services a,.booking-service {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid color-mix(in srgb, var(--blue) 34%, transparent);
  border-radius: 999px;
  color: var(--paper);
  text-decoration: none;
  font: 700 10px/1.2 "Space Mono",monospace;
}
.booking-service { opacity: .72; }
.booking-services a:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-1px); }
.booking-secondary { display: flex; justify-content: center; gap: 10px; margin-top: 30px; padding-top: 24px; border-top: 1px solid color-mix(in srgb, var(--blue-deep) 40%, transparent); }
.booking-secondary a { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 10px 14px; border-radius: 999px; background: color-mix(in srgb, var(--blue) 12%, transparent); color: var(--paper); text-decoration: none; font: 700 11px/1.2 "Space Mono",monospace; }
.booking-secondary a:hover { background: color-mix(in srgb, var(--blue) 22%, transparent); transform: translateY(-1px); }
body.booking-open { overflow: hidden; }
@keyframes booking-arrive { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  height: min(900px, 100svh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #263536;
}
.hero picture, .hero picture img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero picture { z-index: -3; }
.hero picture img { object-fit: cover; object-position: center 46%; animation: hero-scale 1.4s cubic-bezier(.2,.8,.2,1) both; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgb(3 8 10 / .68) 0%, rgb(3 8 10 / .18) 62%, transparent 100%),
    linear-gradient(0deg, rgb(3 8 10 / .88) 0%, transparent 58%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  z-index: -1;
  background: linear-gradient(0deg, var(--bg), transparent);
}
.hero-copy {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 clamp(58px, 8vw, 100px);
  animation: hero-arrive .8s .12s cubic-bezier(.2,.8,.2,1) both;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #f6d9d5;
  font: 700 12px/1.4 "Space Mono", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 44px; height: 1px; background: currentColor; }
h1, h2, h3 { margin: 0; font-family: Kazimir, Georgia, serif; font-weight: 700; text-wrap: balance; }
h1 { max-width: 1000px; font-size: clamp(47px, 7vw, 92px); line-height: .99; letter-spacing: -.035em; }
h2 { font-size: clamp(38px, 5.2vw, 68px); line-height: 1.04; letter-spacing: -.025em; }
h3 { font-size: clamp(27px, 3vw, 39px); line-height: 1.13; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 32px;
  color: #f3e9dd;
  font: 700 12px/1.5 "Space Mono", monospace;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.tour-page .hero-meta {
  max-width: 1020px;
  gap: 10px 20px;
  font-size: 11px;
}
.tour-page .hero-meta span { white-space: nowrap; }
.tour-page .hero-meta .lucide { color: #f6c4bb; }

.section-shell { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.lede {
  display: grid;
  grid-template-columns: minmax(120px, .65fr) minmax(0, 2fr);
  gap: clamp(38px, 8vw, 130px);
  padding: clamp(85px, 12vw, 160px) 0;
}
.section-label {
  color: var(--coral);
  font: 700 12px/1.5 "Space Mono", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section-label span { display: block; margin-bottom: 14px; font-size: 26px; }
.prose { max-width: var(--copy); }
.prose p { margin: 0 0 1.45em; }
.prose p:last-child { margin-bottom: 0; }
.lede .prose > p:first-child::first-letter {
  float: left;
  margin: .03em .14em 0 0;
  color: var(--coral);
  font: 700 4.7em/.76 Kazimir, Georgia, serif;
}

.road-sequence {
  width: min(1500px, calc(100% - 28px));
  margin: 0 auto clamp(100px, 13vw, 170px);
  display: grid;
  grid-template-columns: 1.25fr .8fr .8fr;
  align-items: end;
  gap: clamp(12px, 2vw, 28px);
}
.road-sequence figure, .photo-set figure, .photo-ribbon figure, .stay-photo { margin: 0; min-width: 0; }
.road-sequence figure:nth-child(2) { transform: translateY(13%); }
.road-sequence figure:nth-child(3) { transform: translateY(-8%); }
.road-sequence img, .photo-set img, .photo-ribbon img, .stay-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(16px, 2.2vw, 32px);
  transition: transform .55s cubic-bezier(.2,.8,.2,1), filter .35s ease;
}
.road-sequence img { aspect-ratio: 4 / 5; }
.road-sequence figure:first-child img { aspect-ratio: 4 / 3; }
figure:hover > img, .stay-photo:hover img { transform: scale(1.012); filter: saturate(1.04); }

.option { padding: clamp(90px, 12vw, 165px) 0; }
.option--soft { background: var(--bg-soft); }
.option-heading { display: grid; grid-template-columns: 1.5fr .7fr; gap: 40px; align-items: end; padding-bottom: 44px; }
.option-heading .meta { color: var(--coral); text-align: right; font: 700 13px/1.6 "Space Mono", monospace; }
.option-intro { max-width: var(--copy); margin: 0 0 70px; }
.stop { display: grid; grid-template-columns: minmax(150px, .55fr) minmax(0, 1.65fr); gap: clamp(32px, 7vw, 110px); padding: clamp(62px, 8vw, 100px) 0; }
.stop + .stop { border-top: 1px solid color-mix(in srgb, var(--blue-deep) 45%, transparent); }
.stop-index { color: var(--coral); font: 700 12px/1.5 "Space Mono", monospace; letter-spacing: .08em; }
.stop-copy { max-width: var(--copy); }
.stop-copy h3 { margin-bottom: 24px; }
.stop-copy p { margin: 0 0 1.25em; }
.stop-copy p:last-child { margin-bottom: 0; }

.story-photo-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(150px, .75fr);
  gap: clamp(12px, 2vw, 22px);
  align-items: stretch;
  aspect-ratio: 2.35 / 1;
  margin: clamp(34px, 5vw, 56px) 0 clamp(50px, 7vw, 78px);
}
.story-photo-pair figure {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(16px, 2vw, 28px);
}
.story-photo-pair img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: inherit;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), filter .35s ease;
}
.story-photo-pair figure:first-child img,
.story-photo-pair figure:last-child img { aspect-ratio: auto; }
.story-photo-pair--beach figure:first-child img { object-position: center 54%; }
.story-photo-pair--river figure:first-child img { object-position: center 48%; }

.icon-list, .bird-list { list-style: none; padding: 0; margin: 32px 0; }
.icon-list li, .bird-list li { display: flex; align-items: flex-start; gap: 12px; }
.icon-list li + li { margin-top: 14px; }
.icon-list .lucide, .bird-list .lucide { margin-top: .35em; color: var(--coral); }
.bird-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 28px; }
.bird-list li { color: var(--muted); }

.photo-set {
  width: min(1500px, calc(100% - 28px));
  margin: 28px auto clamp(82px, 10vw, 140px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 26px);
}
.photo-set figure { grid-column: span 4; min-height: 310px; }
.photo-set figure.wide { grid-column: span 8; }
.photo-set figure.tall { grid-column: span 4; min-height: 520px; }
.photo-set figure.full { grid-column: 1 / -1; min-height: min(72vw, 760px); }
.photo-set img { min-height: 100%; aspect-ratio: 4 / 3; }
.photo-set figure.tall img { aspect-ratio: 3 / 4; }
.photo-set figure.full img { aspect-ratio: 16 / 9; }

.bird-photo-grid {
  width: min(1220px, calc(100% - 40px));
  gap: clamp(10px, 1.4vw, 18px);
}
.bird-photo-grid figure,
.bird-photo-grid figure.wide,
.bird-photo-grid figure.tall {
  grid-column: span 3;
  min-height: clamp(170px, 18vw, 245px);
}
.bird-photo-grid img,
.bird-photo-grid figure.tall img,
.bird-photo-grid figure.portrait img { aspect-ratio: 4 / 3; }

.sunset-photo-pair { width: min(1100px, calc(100% - 40px)); }
.sunset-photo-pair figure {
  grid-column: span 6;
  min-height: clamp(260px, 30vw, 460px);
}
.sunset-photo-pair img { aspect-ratio: 4 / 3; }

.photo-ribbon {
  display: flex;
  gap: clamp(16px, 2.4vw, 34px);
  width: 100%;
  margin: 32px 0 clamp(85px, 11vw, 150px);
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--blue-deep) transparent;
}
.photo-ribbon figure { flex: 0 0 min(66vw, 650px); scroll-snap-align: center; }
.photo-ribbon figure.portrait, .photo-ribbon figure.tall { flex-basis: min(48vw, 440px); }
.photo-ribbon img { aspect-ratio: 4 / 3; }
.photo-ribbon figure.portrait img, .photo-ribbon figure.tall img { aspect-ratio: 3 / 4; }

.inclusion {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  padding: 58px 0 0;
  border-top: 2px solid var(--coral);
}
.inclusion h3 { margin-bottom: 22px; }
.price-line { color: var(--coral); font: 700 clamp(22px, 3vw, 34px)/1.3 Kazimir, Georgia, serif; text-align: right; }

.practical { padding: clamp(100px, 13vw, 180px) 0; }
.practical-grid { display: grid; grid-template-columns: .75fr 1.6fr; gap: clamp(40px, 8vw, 120px); }
.practical h2 { position: sticky; top: 50px; align-self: start; }
.practical .icon-list { margin-top: 0; }
.practical .icon-list li { padding: 0 0 26px; }
.practical .icon-list li + li { margin: 0; padding-top: 26px; border-top: 1px solid color-mix(in srgb, var(--blue-deep) 35%, transparent); }

.stay { position: relative; padding: clamp(95px, 13vw, 180px) 0; background: var(--bg-soft); overflow: hidden; }
.stay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 120px); align-items: center; }
.stay-photos { display: grid; gap: clamp(18px, 2.4vw, 30px); align-self: start; }
.stay-photo { min-height: 620px; }
.stay-photo img { min-height: 620px; object-position: center; }
.stay-copy .meta { margin: 24px 0 30px; color: var(--coral); font: 700 14px/1.5 "Space Mono", monospace; }
.stay-copy p { max-width: 620px; }
.stay-list { columns: 2; column-gap: 30px; }
.stay-list li { break-inside: avoid; margin-bottom: 12px; }
.stay-closing { margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 52px;
  margin-top: 28px;
  padding: 13px 19px;
  border-radius: 999px;
  background: var(--coral);
  color: #160f09;
  text-decoration: none;
  font: 700 12px/1.25 "Space Mono", monospace;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: #f1a09b; }
.button--secondary { background: var(--blue); }

.article-body { width: min(920px, calc(100% - 40px)); margin: 0 auto; padding: clamp(90px, 12vw, 170px) 0; }
.article-body p { max-width: var(--copy); margin: 0 auto 1.55em; }
.article-body [data-copy-index="4"] { margin-top: 2.4em; color: var(--coral); font-size: clamp(30px, 4vw, 48px); line-height: 1.15; }
.article-body .photo-set { width: min(1180px, calc(100vw - 40px)); margin-left: calc((100% - min(1180px, calc(100vw - 40px))) / 2); }
.article-body .photo-ribbon { width: 100vw; margin-left: calc((100% - 100vw) / 2); }
.article-beat { width: min(1180px, calc(100% - 40px)); margin: 0 auto clamp(90px, 12vw, 170px); }
.article-cta {
  padding: clamp(90px, 12vw, 150px) 0;
  border-top: 1px solid color-mix(in srgb, var(--blue-deep) 36%, transparent);
  background: var(--bg);
}
.article-cta .section-label { margin-bottom: clamp(30px, 4vw, 52px); }
.article-tour-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  padding: 8px 0 clamp(30px, 4vw, 54px);
  border-bottom: 1px solid color-mix(in srgb, var(--blue-deep) 48%, transparent);
  color: var(--paper);
  text-decoration: none;
}
.article-tour-link h2 { max-width: 920px; transition: color .25s ease; }
.article-tour-arrow {
  display: grid;
  width: clamp(82px, 10vw, 132px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--coral);
  border-radius: 50%;
  color: var(--coral);
  transition: color .25s ease, background .25s ease, transform .3s cubic-bezier(.2,.8,.2,1);
}
.article-tour-arrow .lucide { width: 48%; height: 48%; stroke-width: 1.35; }
.article-tour-link:hover h2 { color: var(--coral); }
.article-tour-link:hover .article-tour-arrow {
  background: var(--coral);
  color: #160f09;
  transform: translate(6px, -6px);
}


/* #user: supplied Salina plants-and-wildlife section; #generated: layout. */
.habitat-inset {
  width: min(var(--max), calc(100% - 48px));
  margin: clamp(70px, 9vw, 120px) auto;
  padding: clamp(36px, 6vw, 72px);
  background: color-mix(in srgb, var(--blue) 8%, transparent);
}
.habitat-copy { max-width: var(--copy); }
.habitat-copy h2, .habitat-copy h3 { margin: 0 0 30px; color: var(--blue); }
.habitat-copy p { margin: 0 0 1.2em; }
.habitat-photos { width: 100%; margin: 46px 0 0; }
.habitat-photos figure:first-child { grid-column: span 8; }
.habitat-photos figure:last-child { grid-column: span 4; }
.habitat-photos img { height: 100%; object-fit: cover; }

.contact-footer { padding: clamp(85px, 11vw, 140px) 0 42px; }
.contact-grid { display: grid; grid-template-columns: 1.3fr repeat(2, 1fr); gap: clamp(40px, 7vw, 100px); }
.contact-grid h2 { max-width: 560px; }
.contact-block { padding-top: 14px; }
.contact-label { margin-bottom: 20px; color: var(--coral); font: 700 11px/1.5 "Space Mono", monospace; text-transform: uppercase; letter-spacing: .08em; }
.contact-link { display: flex; align-items: flex-start; gap: 10px; margin: 0 0 13px; text-decoration: none; }
.contact-link:hover span { text-decoration: underline; }
.contact-note { color: var(--muted); font-size: 17px; }
.footer-base { display: flex; justify-content: space-between; gap: 24px; margin-top: 90px; padding-top: 26px; border-top: 1px solid color-mix(in srgb, var(--blue-deep) 38%, transparent); color: var(--muted); font: 11px/1.5 "Space Mono", monospace; }

.share-button {
  position: fixed;
  z-index: 30;
  right: clamp(14px, 2.4vw, 34px);
  bottom: clamp(14px, 2.4vw, 34px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid color-mix(in srgb, var(--blue) 55%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  color: var(--paper);
  box-shadow: 0 10px 35px rgb(0 0 0 / .18);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font: 700 11px/1.2 "Space Mono", monospace;
  transition: transform .2s ease, background .2s ease;
}
.share-button:hover { transform: translateY(-2px); background: var(--bg); }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@keyframes hero-scale { from { transform: scale(1.045); filter: saturate(.82); } to { transform: scale(1); filter: saturate(1); } }
@keyframes hero-arrive { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

@media (max-width: 1180px) {
  .nav-link span { display: none; }
}

@media (max-width: 900px) {
  body { font-size: 19px; }
  .lede, .option-heading, .stop, .practical-grid, .stay-grid, .contact-grid { grid-template-columns: 1fr; }
  .section-label span { display: inline; margin-right: 12px; }
  .option-heading .meta, .price-line { text-align: left; }
  .stop { gap: 18px; }
  .practical h2 { position: static; }
  .stay-photo, .stay-photo img { min-height: min(120vw, 700px); }
  .photo-set figure, .photo-set figure.tall { grid-column: span 6; }
  .photo-set figure.wide, .photo-set figure.full { grid-column: 1 / -1; }
  .contact-grid { gap: 24px; }
}

@media (max-width: 620px) {
  .tour-page .hero-meta { gap: 8px 13px; font-size: 10px; }
  :root { --nav: 72px; }
  body { font-size: 18px; }
  .exp-nav { padding: 14px 18px; }
  .nav-links { gap: 6px; }
  .nav-link, .theme-toggle { min-height: 40px; padding: 8px 10px; }
  .nav-book { min-height: 40px; padding: 8px 12px; }
  .booking-secondary { flex-wrap: wrap; }
  .hero { min-height: 720px; height: 100svh; }
  .hero picture img { object-position: 56% center; }
  .hero-copy { width: calc(100% - 36px); padding-bottom: 62px; }
  h1 { font-size: clamp(42px, 13vw, 66px); }
  h2 { font-size: clamp(35px, 11vw, 52px); }
  .section-shell, .article-body, .article-beat { width: calc(100% - 36px); }
  .lede { padding-block: 84px; gap: 26px; }
  .road-sequence { grid-template-columns: 1fr 1fr; }
  .road-sequence figure:first-child { grid-column: 1 / -1; }
  .road-sequence figure:nth-child(2), .road-sequence figure:nth-child(3) { transform: none; }
  .option { padding-block: 88px; }
  .option-heading { gap: 22px; padding-bottom: 22px; }
  .stop { padding-block: 52px; }
  .bird-list { grid-template-columns: 1fr; }
  .photo-set { width: calc(100% - 24px); }
  .photo-set figure, .photo-set figure.tall, .photo-set figure.wide { grid-column: 1 / -1; min-height: 0; }
  .photo-set img, .photo-set figure.tall img { aspect-ratio: auto; max-height: 78svh; }
  .sunset-photo-pair img { aspect-ratio: 4 / 3; max-height: none; }
  .photo-ribbon figure { flex-basis: 82vw; }
  .photo-ribbon figure.portrait { flex-basis: 72vw; }
  .story-photo-pair { grid-template-columns: 1fr; aspect-ratio: auto; }
  .story-photo-pair figure:first-child img { height: auto; aspect-ratio: 3 / 2; }
  .story-photo-pair figure:last-child { width: 78%; justify-self: end; }
  .story-photo-pair figure:last-child img { height: auto; aspect-ratio: 4 / 5; }
  .article-tour-link { grid-template-columns: 1fr; align-items: start; }
  .article-tour-arrow { width: 82px; justify-self: end; }
  .inclusion { grid-template-columns: 1fr; gap: 26px; }
  .stay-list { columns: 1; }
  .footer-base { flex-direction: column; margin-top: 60px; }
  .share-button span { display: none; }
  .share-button { width: 46px; justify-content: center; padding-inline: 0; }
}

@media (max-width: 400px) {
  :is(.tour-page, .article-page) .brand { font-size: 21px; }
  :is(.tour-page, .article-page) .nav-links { gap: 4px; }
  :is(.tour-page, .article-page) .nav-link, :is(.tour-page, .article-page) .theme-toggle { padding-inline: 8px; }
  .nav-book { gap: 5px; padding-inline: 10px; font-size: 10px; }
  .nav-book .lucide { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
