:root {
  --bg: #fff2f5;
  --bg-soft: #ffe4e8;
  --surface: #fffafc;
  --surface-strong: #fff;
  --text: #3d262a;
  --muted: #765b61;
  --primary: #ff3366;
  --primary-strong: #ff0055;
  --accent: #ffb703;
  --mint: #45bfa7;
  --forest: #153d36;
  --cocoa: #24151a;
  --line: rgba(61, 38, 42, .14);
  --shadow: 0 18px 55px rgba(61, 38, 42, .14);
  --shadow-soft: 0 10px 28px rgba(61, 38, 42, .09);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --max: 1180px;
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 46%, #fff8f3 100%);
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 183, 3, .72);
  outline-offset: 3px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.08em;
  height: 1.08em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

p,
h1,
h2,
h3,
figure,
dl,
dd {
  margin: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 8px 12px;
  border-radius: 6px;
  color: #fff;
  background: var(--cocoa);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 250, 252, .92);
  border-bottom: 1px solid rgba(61, 38, 42, .1);
  backdrop-filter: blur(16px);
  transition: background .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
  color: var(--cocoa);
  transition: color .2s var(--ease), transform .2s var(--ease);
}

.brand:hover {
  color: var(--primary-strong);
  transform: translateY(-1px);
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid rgba(255, 183, 3, .85);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border-radius: 6px;
  border: 1px solid transparent;
  color: rgba(61, 38, 42, .86);
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}

.main-nav .icon {
  width: 15px;
  height: 15px;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--primary-strong);
  border-color: rgba(255, 51, 102, .48);
  transform: translateY(-1px);
}

.main-nav .nav-cta {
  margin-left: 8px;
  border-color: transparent;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 8px 22px rgba(255, 0, 85, .22);
}

.main-nav .nav-cta:hover {
  color: #fff;
  border-color: transparent;
  background: var(--primary-strong);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 0, 85, .28);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.menu-toggle:hover {
  color: var(--primary-strong);
  border-color: rgba(255, 51, 102, .36);
  box-shadow: var(--shadow-soft);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform .18s ease, opacity .18s ease;
  transform-origin: center;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(600px, 88svh, 760px);
  overflow: hidden;
  display: grid;
  align-items: end;
  isolation: isolate;
}

.hero-bg,
.hero-bg img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  z-index: -2;
}

.hero-bg img {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.01);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(36, 21, 26, .92) 0%, rgba(36, 21, 26, .7) 45%, rgba(36, 21, 26, .28) 100%),
    linear-gradient(0deg, rgba(36, 21, 26, .78) 0%, rgba(36, 21, 26, .08) 52%);
}

.hero-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 88px 0 52px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

h1 {
  max-width: 820px;
  color: #fff8fb;
  text-shadow: 0 4px 24px rgba(36, 21, 26, .42);
  font-size: clamp(38px, 6.4vw, 76px);
  line-height: .98;
  font-weight: 950;
}

.hero-copy {
  max-width: 720px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(16px, 2vw, 20px);
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}

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

.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 14px 30px rgba(255, 0, 85, .3);
}

.btn-primary:hover {
  background: var(--primary-strong);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 0, 85, .34);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .18);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 860px;
  gap: 1px;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}

.hero-stats div {
  padding: 16px;
  background: rgba(36, 21, 26, .42);
}

.hero-stats dt {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 800;
}

.hero-stats dd {
  margin-top: 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.quick-band {
  width: min(var(--max), calc(100% - 44px));
  margin: -22px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.quick-band a {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}

.quick-band a:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 51, 102, .22);
  box-shadow: 0 22px 58px rgba(61, 38, 42, .16);
}

.quick-band strong {
  font-size: 17px;
}

.quick-band span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
}

.section + .section {
  padding-top: clamp(52px, 7vw, 86px);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-kicker {
  display: flex;
  color: var(--primary);
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  text-align: center;
}

h2 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: var(--primary-strong);
  background: linear-gradient(90deg, var(--primary-strong) 0%, var(--text) 72%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.15;
  font-weight: 950;
}

.final-cta h2 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .22);
}

