:root {
  --paper: #f6f1e8;
  --paper-2: #efe7db;
  --ink: #10231f;
  --ink-soft: #42524c;
  --mist: #c7d4d0;
  --jade: #1c5c53;
  --jade-2: #2d7c6f;
  --river: #67b7b0;
  --wood: #7a5a3b;
  --ember: #9f4338;
  --line: rgba(18, 41, 36, 0.08);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(11, 29, 25, 0.14);
  --shadow-strong: 0 28px 80px rgba(11, 29, 25, 0.22);
  --header-h: 88px;
  --radius: 8px;
  --max: 1220px;
  --serif: "Songti SC", "STSong", "SimSun", "Times New Roman", serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.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;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.92rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2,
.hero-copy h1,
.cta h2 {
  margin: 0;
  letter-spacing: 0;
}

.section-heading h2 {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1.1;
  color: var(--ink);
}

.section-heading--light h2,
.section-heading--light .section-lead,
.section-heading--light .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.section-lead {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.9;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-h);
  padding-top: 14px;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: inherit;
  pointer-events: none;
}

.site-header.is-scrolled {
  color: var(--ink);
}

.site-header.is-scrolled::before {
  background: rgba(246, 241, 232, 0.72);
  border-bottom-color: rgba(16, 35, 31, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(14, 29, 25, 0.08);
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 60px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-mark {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-sub {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.76);
  letter-spacing: 0;
}

.site-header.is-scrolled .brand-sub,
.site-header.is-scrolled .desktop-nav a,
.site-header.is-scrolled .header-cta {
  color: var(--ink);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.98rem;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  padding: 8px 0;
}

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

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0 16px;
  backdrop-filter: blur(16px);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.header-cta:hover,
.menu-toggle:hover,
.btn:hover {
  transform: translateY(-1px);
}

.site-header.is-scrolled .header-cta,
.site-header.is-scrolled .menu-toggle {
  color: var(--ink);
  border-color: rgba(16, 35, 31, 0.1);
  background: rgba(255, 255, 255, 0.48);
}

.menu-toggle {
  display: none;
  width: 46px;
  padding: 0;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.mobile-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: min(var(--max), calc(100% - 20px));
  transform: translateX(-50%);
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(246, 241, 232, 0.96);
  border: 1px solid rgba(16, 35, 31, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-panel[hidden] {
  display: none !important;
}

.mobile-panel a {
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--ink);
}

.mobile-panel a:hover {
  background: rgba(28, 92, 83, 0.08);
}

.hero {
  position: relative;
  min-height: 92svh;
  padding: calc(var(--header-h) + 30px) 0 28px;
  color: #fff;
  overflow: clip;
  background: #081715;
}

.hero__backdrop,
.hero__mist,
.hero__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__backdrop {
  background:
    linear-gradient(180deg, rgba(7, 21, 19, 0.22) 0%, rgba(7, 21, 19, 0.58) 40%, rgba(7, 21, 19, 0.78) 100%),
    url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1800&q=80") center center / cover no-repeat;
  transform: translate3d(0, 0, 0) scale(1.04);
  will-change: transform;
}

.hero__mist {
  inset: -8% -4% auto;
  height: 54%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 35%, rgba(255, 255, 255, 0.02) 70%, transparent 100%);
  filter: blur(20px);
  opacity: 0.66;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.hero__texture {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 16px),
    linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 20px);
  opacity: 0.34;
  mix-blend-mode: soft-light;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 38px;
  align-items: center;
  min-height: calc(92svh - var(--header-h) - 60px);
}

.hero-copy {
  max-width: 680px;
}

.hero-copy h1 {
  font-family: var(--serif);
  font-size: 4.6rem;
  line-height: 1.02;
  margin-bottom: 18px;
  display: grid;
  gap: 6px;
}

.hero-copy h1 span {
  display: block;
}

.hero__lead {
  margin: 0 0 12px;
  font-size: 1.24rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero__desc {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.9;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border-radius: var(--radius);
  padding: 0 18px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  letter-spacing: 0;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(90, 173, 156, 0.98), rgba(32, 91, 82, 0.98));
  color: #fff;
  box-shadow: 0 18px 36px rgba(12, 55, 47, 0.26);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-tags span,
.keyword-list span,
.route-chiprow span,
.scenic-chiprow span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.hero-tags span {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-scene {
  display: grid;
  gap: 16px;
}

.hero-scene__image {
  position: relative;
  min-height: 420px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 23, 21, 0.04) 0%, rgba(8, 23, 21, 0.5) 100%),
    var(--bg) center center / cover no-repeat;
  box-shadow: var(--shadow-strong);
}

.scene-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 23, 21, 0.78) 46%, rgba(8, 23, 21, 0.95) 100%);
  color: #fff;
}

