@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo Display";
  src: url("../fonts/archivo-latin-wdth-normal.woff2") format("woff2-variations");
  font-weight: 400;
  font-stretch: 62.5% 125%;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --fog: #ddc7a3;
  --surface: #ead6b7;
  --surface-raised: #f2e3cc;
  --ink: #171814;
  --ink-soft: #3d352c;
  --muted: #5f5144;
  --line: #b89b76;
  --line-strong: #846743;
  --orange: #d86d1f;
  --orange-bright: #e47c2c;
  --orange-text: #7d330c;
  --on-orange: #171814;
  --focus: #7d330c;
  --max: 1440px;
  --text: 760px;
  --header-h: 82px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 7rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 70px rgb(76 49 23 / 0.14);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--fog);
  color: var(--ink);
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
.icon-sprite { display: none; }
img { height: auto; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, p, ul, ol, figure, blockquote { margin-top: 0; }
h1, h2, h3 {
  color: var(--ink);
  font-family: "Archivo Display", "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-stretch: 72%;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}
h1 { font-size: clamp(3.15rem, 7.6vw, 8.4rem); }
h2 { font-size: clamp(2.4rem, 5.6vw, 6rem); }
h3 { font-size: clamp(1.35rem, 2.25vw, 2.1rem); line-height: 1.08; }
p { max-width: 68ch; }
a { color: inherit; }

::selection { background: var(--orange); color: var(--on-orange); }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--fog);
  font-weight: 750;
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 3rem), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 3rem), var(--text));
  margin-inline: auto;
}

.section { padding-block: var(--space-8); }
.section-tight { padding-block: var(--space-7); }
.section-rule { border-top: 1px solid var(--line); }
.section-dark { background: var(--surface); color: var(--ink); }
.section-dark h2, .section-dark h3 { color: var(--ink); }
.section-dark .muted { color: var(--muted); }
.section-white { background: var(--surface); }

/* Site-wide desert field: four different ridgelines rotate through each page. */
#main-content > section {
  --section-dune-image: url("../images/decor/dune-contours.svg");
  --section-dune-position: 42% 100%;
  --section-dune-size: 126% 68%;
  --section-dune-opacity: 0.2;
  position: relative;
  isolation: isolate;
}

#main-content > section:not(.landscape-atlas)::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: var(--section-dune-image) var(--section-dune-position) / var(--section-dune-size) no-repeat;
  opacity: var(--section-dune-opacity);
}

#main-content > section:not(.landscape-atlas) > * { position: relative; z-index: 1; }

#main-content > section:nth-of-type(4n + 2) {
  --section-dune-image: url("../images/decor/dune-crescent.svg");
  --section-dune-position: 76% 100%;
  --section-dune-size: 114% 76%;
  --section-dune-opacity: 0.17;
}

#main-content > section:nth-of-type(4n + 3) {
  --section-dune-image: url("../images/decor/dune-saddle.svg");
  --section-dune-position: 24% 100%;
  --section-dune-size: 121% 72%;
  --section-dune-opacity: 0.19;
}

#main-content > section:nth-of-type(4n) {
  --section-dune-image: url("../images/decor/dune-wind-ridge.svg");
  --section-dune-position: 88% 100%;
  --section-dune-size: 116% 82%;
  --section-dune-opacity: 0.16;
}

#main-content > .section-dark { --section-dune-opacity: 0.24; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-4);
  color: var(--orange-text);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 2.25rem; height: 2px; background: currentColor; }
.section-dark .eyebrow { color: var(--orange-text); }

.lead {
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: clamp(1.16rem, 1.75vw, 1.5rem);
  line-height: 1.5;
}
.muted { color: var(--muted); }
.kicker { font-weight: 700; color: var(--ink-soft); }
.micro { font-size: 0.86rem; line-height: 1.45; color: var(--muted); }

.button-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid var(--ink);
  border-radius: 1px;
  padding: 0.78rem 1.15rem;
  background: var(--ink);
  color: var(--fog);
  font-size: 0.86rem;
  font-weight: 780;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms var(--ease), background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--orange { background: var(--orange); border-color: var(--orange); color: var(--on-orange); }
.button--outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.button--outline:hover { border-color: var(--ink); }
.button--light { background: #f3f4f0; color: #171b1b; border-color: #f3f4f0; }
.section-dark .button--light { background: var(--orange); color: var(--on-orange); border-color: var(--orange); }
.button svg { width: 1.1rem; height: 1.1rem; flex: 0 0 auto; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  color: var(--orange-text);
  font-weight: 760;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 1px;
}
.section-dark .text-link { color: var(--orange-text); }
.text-link svg { width: 1rem; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--fog) 92%, transparent);
  backdrop-filter: blur(16px) saturate(130%);
}
.header-inner {
  width: min(calc(100% - 2rem), var(--max));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.brand {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  flex: 0 1 300px;
}
.brand img { width: min(270px, 35vw); max-height: 62px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: clamp(0.75rem, 2.2vw, 2.1rem); }
.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav .button { color: var(--on-orange); min-height: 44px; }
.nav-toggle { display: none; }

.hero {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 8rem) max(1.5rem, calc((100vw - var(--max)) / 2));
  padding-right: clamp(2rem, 6vw, 7rem);
}
.hero-copy h1 { max-width: 9.5ch; margin-bottom: var(--space-5); }
.hero-copy .lead { max-width: 43ch; margin-bottom: var(--space-5); }
.hero-media { position: relative; min-height: 560px; overflow: hidden; background: var(--surface-raised); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 42% 50%; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--fog) 24%, transparent), transparent 22%);
  pointer-events: none;
}
.hero-caption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  max-width: 38ch;
  padding: 0.65rem 0.8rem;
  background: rgb(23 27 27 / 0.88);
  color: #f3f4f0;
  font-size: 0.76rem;
  line-height: 1.4;
}