h3 {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.section-head p:not(.section-kicker),
.section-copy p,
.info-card p,
.guide-card p,
.feature-list p,
.route-list p,
.timeline p,
.faq-list p,
.final-cta p,
.site-footer p,
figcaption {
  color: var(--muted);
}

.section-copy p + p {
  margin-top: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(61, 38, 42, .12);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .42s var(--ease), filter .42s var(--ease);
}

.media-frame:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(61, 38, 42, .16);
}

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

.media-frame figcaption {
  padding: 12px 14px 14px;
  font-size: 13px;
}

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

.info-card,
.guide-card,
.feature-list article {
  min-height: 188px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 12px 34px rgba(61, 38, 42, .08);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
}

.info-card:hover,
.guide-card:hover,
.feature-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 51, 102, .24);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 20px 44px rgba(61, 38, 42, .12);
}

.card-icon {
  width: 42px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 6px;
  color: var(--cocoa);
  background: var(--accent);
  font-weight: 950;
}

.info-card h3,
.guide-card h3,
.feature-list h3 {
  margin-bottom: 10px;
}

.route-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .42), rgba(255, 250, 252, .74));
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.route-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: route;
}

.route-list li {
  position: relative;
  min-height: 110px;
  padding: 18px 18px 18px 66px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}

.route-list li:hover {
  transform: translateX(4px);
  border-color: rgba(69, 191, 167, .32);
  box-shadow: var(--shadow-soft);
}

.route-list li::before {
  counter-increment: route;
  content: counter(route, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: var(--forest);
  font-size: 12px;
  font-weight: 950;
}

.route-media {
  align-self: center;
}

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

.wide-shot {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}

.wide-shot img {
  width: 100%;
  aspect-ratio: 16 / 6.6;
  object-fit: cover;
  object-position: center 38%;
  transition: transform .42s var(--ease);
}

.wide-shot:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(61, 38, 42, .16);
}

.wide-shot:hover img {
  transform: scale(1.018);
}

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

.feature-list article {
  min-height: 150px;
  border-top: 4px solid var(--mint);
}

.image-section {
  width: min(1240px, calc(100% - 44px));
}

.image-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 16px;
  align-items: stretch;
}

.showcase-main {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}

.showcase-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(61, 38, 42, .16);
}

.showcase-main img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: opacity .18s var(--ease), transform .42s var(--ease);
}

.showcase-main:hover img {
  transform: scale(1.018);
}

.showcase-main img.is-changing {
  opacity: .45;
}

.showcase-main figcaption {
  padding: 13px 15px 15px;
  color: var(--muted);
  font-size: 14px;
}

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

.showcase-thumb {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease), opacity .2s var(--ease);
}

.showcase-thumb:hover,
.showcase-thumb.is-active {
  border-color: rgba(255, 51, 102, .72);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(61, 38, 42, .13);
}

.showcase-thumb.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 183, 3, .86);
  border-radius: 6px;
  pointer-events: none;
}

.showcase-thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .32s var(--ease), opacity .2s var(--ease);
}

.showcase-thumb:hover img,
.showcase-thumb.is-active img {
  transform: scale(1.04);
}

.gallery-section {
  width: min(1320px, calc(100% - 44px));
}

.gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 360px);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 2px 2px 16px;
}

.gallery figure {
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery figure:nth-child(2) img {
  aspect-ratio: 2 / 3;
}

.gallery figcaption {
  padding: 10px 12px 12px;
  color: var(--text);
  font-weight: 800;
}

.gallery-controls {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  background: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.icon-button:hover {
  color: #fff;
  background: var(--primary);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  min-height: 156px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}

.timeline li:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 183, 3, .4);
  box-shadow: var(--shadow-soft);
}

.timeline time {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 3px 8px;
  border-radius: 6px;
  color: var(--cocoa);
  background: rgba(255, 183, 3, .26);
  font-size: 12px;
  font-weight: 950;
}

