:root {
  --ivory: #f3ebe4;
  --white: #fffdf9;
  --ink: #171a16;
  --muted: #716f68;
  --forest: #23443a;
  --forest-deep: #152d27;
  --rust: #a64832;
  --yellow: #ddb04c;
  --line: rgba(23, 26, 22, 0.2);
  --line-light: rgba(255, 253, 249, 0.24);
  --shell: 1340px;
  --header-height: 76px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--forest);
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

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

button {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(calc(100% - 80px), var(--shell));
  margin-inline: auto;
}

main [id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: var(--header-height);
  padding: 0 30px;
  border-bottom: 1px solid rgba(23, 26, 22, 0.16);
  background: rgba(243, 235, 228, 0.82);
  backdrop-filter: blur(16px);
  transition: background 250ms ease, box-shadow 250ms ease;
}

.site-header.is-scrolled {
  background: rgba(243, 235, 228, 0.96);
  box-shadow: 0 8px 30px rgba(23, 26, 22, 0.08);
}

.wordmark {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 9px;
  font-size: 22px;
  font-weight: 600;
}

.wordmark svg {
  width: 24px;
  height: 24px;
  color: var(--rust);
  stroke-width: 1.4;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(23, 26, 22, 0.74);
  font-size: 12px;
}

.desktop-nav a,
.inquiry-link {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.desktop-nav a::after,
.inquiry-link::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.inquiry-link:hover::after,
.inquiry-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.inquiry-link {
  gap: 8px;
  justify-self: end;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.inquiry-link svg {
  width: 15px;
  height: 15px;
}

.nav-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 88svh;
  min-height: 690px;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-left {
  background: var(--ivory);
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--forest);
}

.hero-right img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-image-in 1.8s var(--ease) both;
}

.hero-copy {
  position: absolute;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
}

.hero-kicker,
.hero-intro {
  width: 35%;
  margin-left: 7%;
}

.hero-kicker {
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--rust);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero h1 {
  width: 100%;
  margin: 0;
  color: transparent;
  background: linear-gradient(to right, var(--ink) 0%, var(--ink) 50%, var(--white) 50%, var(--white) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: var(--sans);
  font-size: 78px;
  font-weight: 300;
  line-height: 1.01;
  text-align: center;
}

.hero h1 span {
  display: block;
}

.hero-intro {
  max-width: 490px;
  margin-top: 32px;
  margin-bottom: 0;
  color: rgba(23, 26, 22, 0.72);
  font-size: 14px;
  line-height: 1.75;
}

.hero-index {
  position: absolute;
  top: 110px;
  right: 28px;
  z-index: 2;
  color: rgba(255, 253, 249, 0.75);
  font-size: 10px;
  line-height: 1.5;
  text-align: right;
}

.hero-gem {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  width: min(42%, 580px);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 4px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 24px 60px rgba(23, 26, 22, 0.18);
  backdrop-filter: blur(12px);
}

.hero-gem span,
.hero-gem strong {
  display: block;
}

.hero-gem span {
  margin-bottom: 5px;
  color: var(--rust);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-gem strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.hero-gem p {
  max-width: 410px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.hero-gem > a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.hero-gem > a:hover {
  color: var(--ink);
  background: var(--yellow);
  transform: translateX(3px);
}

.hero-gem svg {
  width: 17px;
  height: 17px;
}

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 28px;
  z-index: 4;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
}

.hero-scroll svg {
  width: 15px;
  height: 15px;
}

.section-tag {
  margin: 0 0 18px;
  color: var(--rust);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.intro {
  display: grid;
  grid-template-columns: 0.5fr 1.1fr 0.8fr;
  gap: 64px;
  align-items: start;
  padding-top: 118px;
  padding-bottom: 118px;
}

.intro h2,
.section-heading h2,
.journey-heading h2,
.method-title h2,
.rail-panel h2,
.journal-heading h2,
.inquiry-cta h2,
.inquiry-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.08;
}

.intro > div > p {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.intro dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--ink);
}

.intro dl div {
  padding: 18px 10px 0;
  border-right: 1px solid var(--line);
}

.intro dl div:first-child {
  padding-left: 0;
}

.intro dl div:last-child {
  border-right: 0;
}

.intro dt {
  min-height: 38px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}

.intro dd {
  margin: 4px 0 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 29px;
}

.destinations {
  padding: 112px 0 126px;
  color: var(--white);
  background: var(--forest-deep);
}

.destinations .section-tag {
  color: var(--yellow);
}

.section-heading {
  display: flex;
  gap: 34px;
  align-items: end;
  justify-content: space-between;
}

.section-heading h2 {
  font-size: 58px;
}

.filter-bar {
  display: flex;
  border: 1px solid var(--line-light);
}

.filter-bar button {
  min-width: 76px;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-right: 1px solid var(--line-light);
  color: rgba(255, 253, 249, 0.72);
  background: transparent;
  font-size: 11px;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease;
}

.filter-bar button:last-child {
  border-right: 0;
}

.filter-bar button:hover,
.filter-bar button.is-active {
  color: var(--ink);
  background: var(--yellow);
}

.filter-status {
  margin: 22px 0 30px;
  color: rgba(255, 253, 249, 0.5);
  font-size: 10px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 26px 20px;
  align-items: start;
}

.destination {
  grid-column: span 4;
  min-width: 0;
  transition: opacity 280ms ease, transform 400ms var(--ease);
}

.destination-wide {
  grid-column: span 5;
}

.destination-tall {
  grid-column: span 3;
}

.destination.is-hidden {
  display: none;
}

.destination-image {
  overflow: hidden;
  background: #294039;
}

.destination-image img {
  height: 340px;
  object-fit: cover;
  filter: saturate(0.78);
  transition: filter 450ms ease, transform 800ms var(--ease);
}

.destination-tall .destination-image img {
  height: 470px;
}

.destination-wide .destination-image img {
  height: 400px;
}

.destination:hover .destination-image img {
  filter: saturate(1);
  transform: scale(1.035);
}

.destination-caption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 18px;
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid var(--line-light);
}