.scene-caption__tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
}

.scene-caption strong {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.scene-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.hero-scene__stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mini-card {
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.mini-card p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
}

.mini-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
}

.hero-peek {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.peek-card {
  min-height: 74px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-end;
  border-radius: 16px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.14) 100%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.band {
  position: relative;
  padding: 96px 0;
}

.band--light {
  background:
    linear-gradient(180deg, #f7f1e8 0%, #f3ede2 100%);
}

.band--light::before,
.band--taste::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(30, 94, 83, 0.04) 0 1px, transparent 1px 18px),
    linear-gradient(45deg, rgba(161, 67, 56, 0.04) 0 1px, transparent 1px 20px);
  opacity: 0.4;
  pointer-events: none;
}

.band--scenic {
  color: #fff;
  background:
    linear-gradient(180deg, #0f2924 0%, #12312b 100%);
}

.band--scenic::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(111, 190, 174, 0.12), transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(159, 67, 56, 0.1), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px);
  opacity: 0.5;
  pointer-events: none;
}

.band--culture,
.band--routes {
  color: #fff;
  background: #102821;
}

.band--culture::before,
.band--routes::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px);
  opacity: 0.55;
  pointer-events: none;
}

.band--taste {
  background:
    linear-gradient(180deg, #f8f3eb 0%, #f5efe6 100%);
}

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

.insight-card {
  position: relative;
  padding: 28px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 35, 31, 0.08);
  box-shadow: 0 18px 42px rgba(13, 30, 26, 0.06);
  backdrop-filter: blur(14px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.insight-card:hover,
.scenic-card:hover,
.route-card:hover,
.taste-card:hover,
.season-card:hover {
  transform: translateY(-6px);
}

.insight-card svg {
  width: 22px;
  height: 22px;
  color: var(--jade);
}

.insight-card h3,
.season-card h3,
.taste-card h3,
.route-card h3,
.scenic-card h3,
.culture-copy h2 {
  margin: 0;
  letter-spacing: 0;
}

.insight-card h3 {
  margin-top: 16px;
  font-size: 1.2rem;
}

.insight-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.85;
}

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

.scenic-card {
  position: relative;
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
  background: #071715;
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scenic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg) center center / cover no-repeat;
  transition: transform 0.7s ease;
  z-index: 0;
}

.scenic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

.scenic-card:hover::before {
  transform: scale(1.07);
}

.scenic-card:hover {
  box-shadow: 0 30px 80px rgba(6, 23, 20, 0.36);
}

.scenic-card--featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 596px;
}

.scenic-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(7, 21, 19, 0.12) 30%, rgba(7, 21, 19, 0.82) 100%);
  opacity: 0.9;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.scenic-card:hover .scenic-card__shade {
  opacity: 1;
}

.scenic-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 24px;
}

.scenic-tag,
.route-card__day,
.season-card__marker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.82rem;
}

.scenic-card h3 {
  margin-top: 14px;
  font-size: 1.5rem;
  color: #fff;
}

.scenic-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
  max-width: 34ch;
}

.scenic-chiprow,
.route-chiprow,
.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.scenic-chiprow {
  margin-top: 16px;
}

.scenic-chiprow span,
.route-chiprow span,
.keyword-list span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.culture-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 26px;
  align-items: center;
}

.culture-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.culture-tile {
  position: relative;
  min-height: 190px;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11, 29, 25, 0.02) 0%, rgba(11, 29, 25, 0.42) 100%),
    var(--bg) center center / cover no-repeat;
  box-shadow: var(--shadow);
}