.home-photo-teaser {
  overflow: clip;
  border-bottom: 1px solid var(--line);
  padding-block: clamp(4.5rem, 7vw, 7rem);
}
.home-photo-teaser__layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}
.home-photo-teaser__copy h2 { max-width: 9ch; margin-bottom: 1.5rem; }
.home-photo-teaser__copy > p:not(.eyebrow) { color: var(--muted); }
.home-photo-teaser__frames {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1.5rem);
  align-items: end;
}
.home-photo-teaser__frame { min-width: 0; margin: 0; overflow: hidden; background: var(--surface-raised); }
.home-photo-teaser__frame--scale { grid-column: 1 / 3; }
.home-photo-teaser__frame--motion { grid-column: 3 / 5; margin-bottom: clamp(2rem, 4vw, 4rem); }
.home-photo-teaser__frame--stillness { grid-column: 5 / 9; }
.home-photo-teaser__frame img { width: 100%; height: 100%; object-fit: cover; }
.home-photo-teaser__frame--scale img,
.home-photo-teaser__frame--motion img { aspect-ratio: 3 / 4; }
.home-photo-teaser__frame--stillness img { aspect-ratio: 4 / 3; }

.route-shutter { border-top: 1px solid var(--line); }
.route-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.55fr) minmax(260px, 0.9fr);
  min-height: 190px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  transition: min-height 420ms var(--ease), background-color 180ms ease;
}
.route-band.is-active { min-height: 430px; background: var(--surface-raised); }
.route-tab {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  border: 0;
  border-right: 1px solid var(--line);
  padding: clamp(1.4rem, 3vw, 2.75rem);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.route-tab::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 220ms var(--ease);
}
.is-active .route-tab::before { transform: scaleY(1); }
.route-index { color: var(--muted); font-size: 0.8rem; font-weight: 760; letter-spacing: 0.12em; }
.route-name { max-width: 10ch; font-size: clamp(1.65rem, 3vw, 3.4rem); font-weight: 820; letter-spacing: -0.04em; line-height: 0.92; }
.route-place { color: var(--muted); font-size: 0.75rem; font-weight: 720; letter-spacing: 0.1em; text-transform: uppercase; }
.route-visual { min-width: 0; overflow: hidden; background: #202525; }
.route-visual img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04);
  transform: scale(1.045);
  transition: filter 500ms ease, transform 800ms var(--ease), opacity 300ms ease;
}
.route-band:not(.is-active) .route-visual img { opacity: 0.72; }
.route-band.is-active .route-visual img { filter: saturate(0.94) contrast(1.03); transform: scale(1); opacity: 1; }
.route-band[data-route="sandwich"] .route-visual img { object-position: 42% 50%; }
.route-band[data-route="spitzkoppe"] .route-visual img { object-position: center; }
.route-band[data-route="moon"] .route-visual img { object-position: 60% center; }
.route-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-left: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 3rem);
  opacity: 1;
}
.js .route-band:not(.is-active) .route-panel {
  visibility: hidden;
  opacity: 0;
  transform: translateX(14px);
  pointer-events: none;
}
.js .route-panel { transition: opacity 240ms ease 110ms, transform 360ms var(--ease) 90ms, visibility 0s linear 0s; }
.route-panel p { color: var(--ink-soft); }
.route-panel .button { margin-top: 0.5rem; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: var(--space-6);
  align-items: end;
  margin-bottom: var(--space-7);
}
.section-head h2 { margin-bottom: 0; }
.section-head p { margin-bottom: 0; justify-self: end; }

.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.fact {
  min-height: 190px;
  padding: var(--space-5);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fact svg { width: 1.55rem; height: 1.55rem; color: var(--orange-text); margin-bottom: var(--space-5); }
.fact strong { display: block; margin-bottom: 0.5rem; font-size: 1.06rem; line-height: 1.25; }
.fact span { color: var(--muted); font-size: 0.92rem; line-height: 1.45; }

.editorial-grid { display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr); gap: clamp(3rem, 8vw, 9rem); align-items: start; }
.editorial-grid--reverse { grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr); }
.editorial-sticky { position: sticky; top: calc(var(--header-h) + 2rem); }
.big-number { color: var(--orange-text); font-size: clamp(5rem, 13vw, 13rem); font-weight: 850; letter-spacing: -0.08em; line-height: 0.8; }
.prose > * + * { margin-top: 1.25rem; }
.prose h2, .prose h3 { margin-top: 2.5rem; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li + li { margin-top: 0.75rem; }

.tour-list { border-top: 1px solid var(--line); }
.tour-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1.1fr) minmax(240px, 0.75fr) auto;
  gap: var(--space-5);
  align-items: center;
  min-height: 180px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  padding-block: var(--space-5);
}
.tour-row:hover .tour-row__arrow { transform: translateX(6px); }
.tour-row__index { color: var(--orange-text); font-weight: 800; letter-spacing: 0.1em; }
.tour-row h2 { font-size: clamp(2rem, 4.2vw, 4.5rem); margin-bottom: 0; }
.tour-row p { color: var(--muted); margin-bottom: 0; }
.tour-row__arrow { width: 2.2rem; transition: transform 180ms var(--ease); }