.timeline h3 {
  margin-bottom: 8px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(255, 51, 102, .22);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  cursor: pointer;
  padding: 17px 52px 17px 18px;
  position: relative;
  font-weight: 900;
  list-style: none;
  transition: background .2s var(--ease), color .2s var(--ease);
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: var(--primary);
  font-weight: 950;
  transition: transform .2s var(--ease), background .2s var(--ease);
}

.faq-list details[open] summary::after {
  content: "-";
  transform: translateY(-50%) rotate(180deg);
}

.faq-list summary:hover {
  color: var(--primary-strong);
  background: rgba(255, 51, 102, .06);
}

.faq-list details p {
  padding: 0 18px 18px;
}

.final-cta {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto clamp(54px, 7vw, 88px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, var(--cocoa) 0%, var(--forest) 100%);
  box-shadow: var(--shadow);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}

.final-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 68px rgba(36, 21, 26, .18);
}

.final-cta h2 {
  font-size: clamp(24px, 3.4vw, 38px);
}

.final-cta p:not(.section-kicker) {
  max-width: 720px;
  color: rgba(255, 255, 255, .78);
}

.friend-links {
  width: 100%;
  margin: 0 0 clamp(42px, 6vw, 72px);
  padding: clamp(34px, 5vw, 56px) 22px;
  color: #fff;
  background:
    radial-gradient(circle at 72% 0%, rgba(255, 51, 102, .34), transparent 34%),
    linear-gradient(120deg, var(--forest) 0%, var(--cocoa) 44%, var(--primary-strong) 100%);
}

.friend-links-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  text-align: center;
}

.friend-eyebrow {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
}

.friend-links h2 {
  max-width: none;
  margin: 0 auto 18px;
  color: #fff;
  background: linear-gradient(90deg, #7de7ff 0%, #ff8fc1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.friend-links h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 3px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #7de7ff, #ff8fc1);
}

.friend-link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.friend-link-list a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 10px 24px rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 900;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}

.friend-link-list a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .52);
  background: rgba(255, 255, 255, .24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 16px 32px rgba(0, 0, 0, .2);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 30px max(22px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 252, .82);
}

.site-footer div {
  max-width: 760px;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.site-footer a {
  min-width: max-content;
  color: var(--primary-strong);
  font-weight: 900;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px 22px 22px;
    background: rgba(255, 250, 252, .98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(61, 38, 42, .12);
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .22s var(--ease), transform .22s var(--ease);
  }

  body.nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a,
  .main-nav .nav-cta {
    justify-content: flex-start;
    margin-left: 0;
    min-height: 46px;
    padding-inline: 14px;
  }

  .quick-band,
  .content-grid,
  .guide-layout,
  .feature-list,
  .image-showcase,
  .timeline,
  .split,
  .route-layout {
    grid-template-columns: 1fr;
  }

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

  .wide-shot img {
    aspect-ratio: 16 / 9;
  }

  .final-cta,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .friend-link-list a {
    min-height: 44px;
  }

  .hero-actions {
    gap: 10px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 66px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand span {
    font-size: 15px;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-inner {
    width: min(100% - 32px, var(--max));
    padding-bottom: 34px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-actions .btn {
    min-height: 46px;
    padding-inline: 18px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
  }

  .quick-band,
  .section,
  .gallery-section,
  .image-section,
  .final-cta {
    width: min(100% - 32px, var(--max));
  }

  .quick-band {
    margin-top: 14px;
  }

  .section {
    padding: 46px 0;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .info-card,
  .guide-card,
  .feature-list article {
    min-height: auto;
    padding: 18px;
  }

  .route-list li {
    padding-left: 60px;
  }

  .gallery {
    grid-auto-columns: minmax(248px, 84vw);
  }

  .showcase-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .showcase-main figcaption {
    padding: 11px 12px 13px;
    font-size: 13px;
  }

  .final-cta {
    padding: 22px;
  }

  .friend-links {
    padding-inline: 16px;
  }

  .friend-link-list {
    gap: 10px;
  }

  .friend-link-list a {
    width: 100%;
    max-width: 340px;
    padding: 0 16px;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }
}

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