.destination-caption span {
  grid-row: 1 / 3;
  color: var(--yellow);
  font-size: 9px;
}

.destination-caption h3,
.destination-caption p {
  margin: 0;
}

.destination-caption h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}

.destination-caption p {
  color: rgba(255, 253, 249, 0.55);
  font-size: 10px;
}

.journeys {
  padding: 116px 0 130px;
  color: var(--ink);
  background: var(--white);
}

.journey-heading {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 54px;
}

.journey-heading h2 {
  max-width: 730px;
  font-size: 61px;
}

.journey-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 30px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.journey-selector button {
  position: relative;
  min-height: 124px;
  padding: 26px 24px 22px 58px;
  border: 0;
  border-right: 1px solid var(--line);
  text-align: left;
  background: transparent;
  font-family: var(--serif);
  font-size: 20px;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease;
}

.journey-selector button:last-child {
  border-right: 0;
}

.journey-selector button > span {
  position: absolute;
  top: 29px;
  left: 20px;
  color: var(--rust);
  font-family: var(--sans);
  font-size: 9px;
}

.journey-selector button small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
}

.journey-selector button:hover,
.journey-selector button.is-active {
  color: var(--white);
  background: var(--forest);
}

.journey-selector button:hover small,
.journey-selector button.is-active small,
.journey-selector button.is-active > span,
.journey-selector button:hover > span {
  color: rgba(255, 253, 249, 0.68);
}

.journey-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  min-height: 650px;
  color: var(--white);
  background: var(--forest-deep);
}

.journey-detail.is-changing {
  animation: detail-change 480ms var(--ease) both;
}

.journey-image {
  min-height: 650px;
  overflow: hidden;
}

.journey-image img {
  height: 100%;
  object-fit: cover;
}

.journey-copy {
  display: flex;
  flex-direction: column;
  padding: 54px;
}

.journey-location {
  margin: 0 0 22px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.journey-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  line-height: 1.06;
}