.page-hero {
  min-height: 64svh;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  border-bottom: 1px solid var(--line);
}
.page-hero__copy { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(3rem, 7vw, 7rem) max(1.5rem, calc((100vw - var(--max)) / 2)); padding-right: clamp(2rem, 5vw, 6rem); }
.page-hero__copy h1 { font-size: clamp(3.2rem, 7vw, 7.2rem); margin-bottom: var(--space-5); }
.page-hero__media { min-height: 460px; background: var(--surface-raised); overflow: hidden; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero--sandwich .page-hero__media img { object-position: 42% 50%; }
.page-hero--spitz .page-hero__media img { object-position: center; }
.page-hero--moon .page-hero__media img { object-position: 58% center; }
.page-hero__meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; color: var(--muted); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }

.route-steps { counter-reset: route; border-top: 1px solid var(--line); }
.route-step {
  counter-increment: route;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: var(--space-5);
  padding-block: var(--space-5);
  border-bottom: 1px solid var(--line);
}
.route-step::before { content: counter(route, decimal-leading-zero); color: var(--orange-text); font-weight: 820; letter-spacing: 0.1em; }
.route-step h3 { margin-bottom: 0.5rem; }
.route-step p { color: var(--muted); margin-bottom: 0; }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.info-panel { padding: var(--space-5); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.info-panel h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.info-panel p, .info-panel li { color: var(--muted); font-size: 0.96rem; }
.info-panel ul { padding-left: 1.1rem; margin-bottom: 0; }

.notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  border-left: 5px solid var(--orange);
  padding: 1.2rem 1.4rem;
  background: var(--surface-raised);
}
.notice svg { width: 1.35rem; margin-top: 0.15rem; color: var(--orange-text); }
.notice p { margin: 0; color: var(--ink-soft); }

.experience-story {
  overflow: clip;
  border-top: 1px solid var(--line);
  padding-block: clamp(6rem, 10vw, 11rem);
}
.experience-story__intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}
.experience-story__intro > div { grid-column: 1 / 8; }
.experience-story__intro h2 { max-width: 9ch; margin-bottom: 0; }
.experience-story__intro > p {
  grid-column: 9 / 13;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}
