@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/libre-baskerville-latin.woff2") format("woff2");
}

:root {
  --forest: #23382b;
  --forest-deep: #16271e;
  --forest-soft: #355543;
  --ivory: #f7f2ea;
  --ivory-light: #fcfaf6;
  --charcoal: #282520;
  --muted: #68645d;
  --gold: #b58a4a;
  --gold-dark: #8d6430;
  --line: #d9d0c3;
  --line-dark: rgba(255, 255, 255, 0.2);
  --white: #ffffff;
  --guangxi: #2f6b57;
  --qinggan: #b78035;
  --qinggan-indigo: #3c4856;
  --yunnan-blue: #356b83;
  --yunnan-red: #a34b3f;
  --page: min(1240px, calc(100% - 72px));
  --reading: 720px;
  --header-height: 78px;
  --shadow-soft: 0 20px 60px rgba(32, 27, 20, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--forest);
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(46px, 6.6vw, 100px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.18;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--forest);
  transform: translateY(-140%);
}

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

.site-header {
  position: relative;
  z-index: 50;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  padding: 0 clamp(20px, 4vw, 58px);
  border-bottom: 1px solid rgba(217, 208, 195, 0.75);
  background: rgba(252, 250, 246, 0.96);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(252, 250, 246, 0.99);
  box-shadow: 0 10px 32px rgba(32, 27, 20, 0.08);
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 1px solid rgba(181, 138, 74, 0.7);
  border-radius: 2px;
}

.brand-copy strong,
.brand-copy small {
  display: block;
  line-height: 1.2;
}

.brand-copy strong {
  color: var(--forest);
  font-size: 15px;
  letter-spacing: 0.14em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--gold-dark);
  font-size: 11px;
  letter-spacing: 0.22em;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.7vw, 38px);
}

.primary-nav > a,
.nav-menu > summary {
  position: relative;
  padding: 28px 0 25px;
  color: #3b3833;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  list-style: none;
}

.nav-menu > summary::-webkit-details-marker {
  display: none;
}

.nav-menu > summary::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0 3px 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.primary-nav > a::before,
.nav-menu > summary::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav > a:hover::before,
.primary-nav > a[aria-current="page"]::before,
.nav-menu > summary:hover::before,
.nav-menu > summary[aria-current="page"]::before,
.nav-menu[open] > summary::before {
  transform: scaleX(1);
}

.nav-menu {
  position: relative;
}

.nav-panel {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  width: 340px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--ivory-light);
  box-shadow: var(--shadow-soft);
  transform: translateX(-50%);
}

.nav-panel a {
  display: grid;
  gap: 2px;
  padding: 13px 14px;
  border-bottom: 1px solid #e8e1d7;
}

.nav-panel a:last-child {
  border-bottom: 0;
}

.nav-panel strong {
  color: var(--forest);
  font-size: 14px;
}

.nav-panel span {
  color: var(--muted);
  font-size: 12px;
}

.header-action {
  justify-self: end;
}

.button,
.button-secondary,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button {
  padding: 14px 22px;
  background: var(--forest);
  color: var(--white);
}

.button:hover,
.button:focus-visible {
  background: var(--forest-soft);
  transform: translateY(-1px);
}

.button-gold {
  background: var(--gold);
  color: #201c17;
}

.button-gold:hover,
.button-gold:focus-visible {
  background: #c49a58;
}

.button-secondary {
  padding: 13px 20px;
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.text-link {
  min-height: auto;
  justify-content: flex-start;
  border-bottom: 1px solid currentColor;
  padding: 0 0 5px;
  color: var(--forest);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--forest);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.home-hero,
.route-hero {
  position: relative;
  min-height: min(790px, calc(100svh - 112px));
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--white);
}

.hero-media,
.route-hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.route-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after,
.route-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 27, 21, 0.8) 0%, rgba(14, 27, 21, 0.42) 48%, rgba(14, 27, 21, 0.06) 78%);
}

.hero-content,
.route-hero-content {
  position: relative;
  z-index: 1;
  width: var(--page);
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 auto;
  padding: 88px 0 74px;
}

.hero-content {
  max-width: min(1240px, calc(100% - 72px));
}

.hero-content > div,
.route-hero-content > div {
  max-width: 760px;
}

.home-hero h1,
.route-hero h1 {
  color: var(--white);
  text-wrap: balance;
}

.home-hero .hero-copy,
.route-hero .hero-copy {
  max-width: 670px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-price,
.route-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-price strong,
.route-facts strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.03em;
}

.hero-price span,
.route-facts span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.section {
  padding: clamp(78px, 9vw, 132px) 0;
}

.section-compact {
  padding: clamp(56px, 6vw, 88px) 0;
}

.section-inner {
  width: var(--page);
  margin: 0 auto;
}

.section-intro {
  max-width: 810px;
  margin-bottom: clamp(42px, 6vw, 78px);
}

.section-intro.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-label {
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-lead {
  max-width: var(--reading);
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.7;
}

.journey-list {
  display: grid;
  gap: clamp(64px, 8vw, 116px);
}

.journey-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.journey-overview:nth-child(even) .journey-media {
  order: 2;
}

.journey-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d9d3c8;
}

.journey-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.journey-overview:hover .journey-media img {
  transform: scale(1.025);
}

.journey-number {
  margin-bottom: 24px;
  color: var(--gold-dark);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 18px;
}

.journey-content h3 {
  font-size: clamp(30px, 3.5vw, 52px);
}

.journey-content > p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.journey-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 30px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.journey-meta strong,
.journey-meta span {
  display: block;
}