.journey-copy > p:not(.journey-location) {
  margin: 24px 0 32px;
  color: rgba(255, 253, 249, 0.7);
  font-size: 13px;
  line-height: 1.75;
}

.journey-copy ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.journey-copy li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 253, 249, 0.9);
  font-size: 12px;
}

.journey-copy li span {
  color: var(--yellow);
  font-size: 9px;
  text-transform: uppercase;
}

.journey-footer {
  display: flex;
  gap: 20px;
  align-items: end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 36px;
}

.journey-footer strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.text-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid var(--yellow);
  color: var(--white);
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

.text-button svg {
  width: 14px;
  height: 14px;
}

.method {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 9%;
  padding-top: 120px;
  padding-bottom: 120px;
}

.method-title h2 {
  max-width: 480px;
}

.method-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 26px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.method-list > li > span {
  color: var(--rust);
  font-size: 10px;
}

.method-list h3,
.method-list p {
  margin: 0;
}

.method-list h3 {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.method-list p {
  max-width: 580px;
  color: var(--muted);
  font-size: 13px;
}

.rail-story {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: end;
  padding: 32px;
  overflow: hidden;
}

.rail-story > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.rail-story::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 45, 39, 0.06), rgba(21, 45, 39, 0.52));
  content: "";
}

.rail-panel {
  position: relative;
  z-index: 2;
  width: min(520px, 45%);
  padding: 36px;
  border: 1px solid rgba(255, 253, 249, 0.58);
  border-radius: 4px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(12px);
}

.rail-panel h2 {
  font-size: 43px;
}

.rail-panel > p:not(.section-tag) {
  margin: 20px 0 26px;
  color: var(--muted);
  font-size: 13px;
}

.rail-panel a,
.journal-lead a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 600;
}

.rail-panel svg,
.journal-lead svg {
  width: 15px;
  height: 15px;
}

.journal {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 60px 8%;
  padding-top: 118px;
  padding-bottom: 126px;
}

.journal-heading {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 40px;
}

.journal-heading h2 {
  font-size: 57px;
}

.journal-lead {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  grid-column: 1 / -1;
  min-height: 560px;
  margin: 0;
  color: var(--white);
  background: var(--rust);
}

.journal-lead > img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.journal-lead > div {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 62px;
}

.journal-lead span,
.journal-list span {
  color: rgba(255, 253, 249, 0.7);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

.journal-lead h3 {
  max-width: 620px;
  margin: 18px 0;
  font-family: var(--serif);
  font-size: 49px;
  font-weight: 400;
  line-height: 1.08;
}

.journal-lead p {
  max-width: 550px;
  margin: 0 0 27px;
  color: rgba(255, 253, 249, 0.78);
  font-size: 13px;
}

.journal-lead a {
  border-color: rgba(255, 253, 249, 0.65);
}

.journal-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column: 1 / -1;
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.journal-list article {
  padding: 30px 42px 34px 0;
}

.journal-list article + article {
  padding-right: 0;
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.journal-list span {
  color: var(--rust);
}

.journal-list h3 {
  margin: 14px 0 10px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.journal-list p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.inquiry-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: var(--white);
  background: var(--forest);
}

.inquiry-cta::before {
  position: absolute;
  top: -140px;
  right: 12%;
  width: 270px;
  height: 540px;
  border-right: 1px solid rgba(255, 253, 249, 0.26);
  border-left: 1px solid rgba(255, 253, 249, 0.26);
  content: "";
  transform: rotate(26deg);
}

.inquiry-cta .page-shell {
  position: relative;
}

.inquiry-cta .section-tag {
  color: var(--yellow);
}

.inquiry-cta h2 {
  max-width: 850px;
  font-size: 68px;
}

.inquiry-cta p:not(.section-tag) {
  max-width: 560px;
  margin: 26px 0 34px;
  color: rgba(255, 253, 249, 0.72);
}

.cta-button,
.preview-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--white);
  border-radius: 2px;
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, transform 220ms var(--ease);
}

.cta-button:hover,
.preview-button:hover {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.cta-button svg,
.preview-button svg {
  width: 16px;
  height: 16px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
  padding-top: 64px;
  padding-bottom: 34px;
}

.site-footer > p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
}