.experience-story__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  row-gap: clamp(5rem, 9vw, 10rem);
}
.experience-shot { min-width: 0; margin: 0; }
.experience-shot--scale { grid-column: 1 / 6; }
.experience-shot--motion { grid-column: 7 / 12; margin-top: clamp(5rem, 9vw, 9rem); }
.experience-shot--stillness { grid-column: 3 / 11; }
.experience-shot img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--surface-raised);
}
.experience-shot--stillness img { aspect-ratio: 4 / 3; }
.experience-shot figcaption {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}
.experience-shot figcaption span {
  flex: 0 0 auto;
  color: var(--orange-text);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.figure { margin: 0; }
.figure img { width: 100%; max-height: 760px; object-fit: cover; background: var(--surface-raised); }
.figure figcaption { padding-top: 0.75rem; color: var(--muted); font-size: 0.78rem; line-height: 1.5; }
.figure--portrait { width: min(100%, 40rem); margin-inline: auto; }
.figure--portrait img { max-height: none; object-fit: contain; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  font-weight: 760;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--orange-text); font-size: 1.75rem; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { max-width: 64ch; padding: 0 3rem 1.5rem 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr); gap: clamp(3rem, 8vw, 9rem); align-items: start; }
.contact-links { border-top: 1px solid var(--line); }
.contact-link {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.contact-link svg { width: 1.4rem; color: var(--orange-text); }
.contact-link strong, .contact-link span { display: block; }
.contact-link span { color: var(--muted); font-size: 0.9rem; }
.contact-link__arrow { transition: transform 180ms var(--ease); }
.contact-link:hover .contact-link__arrow { transform: translateX(5px); }

.form { display: grid; gap: 1rem; }
.field-group { min-width: 0; margin: 0; border: 0; padding: 0; }
.field-group legend {
  margin-bottom: 0.35rem;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.field-group > .micro { margin-bottom: 0.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: 0.45rem; }
.field label { font-size: 0.78rem; font-weight: 780; letter-spacing: 0.08em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 0.85rem 0.95rem;
  background: var(--surface);
  color: var(--ink);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: 0.8; }
.field-error { color: #8c2f18; font-size: 0.82rem; font-weight: 700; }
.form-status { min-height: 1.5rem; color: var(--muted); font-size: 0.88rem; }

.cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-5);
  padding-block: var(--space-7);
}
.cta-strip h2 { max-width: 12ch; margin-bottom: 0; }
.cta-strip .button-row { justify-content: flex-end; }

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: clip;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.site-footer::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: url("../images/decor/dune-wind-ridge.svg") 82% 100% / 112% 94% no-repeat;
  opacity: 0.14;
}
.site-footer > * { position: relative; z-index: 1; }
.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) repeat(2, minmax(150px, 0.5fr));
  gap: var(--space-6);
  padding-block: var(--space-7);
}
.footer-brand img { width: min(300px, 100%); margin-bottom: 1.25rem; }
.footer-brand p { color: var(--muted); max-width: 42ch; }
.footer-col h2 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a { display: block; min-height: 42px; color: var(--muted); text-decoration: none; }
.footer-col a:hover { color: var(--ink); }
.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-block: 1.25rem;
  color: var(--muted);
  font-size: 0.78rem;
}
.footer-attribution { max-width: 90ch; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 560ms ease, transform 700ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  :root { --space-8: 5.5rem; }
  .site-nav { gap: 0.8rem; }
  .site-nav a { font-size: 0.72rem; }
  .route-band { grid-template-columns: minmax(210px, 0.75fr) minmax(0, 1.25fr) minmax(230px, 0.85fr); }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  :root { --header-h: 72px; --space-8: 4.5rem; --space-7: 3.5rem; }
  .container, .narrow { width: min(calc(100% - 2rem), var(--max)); }
  .brand img { width: 230px; max-width: 61vw; }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line-strong);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
  }
  .nav-toggle svg { width: 23px; }
  .site-nav {
    position: fixed;
    inset: calc(var(--header-h) + 33px) 0 0 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: color-mix(in srgb, var(--fog) 97%, transparent);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    clip-path: inset(0 0 0 100%);
    transition: clip-path 320ms var(--ease), opacity 180ms ease, visibility 0s linear 320ms;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; visibility: visible; clip-path: inset(0); transition-delay: 0s; }
  .site-nav a { min-height: 62px; border-bottom: 1px solid var(--line); padding-inline: 0.5rem; font-size: 0.88rem; }
  .site-nav a:not(.button)::after { display: none; }
  .site-nav .button { margin-top: 1rem; }

  html:not(.js) .site-header { position: static; height: auto; }
  html:not(.js) .header-inner { height: auto; flex-wrap: wrap; padding-block: 0.75rem; }
  html:not(.js) .nav-toggle { display: none; }
  html:not(.js) .site-nav {
    position: static;
    inset: auto;
    z-index: auto;
    flex: 1 0 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    clip-path: none;
    transition: none;
  }
  html:not(.js) .site-nav a {
    justify-content: center;
    min-height: 44px;
    padding-inline: 0.35rem;
    border: 1px solid var(--line);
    font-size: 0.72rem;
  }
  html:not(.js) .site-nav .button { grid-column: 1 / -1; margin-top: 0; }

  .hero, .page-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { min-height: 68svh; padding: 4rem 1rem; }
  .hero-copy h1 { font-size: clamp(3.4rem, 14vw, 6rem); }
  .hero-media { min-height: 0; aspect-ratio: 4 / 3; }
  .hero-media::after { display: none; }
  .page-hero__copy { min-height: 54svh; padding: 4rem 1rem 3rem; }
  .page-hero__media { min-height: 54svh; }
  .page-hero--sandwich .page-hero__media { min-height: 0; aspect-ratio: 4 / 3; }

  .section-head { grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: var(--space-6); }
  .section-head p { justify-self: start; }
  .editorial-grid, .editorial-grid--reverse, .contact-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .editorial-sticky { position: static; }
  .route-band, .route-band.is-active { grid-template-columns: 1fr; min-height: auto; }
  .route-tab { min-height: 124px; border-right: 0; border-bottom: 1px solid var(--line); padding: 1.25rem 1rem; }
  .route-tab::before { width: 4px; }
  .route-name { font-size: clamp(1.7rem, 7vw, 2.6rem); }
  .route-visual { min-height: 0; }
  .route-visual img { height: clamp(220px, 60vw, 460px); min-height: 0; }
  .route-panel { border-left: 0; border-top: 1px solid var(--line); padding: 1.5rem 1rem 2rem; }
  .js .route-band:not(.is-active) .route-visual, .js .route-band:not(.is-active) .route-panel { display: none; }
  .js .route-band:not(.is-active) .route-panel { visibility: visible; transform: none; }
  .tour-row { grid-template-columns: 52px minmax(0, 1fr) auto; gap: 1rem; min-height: 150px; }
  .tour-row p { display: none; }
  .tour-row h2 { font-size: clamp(1.9rem, 7.5vw, 3.4rem); }
  .cta-strip { grid-template-columns: 1fr; }
  .cta-strip .button-row { justify-content: flex-start; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  body { font-size: 1rem; }
  .section { padding-block: 4rem; }
  .section-tight { padding-block: 3rem; }
  .button-row { align-items: stretch; }
  .button-row .button { flex: 1 1 100%; }
  .hero-copy { min-height: calc(100svh - var(--header-h) - 33px); }
  .hero-copy .lead { font-size: 1.05rem; }
  .hero-caption { right: 0.5rem; bottom: 0.5rem; left: auto; max-width: min(19ch, 42%); }
  .fact-grid { grid-template-columns: 1fr; }
  .fact { min-height: 155px; }
  .tour-row { grid-template-columns: 42px minmax(0, 1fr) 26px; }
  .tour-row__arrow { width: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .form .button { width: 100%; }
  .contact-link { grid-template-columns: 40px minmax(0, 1fr) 24px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-legal { flex-direction: column; }
  .route-step { grid-template-columns: 56px minmax(0, 1fr); gap: 0.75rem; }
  .page-hero__copy h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
}

@media (max-width: 370px) {
  .container, .narrow { width: min(calc(100% - 1.5rem), var(--max)); }
  .brand img { width: 180px; }
  .hero-copy { padding-inline: 0.75rem; }
  .hero-copy h1 { font-size: 3.15rem; }
  .button { padding-inline: 0.85rem; }
}

@media (max-height: 620px) and (orientation: landscape) {
  .hero { min-height: auto; }
  .hero-copy { min-height: auto; padding-block: 3rem; }
  .hero-media { min-height: 420px; }
}

@media (hover: none) and (pointer: coarse) {
  .button:hover { transform: none; }
  .route-visual img { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .nav-toggle, .button-row, .cta-strip { display: none !important; }
  body { background: white; color: black; }
  .section { padding-block: 2rem; }
}

/* Tours page: tan-first landscape atlas adapted from a 21st.dev scroll-tilted grid pattern. */
.tours-page {
  color-scheme: light;
  --fog: #d8c5a4;
  --surface: #e8d4b5;
  --surface-raised: #f1e2cc;
  --ink: #171814;
  --ink-soft: #343027;
  --muted: #4d463c;
  --line: #a48966;
  --line-strong: #6e5639;
  --orange: #d86d1f;
  --orange-bright: #7d330c;
  --orange-text: #7d330c;
  --on-orange: #171814;
  --focus: #171814;
  background: var(--fog);
  color: var(--ink);
}

.tours-page .site-header {
  background: color-mix(in srgb, var(--fog) 94%, transparent);
  box-shadow: 0 1rem 2.75rem rgb(54 38 20 / 0.12);
}
.atlas-hero {
  position: relative;
  min-height: calc(100dvh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(25rem, 0.86fr) minmax(0, 1.14fr);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--fog);
  color: var(--ink);
}

.atlas-hero__copy {
  position: relative;
  z-index: 3;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6.5rem) clamp(1.5rem, 4.8vw, 5.5rem);
  padding-left: max(1.5rem, calc((100vw - var(--max)) / 2));
  background:
    url("../images/decor/dune-wind-ridge.svg") 74% bottom / 142% 54% no-repeat,
    linear-gradient(145deg, #d8c5a4 0%, #e1ceb0 56%, #cca572 100%);
}

.atlas-hero__copy > * { position: relative; z-index: 1; }

.atlas-hero__kicker {
  margin: 0 0 clamp(1.75rem, 4vh, 3.25rem);
  color: var(--orange-bright);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.atlas-hero h1 {
  max-width: 9ch;
  margin: 0 0 clamp(1.35rem, 2.5vh, 2.25rem);
  color: var(--ink);
  font-size: clamp(4.25rem, 7.4vw, 8.25rem);
  font-stretch: 67%;
  letter-spacing: -0.07em;
  line-height: 0.78;
}

.atlas-hero__line { display: block; overflow: clip; padding: 0.08em 0 0.12em; }
.atlas-hero__line > span { display: block; white-space: nowrap; }
.atlas-hero__line--offset { margin-left: clamp(1rem, 5vw, 4.75rem); }
.js .atlas-hero__line > span { transform: translateY(112%); animation: atlas-title-in 880ms var(--ease) forwards; }
.js .atlas-hero__line--offset > span { animation-delay: 100ms; }

@keyframes atlas-title-in { to { transform: translateY(0); } }

.atlas-hero__lead {
  max-width: 40ch;
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.22vw, 1.22rem);
  line-height: 1.5;
}

.atlas-hero__action {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--orange-text);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-decoration-thickness: 1px;
  text-transform: uppercase;
  text-underline-offset: 0.4em;
}

.atlas-hero__action svg,
.atlas-card__action svg { width: 1.25rem; height: 1.25rem; flex: 0 0 auto; transition: transform 320ms var(--ease); }
.atlas-hero__action:hover svg,
.atlas-hero__action:focus-visible svg,
.atlas-card a:hover .atlas-card__action svg,
.atlas-card a:focus-visible .atlas-card__action svg { transform: translateX(0.45rem); }

.atlas-hero__plates {
  position: relative;
  min-width: 0;
  min-height: 34rem;
  overflow: hidden;
  background: #c49f70;
  perspective: 1200px;
}

.atlas-hero__plate {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(23 24 20 / 0.42);
  background: var(--surface-raised);
  box-shadow: 0 2.2rem 5rem rgb(63 42 20 / 0.28);
  transform: var(--plate-rest);
  transform-origin: center;
}

.atlas-hero__plate img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.78) contrast(1.05); }
.atlas-hero__plate--coast { z-index: 1; top: 8%; left: 1%; width: 54%; height: 66%; --plate-rest: rotate(-6deg) translateZ(-30px); }
.atlas-hero__plate--coast img { object-position: 42% center; }
.atlas-hero__plate--volcanic { z-index: 3; left: 7%; bottom: -3%; width: 52%; height: 46%; --plate-rest: rotate(3deg) translateZ(38px); }
.atlas-hero__plate--volcanic img { object-position: 54% center; }
.atlas-hero__plate--granite { z-index: 2; top: 3%; right: 1%; width: 46%; height: 56%; --plate-rest: rotate(7deg) translateZ(10px); }
.atlas-hero__plate--granite img { object-position: center; }
.atlas-hero__plate--desert { z-index: 4; right: 6%; bottom: -5%; width: 48%; height: 42%; --plate-rest: rotate(-2.5deg) translateZ(55px); }
.atlas-hero__plate--desert img { object-position: 58% center; }
.js .atlas-hero__plate { opacity: 0; animation: atlas-plate-in 900ms var(--ease) forwards; }
.js .atlas-hero__plate--granite { animation-delay: 120ms; }
.js .atlas-hero__plate--volcanic { animation-delay: 200ms; }
.js .atlas-hero__plate--desert { animation-delay: 280ms; }