.journey-meta strong {
  color: var(--forest);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-meta span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.section-dark {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.78);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .section-label {
  color: #d5b77f;
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.74);
}

.value-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.value-item,
.process-step {
  min-height: 250px;
  padding: 30px clamp(22px, 3vw, 44px);
  border-left: 1px solid var(--line-dark);
}

.value-item:first-child,
.process-step:first-child {
  padding-left: 0;
  border-left: 0;
}

.value-item:last-child,
.process-step:last-child {
  padding-right: 0;
}

.value-index,
.process-index {
  display: block;
  margin-bottom: 44px;
  color: #d5b77f;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 18px;
}

.value-item p,
.process-step p {
  color: rgba(255, 255, 255, 0.68);
}

.mood-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1.05fr;
  gap: 16px;
}

.mood-item {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.mood-item:nth-child(2) {
  min-height: 620px;
  margin-top: 56px;
}

.mood-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mood-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 72px 24px 24px;
  background: linear-gradient(transparent, rgba(13, 24, 18, 0.8));
  color: var(--white);
}

.mood-caption strong,
.mood-caption span {
  display: block;
}

.mood-caption strong {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.mood-caption span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
  min-height: 300px;
  border-color: var(--line);
}

.process-step h3 {
  font-size: 26px;
}

.process-step p {
  color: var(--muted);
}

.process-step .process-index {
  color: var(--gold-dark);
}

.price-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 8vw, 120px);
  align-items: end;
}

.price-display {
  color: var(--forest);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.95;
}

.price-display small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.price-notes {
  max-width: 570px;
  color: var(--muted);
  font-size: 18px;
}

.price-notes ul,
.clean-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.price-notes li,
.clean-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.inquiry-band {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.76);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  gap: clamp(44px, 8vw, 124px);
  align-items: start;
}

.inquiry-layout h2 {
  color: var(--white);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.inquiry-form select {
  color-scheme: dark;
}

.inquiry-form textarea,
.form-wide,
.form-note,
.form-error,
.inquiry-form button {
  grid-column: 1 / -1;
}

.inquiry-form textarea {
  min-height: 110px;
  padding-top: 14px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.form-error {
  margin: 0;
  padding: 10px 12px;
  border-left: 2px solid #e4aa81;
  background: rgba(109, 32, 21, 0.24);
  color: #ffe6d8;
  font-size: 13px;
}

.form-error.form-success {
  border-color: #a5c7a9;
  background: rgba(31, 81, 47, 0.28);
  color: #e4f5e6;
}

.inquiry-form button {
  justify-self: start;
  margin-top: 10px;
}

.site-footer {
  padding: 58px 0 34px;
  background: #101c16;
  color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
  width: var(--page);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 48px;
  margin: 0 auto 52px;
}

.footer-brand {
  max-width: 430px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.footer-column h2 {
  margin-bottom: 18px;
  color: #d5b77f;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-privacy-button {
  display: block;
  width: fit-content;
  margin: 9px 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.footer-privacy-button:hover,
.footer-privacy-button:focus-visible {
  color: var(--white);
}

.footer-bottom {
  width: var(--page);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
}

.footer-registration {
  display: flex;
  justify-content: space-between;
  gap: 18px 32px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.6;
}

.company-identity {
  padding-top: 0;
}

.company-identity-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 32px clamp(36px, 6vw, 88px);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  background: var(--sand-soft);
}

.company-identity-intro h2 {
  max-width: 720px;
}

.company-identity-intro p:last-child,
.company-identity-note {
  color: var(--muted);
}

.company-identity-facts {
  margin: 0;
}

.company-identity-facts div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.company-identity-facts dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-identity-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.company-identity-note {
  grid-column: 1 / -1;
  max-width: 920px;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.page-masthead {
  padding: clamp(72px, 9vw, 126px) 0 60px;
  background: var(--ivory-light);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.privacy-copy section + section {
  margin-top: 46px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.privacy-copy h2 {
  margin-bottom: 16px;
}

.privacy-copy .button {
  margin-top: 12px;
}

.consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 24px;
  border: 1px solid rgba(213, 183, 127, 0.58);
  border-radius: 4px;
  background: #10221f;
  color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 48px rgba(10, 24, 20, 0.28);
}

.consent-banner strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 18px;
}

.consent-banner p {
  max-width: 760px;
  margin: 0 0 7px;
  font-size: 13px;
  line-height: 1.55;
}

.consent-banner a {
  color: #e0c18a;
  font-size: 13px;
}

.consent-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.consent-actions .button,
.consent-actions .button-secondary {
  min-height: 44px;
  white-space: nowrap;
}

.page-masthead .section-inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}

.page-masthead h1 {
  max-width: 900px;
  margin: 0;
}

.page-masthead p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.routes-collage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.1fr;
  height: min(48vw, 560px);
  min-height: 360px;
  background: #ddd6ca;
}

.routes-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.routes-collage img:nth-child(2) {
  border-right: 6px solid var(--ivory);
  border-left: 6px solid var(--ivory);
}

.journey-comparison {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 19px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--gold-dark);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-table td:first-child {
  color: var(--forest);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 20px;
}

.route-hero {
  min-height: min(720px, calc(100svh - 112px));
}

.route-hero-content {
  padding-bottom: 58px;
}

.route-hero h1 {
  max-width: 950px;
  font-size: clamp(46px, 6.1vw, 88px);
}

.route-hero .hero-copy {
  max-width: 760px;
}

.route-yunnan {
  --route-accent: var(--yunnan-red);
  --route-accent-secondary: var(--yunnan-blue);
}

.route-guangxi {
  --route-accent: var(--guangxi);
  --route-accent-secondary: #77a788;
}

.route-qinggan {
  --route-accent: var(--qinggan);
  --route-accent-secondary: var(--qinggan-indigo);
}

.page-jump-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 234, 0.96);
  scrollbar-width: none;
}