.culture-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(11, 29, 25, 0.86) 100%);
}

.culture-tile span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
  font-weight: 600;
}

.culture-tile--large {
  grid-row: span 2;
  min-height: 392px;
}

.culture-tile--pattern {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 16px),
    linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, #c95f52 0%, #8d3d31 100%);
}

.culture-tile--pattern::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(11, 29, 25, 0.42));
}

.culture-copy {
  padding: 28px 8px 28px 28px;
}

.culture-copy h2 {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1.12;
  color: #fff;
}

.culture-copy__lead {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  line-height: 1.9;
}

.culture-copy__body {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.95;
}

.keyword-list {
  margin-top: 24px;
}

.keyword-list span {
  color: #fff;
}

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

.season-card {
  position: relative;
  padding: 28px 22px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 35, 31, 0.08);
  box-shadow: 0 18px 42px rgba(13, 30, 26, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.season-card__marker {
  background: linear-gradient(135deg, rgba(28, 92, 83, 0.9), rgba(159, 67, 56, 0.9));
}

.season-card h3 {
  margin-top: 16px;
  font-size: 1.25rem;
}

.season-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.9;
}

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

.route-card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 48px rgba(5, 16, 14, 0.24);
  backdrop-filter: blur(14px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.route-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(111, 190, 174, 0.26), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.route-card:hover::before {
  opacity: 1;
}

.route-card__day {
  margin-bottom: 16px;
  color: #fff;
}

.route-card h3 {
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.45;
}

.route-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
}

.route-chiprow {
  margin-top: 18px;
}

.route-chiprow span {
  color: #fff;
}

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

.taste-card {
  position: relative;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background: #071715;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.taste-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg) center center / cover no-repeat;
  transition: transform 0.7s ease;
}

.taste-card:hover::before {
  transform: scale(1.07);
}

.taste-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(11, 29, 25, 0.18) 35%, rgba(11, 29, 25, 0.9) 100%);
  z-index: 1;
}

.taste-card__content {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  color: #fff;
  z-index: 2;
}

.taste-card h3 {
  font-size: 1.32rem;
}

.taste-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
}

.cta {
  position: relative;
  min-height: 66svh;
  padding: 96px 0;
  overflow: hidden;
  color: #fff;
  background: #071613;
}

.cta__backdrop,
.cta__veil {
  position: absolute;
  inset: 0;
}

.cta__backdrop {
  background:
    linear-gradient(180deg, rgba(7, 21, 19, 0.04) 0%, rgba(7, 21, 19, 0.46) 48%, rgba(7, 21, 19, 0.78) 100%),
    var(--bg) center 35% / cover no-repeat;
  transform: scale(1.04);
}

.cta__veil {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px),
    linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 20px);
  opacity: 0.28;
}

.cta__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cta h2 {
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1.08;
}

.cta p {
  margin: 16px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  font-size: 1.02rem;
}