@keyframes atlas-plate-in {
  from { opacity: 0; transform: translateY(4rem) scale(0.92); }
  to { opacity: 1; transform: var(--plate-rest); }
}

.landscape-atlas {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(6rem, 11vw, 11rem) max(1.5rem, calc((100vw - var(--max)) / 2));
  background: var(--fog);
  color: var(--ink);
}

.landscape-atlas::before,
.landscape-atlas::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  right: auto;
  pointer-events: none;
  transform: translateX(-50%);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.landscape-atlas::before {
  width: 120vw;
  height: clamp(20rem, 34vw, 36rem);
  top: 14%;
  opacity: 0.48;
  background-image: url("../images/decor/dune-crescent.svg");
}
.landscape-atlas::after {
  width: 126vw;
  height: clamp(22rem, 36vw, 39rem);
  bottom: 0;
  opacity: 0.42;
  background-image: url("../images/decor/dune-saddle.svg");
}
.landscape-atlas .atlas-intro,
.landscape-atlas .atlas-grid { position: relative; z-index: 1; }

.atlas-intro { max-width: 68rem; margin-bottom: clamp(5rem, 10vw, 10rem); }
.atlas-intro h2 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-size: clamp(3.75rem, 7.6vw, 8rem);
  font-stretch: 67%;
  letter-spacing: -0.065em;
  line-height: 0.8;
}
.atlas-intro p {
  max-width: 48ch;
  margin: 0 0 0 clamp(0rem, 14vw, 13rem);
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.atlas-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  row-gap: clamp(7rem, 14vw, 14rem);
  perspective: 1400px;
}