.page-jump-nav::-webkit-scrollbar {
  display: none;
}

.page-jump-nav .section-inner {
  display: flex;
  gap: 32px;
  min-width: max-content;
}

.page-jump-nav a {
  position: relative;
  padding: 17px 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.page-jump-nav a:hover {
  color: var(--route-accent, var(--forest));
}

.page-jump-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--route-accent, var(--forest));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.page-jump-nav a[aria-current="location"] {
  color: var(--route-accent, var(--forest));
}

.page-jump-nav a[aria-current="location"]::after {
  transform: scaleX(1);
}

.route-overview-grid,
.editorial-split,
.itinerary-layout,
.destination-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(48px, 8vw, 116px);
  align-items: start;
}

.route-overview-copy p,
.destination-intro-grid p {
  max-width: var(--reading);
  color: var(--muted);
  font-size: 18px;
}

.highlight-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: highlights;
}

.highlight-list li {
  position: relative;
  min-height: 78px;
  padding: 17px 0 17px 58px;
  border-top: 1px solid var(--line);
  color: var(--forest);
  font-size: 17px;
  font-weight: 600;
}

.proposal-clarity .highlight-list li {
  color: var(--ivory);
}

.highlight-list li::before {
  counter-increment: highlights;
  content: counter(highlights, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 0;
  color: var(--route-accent, var(--gold-dark));
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 15px;
}

/* Keep the published split layout, with a quieter sans-serif route summary. */
.route-page-v2 .route-overview-copy h2 {
  margin-bottom: 24px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(30px, 2.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: pretty;
}

.route-page-v2 .route-overview-copy > p:last-child {
  max-width: 54ch;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.75;
}

.itinerary-layout {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
}

.route-map {
  margin: 0;
  position: sticky;
  top: 152px;
}

.route-map img,
.journey-map {
  width: 100%;
  aspect-ratio: 16 / 11;
  border: 1px solid var(--line);
  background: var(--ivory-light);
}

.journey-map {
  min-height: 360px;
  overflow: hidden;
}

.journey-map .leaflet-control-attribution {
  background: rgba(252, 250, 246, 0.9);
  color: #58544d;
  font-size: 10px;
}

.journey-map .leaflet-control-attribution a {
  color: var(--forest);
}

.route-stop-marker {
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 700;
}

.route-stop-marker {
  width: 28px;
  height: 28px;
  border: 2px solid #fff;
  box-shadow: 0 2px 9px rgba(19, 35, 26, 0.34);
  color: #fff;
  font-size: 11px;
  transition: box-shadow 180ms ease, outline 180ms ease, transform 180ms ease;
}

.route-stop-marker.is-active {
  transform: scale(1.28);
  outline: 4px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--forest) 44%, transparent), 0 3px 12px rgba(19, 35, 26, 0.46);
}

.route-map p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.itinerary-days {
  border-top: 1px solid var(--line);
}

.itinerary-day {
  border-bottom: 1px solid var(--line);
}

.itinerary-day summary {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}

.itinerary-day summary::-webkit-details-marker {
  display: none;
}

.day-number {
  color: var(--route-accent, var(--gold-dark));
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.day-title {
  color: var(--forest);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 21px;
}

.day-toggle {
  width: 26px;
  height: 26px;
  position: relative;
}

.day-toggle::before,
.day-toggle::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 5px;
  width: 16px;
  height: 1px;
  background: var(--forest);
}

.day-toggle::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.itinerary-day[open] .day-toggle::after {
  transform: rotate(0);
}

.day-copy {
  max-width: 680px;
  padding: 0 44px 26px 90px;
  color: var(--muted);
}

.section-dark .itinerary-days,
.section-dark .itinerary-day {
  border-color: rgba(255, 255, 255, 0.24);
}

.section-dark .day-title {
  color: var(--white);
}

.section-dark .day-copy {
  color: rgba(255, 255, 255, 0.74);
}

.section-dark .day-copy strong {
  color: #d5b77f;
}

.section-dark .day-toggle::before,
.section-dark .day-toggle::after {
  background: rgba(255, 255, 255, 0.82);
}

.day-copy strong {
  color: var(--forest);
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 18px;
}

.experience-card {
  min-width: 0;
}

.experience-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #ddd6ca;
}

.experience-card:nth-child(2) img,
.experience-card:nth-child(5) img {
  aspect-ratio: 4 / 4.7;
}

.experience-card-content {
  padding: 19px 2px 0;
}

.experience-card-content h3 {
  margin-bottom: 8px;
  font-size: 23px;
}

.experience-card-content p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.editorial-split {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
}

.editorial-media {
  min-height: 560px;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.editorial-copy {
  max-width: 560px;
}

.editorial-copy p {
  color: var(--muted);
  font-size: 18px;
}

.season-grid,
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.season-item,
.quote-item {
  padding-top: 22px;
  border-top: 2px solid var(--route-accent, var(--gold));
}

.season-item h3,
.quote-item h3 {
  font-size: 24px;
}

.season-item p,
.quote-item p {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 24px 52px 24px 0;
  color: var(--forest);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 20px;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 0;
  color: var(--route-accent, var(--gold-dark));
  font-family: Inter, sans-serif;
  font-size: 26px;
  font-weight: 300;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  max-width: 820px;
  padding: 0 56px 24px 0;
  color: var(--muted);
}

.destination-hero {
  min-height: min(650px, calc(100svh - 136px));
}

.destination-hero h1 {
  max-width: 860px;
}

.destination-intro-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.2fr);
}