.site-footer {
  padding: 28px 0 34px;
  background: #071613;
  color: rgba(255, 255, 255, 0.74);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p,
.footer-inner strong {
  margin: 0;
}

.footer-inner strong {
  display: block;
  margin-top: 8px;
  font-size: 1.1rem;
  color: #fff;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
}

.footer-meta span {
  white-space: nowrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.band--scenic .section-heading h2,
.band--scenic .section-lead,
.band--scenic .eyebrow,
.band--culture .eyebrow,
.band--culture .culture-copy h2,
.band--culture .culture-copy__lead,
.band--culture .culture-copy__body,
.band--routes .section-heading h2,
.band--routes .section-lead,
.band--routes .eyebrow,
.cta .eyebrow,
.cta h2,
.cta p {
  color: #fff;
}

.band--scenic .section-lead,
.band--routes .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.band--scenic .section-heading h2,
.band--routes .section-heading h2,
.band--culture .culture-copy h2,
.cta h2 {
  font-family: var(--serif);
}

.band--scenic .section-heading,
.band--routes .section-heading {
  max-width: 820px;
}

.site-header.is-scrolled .header-inner,
.site-header.is-scrolled .brand-mark,
.site-header.is-scrolled .header-cta,
.site-header.is-scrolled .menu-toggle {
  color: var(--ink);
}

.site-header.is-scrolled .menu-toggle svg,
.site-header.is-scrolled .header-cta svg {
  color: var(--ink);
}

.site-header.is-scrolled .desktop-nav a {
  color: rgba(16, 35, 31, 0.88);
}

.site-header.is-scrolled .desktop-nav a:hover,
.site-header.is-scrolled .desktop-nav a.is-active {
  color: var(--jade);
}

.hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.hero-scene__image,
.scenic-card,
.taste-card,
.culture-tile,
.insight-card,
.route-card,
.season-card,
.mini-card,
.hero-peek .peek-card,
.mobile-panel {
  backdrop-filter: blur(14px);
}

.hero-copy h1,
.culture-copy h2,
.section-heading h2,
.cta h2 {
  text-wrap: balance;
}

.scenic-card:hover .scenic-card__content,
.taste-card:hover .taste-card__content {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

.scenic-card__content,
.taste-card__content {
  transition: transform 0.3s ease;
}

.hero-scene__image::after,
.cta__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 16px),
    linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 18px);
  opacity: 0.18;
  pointer-events: none;
}

.hero-scene__image::after {
  mix-blend-mode: soft-light;
}

.band--light .eyebrow {
  color: var(--jade);
}

.band--light .section-heading h2 {
  color: var(--ink);
}

.band--light .section-lead {
  color: var(--ink-soft);
}

.band--light .insight-card h3,
.band--light .insight-card p,
.band--light .season-card h3,
.band--light .season-card p,
.band--taste .section-heading h2,
.band--taste .section-lead,
.band--taste .section-heading .eyebrow {
  color: var(--ink);
}

.band--taste .taste-card h3,
.band--taste .taste-card p {
  color: #fff;
}

.band--taste .taste-card p {
  color: rgba(255, 255, 255, 0.84);
}

.band--taste .section-heading {
  max-width: 820px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.site-header.is-scrolled .brand-mark {
  color: var(--ink);
}

.site-header.is-scrolled .header-cta:hover,
.site-header.is-scrolled .menu-toggle:hover {
  background: rgba(255, 255, 255, 0.68);
}

.header-cta:hover,
.menu-toggle:hover {
  box-shadow: 0 14px 28px rgba(13, 31, 27, 0.12);
}

.btn-primary:hover {
  box-shadow: 0 20px 38px rgba(12, 55, 47, 0.32);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .brand-sub {
  color: rgba(16, 35, 31, 0.7);
}

@media (max-width: 1160px) {
  .hero__content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 32px;
    padding-bottom: 24px;
  }

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

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

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

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

  .scenic-card--featured {
    grid-column: span 2;
  }

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

  .culture-copy {
    padding: 0;
  }

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

@media (max-width: 860px) {
  :root {
    --header-h: 76px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-copy h1 {
    font-size: 3.4rem;
  }

  .section-heading h2,
  .culture-copy h2,
  .cta h2 {
    font-size: 2.4rem;
  }

  .hero__lead {
    font-size: 1.08rem;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .band {
    padding: 72px 0;
  }

  .insight-grid,
  .scenic-grid,
  .season-grid,
  .route-grid,
  .taste-grid,
  .hero-scene__stack,
  .hero-peek {
    grid-template-columns: 1fr;
  }

  .scenic-card--featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 400px;
  }

  .hero-scene__image {
    min-height: 340px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero {
    padding-top: calc(var(--header-h) + 18px);
  }

  .hero-copy h1 {
    font-size: 2.7rem;
  }

  .hero__desc,
  .section-lead,
  .culture-copy__body,
  .culture-copy__lead,
  .cta p,
  .insight-card p,
  .season-card p,
  .route-card p,
  .scenic-card p {
    font-size: 0.98rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .scenic-card,
  .taste-card {
    min-height: 240px;
  }

  .hero-peek {
    gap: 8px;
  }

  .peek-card {
    min-height: 60px;
  }

  .mobile-panel {
    width: calc(100% - 20px);
  }
}
