:root {
  --forest-950: #0b2b23;
  --forest-900: #12382d;
  --forest-800: #174638;
  --forest-700: #245947;
  --linen-50: #fbf8f0;
  --linen-100: #f3ede0;
  --linen-200: #e8dfce;
  --gold-400: #c99a49;
  --gold-500: #895d20;
  --rust-500: #a94f2f;
  --ink: #1a2a24;
  --muted: #65716a;
  --white: #fffdf8;
  --line: rgba(20, 59, 47, .16);
  --shadow: 0 20px 60px rgba(30, 45, 37, .12);
  --sans: "Segoe UI", "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1180px, calc(100% - 48px));
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--linen-50);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img, svg { display: block; max-width: 100%; }

:focus-visible {
  outline: 3px solid #d5a74e;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 6px;
  color: var(--white);
  background: var(--forest-950);
  transform: translateY(-180%);
  transition: transform .2s ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 80px;
  padding: 14px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  color: var(--forest-950);
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 240, .94);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(17, 44, 35, .07);
  backdrop-filter: blur(12px);
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--forest-800);
}

.brand-mark svg { width: 27px; fill: currentColor; }

.brand strong,
.brand small { display: block; }
.brand strong { font-size: 16px; letter-spacing: .12em; line-height: 1.2; }
.brand small { margin-top: 4px; color: var(--muted); font-size: 9px; letter-spacing: .04em; line-height: 1.2; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  font-size: 14px;
  font-weight: 600;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  padding: 8px 0;
}

.primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.primary-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  padding: 10px 18px;
  color: var(--white);
  border-radius: 999px;
  background: var(--forest-800);
  transition: transform .2s ease, background .2s ease;
}

.nav-cta:hover { background: var(--forest-950); transform: translateY(-2px); }
.nav-toggle { display: none; }

.hero {
  min-height: 760px;
  height: 100svh;
  max-height: 920px;
  display: grid;
  grid-template-columns: minmax(480px, 48%) 1fr;
  overflow: hidden;
  background: var(--linen-50);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 128px clamp(48px, 6vw, 100px) 48px;
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--forest-700);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}

.eyebrow > span {
  width: 30px;
  height: 1px;
  background: var(--gold-500);
}

.hero h1,
.section-heading h2,
.journey-copy h2,
.plan-copy h2 {
  margin: 0;
  color: var(--forest-950);
  font-size: clamp(54px, 5.4vw, 86px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -.055em;
}

.kinetic-word {
  position: relative;
  z-index: 0;
  display: inline-block;
  color: var(--rust-500);
  animation: word-breathe 3.8s ease-in-out infinite;
}

.kinetic-word::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -.12em;
  bottom: .06em;
  left: -.06em;
  height: .22em;
  border-radius: 50%;
  background: rgba(201, 154, 73, .32);
  transform: rotate(-2deg) scaleX(.88);
  transform-origin: left;
  animation: underline-sweep 3.8s ease-in-out infinite;
}

@keyframes word-breathe {
  0%, 100% { transform: translateY(0) rotate(0); }
  48% { transform: translateY(-4px) rotate(-1deg); }
}

@keyframes underline-sweep {
  0%, 12% { transform: rotate(-2deg) scaleX(.1); opacity: .2; }
  40%, 82% { transform: rotate(-2deg) scaleX(1); opacity: 1; }
  100% { transform: rotate(-2deg) scaleX(.1); opacity: .2; }
}

.hero-intro {
  max-width: 510px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  min-height: 52px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--white); background: var(--forest-800); box-shadow: 0 12px 24px rgba(22, 70, 55, .18); }
.button-primary:hover { background: var(--forest-950); box-shadow: 0 16px 32px rgba(22, 70, 55, .22); }
.button svg { width: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }

.text-link {
  padding: 8px 0;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--forest-950);
}

.text-link span { display: inline-block; margin-left: 8px; transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, 3px); }