.prose-column {
  max-width: var(--reading);
}

.prose-column h2 {
  font-size: clamp(32px, 3.5vw, 52px);
}

.prose-column p {
  color: var(--muted);
  font-size: 18px;
}

.destination-route-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
  padding: clamp(44px, 6vw, 78px);
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.76);
}

.destination-route-cta h2 {
  color: var(--white);
}

.destination-route-cta .button {
  justify-self: start;
  background: var(--gold);
  color: #201c17;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}

.story-aside {
  position: sticky;
  top: 130px;
}

.story-aside img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story-copy section {
  padding: 0 0 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.story-copy p,
.story-copy li {
  color: var(--muted);
  font-size: 18px;
}

.breadcrumb {
  width: var(--page);
  margin: 0 auto;
  padding: 18px 0;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumb a:hover {
  color: var(--forest);
}

@media (max-width: 1080px) {
  :root {
    --page: min(100% - 48px, 980px);
  }

  .site-header {
    grid-template-columns: minmax(200px, 1fr) auto minmax(160px, 1fr);
    padding: 0 24px;
  }

  .primary-nav {
    gap: 18px;
  }

  .primary-nav > a,
  .nav-menu > summary {
    font-size: 12px;
  }

  .journey-overview,
  .route-overview-grid,
  .editorial-split,
  .destination-intro-grid {
    gap: 48px;
  }

  .experiences-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-card:nth-child(2) img,
  .experience-card:nth-child(5) img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 820px) {
  :root {
    --page: calc(100% - 36px);
    --header-height: 70px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 66px);
  }

  h2 {
    font-size: clamp(31px, 9vw, 48px);
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    height: var(--header-height);
    gap: 10px;
    padding: 0 16px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    max-width: 126px;
    font-size: 13px;
    line-height: 1.05;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .menu-toggle {
    display: block;
  }

  .header-action {
    padding: 12px 13px;
    min-height: 42px;
    font-size: 10px;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    overflow-y: auto;
    background: var(--ivory-light);
  }

  .primary-nav[data-open="true"] {
    display: flex;
  }

  .primary-nav > a,
  .nav-menu > summary {
    width: 100%;
    padding: 18px 2px;
    border-bottom: 1px solid var(--line);
    color: var(--forest);
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 22px;
    font-weight: 400;
  }

  .primary-nav > a::before,
  .nav-menu > summary::before {
    display: none;
  }

  .nav-menu > summary::after {
    float: right;
    margin-top: 6px;
  }

  .nav-panel {
    position: static;
    width: 100%;
    padding: 0 0 12px 16px;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .nav-panel a {
    padding: 12px 0;
  }

  .home-hero,
  .route-hero {
    min-height: calc(100svh - 108px);
  }

  .hero-media::after,
  .route-hero-media::after {
    background: linear-gradient(0deg, rgba(14, 27, 21, 0.92) 0%, rgba(14, 27, 21, 0.45) 62%, rgba(14, 27, 21, 0.08) 100%);
  }

  .hero-content,
  .route-hero-content {
    width: var(--page);
    padding: 54px 0 38px;
  }

  .home-hero .hero-copy,
  .route-hero .hero-copy {
    font-size: 18px;
  }

  .hero-actions .button,
  .hero-actions .button-secondary {
    flex: 1 1 170px;
  }

  .section {
    padding: 74px 0;
  }

  .section-intro {
    margin-bottom: 40px;
  }

  .journey-list {
    gap: 68px;
  }

  .journey-overview,
  .journey-overview:nth-child(even),
  .route-overview-grid,
  .editorial-split,
  .itinerary-layout,
  .destination-intro-grid,
  .price-band,
  .inquiry-layout,
  .page-masthead .section-inner,
  .destination-route-cta,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .journey-overview:nth-child(even) .journey-media {
    order: 0;
  }

  .route-page-v2 .route-overview-copy h2 {
    font-size: clamp(28px, 7vw, 36px);
  }

  .journey-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-grid,
  .process-grid,
  .season-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .value-item,
  .process-step,
  .value-item:first-child,
  .process-step:first-child,
  .value-item:last-child,
  .process-step:last-child {
    min-height: auto;
    padding: 32px 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    border-color: var(--line);
  }

  .value-index,
  .process-index {
    margin-bottom: 18px;
  }

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

  .mood-item,
  .mood-item:nth-child(2) {
    min-height: 430px;
    margin-top: 0;
  }

  .inquiry-layout {
    gap: 38px;
  }

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

  .inquiry-form > * {
    grid-column: 1;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .company-identity-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-registration {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .routes-collage {
    grid-template-columns: 1fr;
    height: auto;
  }

  .routes-collage img {
    aspect-ratio: 16 / 9;
  }

  .routes-collage img:nth-child(2) {
    border: 6px solid var(--ivory);
    border-right: 0;
    border-left: 0;
  }

  .page-jump-nav .section-inner {
    gap: 24px;
  }

  .route-map,
  .story-aside {
    position: static;
  }

  .itinerary-layout {
    gap: 42px;
  }

  .editorial-media {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  :root {
    --page: calc(100% - 28px);
  }

  body {
    font-size: 15px;
  }

  .brand {
    gap: 8px;
  }

  .brand-copy strong {
    max-width: 98px;
    font-size: 12px;
  }

  .brand-copy small {
    letter-spacing: 0.13em;
  }

  .header-action {
    padding: 11px 9px;
    letter-spacing: 0.06em;
  }

  .hero-content > div,
  .route-hero-content > div {
    max-width: 100%;
  }

  .home-hero h1,
  .route-hero h1 {
    font-size: clamp(39px, 12.4vw, 54px);
    line-height: 1.02;
  }

  .route-hero h1 {
    max-width: 350px;
  }

  .hero-price,
  .route-facts {
    gap: 14px 20px;
  }

  .journey-meta {
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
  }

  .mood-item,
  .mood-item:nth-child(2) {
    min-height: 360px;
  }

  .price-display {
    font-size: 58px;
  }

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

  .footer-brand {
    grid-column: 1;
  }

  .page-masthead {
    padding-top: 58px;
  }

  .page-masthead h1 {
    font-size: 43px;
  }

  .experiences-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .experience-card img,
  .experience-card:nth-child(2) img,
  .experience-card:nth-child(5) img {
    aspect-ratio: 4 / 3;
  }

  .itinerary-day summary {
    grid-template-columns: 58px 1fr auto;
    gap: 10px;
  }

  .day-title {
    font-size: 18px;
  }

  .day-copy {
    padding: 0 10px 24px 68px;
  }

  .destination-route-cta {
    padding: 42px 24px;
  }
}

/* First-hand destination guides */
.guide-article-page {
  background: var(--ivory-light);
}

.article-masthead {
  padding: clamp(48px, 6vw, 88px) 0;
  background: var(--forest-deep);
}

.article-masthead-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
}

.article-masthead-copy h1 {
  max-width: 700px;
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(44px, 5.5vw, 78px);
  line-height: 1.02;
}

.article-masthead-copy .section-label {
  color: #d5b77f;
}

.article-deck {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.65;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-hero-figure {
  margin: 0;
}

.article-hero-figure picture {
  display: block;
  overflow: hidden;
  background: #b8afa0;
}

.article-hero-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-hero-figure figcaption {
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.55;
}

.article-reading-width {
  max-width: 850px;
}

.article-opening {
  border-bottom: 1px solid var(--line);
}

.article-opening p {
  color: var(--muted);
  font-size: 18px;
}

.article-opening .article-standfirst {
  color: var(--forest);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.5;
}

.article-route-summary {
  background: #f1eadf;
}

.article-route-summary .section-intro {
  margin-bottom: 40px;
}

.article-route-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(35, 56, 43, 0.17);
}

.article-route-option {
  min-width: 0;
  padding: clamp(24px, 3vw, 40px);
  background: var(--ivory-light);
}

.article-route-option > span,
.article-viewpoint-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-route-option h3 {
  margin-bottom: 18px;
  font-size: clamp(27px, 2.6vw, 38px);
}

.article-route-option p {
  margin: 0;
  color: var(--muted);
}

.article-main {
  background: var(--ivory-light);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.33fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: start;
  max-width: 1120px;
}

.article-aside {
  padding-top: 8px;
  border-top: 2px solid var(--gold);
}

.article-aside p:not(.section-label) {
  color: var(--muted);
  font-size: 14px;
}

.article-aside .text-link {
  font-size: 10px;
  line-height: 1.6;
}

.article-body {
  max-width: 760px;
}

.article-body h2 {
  margin-top: clamp(58px, 8vw, 90px);
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.18;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  font-size: 23px;
}

.article-body > p,
.article-body li {
  color: #4f4b45;
  font-size: 18px;
  line-height: 1.82;
}

.article-body a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: rgba(35, 56, 43, 0.35);
  text-underline-offset: 3px;
}

.article-note {
  margin: 38px 0;
  padding: 26px 28px;
  border-left: 3px solid var(--gold);
  background: #f0e8db;
}

.article-note > strong {
  display: block;
  margin-bottom: 9px;
  color: var(--forest);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-note p {
  margin: 0;
  color: #565149;
  font-size: 15px;
  line-height: 1.75;
}

.article-viewpoint-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 36px 0;
  padding: 1px;
  background: var(--line);
}

.article-viewpoint-grid > div {
  padding: 28px;
  background: #f7f2ea;
}

.article-viewpoint-grid h3 {
  margin-bottom: 12px;
}

.article-viewpoint-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.article-pullquote {
  margin: 48px 0;
  padding: 6px 0 6px 28px;
  border-left: 1px solid var(--gold-dark);
}

.article-pullquote p {
  margin: 0;
  color: var(--forest);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.5;
}

.article-sources {
  margin-top: 72px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.article-sources h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-sources p {
  color: var(--muted);
  font-size: 13px;
}

.article-related-links {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.75);
}

.article-related-links .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: end;
}

.article-related-links h2 {
  margin-bottom: 0;
  color: var(--white);
}

.article-related-links .section-label {
  color: #d5b77f;
}

.article-related-links .button {
  background: var(--gold);
  color: #201c17;
}

.article-related-links .text-link {
  color: var(--white);
}

.destination-field-guide {
  background: #efe7da;
}

.destination-field-guide .editorial-media {
  min-height: 480px;
}

@media (max-width: 980px) {
  .article-masthead-grid {
    grid-template-columns: 1fr;
  }

  .article-masthead-copy {
    max-width: 780px;
  }

  .article-hero-figure {
    max-width: 780px;
  }
}

@media (max-width: 820px) {
  .guide-article-page .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .article-route-options,
  .article-layout,
  .article-related-links .section-inner {
    grid-template-columns: 1fr;
  }

  .article-layout {
    gap: 52px;
  }

  .article-aside {
    max-width: 520px;
  }
}

@media (max-width: 560px) {
  .article-masthead {
    padding: 42px 0;
  }

  .article-masthead-copy h1 {
    font-size: 42px;
  }

  .article-meta {
    display: grid;
  }

  .article-viewpoint-grid {
    grid-template-columns: 1fr;
  }

  .article-body > p,
  .article-opening p {
    font-size: 17px;
  }

  .article-note,
  .article-viewpoint-grid > div {
    padding: 22px;
  }

  .article-related-links .button {
    width: 100%;
    text-align: center;
  }
}

/* Accessible foregrounds for all dark surfaces and consent controls. */
.section-dark,
.section-dark .section-lead,
.section-dark .prose-column p:not(.journey-core-line),
.section-dark .price-notes,
.section-dark .price-notes p,
.section-dark .price-notes li,
.section-dark .route-map p,
.section-dark .value-item p,
.section-dark .process-step p,
.section-dark .day-copy {
  color: #e2ded5;
}

.section-dark .text-link,
.section-dark .day-number {
  color: #f0d59f;
}

.home-hero .section-label,
.route-hero .section-label {
  color: #f0d59f;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.62);
}

.consent-banner {
  color: #e2ded5;
}

.consent-actions .button-secondary {
  background: transparent;
  color: #fff;
}

.hero-capability-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1040px;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.25);
}

.hero-capability-strip span {
  display: flex;
  min-height: 72px;
  align-items: center;
  padding: 16px 18px;
  background: rgba(10, 31, 25, 0.66);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.journey-core-line {
  color: var(--gold-light);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
}

.process-grid-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-link {
  margin: 30px 0 0;
}

.proposal-scope-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.proposal-scope-grid span {
  padding: 17px 18px;
  background: #f7f2e9;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
}

.journey-inclusions .service-boundary {
  display: block;
  margin-top: 18px;
}

.form-help {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  line-height: 1.55;
}

.handled-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 20px;
}

@media (max-width: 980px) {
  .hero-capability-strip,
  .proposal-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 820px) {
  .process-grid-six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hero-capability-strip,
  .proposal-scope-grid,
  .process-grid-six {
    grid-template-columns: 1fr;
  }

  .hero-capability-strip span {
    min-height: 0;
  }
}

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

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

/* 2026 journey revision: concise route selection, photo consistency, and form accessibility. */
[id] {
  scroll-margin-top: 56px;
}

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

.choice-masthead {
  padding: clamp(34px, 5vw, 58px) 0 clamp(26px, 3vw, 38px);
  border-bottom: 1px solid var(--line);
}

.choice-masthead .section-inner,
.full-journey-cta .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  align-items: end;
  gap: 32px;
}

.choice-masthead h1,
.full-journey-hero h1 {
  max-width: 880px;
  margin-bottom: 16px;
  font-size: clamp(42px, 4.7vw, 66px);
}

.choice-masthead p:not(.section-label),
.full-journey-hero p:not(.section-label) {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
}

.compact-intro {
  max-width: 780px;
  margin-bottom: 38px;
}

.compact-intro h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 3.6vw, 54px);
}