.atlas-card { min-width: 0; opacity: 1; transform: none; transform-origin: center 70%; }
.atlas-card--coast { grid-column: 1 / 10; --atlas-entry-rotate: -7deg; }
.atlas-card--volcanic { grid-column: 4 / 13; --atlas-entry-rotate: 5deg; }
.atlas-card--granite { grid-column: 5 / 13; --atlas-entry-rotate: 6deg; }
.atlas-card--desert { grid-column: 2 / 11; --atlas-entry-rotate: -4deg; }
.atlas-card > a { display: block; color: var(--ink); text-decoration: none; }
.atlas-card > a:focus,
.atlas-card > a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 8px;
}

.atlas-card__media { margin: 0; overflow: hidden; aspect-ratio: 16 / 10; background: var(--surface-raised); }
.atlas-card--granite .atlas-card__media { aspect-ratio: 5 / 6; }
.atlas-card--desert .atlas-card__media { aspect-ratio: 3 / 2; }
.atlas-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
  transform: scale(1.035);
  transition: filter 620ms ease, transform 900ms var(--ease);
}
.atlas-card--coast .atlas-card__media img { object-position: 42% center; }
.atlas-card--volcanic .atlas-card__media img { object-position: 54% center; }
.atlas-card--granite .atlas-card__media img { object-position: center; }
.atlas-card--desert .atlas-card__media img { object-position: 49% center; }
.atlas-card > a:hover .atlas-card__media img,
.atlas-card > a:focus-visible .atlas-card__media img { filter: saturate(0.94) contrast(1.03); transform: scale(1); }

.atlas-card__copy {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
  gap: 0.75rem clamp(2rem, 6vw, 6rem);
  padding-top: 1.5rem;
}