.hero-meta {
  margin: 55px 0 0;
  display: flex;
  gap: clamp(28px, 4vw, 64px);
}

.hero-meta div { position: relative; }
.hero-meta div + div::before { content: ""; position: absolute; top: 5px; bottom: 5px; left: clamp(-32px, -2vw, -14px); width: 1px; background: var(--line); }
.hero-meta dt { font-family: var(--mono); font-size: 17px; font-weight: 700; letter-spacing: .02em; }
.hero-meta dd { margin: 1px 0 0; color: var(--muted); font-size: 11px; letter-spacing: .08em; }

.hero-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--forest-800);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(15, 48, 38, .12), transparent 20%), linear-gradient(0deg, rgba(11, 43, 35, .32), transparent 38%);
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}

.hero-visual:hover > img { transform: scale(1.025); }

.visual-stamp {
  position: absolute;
  z-index: 2;
  top: 118px;
  right: 36px;
  width: 96px;
  height: 96px;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 50%;
  backdrop-filter: blur(6px);
}

.visual-stamp::before, .visual-stamp::after { content: ""; position: absolute; inset: 7px; border: 1px dashed rgba(255,255,255,.45); border-radius: 50%; }
.visual-stamp span { font-size: 25px; font-weight: 600; line-height: 1.25; }
.visual-stamp small { font-family: var(--mono); font-size: 8px; letter-spacing: .1em; }

.weather-note {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 44px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(14, 49, 38, .5);
  backdrop-filter: blur(10px);
}

.weather-note > span { font-size: 30px; line-height: 1; }
.weather-note strong, .weather-note small { display: block; }
.weather-note strong { font-size: 12px; }
.weather-note small { margin-top: 2px; opacity: .78; font-size: 10px; letter-spacing: .12em; }

.scroll-hint {
  position: absolute;
  z-index: 2;
  bottom: 42px;
  left: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  writing-mode: vertical-rl;
}

.scroll-hint span { width: 1px; height: 42px; display: block; background: rgba(255,255,255,.6); animation: scroll-pulse 2s ease-in-out infinite; }
@keyframes scroll-pulse { 0%,100% { transform: scaleY(.5); transform-origin: top; opacity: .35; } 50% { transform: scaleY(1); opacity: 1; } }