.journey-choice-section {
  padding-top: clamp(38px, 5vw, 72px);
}

.route-choice-grid,
.destination-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.route-choice-card,
.destination-choice-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--ivory-light);
}

.choice-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--forest);
}

.choice-image-label {
  position: absolute;
  top: 14px;
  right: 16px;
  left: 16px;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 8px 10px;
  background: rgba(22, 39, 30, 0.78);
  color: var(--white);
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.1;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

.choice-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 280ms ease;
}

.choice-image:hover img,
.choice-image:focus-visible img {
  transform: scale(1.035);
}

.choice-content {
  display: flex;
  min-height: 286px;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.choice-content h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 2.2vw, 38px);
}

.choice-content p:not(.section-label) {
  color: var(--muted);
}

.choice-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: auto 0 20px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
}

.choice-facts span + span {
  border-left: 1px solid var(--line);
  padding-left: 16px;
}

/* Homepage journey cards: three complete choices fit within a desktop viewport. */
.home-page .journey-choice-section {
  padding-top: clamp(28px, 3vw, 42px);
  padding-bottom: clamp(24px, 3vw, 38px);
}

.home-page .journey-choice-section .compact-intro {
  max-width: 1080px;
  margin-bottom: 14px;
}

.home-page .journey-choice-section .compact-intro h2 {
  margin-bottom: 6px;
  font-size: clamp(26px, 2.2vw, 36px);
}