.atlas-card__terrain {
  grid-column: 1;
  color: var(--orange-bright);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.atlas-card__title {
  grid-column: 1;
  grid-row: 2 / span 3;
  max-width: 11ch;
  font-family: "Archivo Display", "Archivo", sans-serif;
  font-size: clamp(3.3rem, 6.8vw, 7.2rem);
  font-stretch: 68%;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.82;
  text-wrap: balance;
}

.atlas-card__summary {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  line-height: 1.5;
}

.atlas-card__detail { grid-column: 2; display: grid; gap: 0.4rem; color: var(--muted); font-size: 0.9rem; line-height: 1.45; }
.atlas-card__detail strong { color: var(--orange-bright); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.atlas-card__action {
  grid-column: 2;
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

@supports (animation-timeline: view()) {
  .atlas-card {
    will-change: transform, opacity;
    animation: atlas-unfurl linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 55%;
  }
}

@keyframes atlas-unfurl {
  0% { opacity: 0.16; transform: perspective(1400px) translateY(9rem) rotateX(62deg) rotateZ(var(--atlas-entry-rotate)) scale(0.86); }
  58%, 100% { opacity: 1; transform: perspective(1400px) translateY(0) rotateX(0) rotateZ(0) scale(1); }
}

.atlas-guidance {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(20rem, 0.7fr);
  gap: clamp(3rem, 9vw, 10rem);
  border-top: 1px solid var(--line);
  padding: clamp(6rem, 11vw, 11rem) max(1.5rem, calc((100vw - var(--max)) / 2));
  background: var(--surface);
  color: var(--ink);
}

.atlas-guidance h2 {
  max-width: 9ch;
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-size: clamp(4rem, 8vw, 8.5rem);
  font-stretch: 67%;
  letter-spacing: -0.065em;
  line-height: 0.8;
}
.atlas-guidance .lead { margin: 0 0 0 clamp(0rem, 9vw, 8rem); color: var(--ink-soft); }
.atlas-guidance__notes { align-self: end; }
.atlas-guidance__notes p {
  display: grid;
  grid-template-columns: minmax(5rem, 0.34fr) minmax(0, 1fr);
  gap: 1rem;
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 1.35rem 0;
}
.atlas-guidance__notes strong { color: var(--orange-bright); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; }
.atlas-guidance__notes span { color: var(--ink-soft); line-height: 1.45; }

@media (max-width: 1100px) {
  .atlas-hero { grid-template-columns: minmax(22rem, 0.9fr) minmax(0, 1.1fr); }
  .atlas-hero h1 { font-size: clamp(4rem, 8.2vw, 6.8rem); }
  .atlas-card__copy { grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.72fr); }
}

@media (max-width: 820px) {
  .tours-page .site-nav { background: var(--fog); }
  .atlas-hero {
    min-height: calc(100dvh - var(--header-h));
    grid-template-columns: 1fr;
    grid-template-rows: minmax(13rem, 39%) minmax(0, 1fr);
  }
  .atlas-hero__copy { grid-row: 2; justify-content: flex-end; padding: 1rem 1rem 1.25rem; }
  .atlas-hero__kicker { margin-bottom: 0.8rem; }
  .atlas-hero h1 { max-width: 8.5ch; margin-bottom: 0.8rem; font-size: clamp(3.35rem, 14.8vw, 5.35rem); line-height: 0.8; }
  .atlas-hero__line--offset { margin-left: clamp(0.5rem, 8vw, 2.5rem); }
  .atlas-hero__lead { max-width: 35ch; margin-bottom: 0.4rem; font-size: 0.98rem; line-height: 1.42; }
  .atlas-hero__action { min-height: 44px; font-size: 0.72rem; }
  .atlas-hero__plates { grid-row: 1; min-height: 0; }
  .atlas-hero__plate { box-shadow: 0 1.25rem 3rem rgb(63 42 20 / 0.26); }
  .atlas-hero__plate--coast { top: 9%; left: -4%; width: 61%; height: 76%; }
  .atlas-hero__plate--volcanic { left: 2%; bottom: -7%; width: 57%; height: 48%; }
  .atlas-hero__plate--granite { top: 2%; right: -3%; width: 46%; height: 58%; }
  .atlas-hero__plate--desert { right: 3%; bottom: -8%; width: 48%; height: 42%; }

  .landscape-atlas { padding: 5.5rem 1rem 6rem; }
  .atlas-intro { margin-bottom: 5rem; }
  .atlas-intro h2 { font-size: clamp(3.5rem, 15.5vw, 5.8rem); }
  .atlas-intro p { margin-left: 0; }
  .atlas-grid { display: block; }
  .atlas-card {
    margin-bottom: 5.5rem;
    opacity: 1;
    transform: none;
    animation: none;
    will-change: auto;
    --atlas-entry-rotate: -3deg;
  }
  .atlas-card:last-child { margin-bottom: 0; }
  .atlas-card__media { aspect-ratio: 4 / 5; }
  .atlas-card--volcanic .atlas-card__media { aspect-ratio: 4 / 5; }
  .atlas-card--granite .atlas-card__media { aspect-ratio: 5 / 6; }
  .atlas-card--desert .atlas-card__media { aspect-ratio: 4 / 5; }
  .atlas-card__copy { display: grid; grid-template-columns: 1fr; gap: 0.7rem; padding-top: 1.1rem; }
  .atlas-card__terrain,
  .atlas-card__title,
  .atlas-card__summary,
  .atlas-card__detail,
  .atlas-card__action { grid-column: 1; grid-row: auto; }
  .atlas-card__title { max-width: 10ch; font-size: clamp(3rem, 13.5vw, 4.8rem); }
  .atlas-card__summary { max-width: 38ch; }
  .atlas-card__detail { max-width: 34ch; }

  .atlas-guidance { grid-template-columns: 1fr; gap: 3rem; padding: 5.5rem 1rem; }
  .atlas-guidance h2 { font-size: clamp(3.7rem, 16vw, 5.8rem); }
  .atlas-guidance .lead { margin-left: 0; }

  .home-photo-teaser { padding-block: 4.5rem; }
  .home-photo-teaser__layout { grid-template-columns: 1fr; gap: 3rem; }
  .home-photo-teaser__frames { grid-row: 1; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
  .home-photo-teaser__copy { grid-row: 2; }
  .home-photo-teaser__frame--scale { grid-column: 1; }
  .home-photo-teaser__frame--motion { grid-column: 2; margin-bottom: 2rem; }
  .home-photo-teaser__frame--stillness { grid-column: 1 / -1; }

  .experience-story { padding-block: 5.5rem; }
  .experience-story__intro,
  .experience-story__grid { grid-template-columns: 1fr; }
  .experience-story__intro { gap: 1.25rem; margin-bottom: 4rem; }
  .experience-story__intro > div,
  .experience-story__intro > p,
  .experience-shot--scale,
  .experience-shot--motion,
  .experience-shot--stillness { grid-column: 1; }
  .experience-story__intro > p { max-width: 36ch; }
  .experience-story__grid { row-gap: 4.5rem; }
  .experience-shot--scale,
  .experience-shot--motion { width: 88%; }
  .experience-shot--motion { margin-top: 0; margin-left: auto; }
  .experience-shot--stillness { width: 100%; }
}

@media (max-width: 370px) {
  .atlas-hero { min-height: calc(100dvh - var(--header-h)); }
  .atlas-hero h1 { font-size: clamp(3.1rem, 14.5vw, 4.4rem); }
  .atlas-hero__lead { font-size: 0.92rem; }
  .atlas-card__title { font-size: clamp(2.85rem, 13vw, 4rem); }
  .atlas-guidance__notes p { grid-template-columns: 1fr; gap: 0.4rem; }
}

/* Desktop keeps the atlas cinematic without scaling the mobile composition up. */
@media (min-width: 821px) {
  .page-hero--messum .page-hero__meta {
    gap: 0.5rem 0.75rem;
    font-size: 0.72rem;
    letter-spacing: 0.045em;
  }

  .atlas-hero {
    min-height: clamp(41rem, calc(100dvh - var(--header-h)), 54rem);
    grid-template-columns: minmax(24rem, 0.9fr) minmax(0, 1.1fr);
  }

  .atlas-hero__copy {
    padding-block: clamp(3.5rem, 6vh, 5rem);
    padding-right: clamp(2.25rem, 4vw, 4rem);
    padding-left: max(clamp(2rem, 4vw, 4rem), calc((100vw - var(--max)) / 2 + 2rem));
  }

  .atlas-hero__kicker { margin-bottom: clamp(1.4rem, 2.4vh, 2rem); }
  .atlas-hero h1 {
    max-width: 8.8ch;
    margin-bottom: clamp(1.25rem, 2vh, 1.75rem);
    font-size: clamp(4.4rem, 6vw, 6rem);
    line-height: 0.84;
  }
  .atlas-hero__line--offset { margin-left: clamp(1rem, 3.2vw, 2.8rem); }
  .atlas-hero__lead { max-width: 35ch; font-size: clamp(1rem, 1.05vw, 1.12rem); }

  .atlas-hero__plate--coast { top: 10%; left: 3%; width: 50%; height: 59%; }
  .atlas-hero__plate--volcanic { left: 8%; bottom: 0; width: 47%; height: 42%; }
  .atlas-hero__plate--granite { top: 5%; right: 3%; width: 42%; height: 50%; }
  .atlas-hero__plate--desert { right: 7%; bottom: 1%; width: 43%; height: 38%; }

  .landscape-atlas {
    padding-top: clamp(4.5rem, 6vw, 6.5rem);
    padding-bottom: clamp(6.5rem, 8vw, 8.5rem);
  }
  .atlas-intro { max-width: 58rem; margin-bottom: clamp(5rem, 7vw, 7rem); }
  .atlas-intro h2 {
    font-size: clamp(4.4rem, 6vw, 6rem);
    line-height: 0.84;
  }
  .atlas-intro p { margin-left: clamp(0rem, 10vw, 9rem); }

  .atlas-grid { row-gap: clamp(7rem, 9vw, 9rem); }
  .atlas-card--coast { grid-column: 1 / 9; }
  .atlas-card--volcanic { grid-column: 5 / 13; }
  .atlas-card--granite { grid-column: 1 / 9; }
  .atlas-card--desert { grid-column: 3 / 11; }
  .atlas-card__copy {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.72fr);
    gap: 0.75rem clamp(2rem, 4vw, 4.5rem);
    padding-top: 1.25rem;
  }
  .atlas-card__title {
    font-size: clamp(3.4rem, 4.7vw, 5.4rem);
    line-height: 0.86;
  }
  .atlas-card__summary { font-size: clamp(0.98rem, 1.05vw, 1.1rem); }

  .atlas-guidance {
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
    gap: clamp(3rem, 7vw, 8rem);
    padding-block: clamp(6.5rem, 8vw, 8.5rem);
  }
  .atlas-guidance h2 {
    font-size: clamp(4.4rem, 6.2vw, 6.5rem);
    line-height: 0.84;
  }
  .atlas-guidance .lead { margin-left: clamp(0rem, 6vw, 5rem); }
}

@media (min-width: 821px) and (max-width: 1100px) {
  .atlas-card--coast { grid-column: 1 / 11; }
  .atlas-card--volcanic { grid-column: 3 / 12; }
  .atlas-card--granite { grid-column: 1 / 10; }
  .atlas-card--desert { grid-column: 2 / 12; }
}

@media (prefers-reduced-motion: reduce) {
  .js .atlas-hero__line > span,
  .js .atlas-hero__plate,
  .atlas-card { opacity: 1; animation: none; transform: none; }
  .atlas-card,
  .atlas-card__media img { will-change: auto; }
}

@media print {
  .atlas-hero { min-height: auto; grid-template-columns: 1fr 1fr; }
  .atlas-hero__plates { min-height: 32rem; }
  .atlas-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
  .atlas-card,
  .atlas-card--coast,
  .atlas-card--granite,
  .atlas-card--desert { grid-column: 1; animation: none; opacity: 1; transform: none; }
}