.marquee {
  overflow: hidden;
  color: var(--white);
  background: var(--forest-950);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.marquee-track {
  min-width: max-content;
  padding: 15px max(24px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 62px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  white-space: nowrap;
}

.marquee-track i { color: var(--gold-400); font-style: normal; }
.section-shell { width: var(--shell); margin: 0 auto; }

.destinations { padding: 126px 0 140px; }

.section-heading {
  margin-bottom: 62px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: end;
  gap: 64px;
}

.section-heading .eyebrow { margin-bottom: 20px; }
.section-heading h2, .journey-copy h2, .plan-copy h2 { font-size: clamp(46px, 5vw, 72px); }
.section-heading > p { max-width: 440px; margin: 0 0 8px; color: var(--muted); font-size: 16px; line-height: 1.9; }

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.destination-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: #f7f2e8;
  box-shadow: 0 12px 34px rgba(32, 50, 40, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.destination-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }

.card-image {
  position: relative;
  height: 310px;
  display: block;
  overflow: hidden;
  background: #d8ceb7;
}

.scene { position: absolute; inset: 0; overflow: hidden; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.destination-card:hover .scene { transform: scale(1.035); }

.card-index {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 4px 8px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 10px;
  background: rgba(13, 48, 37, .65);
  backdrop-filter: blur(8px);
}

.card-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--forest-950);
  border-radius: 50%;
  background: var(--linen-50);
  font-size: 18px;
  transition: transform .25s ease;
}

.destination-card:hover .card-arrow { transform: rotate(8deg) scale(1.06); }

.scene-mountain { background: linear-gradient(180deg, #879a82 0 52%, #cfb16c 52%); }
.scene-mountain .sun, .scene-lake .sun { position: absolute; top: 35px; right: 50px; width: 60px; height: 60px; border-radius: 50%; background: #e7bf69; box-shadow: 0 0 0 16px rgba(231,191,105,.1); }
.scene-mountain .ridge { position: absolute; left: -10%; width: 120%; border-radius: 50% 50% 0 0 / 100% 100% 0 0; }
.scene-mountain .ridge-back { bottom: 22%; height: 56%; background: #476957; clip-path: polygon(0 100%,0 62%,14% 40%,27% 54%,45% 22%,64% 60%,78% 39%,100% 69%,100% 100%); }
.scene-mountain .ridge-front { bottom: 0; height: 53%; background: #234c3c; clip-path: polygon(0 100%,0 68%,22% 40%,35% 57%,55% 22%,67% 50%,82% 30%,100% 62%,100% 100%); }
.scene-mountain .trees { position: absolute; inset: auto -5% -2% -5%; height: 36%; background: repeating-linear-gradient(112deg, transparent 0 16px, #c88d3d 17px 29px, #e1b151 30px 41px); clip-path: polygon(0 100%,4% 40%,8% 100%,12% 25%,17% 100%,23% 38%,29% 100%,34% 15%,39% 100%,45% 30%,50% 100%,56% 22%,62% 100%,68% 40%,73% 100%,79% 20%,85% 100%,91% 28%,96% 100%); opacity: .95; }

.scene-town { background: #d9b47b; }
.scene-town .sky { position: absolute; inset: 0 0 38%; background: linear-gradient(#9cac94, #d9b47b); }
.scene-town .roof { position: absolute; z-index: 2; bottom: 36%; height: 27%; background: #e6ddc9; border-bottom: 7px solid #173e32; }
.scene-town .roof::before { content: ""; position: absolute; top: -26px; left: -8%; width: 116%; height: 31px; background: #25463c; clip-path: polygon(8% 45%,50% 0,92% 45%,100% 54%,51% 30%,0 55%); }
.scene-town .roof-one { left: -5%; width: 45%; }
.scene-town .roof-two { right: -4%; width: 52%; height: 34%; }
.scene-town .bridge { position: absolute; z-index: 4; right: 21%; bottom: 29%; width: 58%; height: 22%; border: 10px solid #d4c6aa; border-top-left-radius: 50% 100%; border-top-right-radius: 50% 100%; border-bottom: 0; }
.scene-town .water { position: absolute; inset: 61% 0 0; background: repeating-linear-gradient(175deg, #6d8b7d 0 8px, #789687 9px 13px, #ba9f69 14px 16px); }

.scene-lake { background: linear-gradient(#849b8a 0 45%, #6d8f85 46% 100%); }
.scene-lake .sun { top: 38px; right: auto; left: 55px; background: #d2a14c; }
.scene-lake .water { position: absolute; inset: 52% 0 0; background: repeating-linear-gradient(177deg, #658981 0 12px, #74988e 13px 18px, #567c72 19px 20px); }
.scene-lake .island { position: absolute; z-index: 2; bottom: 36%; background: #315c48; border-radius: 50% 50% 4px 4px / 100% 100% 3px 3px; }
.scene-lake .island::before { content: ""; position: absolute; inset: -24px 10% 10px; background: #c28c3d; clip-path: polygon(0 100%,10% 45%,18% 100%,28% 28%,36% 100%,47% 50%,56% 100%,66% 18%,75% 100%,86% 44%,100% 100%); }
.scene-lake .island-one { right: -4%; width: 58%; height: 25%; }
.scene-lake .island-two { left: -8%; bottom: 43%; width: 42%; height: 19%; transform: scale(.8); opacity: .82; }
.scene-lake .shore { position: absolute; z-index: 3; right: -20%; bottom: -3%; width: 90%; height: 38%; border-radius: 50% 0 0; background: #194738; clip-path: ellipse(69% 48% at 75% 57%); }

.card-copy { padding: 26px 26px 24px; }
.card-copy > div:first-child { min-height: 76px; display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; }
.card-copy .tag { align-self: flex-start; padding-top: 3px; color: var(--gold-500); font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: .1em; writing-mode: vertical-rl; }
.card-copy h3 { margin: 0; font-size: 28px; font-weight: 650; letter-spacing: -.03em; }
.card-copy > p { min-height: 86px; margin: 20px 0; color: var(--muted); font-size: 14px; line-height: 1.85; }
.card-copy dl { margin: 0; padding-top: 17px; display: flex; gap: 38px; border-top: 1px solid var(--line); }
.card-copy dl div { display: flex; gap: 9px; align-items: center; }
.card-copy dt { color: var(--muted); font-size: 10px; }
.card-copy dd { margin: 0; font-family: var(--mono); font-size: 10px; font-weight: 700; }

.journey {
  min-height: 820px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
  background: var(--forest-950);
}

.journey-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.12);
  background: #c6a568;
}

.journey-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(31,69,55,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(31,69,55,.25) 1px, transparent 1px);
  background-size: 40px 40px;
}

.route-map { position: relative; width: min(78%, 540px); aspect-ratio: 1 / .86; transform: rotate(-3deg); }
.route-map::after { content: ""; position: absolute; inset: 4%; border: 1px solid rgba(20,61,47,.28); border-radius: 50% 44% 50% 40%; transform: rotate(8deg); }
.map-line { position: absolute; z-index: 4; top: 22%; left: 15%; width: 68%; height: 56%; border: 3px dashed var(--linen-50); border-top-color: transparent; border-left-color: transparent; border-radius: 42% 24% 50% 22%; transform: rotate(12deg); }
.map-stop { position: absolute; z-index: 6; width: 38px; height: 38px; display: grid; place-items: center; border: 2px solid var(--linen-50); border-radius: 50%; background: var(--forest-800); box-shadow: 0 0 0 8px rgba(255,253,248,.18); }
.map-stop i { font-family: var(--mono); font-size: 12px; font-style: normal; }
.stop-one { top: 18%; left: 14%; }
.stop-two { top: 42%; right: 16%; }
.stop-three { bottom: 13%; left: 32%; }
.map-tree { position: absolute; z-index: 2; width: 48px; height: 82px; background: var(--forest-800); clip-path: polygon(50% 0,68% 31%,58% 31%,82% 66%,62% 66%,90% 100%,10% 100%,38% 66%,18% 66%,42% 31%,32% 31%); }
.tree-one { top: 16%; right: 24%; transform: scale(.8); }
.tree-two { right: 7%; bottom: 13%; transform: scale(1.3); }
.tree-three { bottom: 8%; left: 5%; transform: scale(.65); }
.map-lake { position: absolute; left: 8%; bottom: 10%; width: 43%; height: 25%; border: 2px solid var(--forest-800); border-radius: 47% 52% 46% 55%; transform: rotate(-10deg); }
.map-lake::before, .map-lake::after { content: ""; position: absolute; left: 15%; right: 10%; height: 2px; background: var(--forest-800); }
.map-lake::before { top: 38%; }.map-lake::after { top: 61%; left: 25%; right: 22%; }
.map-label { position: absolute; color: rgba(20,61,47,.72); font-size: 62px; font-weight: 700; }
.label-one { top: 7%; left: 39%; }.label-two { right: 30%; bottom: 14%; }
.map-caption { position: absolute; right: 28px; bottom: 24px; left: 28px; margin: 0; display: flex; justify-content: space-between; color: var(--forest-950); font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: .08em; }

.journey-copy { align-self: center; padding: 90px clamp(48px, 7vw, 105px); }
.eyebrow-light { color: #d9c58f; }
.journey-copy h2 { color: var(--white); }
.journey-lead { max-width: 520px; margin: 26px 0 38px; color: rgba(255,255,255,.64); line-height: 1.9; }
.timeline { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.timeline li { border-bottom: 1px solid rgba(255,255,255,.16); }
.timeline button { width: 100%; padding: 22px 0; display: grid; grid-template-columns: 85px 1fr 30px; align-items: center; gap: 10px; text-align: left; border: 0; background: transparent; cursor: pointer; }
.day-num { color: #d5b365; font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: .08em; }
.day-title { font-size: 18px; font-weight: 650; letter-spacing: .06em; }
.day-icon { justify-self: end; font-size: 20px; font-weight: 300; }
.day-detail { padding: 0 40px 23px 95px; }
.day-detail p { margin: 0; color: rgba(255,255,255,.63); font-size: 13px; line-height: 1.85; }
.day-detail > span { margin-top: 8px; display: inline-block; color: #d5b365; font-family: var(--mono); font-size: 9px; letter-spacing: .07em; }

.guide { padding: 130px 0 142px; }
.guide-heading { margin-bottom: 58px; }
.guide-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: clamp(36px, 7vw, 100px); }
.packing-list { border-top: 1px solid var(--line); }
.packing-list article { padding: 27px 0; display: grid; grid-template-columns: 66px 1fr; gap: 24px; border-bottom: 1px solid var(--line); }
.guide-icon { width: 58px; height: 58px; display: grid; place-items: center; color: var(--forest-800); border: 1px solid var(--line); border-radius: 50%; background: var(--linen-100); }
.guide-icon svg { width: 26px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.packing-list small { color: var(--gold-500); font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: .1em; }
.packing-list h3 { margin: 4px 0 5px; font-size: 21px; letter-spacing: .02em; }
.packing-list p { margin: 0; color: var(--muted); font-size: 14px; }

.season-note { position: relative; min-height: 470px; padding: 56px 48px 46px; overflow: hidden; color: var(--white); background: var(--rust-500); box-shadow: var(--shadow); }
.season-note::before { content: ""; position: absolute; inset: 14px; pointer-events: none; border: 1px solid rgba(255,255,255,.22); }
.season-note > p { position: relative; margin: 60px 0 22px; font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.season-note blockquote { position: relative; margin: 0; font-size: clamp(22px, 2vw, 29px); font-weight: 600; line-height: 1.65; letter-spacing: .02em; }
.note-line { position: relative; width: 42px; height: 1px; margin: 28px 0 20px; display: block; background: rgba(255,255,255,.65); }
.season-note > small { position: relative; color: rgba(255,255,255,.88); font-size: 11px; line-height: 1.8; }
.leaf-orbit { position: absolute; top: 42px; right: 44px; width: 72px; height: 72px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.leaf-orbit::before { content: ""; position: absolute; top: -4px; left: 34px; width: 7px; height: 7px; border-radius: 50%; background: #e7c36e; }
.leaf-orbit span, .leaf-orbit i { position: absolute; width: 21px; height: 11px; border-radius: 100% 0 100% 0; border: 1px solid rgba(255,255,255,.7); transform: rotate(42deg); }
.leaf-orbit span { top: 29px; left: 17px; }.leaf-orbit i { top: 39px; left: 35px; transform: rotate(205deg) scale(.7); }

.plan {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  color: var(--white);
  background: var(--forest-800);
}

.plan-art { position: relative; min-height: 610px; overflow: hidden; background: #d0a855; }
.plan-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(20,64,50,.12)); }
.plan-sun { position: absolute; top: 14%; left: 12%; width: min(21vw, 270px); aspect-ratio: 1; border-radius: 50%; background: #f0cf7c; box-shadow: 0 0 0 25px rgba(240,207,124,.16); }
.plan-hill { position: absolute; bottom: -4%; border-radius: 52% 52% 0 0 / 100% 100% 0 0; }
.hill-one { right: -12%; width: 98%; height: 70%; background: #50735e; transform: rotate(-7deg); }
.hill-two { left: -26%; width: 112%; height: 48%; background: #174638; transform: rotate(8deg); }
.plan-leaf { position: absolute; z-index: 2; width: 100px; height: 56px; border-radius: 100% 0 100% 0; border: 2px solid rgba(255,253,248,.52); transform: rotate(25deg); }
.plan-leaf::after { content: ""; position: absolute; left: -20px; bottom: -15px; width: 120px; height: 1px; background: rgba(255,253,248,.52); transform: rotate(25deg); transform-origin: right; }
.leaf-one { right: 13%; top: 16%; }.leaf-two { left: 18%; bottom: 16%; transform: rotate(205deg) scale(.65); }

.plan-copy { align-self: center; padding: 90px clamp(48px, 7vw, 110px); }
.plan-copy h2 { color: var(--white); }
.plan-copy > p:not(.eyebrow) { max-width: 500px; margin: 27px 0 36px; color: rgba(255,255,255,.7); line-height: 1.9; }
.button-light { color: var(--forest-950); background: var(--linen-50); box-shadow: 0 12px 24px rgba(6,32,24,.2); }
.button-light:hover { background: #fff; box-shadow: 0 18px 34px rgba(6,32,24,.28); }

.back-to-top {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: var(--white);
  background: var(--forest-900);
  box-shadow: 0 8px 26px rgba(11,43,35,.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}

.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top svg { width: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }

@media (max-width: 1080px) {
  .site-header { padding-inline: 24px; }
  .brand small { display: none; }
  .hero { grid-template-columns: 51% 49%; }
  .hero-copy { padding-inline: 45px; }
  .hero h1 { font-size: clamp(50px, 6vw, 72px); }
  .hero-meta { gap: 30px; }
  .destination-grid { gap: 16px; }
  .card-image { height: 270px; }
  .card-copy { padding: 23px 20px; }
  .card-copy h3 { font-size: 25px; }
  .journey-copy { padding-inline: 52px; }
  .season-note { padding-inline: 36px; }
}

@media (max-width: 840px) {
  :root { --shell: min(100% - 36px, 680px); }
  html { scroll-padding-top: 76px; }
  .site-header { min-height: 72px; }
  html:not(.js) .site-header {
    flex-wrap: wrap;
    background: rgba(251, 248, 240, .98);
    border-color: var(--line);
  }
  html:not(.js) .primary-nav {
    order: 3;
    width: 100%;
    padding: 5px 0 2px;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    white-space: nowrap;
  }
  html:not(.js) .primary-nav .nav-cta { padding: 7px 14px; }
  .js .nav-toggle {
    position: relative;
    z-index: 103;
    width: 46px;
    height: 42px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 0;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
  }
  .js .nav-toggle span:not(.sr-only) { width: 25px; height: 2px; display: block; background: currentColor; transition: transform .25s ease; }
  .js .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(4.5px) rotate(45deg); }
  .js .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-4.5px) rotate(-45deg); }
  .js .primary-nav {
    position: fixed;
    z-index: 102;
    inset: 0;
    padding: 120px 32px 48px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    color: var(--white);
    background: var(--forest-950);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .32s ease, visibility .32s;
  }
  .js .primary-nav.is-open { transform: translateX(0); visibility: visible; }
  .js .primary-nav > a:not(.nav-cta) { padding: 15px 0; font-size: 24px; border-bottom: 1px solid rgba(255,255,255,.15); }
  .js .primary-nav > a:not(.nav-cta)::after { display: none; }
  .js .nav-cta { margin-top: 30px; padding: 14px 20px; text-align: center; background: var(--gold-500); }
  .nav-open .site-header { color: var(--white); }
  .nav-open .site-header .brand-mark { color: var(--forest-950); background: var(--linen-50); }

  .hero { height: auto; max-height: none; display: flex; flex-direction: column; }
  .hero-copy { padding: 132px 24px 62px; }
  .hero h1 { font-size: clamp(50px, 12vw, 74px); }
  .hero-intro { max-width: 620px; }
  .hero-meta { margin-top: 42px; }
  .hero-visual { min-height: 620px; }
  .hero-visual > img { position: absolute; inset: 0; }
  .visual-stamp { top: 28px; right: 24px; }

  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading > p { max-width: 580px; }
  .destination-grid { grid-template-columns: 1fr; gap: 28px; }
  .destination-card { display: grid; grid-template-columns: minmax(250px, .9fr) minmax(280px, 1.1fr); }
  .card-image { height: auto; min-height: 330px; }
  .card-copy { align-self: stretch; display: flex; flex-direction: column; justify-content: center; padding: 30px; }
  .card-copy > p { min-height: 0; }

  .journey { grid-template-columns: 1fr; }
  .journey-visual { min-height: 620px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .journey-copy { padding: 88px max(24px, calc((100% - 680px) / 2)); }
  .journey-lead { max-width: 620px; }

  .guide-layout { grid-template-columns: 1fr; }
  .season-note { min-height: 420px; }
  .plan { grid-template-columns: 1fr; }
  .plan-art { min-height: 470px; }
  .plan-sun { width: 230px; }
  .plan-copy { padding: 84px max(24px, calc((100% - 680px) / 2)); }
}

@media (max-width: 580px) {
  :root { --shell: calc(100% - 30px); }
  .site-header { padding-inline: 15px; }
  .brand strong { font-size: 14px; }
  .brand-mark { width: 34px; height: 34px; }
  .hero-copy { padding: 116px 20px 52px; }
  .eyebrow { margin-bottom: 18px; }
  .hero h1 { font-size: clamp(46px, 14.6vw, 64px); line-height: 1.12; }
  .hero-intro { margin-top: 24px; font-size: 15px; }
  .hero-actions { margin-top: 30px; align-items: flex-start; flex-direction: column; gap: 17px; }
  .button { width: 100%; }
  .hero-meta { margin-top: 38px; justify-content: space-between; gap: 16px; }
  .hero-meta div + div::before { display: none; }
  .hero-meta dt { font-size: 14px; }
  .hero-meta dd { font-size: 9px; }
  .hero-visual { min-height: 500px; }
  .weather-note { right: 18px; bottom: 20px; left: 18px; }
  .scroll-hint { display: none; }
  .visual-stamp { width: 82px; height: 82px; }

  .destinations { padding: 92px 0 100px; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2, .journey-copy h2, .plan-copy h2 { font-size: clamp(42px, 13vw, 58px); }
  .destination-card { display: block; }
  .card-image { height: 310px; min-height: 0; }
  .card-copy { display: block; padding: 24px 22px; }
  .card-copy > p { margin-block: 16px; }

  .journey-visual { min-height: 470px; }
  .route-map { width: 90%; }
  .map-caption { right: 15px; left: 15px; }
  .journey-copy { padding: 80px 20px; }
  .timeline button { grid-template-columns: 75px 1fr 26px; padding: 20px 0; }
  .day-detail { padding: 0 12px 22px 85px; }

  .guide { padding: 92px 0 100px; }
  .guide-layout { gap: 42px; }
  .packing-list article { grid-template-columns: 54px 1fr; gap: 17px; }
  .guide-icon { width: 50px; height: 50px; }
  .season-note { min-height: 440px; padding: 42px 32px 38px; }
  .season-note blockquote { font-size: 22px; }
  .leaf-orbit { right: 36px; top: 34px; }

  .plan-art { min-height: 390px; }
  .plan-sun { width: 170px; }
  .plan-copy { padding: 76px 20px 90px; }
  .back-to-top { right: 15px; bottom: 15px; }
}

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