.home-page .journey-choice-section .section-lead {
  margin-bottom: 0;
}

.home-page .route-choice-card .choice-image {
  aspect-ratio: 16 / 9;
}

@media (min-width: 721px) {
  .home-page .route-choice-card .choice-image {
    height: clamp(420px, 72vh, 620px);
    aspect-ratio: auto;
  }
}

.home-page .route-choice-card .choice-image img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.home-page .route-choice-card .choice-content {
  min-height: 190px;
  padding: 18px 20px 20px;
}

.home-page .route-choice-card .choice-content h2 {
  margin-bottom: 8px;
  font-size: clamp(25px, 1.9vw, 32px);
}

.home-page .route-choice-card .choice-content p:not(.section-label) {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.45;
}

.home-page .route-choice-card .choice-facts {
  margin-bottom: 14px;
}

/* Journey comparison uses the route's landmark photos in one compact desktop row. */
.routes-page .journey-choice-section {
  padding-top: clamp(28px, 3vw, 42px);
  padding-bottom: clamp(24px, 3vw, 38px);
}

@media (min-width: 721px) {
  .routes-page .route-choice-card .choice-image {
    height: clamp(420px, 72vh, 620px);
    aspect-ratio: auto;
  }

  .routes-page .route-choice-card .choice-image img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }
}