.site-footer > div a:hover {
  color: var(--rust);
}

.site-footer small {
  grid-column: 2 / 4;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  color: rgba(113, 111, 104, 0.75);
  font-size: 10px;
}

.inquiry-dialog {
  width: min(calc(100% - 40px), 650px);
  max-width: none;
  max-height: calc(100svh - 40px);
  margin: auto;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.inquiry-dialog::backdrop {
  background: rgba(16, 28, 24, 0.72);
  backdrop-filter: blur(10px);
}

.inquiry-dialog[open] {
  animation: dialog-in 380ms var(--ease) both;
}

.inquiry-panel {
  max-height: calc(100svh - 40px);
  overflow: auto;
  padding: 36px;
  border: 1px solid rgba(23, 26, 22, 0.2);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(15, 30, 25, 0.34);
}

.inquiry-panel > header {
  display: flex;
  gap: 28px;
  align-items: start;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.inquiry-panel .section-tag {
  margin-bottom: 8px;
}

.inquiry-panel h2 {
  font-size: 44px;
}

.close-button {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease;
}

.close-button:hover {
  color: var(--white);
  background: var(--ink);
}

.close-button svg {
  width: 18px;
  height: 18px;
}

.demo-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 24px 0 28px;
  padding: 13px 14px;
  border-left: 2px solid var(--rust);
  color: var(--muted);
  background: rgba(166, 72, 50, 0.07);
  font-size: 11px;
}

.demo-note svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--rust);
}