@media (max-width: 720px) {
  .routes-page .route-choice-card .choice-image {
    aspect-ratio: 4 / 5;
  }

  .routes-page .route-choice-card .choice-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }
}

.journey-inclusions {
  background: #efe9de;
}

.inclusion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.inclusion-item {
  position: relative;
  min-height: 145px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.inclusion-marker {
  display: inline-flex;
  width: 18px;
  height: 18px;
  margin-bottom: 14px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
}

.inclusion-marker::after {
  content: "";
  width: 6px;
  height: 3px;
  margin-top: -2px;
  border-bottom: 1px solid var(--forest);
  border-left: 1px solid var(--forest);
  transform: rotate(-45deg);
}

.inclusion-item h3 {
  margin-bottom: 8px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.inclusion-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.compact-comparison {
  padding-top: 40px;
}

.compact-process .process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-process-link,
.route-enquiry-cta .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
}

.compact-process-link h2,
.route-enquiry-cta h2 {
  margin-bottom: 10px;
}

.route-enquiry-cta {
  background: #efe9de;
}

.process-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.route-page-v2 .section,
.destination-page-v2 .section,
.full-journey-page .section,
.about-page-v2 .section,
.how-page-v2 .section {
  padding-top: clamp(52px, 6vw, 88px);
  padding-bottom: clamp(52px, 6vw, 88px);
}

.route-page-v2 .route-hero h1,
.destination-page-v2 .route-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 5.6vw, 80px);
}

.route-page-v2 .route-hero-content .hero-actions {
  margin-top: 28px;
}

.route-hero-tailor {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.full-journey-stays .hotel-card {
  background: var(--ivory-light);
}

.full-journey-practical {
  background: #efe9de;
}

.photo-wall {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.photo-wall .experience-card,
.destination-experience-grid .experience-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--ivory-light);
}

.photo-wall .experience-card img,
.destination-experience-grid .experience-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.photo-wall .experience-card-content,
.destination-experience-grid .experience-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.photo-wall .experience-card-content h3,
.destination-experience-grid .experience-card-content h3 {
  font-size: 24px;
}

.photo-wall .experience-card-content p:last-child,
.destination-experience-grid .experience-card-content p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

/* Three equal full-bleed frames keep the Guangxi feature row compact. */
.route-page-v2 #experiences.route-guangxi .photo-wall .experience-card img,
.route-page-v2 #experiences.route-yunnan .photo-wall .experience-card img,
.route-page-v2 #experiences.route-qinggan .photo-wall .experience-card img {
  height: clamp(280px, 42vh, 430px);
  aspect-ratio: auto;
  object-fit: cover;
}

.route-page-v2 #experiences.route-guangxi .photo-wall .experience-card:nth-child(1) img {
  object-position: 50% 62%;
}

.route-page-v2 #experiences.route-guangxi .photo-wall .experience-card:nth-child(2) img {
  object-position: 50% 64%;
}

.route-page-v2 #experiences.route-guangxi .photo-wall .experience-card:nth-child(3) img {
  object-position: 50% 50%;
}

.route-page-v2 #experiences.route-yunnan .photo-wall .experience-card:nth-child(1) img {
  object-position: 50% 68%;
}

.route-page-v2 #experiences.route-yunnan .photo-wall .experience-card:nth-child(2) img {
  object-position: 50% 58%;
}

.route-page-v2 #experiences.route-yunnan .photo-wall .experience-card:nth-child(3) img {
  object-position: 50% 64%;
}

.route-page-v2 #experiences.route-qinggan .photo-wall .experience-card:nth-child(1) img {
  object-position: 50% 66%;
}

.route-page-v2 #experiences.route-qinggan .photo-wall .experience-card:nth-child(2) img {
  object-position: 50% 68%;
}

.route-page-v2 #experiences.route-qinggan .photo-wall .experience-card:nth-child(3) img {
  object-position: 50% 56%;
}

.route-page-v2 #experiences.route-qinggan .photo-wall .experience-card:nth-child(4) img {
  object-position: 50% 50%;
}

.route-page-v2 #experiences.route-qinggan .photo-wall .experience-card:nth-child(5) img {
  object-position: 50% 62%;
}

.route-page-v2 #experiences.route-guangxi .photo-wall .experience-card-content,
.route-page-v2 #experiences.route-yunnan .photo-wall .experience-card-content,
.route-page-v2 #experiences.route-qinggan .photo-wall .experience-card-content {
  min-height: 118px;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.hotel-card {
  min-height: 222px;
  padding: 24px;
  border-top: 3px solid var(--gold);
  background: var(--ivory-light);
}

.route-guangxi .hotel-card {
  border-top-color: var(--guangxi);
}

.route-qinggan .hotel-card {
  border-top-color: var(--qinggan);
}

.route-yunnan .hotel-card {
  border-top-color: var(--yunnan-red);
}

.hotel-card h3 {
  font-size: 21px;
}

.hotel-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.full-journey-cta {
  background: var(--forest);
  color: var(--ivory);
}

.full-journey-cta h2,
.full-journey-cta p {
  color: inherit;
}

.full-journey-cta .section-label {
  color: #d9b779;
}

.full-journey-hero {
  padding: clamp(64px, 10vw, 130px) 0;
  background: var(--forest);
  color: var(--ivory);
}

.full-journey-hero h1,
.full-journey-hero p {
  color: inherit;
}

.full-journey-hero p:not(.section-label) {
  max-width: 760px;
  color: rgba(247, 242, 234, 0.9);
  font-size: 18px;
}

.full-itinerary {
  max-width: 920px;
  margin: 0 auto;
}

.destination-experience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.destination-page-v2 .destination-experience-grid .experience-card {
  background: var(--ivory);
}

.destination-page-v2 .destination-experience-grid .experience-card-content h3,
.section-dark .destination-experience-grid .experience-card-content h3 {
  color: var(--forest);
}

/* Yunnan, Guangxi, and Qinghai-Gansu share one large, horizontally scrollable image rail. */
.destination-page-v2 .destination-feature-gallery {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: clamp(280px, 29vw, 470px);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.16);
  scrollbar-width: thin;
  padding-bottom: 14px;
}

.destination-page-v2 .destination-feature-gallery::-webkit-scrollbar {
  height: 6px;
}

.destination-page-v2 .destination-feature-gallery::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.16);
}

.destination-page-v2 .destination-feature-gallery::-webkit-scrollbar-thumb {
  background: var(--gold);
}

.destination-page-v2 .destination-feature-gallery:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}

.destination-page-v2 .destination-feature-gallery .experience-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--forest);
  scroll-snap-align: start;
}

.destination-page-v2 .destination-feature-gallery .experience-card img {
  display: block;
  width: 100%;
  height: clamp(300px, 48vh, 420px);
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform 280ms ease;
}

/* Keep more of Erhai's waterline while taking a little sky from the crop. */
.destination-page-v2.route-yunnan .destination-yunnan-gallery .experience-card:nth-child(1) img {
  object-position: 50% 70%;
}

.destination-page-v2 .destination-feature-gallery .experience-card:hover img {
  transform: scale(1.035);
}

.destination-page-v2 .destination-feature-gallery .experience-card-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 44px 16px 14px;
  background: linear-gradient(transparent, rgba(12, 28, 20, 0.88));
  color: var(--white);
}

.destination-page-v2 .destination-feature-gallery .experience-card-label h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(18px, 1.45vw, 25px);
  line-height: 1.16;
}

@media (max-width: 1080px) {
  .destination-page-v2 .destination-feature-gallery {
    grid-auto-columns: minmax(280px, 68vw);
  }
}

@media (max-width: 720px) {
  .destination-page-v2 .destination-feature-gallery {
    grid-auto-columns: minmax(250px, 84vw);
  }

  .destination-page-v2 .destination-feature-gallery .experience-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

.cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.inquiry-form-v2 .form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.inquiry-form-v2 label {
  color: var(--ivory);
  font-size: 13px;
  font-weight: 700;
}

.inquiry-form-v2 input,
.inquiry-form-v2 select,
.inquiry-form-v2 textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--charcoal);
}

.inquiry-form-v2 textarea {
  min-height: 110px;
}

@media (max-width: 980px) {
  .route-choice-grid,
  .destination-choice-grid,
  .photo-wall,
  .hotel-grid,
  .destination-experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inclusion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-content {
    min-height: 250px;
  }
}

@media (max-width: 720px) {
  .choice-masthead .section-inner,
  .full-journey-cta .section-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .choice-masthead .button,
  .full-journey-cta .button {
    width: fit-content;
  }

  .route-choice-grid,
  .destination-choice-grid,
  .photo-wall,
  .destination-experience-grid,
  .compact-process .process-grid,
  .process-grid-five {
    grid-template-columns: 1fr;
  }

  .hotel-grid,
  .inclusion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-content {
    min-height: 0;
  }

  .choice-image img,
  .photo-wall .experience-card img,
  .destination-experience-grid .experience-card img {
    aspect-ratio: 4 / 5;
  }

  .inclusion-item,
  .hotel-card {
    min-height: 0;
  }

  .full-journey-hero {
    padding: 64px 0;
  }

  .route-page-v2 .section,
  .destination-page-v2 .section,
  .full-journey-page .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .compact-process-link,
  .route-enquiry-cta .section-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .consent-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .consent-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 820px) {
  .itinerary-layout,
  .route-map,
  .journey-map,
  .itinerary-days,
  .itinerary-day,
  .itinerary-day summary {
    min-width: 0;
    max-width: 100%;
  }

  .journey-map {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .day-title,
  .day-copy {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .day-copy {
    max-width: none;
  }
}

.route-decision-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border: 1px solid rgba(35, 56, 43, 0.14);
  background: rgba(35, 56, 43, 0.14);
}

.route-decision-item {
  min-width: 0;
  padding: clamp(18px, 2vw, 28px);
  background: var(--ivory-light);
}

.route-decision-item span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-decision-item strong {
  display: block;
  color: var(--forest);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.45;
}

.journey-fit,
.service-boundary,
.route-planning-cta .section-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.4fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}

.route-planning-cta .section-inner {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding-top: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(32px, 4vw, 56px);
  border-top: 1px solid rgba(35, 56, 43, 0.16);
  border-bottom: 1px solid rgba(35, 56, 43, 0.16);
}

.route-planning-cta .section-label,
.route-planning-cta h2,
.route-planning-cta p,
.service-boundary h2,
.service-boundary p {
  margin-bottom: 0;
}

.route-planning-cta h2,
.service-boundary h2 {
  margin-bottom: 14px;
}

@media (max-width: 820px) {
  .route-decision-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-fit,
  .service-boundary,
  .route-planning-cta .section-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .route-planning-cta .button {
    width: fit-content;
  }
}

@media (max-width: 560px) {
  .route-decision-panel {
    grid-template-columns: 1fr;
  }

  .route-decision-item strong {
    overflow-wrap: anywhere;
  }

  .route-planning-cta .button {
    width: 100%;
    text-align: center;
  }
}