.inquiry-panel fieldset {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.inquiry-panel legend {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.inquiry-panel fieldset button {
  min-height: 58px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--ivory);
  font-size: 11px;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.inquiry-panel fieldset button:hover,
.inquiry-panel fieldset button.is-selected {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.preview-button {
  width: 100%;
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.preview-summary {
  margin-top: 16px;
  padding: 17px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--ivory);
  font-size: 12px;
}

.preview-summary strong {
  display: block;
  margin-bottom: 4px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 780ms var(--ease), transform 780ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-image-in {
  from { opacity: 0; transform: scale(1.055); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes detail-change {
  from { opacity: 0.55; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(20px) scale(0.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: 65px;
  }

  .hero-kicker,
  .hero-intro {
    width: 40%;
    margin-left: 5%;
  }

  .intro {
    grid-template-columns: 0.35fr 1fr;
  }

  .intro dl {
    grid-column: 2;
    margin-top: 8px;
  }

  .destination {
    grid-column: span 6;
  }

  .destination-wide,
  .destination-tall {
    grid-column: span 6;
  }

  .destination-image img,
  .destination-tall .destination-image img,
  .destination-wide .destination-image img {
    height: 390px;
  }

  .journey-detail {
    grid-template-columns: 1fr 0.9fr;
  }

  .journey-copy {
    padding: 42px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  .page-shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .desktop-nav,
  .inquiry-link {
    display: none;
  }

  .nav-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--ink);
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle svg {
    width: 19px;
    height: 19px;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--ink);
    background: var(--ivory);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav > a,
  .mobile-nav > button {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    font-family: var(--serif);
    font-size: 22px;
    text-align: left;
  }

  .mobile-nav > button {
    color: var(--rust);
    cursor: pointer;
  }

  .hero {
    display: block;
    height: 88svh;
    min-height: 650px;
  }

  .hero-left {
    display: none;
  }

  .hero-right {
    height: 100%;
  }

  .hero-right::after {
    position: absolute;
    inset: 0;
    background: rgba(14, 27, 23, 0.38);
    content: "";
  }

  .hero-copy {
    top: var(--header-height);
    justify-content: flex-start;
    padding: 116px 24px 180px;
  }

  .hero-kicker,
  .hero-intro {
    width: 100%;
    max-width: 560px;
    margin-left: 0;
    color: rgba(255, 253, 249, 0.86);
  }

  .hero-kicker {
    margin-bottom: 18px;
    color: var(--yellow);
  }

  .hero h1 {
    width: auto;
    color: var(--white);
    background: none;
    font-size: 58px;
    text-align: left;
  }

  .hero-intro {
    margin-top: 25px;
  }

  .hero-index,
  .hero-scroll {
    display: none;
  }

  .hero-gem {
    right: 20px;
    bottom: 20px;
    left: 20px;
    width: auto;
  }

  .intro,
  .method,
  .journal-heading {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 26px;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .intro dl {
    grid-column: auto;
  }

  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-bar {
    width: 100%;
    overflow-x: auto;
  }

  .filter-bar button {
    flex: 1 0 auto;
  }

  .journey-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .journey-selector {
    grid-template-columns: 1fr;
  }

  .journey-selector button {
    min-height: 94px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .journey-selector button:last-child {
    border-bottom: 0;
  }

  .journey-detail {
    grid-template-columns: 1fr;
  }

  .journey-image {
    min-height: 460px;
  }

  .method {
    gap: 46px;
  }

  .rail-panel {
    width: min(620px, 80%);
  }

  .journal {
    grid-template-columns: 1fr;
  }

  .journal-heading,
  .journal-lead,
  .journal-list {
    grid-column: auto;
  }

  .journal-lead {
    grid-template-columns: 1fr 1fr;
  }

  .journal-lead > div {
    padding: 42px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: calc(100% - 32px);
  }

  .site-header {
    padding: 0 12px 0 16px;
  }

  .hero {
    min-height: 660px;
  }

  .hero-copy {
    padding: 88px 20px 180px;
  }

  .hero h1 {
    font-size: 45px;
    line-height: 1.02;
  }

  .hero-intro {
    margin-top: 20px;
    font-size: 13px;
  }

  .hero-gem {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 16px;
  }

  .hero-gem p {
    display: none;
  }

  .intro,
  .destinations,
  .journeys,
  .method,
  .journal {
    padding-top: 76px;
    padding-bottom: 82px;
  }

  .intro h2,
  .section-heading h2,
  .journey-heading h2,
  .method-title h2,
  .journal-heading h2,
  .inquiry-panel h2 {
    font-size: 39px;
  }

  .intro dl {
    grid-template-columns: 1fr;
  }

  .intro dl div,
  .intro dl div:first-child {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro dt {
    min-height: 0;
  }

  .destination {
    grid-column: 1 / -1;
  }

  .destination-image img,
  .destination-tall .destination-image img,
  .destination-wide .destination-image img {
    height: 340px;
  }

  .destination-caption h3 {
    font-size: 19px;
  }

  .journey-heading h2 {
    font-size: 43px;
  }

  .journey-image {
    min-height: 330px;
  }

  .journey-copy {
    padding: 30px 22px;
  }

  .journey-copy h3 {
    font-size: 38px;
  }

  .journey-copy li {
    grid-template-columns: 76px 1fr;
  }

  .journey-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .text-button {
    align-self: start;
  }

  .method-list li {
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .rail-story {
    min-height: 640px;
    padding: 12px;
  }

  .rail-panel {
    width: 100%;
    padding: 24px;
  }

  .rail-panel h2 {
    font-size: 36px;
  }

  .journal {
    gap: 42px;
  }

  .journal-lead {
    grid-template-columns: 1fr;
  }

  .journal-lead > img {
    min-height: 360px;
    max-height: 430px;
  }

  .journal-lead > div {
    padding: 32px 24px;
  }

  .journal-lead h3 {
    font-size: 39px;
  }

  .journal-list {
    grid-template-columns: 1fr;
  }

  .journal-list article,
  .journal-list article + article {
    padding: 26px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .inquiry-cta {
    padding: 86px 0;
  }

  .inquiry-cta h2 {
    font-size: 46px;
  }

  .cta-button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  .site-footer small {
    grid-column: auto;
  }

  .inquiry-dialog {
    width: calc(100% - 16px);
    max-height: calc(100svh - 16px);
  }

  .inquiry-panel {
    max-height: calc(100svh - 16px);
    padding: 20px;
  }

  .inquiry-panel fieldset {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
