:root {
  --bg: oklch(0.955 0.011 155);
  --surface: oklch(0.992 0.003 150);
  --surface-2: oklch(0.92 0.022 148);
  --ink: oklch(0.17 0.033 158);
  --muted: oklch(0.39 0.027 158);
  --pine: oklch(0.22 0.072 154);
  --pine-2: oklch(0.31 0.09 154);
  --line: oklch(0.8 0.022 152);
  --snow: oklch(0.985 0.004 150);
  --orange: oklch(0.69 0.18 48);
  --blue: oklch(0.58 0.085 215);
  --earth: oklch(0.45 0.078 72);
  --hairline: color-mix(in oklch, var(--pine) 16%, var(--line));
  --lift: 0 8px 24px rgba(11, 57, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 2%, rgba(255, 118, 20, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(9, 50, 35, 0.032), transparent 34%),
    var(--bg);
  color: var(--ink);
  font-family: "Microsoft JhengHei UI", "Microsoft JhengHei", "PingFang TC", "Noto Sans TC", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%230b3928' stroke-opacity='.16' stroke-width='1'%3E%3Cpath d='M-20 42c40-22 74-22 102 0s62 22 102 0 74-22 102 0'/%3E%3Cpath d='M-20 84c40-18 74-18 102 0s62 18 102 0 74-18 102 0'/%3E%3Cpath d='M-20 126c40-26 74-26 102 0s62 26 102 0 74-26 102 0'/%3E%3Cpath d='M-20 168c40-20 74-20 102 0s62 20 102 0 74-20 102 0'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 260px 260px;
  opacity: 0.75;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 66%);
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--ink);
  color: var(--snow);
  z-index: 10;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 3;
  width: 100%;
  padding: 14px max(20px, calc((100vw - 1180px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: color-mix(in oklch, var(--surface) 92%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--line) 88%, var(--pine));
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--pine);
  color: var(--snow);
}

.brand-mark svg path:first-child {
  fill: var(--snow);
}

.brand-mark svg path:last-child {
  fill: var(--orange);
}

.brand strong {
  display: block;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--muted);
  text-decoration: none;
}

nav a:hover,
.back-link:hover {
  color: var(--pine);
  background: color-mix(in oklch, var(--pine) 8%, transparent);
}

main,
.site-footer {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(440px, 1.24fr);
  min-height: 640px;
  align-items: stretch;
  gap: 18px;
  padding: 38px 0 26px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 64px);
  position: relative;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 34%),
    linear-gradient(180deg, color-mix(in oklch, var(--pine) 96%, black), var(--pine));
  color: var(--snow);
  border-radius: 10px;
  border: 1px solid color-mix(in oklch, var(--pine) 80%, black);
  box-shadow: 0 10px 0 color-mix(in oklch, var(--orange) 82%, black), var(--lift);
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--orange);
}

.kicker {
  margin: 0 0 14px;
  color: oklch(0.82 0.055 78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 22px;
  max-width: 11ch;
  font-size: clamp(42px, 4.8vw, 66px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 850;
  line-height: 1.16;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin-bottom: 0;
  color: oklch(0.88 0.015 165);
  font-size: 18px;
  line-height: 1.85;
  text-wrap: pretty;
}

.field-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.field-tags span {
  padding: 8px 11px;
  color: var(--snow);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
}

.article-hero .field-tags span {
  color: var(--pine);
  background: color-mix(in oklch, var(--orange) 16%, var(--surface));
  border-color: color-mix(in oklch, var(--orange) 44%, var(--line));
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--ink);
  background: var(--orange);
}

.button.secondary {
  color: var(--snow);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.article-hero .lead {
  color: var(--muted);
}

.hero-media {
  position: relative;
  margin: 0;
  min-height: 100%;
  background: var(--ink);
  border-radius: 10px;
  border: 1px solid var(--hairline);
  overflow: hidden;
  box-shadow: var(--lift);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(3, 20, 14, 0.38));
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.06);
}

.hero-media figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 11px;
  color: var(--snow);
  background: rgba(8, 30, 22, 0.78);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  z-index: 1;
}

.route-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 16px 0 0;
  background: transparent;
  border: 0;
  gap: 16px;
  color: var(--ink);
}

.route-band article {
  position: relative;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.route-band article:last-child {
  border-right: 1px solid var(--hairline);
}

.route-band h2 {
  margin-bottom: 6px;
  font-size: 21px;
}

.route-band strong {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 8px;
  color: var(--pine);
  background: color-mix(in oklch, var(--orange) 18%, var(--surface));
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.route-band p,
.split-section p,
.trip-card p,
.article-content p,
.note-strip p {
  color: var(--muted);
  line-height: 1.8;
  text-wrap: pretty;
}

.route-band p {
  color: var(--muted);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  padding: 64px 0 20px;
}

.section-heading .kicker {
  margin-bottom: 8px;
}

.trip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}

.trip-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 228px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.trip-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: var(--lift);
}

.trip-card img {
  width: 100%;
  height: 100%;
  min-height: 228px;
  object-fit: cover;
}

.trip-card > div {
  padding: 20px 22px;
}

.trip-card .tag,
.article-hero .tag {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.trip-card .tag {
  display: inline-block;
  padding: 5px 7px;
  color: var(--ink);
  background: color-mix(in oklch, var(--orange) 26%, var(--surface));
  border-radius: 999px;
}

.trip-card h3 {
  margin: 14px 0 8px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
}

.trip-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 18px 0 0;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
}

.trip-card div,
.meta-grid div {
  min-width: 0;
}

dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

dd {
  margin: 5px 0 0;
  font-size: 14px;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
}

.split-section.muted {
  margin-bottom: 28px;
}

.split-section .kicker {
  margin-bottom: 8px;
}

.split-section p {
  margin: 0;
  font-size: 17px;
}

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

.article-topbar {
  position: sticky;
  top: 18px;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 16px 0 8px;
  pointer-events: none;
}

.article-topbar .back-link,
.article-topbar .language-switch {
  pointer-events: auto;
}

.article-topbar .article-language-switch {
  position: static;
  align-self: center;
  margin-top: 0;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: stretch;
  padding: 22px 0 34px;
}

.article-hero > div {
  padding: clamp(26px, 4vw, 46px);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

.article-hero h1 {
  max-width: 9ch;
  font-size: clamp(42px, 6vw, 76px);
}

.article-hero figure {
  margin: 0;
  background: var(--ink);
}

.article-hero img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--lift);
}

.back-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding: 0 10px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.note-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--hairline);
  background: var(--surface);
  border-radius: 10px;
  overflow: hidden;
}

.note-strip article {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.note-strip article:last-child {
  border-right: 0;
}

.draft-notice {
  max-width: 760px;
  margin: 34px auto 0;
  padding: 14px 18px;
  color: color-mix(in oklch, var(--snow) 82%, var(--brass));
  background: rgba(214, 198, 154, 0.08);
  border: 1px solid rgba(214, 198, 154, 0.18);
  border-left: 3px solid rgba(214, 198, 154, 0.72);
  border-radius: 8px;
}

.draft-notice p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}

.note-strip h2 {
  margin-bottom: 10px;
  font-size: 21px;
}

.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 62px 0 88px;
}

.article-content h2 {
  margin: 48px 0 14px;
  font-size: 30px;
}

.article-content h3 {
  margin: 30px 0 10px;
  font-size: 22px;
}

.article-content p {
  margin-bottom: 20px;
  font-size: 17px;
}

.article-content ul {
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.article-content li {
  position: relative;
  padding-left: 22px;
  color: color-mix(in oklch, var(--snow) 82%, var(--muted));
  font-size: 16px;
  line-height: 1.75;
}

.article-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(214, 198, 154, 0.72);
  transform: translateY(-50%);
}

.article-content li.checklist-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  padding-left: 0;
}

.article-content li.checklist-item::before {
  content: none;
}

.article-content li.checklist-item span {
  color: var(--brass);
  font-size: 14px;
  line-height: 1.9;
}

.article-content a {
  color: color-mix(in oklch, var(--brass) 86%, var(--snow));
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.site-footer {
  padding: 28px 0 38px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

*:focus-visible {
  outline: 3px solid color-mix(in oklch, var(--orange) 60%, transparent);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .article-hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 22px;
  }

  .hero-media img {
    min-height: 320px;
    aspect-ratio: 16 / 10;
  }

  .route-band,
  .note-strip {
    grid-template-columns: 1fr;
  }

  .route-band article,
  .note-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .route-band article:last-child,
  .note-strip article:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 640px) {
  .site-header,
  main,
  .article-shell,
  .site-footer {
    width: 100%;
  }

  .site-header {
    padding: 14px;
  }

  main,
  .article-shell,
  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    max-width: 11ch;
    font-size: 37px;
  }

  .hero-copy {
    padding: 28px 22px;
  }

  .lead {
    font-size: 16px;
  }

  .trip-card {
    grid-template-columns: 1fr;
  }

  .trip-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

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

  .article-hero > div {
    padding: 24px 20px;
  }

  .article-hero img {
    min-height: 300px;
  }

  .article-content {
    padding: 48px 0 70px;
  }
}

/* Premium layer: image-led luxury outdoor direction. */
:root {
  --orange: oklch(0.64 0.12 58);
  --bg: oklch(0.948 0.009 155);
  --surface: oklch(0.988 0.003 150);
  --line: oklch(0.78 0.018 152);
  --lift: 0 18px 42px rgba(8, 38, 27, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 690px;
  gap: 0;
  padding: 34px 0 32px;
}

.hero-copy,
.hero-media {
  grid-area: 1 / 1;
}

.hero-media {
  z-index: 0;
  min-height: 690px;
}

.hero-media img {
  min-height: 690px;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(3, 20, 14, 0.78), rgba(3, 20, 14, 0.38) 38%, rgba(3, 20, 14, 0.02) 72%),
    linear-gradient(180deg, transparent 58%, rgba(3, 20, 14, 0.34));
}

.hero-copy {
  z-index: 1;
  width: min(500px, calc(100% - 64px));
  min-height: auto;
  align-self: center;
  margin-left: clamp(28px, 5vw, 72px);
  padding: clamp(28px, 4vw, 48px);
  background: rgba(3, 29, 19, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.hero-copy::before {
  width: 1px;
  left: 24px;
  top: 28px;
  bottom: 28px;
  height: auto;
  background: color-mix(in oklch, var(--orange) 72%, white);
}

.hero-copy .kicker {
  margin-left: 18px;
  color: color-mix(in oklch, var(--orange) 84%, white);
}

.hero-copy h1,
.hero-copy .lead,
.hero-copy .field-tags,
.hero-copy .hero-actions {
  margin-left: 18px;
}

.hero-copy h1 {
  max-width: 10.5ch;
  font-size: clamp(42px, 4.2vw, 60px);
  line-height: 1.04;
}

.hero-copy .lead {
  color: oklch(0.9 0.012 158);
  font-size: 17px;
}

.button.primary {
  color: var(--snow);
  background: color-mix(in oklch, var(--orange) 70%, var(--pine));
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
}

.route-band,
.trip-grid {
  margin-top: 22px;
}

.route-band article,
.trip-card,
.article-hero > div,
.note-strip {
  border-color: color-mix(in oklch, var(--pine) 14%, var(--line));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.76) inset;
}

.route-band article:hover,
.trip-card:hover {
  border-color: color-mix(in oklch, var(--orange) 55%, var(--line));
}

.route-band strong,
.trip-card .tag,
.article-hero .field-tags span {
  background: color-mix(in oklch, var(--orange) 13%, var(--surface));
  border: 1px solid color-mix(in oklch, var(--orange) 28%, var(--line));
}

.section-heading {
  padding-top: 76px;
}

.split-section {
  position: relative;
  margin-top: 28px;
  padding: 44px 46px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48)),
    color-mix(in oklch, var(--surface) 88%, var(--bg));
  border: 1px solid color-mix(in oklch, var(--pine) 11%, var(--line));
  border-radius: 16px;
  overflow: hidden;
}

.split-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 44px;
  bottom: 44px;
  width: 1px;
  background: color-mix(in oklch, var(--orange) 42%, var(--line));
}

.split-section::after {
  content: "";
  position: absolute;
  left: 46px;
  right: 46px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in oklch, var(--pine) 18%, var(--line)), transparent);
}

.split-section .kicker {
  color: color-mix(in oklch, var(--orange) 80%, var(--pine));
}

.split-section h2 {
  max-width: 520px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.split-section p {
  max-width: 620px;
  justify-self: end;
  align-self: center;
  color: color-mix(in oklch, var(--muted) 86%, var(--pine));
  font-size: 16.5px;
  line-height: 1.9;
}

.section-index {
  display: inline-flex;
  margin-top: 26px;
  padding: 6px 9px;
  color: color-mix(in oklch, var(--pine) 76%, black);
  background: transparent;
  border: 1px solid color-mix(in oklch, var(--orange) 20%, var(--line));
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-copy,
  .hero-media {
    grid-area: auto;
  }

  .hero-copy {
    width: 100%;
    margin-left: 0;
    min-height: auto;
  }

  .hero-media,
  .hero-media img {
    min-height: 360px;
  }

  .split-section {
    padding: 30px;
  }

  .split-section p {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    width: 100%;
    padding: 32px 22px;
  }

  .hero-copy h1 {
    max-width: 10.5ch;
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-copy .lead {
    font-size: 15.5px;
    line-height: 1.75;
  }
}

/* Premium outdoor brand layer: image-led, dark, precise. */
:root {
  --bg: oklch(0.155 0.018 165);
  --surface: oklch(0.205 0.018 165);
  --surface-2: oklch(0.255 0.018 165);
  --ink: oklch(0.93 0.012 155);
  --muted: oklch(0.73 0.014 155);
  --pine: oklch(0.36 0.072 158);
  --pine-2: oklch(0.43 0.08 158);
  --line: oklch(0.36 0.015 160);
  --snow: oklch(0.97 0.006 145);
  --orange: oklch(0.78 0.145 72);
  --blue: oklch(0.68 0.06 220);
  --earth: oklch(0.58 0.065 78);
  --hairline: color-mix(in oklch, var(--snow) 16%, transparent);
  --lift: none;
}

html {
  background: var(--bg);
}

body {
  background:
    linear-gradient(180deg, rgba(5, 13, 11, 0.2), rgba(5, 13, 11, 0.88) 740px),
    radial-gradient(circle at 85% 10%, rgba(192, 151, 90, 0.12), transparent 30%),
    var(--bg);
  color: var(--ink);
}

body::before {
  opacity: 0.2;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 52%);
}

.site-header {
  padding-block: 16px;
  background: rgba(10, 24, 20, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--snow);
  backdrop-filter: blur(20px);
}

.brand-mark {
  width: 34px;
  height: 34px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.brand strong {
  color: var(--snow);
  font-weight: 850;
}

.brand small,
nav a {
  color: color-mix(in oklch, var(--snow) 68%, transparent);
}

nav a {
  border-radius: 0;
}

nav a:hover,
.back-link:hover {
  color: var(--snow);
  background: rgba(255, 255, 255, 0.06);
}

main {
  width: min(1180px, calc(100% - 40px));
}

.hero {
  width: 100vw;
  min-height: min(860px, calc(100vh - 68px));
  margin-left: calc(50% - 50vw);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.hero-copy,
.hero-media {
  grid-area: 1 / 1;
}

.hero-media {
  z-index: 0;
  min-height: min(860px, calc(100vh - 68px));
  border: 0;
  border-radius: 0;
  background: var(--bg);
}

.hero-media img {
  min-height: min(860px, calc(100vh - 68px));
  filter: saturate(0.88) contrast(1.12) brightness(0.82);
}

.hero-media::after {
  background:
    radial-gradient(circle at 18% 46%, rgba(213, 157, 70, 0.18), transparent 20%),
    linear-gradient(90deg, rgba(5, 15, 12, 0.88), rgba(5, 15, 12, 0.5) 36%, rgba(5, 15, 12, 0.08) 70%),
    linear-gradient(180deg, rgba(5, 15, 12, 0.2), rgba(5, 15, 12, 0.86));
}

.hero-media figcaption {
  left: auto;
  right: clamp(22px, 4vw, 64px);
  bottom: clamp(20px, 4vw, 54px);
  padding: 0;
  color: color-mix(in oklch, var(--snow) 76%, transparent);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  font-weight: 650;
}

.hero-copy {
  z-index: 1;
  width: min(650px, calc(100% - 44px));
  margin-left: max(22px, calc((100vw - 1180px) / 2));
  padding: clamp(54px, 8vw, 116px) 0;
  align-self: end;
  color: var(--snow);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-copy::before {
  display: none;
}

.kicker,
.hero-copy .kicker,
.split-section .kicker,
.section-heading .kicker {
  color: var(--orange);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
}

.hero-copy .kicker,
.hero-copy h1,
.hero-copy .lead,
.hero-copy .field-tags,
.hero-copy .hero-actions {
  margin-left: 0;
}

.hero-copy h1 {
  max-width: 11ch;
  margin-bottom: 24px;
  font-size: clamp(50px, 7.4vw, 96px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.hero-copy .lead {
  max-width: 610px;
  color: color-mix(in oklch, var(--snow) 82%, transparent);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.85;
}

.field-tags {
  gap: 10px;
}

.field-tags span,
.article-hero .field-tags span {
  color: color-mix(in oklch, var(--snow) 82%, transparent);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 750;
}

.button {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 2px;
  font-weight: 800;
}

.button.primary {
  color: oklch(0.18 0.02 160);
  background: var(--orange);
}

.button.secondary {
  color: var(--snow);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.route-band {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.route-band article {
  min-height: 210px;
  padding: 34px 30px;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  box-shadow: none;
}

.route-band article:hover,
.trip-card:hover {
  transform: none;
  box-shadow: none;
}

.route-band h2,
.trip-card h3,
.split-section h2,
.article-hero h1,
.article-content h2,
.article-content h3 {
  color: var(--snow);
}

.route-band h2 {
  font-size: 24px;
}

.route-band strong,
.trip-card .tag,
.article-hero .field-tags span {
  padding: 0;
  color: var(--orange);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.route-band p,
.split-section p,
.trip-card p,
.article-content p,
.note-strip p,
.article-hero .lead {
  color: var(--muted);
}

.section-heading {
  padding: clamp(70px, 9vw, 118px) 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.section-heading.compact {
  padding: clamp(56px, 7vw, 82px) 0 18px;
}

.trip-grid {
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.destination-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  padding: clamp(62px, 8vw, 104px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.destination-section h2 {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--snow);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.018em;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.destination-grid span {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  color: var(--snow);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 850;
  letter-spacing: -0.012em;
}

.destination-grid span:nth-child(2n) {
  border-right: 0;
}

.index-drawers {
  padding: clamp(46px, 7vw, 88px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.compact-drawers {
  padding-top: clamp(30px, 5vw, 58px);
}

.index-drawer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.index-drawer:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.index-drawer summary {
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(180px, 0.3fr) 34px;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  color: var(--snow);
  cursor: pointer;
  list-style: none;
}

.compact-drawers .index-drawer summary {
  min-height: 86px;
}

.compact-drawers .index-drawer summary strong {
  font-size: clamp(24px, 2.6vw, 36px);
}

.index-drawer summary::-webkit-details-marker {
  display: none;
}

.index-drawer summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 22px;
  line-height: 1;
}

.index-drawer[open] summary::after {
  content: "-";
}

.index-drawer summary strong {
  display: block;
  margin-top: 7px;
  color: var(--snow);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.018em;
}

.index-drawer summary small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.index-drawer .destination-grid,
.drawer-copy {
  margin: 0 0 30px;
}

.drawer-copy {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.trip-card {
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  min-height: 320px;
  background: transparent;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.trip-card img {
  min-height: 320px;
  filter: saturate(0.88) contrast(1.06);
}

.trip-card > div {
  padding: clamp(28px, 5vw, 58px);
}

.trip-card h3 {
  margin-top: 16px;
  font-size: clamp(34px, 4.2vw, 54px);
  letter-spacing: -0.018em;
}

.trip-card dl,
.meta-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}

.route-showcase {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.top-showcase {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  margin-left: calc(50% - 50vw);
  border-bottom: 0;
  overflow: hidden;
  perspective: none;
  transform-style: flat;
}

.top-showcase .section-heading.compact {
  position: absolute;
  z-index: 3;
  left: max(24px, calc((100vw - 1180px) / 2));
  top: clamp(34px, 8vh, 76px);
  width: fit-content;
  max-width: calc(100% - 48px);
  padding: 0;
  border-bottom: 0;
}

.top-showcase .section-heading.compact::before {
  content: none;
}

.top-showcase .section-heading.compact h1 {
  display: inline-flex;
  align-items: baseline;
  gap: 0.1em;
  margin: 0;
  color: var(--snow);
  font-size: clamp(18px, 2.05vw, 32px);
  line-height: 1.04;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.82),
    0 12px 34px rgba(0, 0, 0, 0.42);
}

.brand-lockup {
  color: var(--snow);
}

.brand-zoe {
  display: inline-block;
  font-family: "Segoe Script", "Brush Script MT", "Lucida Handwriting", "Bradley Hand ITC", "Segoe Print", cursive;
  font-size: 0.9em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.01em;
  transform: translateY(-0.03em) rotate(-2deg);
}

.brand-cjk {
  font-family: "HanziPen TC", "Yuji Syuku", "Kaiti TC", "DFKai-SB", "STXingkai", "KaiTi", cursive, serif;
  font-weight: 500;
}

.brand-zoe-en {
  font-family: Georgia, "Times New Roman", "Baskerville", serif;
  font-size: 1.02em;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
  transform: none;
}

.brand-latin {
  display: inline-block;
  font-family: Optima, "Segoe UI", "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: 0.68em;
  font-weight: 520;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateY(-0.08em);
}

html[lang="en"] .top-showcase .section-heading.compact h1 {
  gap: 0.28em;
  align-items: flex-end;
  font-size: clamp(19px, 2.15vw, 33px);
}

.trail-signpost {
  position: absolute;
  z-index: 30;
  left: clamp(160px, 40vw, 480px);
  top: clamp(250px, 56vh, 650px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 10px;
  color: var(--snow);
  text-decoration: none;
  pointer-events: auto;
}

.signpost-pin {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: oklch(0.86 0.105 78);
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  opacity: 1;
  filter:
    drop-shadow(0 1px 0 rgba(18, 25, 20, 0.72))
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 12px rgba(238, 206, 142, 0.24));
}

.signpost-pin svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.signpost-options {
  display: inline-flex;
  gap: 8px;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateX(-8px);
  transition: max-width 180ms ease, opacity 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.trail-signpost:hover .signpost-options,
.trail-signpost:focus-within .signpost-options {
  max-width: 520px;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.signpost-board {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: color-mix(in oklch, var(--snow) 88%, var(--pine));
  background: rgba(10, 26, 21, 0.48);
  border: 1px solid rgba(197, 212, 197, 0.18);
  text-decoration: none;
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
}

@media (max-width: 1180px), (hover: none) {
  .trail-signpost {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: clamp(28px, 7vh, 76px);
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    padding: 8px 0;
  }

  .signpost-pin {
    width: 42px;
    height: 42px;
  }

  .signpost-pin svg {
    width: 26px;
    height: 26px;
  }

  .signpost-options {
    max-width: none;
    width: 100%;
    opacity: 1;
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow: visible;
    pointer-events: auto;
    transform: none;
    padding: 2px 0 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .signpost-options::-webkit-scrollbar {
    display: none;
  }

  .signpost-board {
    flex: 0 1 auto;
    min-height: 44px;
    font-size: 13px;
  }
}

.signpost-board:hover,
.signpost-board:focus-visible {
  color: oklch(0.18 0.025 158);
  background: oklch(0.82 0.055 78);
  border-color: oklch(0.82 0.055 78);
  outline: 0;
}

.banner-switcher {
  position: relative;
  min-height: 100vh;
  padding-bottom: 0;
}

.floating-menu {
  position: absolute;
  z-index: 4;
  left: max(24px, calc((100vw - 1180px) / 2));
  right: auto;
  top: clamp(104px, 17vh, 150px);
  bottom: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 0;
}

.floating-area {
  position: relative;
}

.floating-word {
  min-height: auto;
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: var(--orange);
  background: transparent;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
}

.floating-word:hover,
.floating-area:hover > .floating-word {
  color: var(--snow);
  background: transparent;
  border-color: transparent;
}

.banner-tabs {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  display: grid;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.floating-area:hover .banner-tabs,
.floating-area:focus-within .banner-tabs {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.banner-tabs label {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: var(--snow);
  background: rgba(5, 16, 13, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.banner-tabs label:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

#banner-taiwan:checked ~ .floating-menu .banner-tabs label[for="banner-taiwan"],
#banner-japan:checked ~ .floating-menu .banner-tabs label[for="banner-japan"] {
  color: oklch(0.18 0.02 160);
  background: var(--orange);
  border-color: var(--orange);
}

.country-banners {
  display: grid;
  min-height: 100vh;
  pointer-events: none;
  transform-style: flat;
  transition: transform 260ms ease;
}

.country-banner {
  position: relative;
  grid-area: 1 / 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--bg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.taiwan-banner {
  opacity: 1;
  transform: translateY(0);
}

.mountain-depth {
  display: none;
}

.mountain-layer {
  position: absolute;
  inset: auto -8% 0;
  height: 45%;
  transform-origin: center bottom;
  transition: transform 260ms ease, opacity 260ms ease;
}

.sky-layer {
  inset: 0;
  height: auto;
  background: radial-gradient(circle at 18% 24%, rgba(226, 168, 82, 0.22), transparent 22%);
  transform: translateZ(-80px) scale(1.08);
}

.far-layer {
  bottom: 25%;
  opacity: 0.26;
  background: linear-gradient(135deg, transparent 18%, rgba(218, 230, 225, 0.22) 19%, rgba(218, 230, 225, 0.04) 34%, transparent 35%);
  clip-path: polygon(0 72%, 13% 48%, 25% 62%, 38% 36%, 52% 58%, 66% 31%, 83% 61%, 100% 42%, 100% 100%, 0 100%);
  transform: translateZ(-40px) scale(1.06);
}

.mid-layer {
  bottom: 10%;
  opacity: 0.22;
  background: rgba(220, 230, 224, 0.2);
  clip-path: polygon(0 76%, 16% 42%, 28% 66%, 45% 22%, 57% 58%, 72% 34%, 88% 68%, 100% 46%, 100% 100%, 0 100%);
  transform: translateZ(26px) scale(1.02);
}

.front-layer {
  bottom: -8%;
  opacity: 0.18;
  background: rgba(228, 234, 229, 0.16);
  clip-path: polygon(0 82%, 12% 60%, 22% 76%, 37% 44%, 48% 73%, 63% 48%, 78% 76%, 91% 52%, 100% 66%, 100% 100%, 0 100%);
  transform: translateZ(92px) scale(0.98);
}

.top-showcase:hover .country-banners {
  transform: none;
}

.top-showcase:hover .far-layer {
  transform: translateZ(-40px) scale(1.06);
}

.top-showcase:hover .mid-layer {
  transform: translateZ(26px) scale(1.02);
}

.top-showcase:hover .front-layer {
  transform: translateZ(92px) scale(0.98);
}

.country-banner::before {
  content: none;
}

.country-banner::after {
  content: none;
}

.country-banner-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.taiwan-banner {
  --banner-image: url("alpine-ridge-sharp.webp");
}

.japan-banner {
  --banner-image: url("japan-mountain-sharp.webp");
}

.country-banner-main {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: none;
  flex-direction: column;
  justify-content: end;
  padding: 0 min(44vw, 520px) clamp(58px, 10vh, 108px) max(24px, calc((100vw - 1180px) / 2));
  color: var(--snow);
  text-decoration: none;
}

.country-banner-main span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.country-banner-main strong {
  display: block;
  max-width: 8ch;
  margin-top: 12px;
  color: var(--snow);
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.022em;
}

.country-banner-main small {
  margin-top: 18px;
  color: color-mix(in oklch, var(--snow) 68%, transparent);
  font-size: 14px;
}

.peak-links {
  margin: auto max(24px, calc((100vw - 1180px) / 2)) clamp(42px, 8vh, 92px) 0;
  display: grid;
  align-self: stretch;
  align-content: end;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 16, 13, 0.28);
  backdrop-filter: blur(6px);
}

.peak-links:empty {
  display: none;
}

.single-scene + .site-footer {
  display: none;
}

body:has(.single-scene) {
  overflow-x: hidden;
}

body:has(.single-scene) main.single-scene {
  width: 100%;
  max-width: 100%;
}

body:has(.single-scene) .site-header {
  display: none;
}

body:has(.single-scene) .top-showcase {
  width: 100%;
  margin-left: 0;
}

.peak-links a,
.peak-links span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  color: var(--snow);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 800;
}

::selection {
  color: oklch(0.18 0.02 160);
  background: var(--orange);
}

.peak-links a {
  color: var(--orange);
}

.peak-links a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.peak-links span {
  color: color-mix(in oklch, var(--snow) 62%, transparent);
}

.peak-links a:last-child,
.peak-links span:last-child {
  border-bottom: 0;
}

dt {
  color: color-mix(in oklch, var(--snow) 48%, transparent);
  font-weight: 700;
}

dd {
  color: var(--snow);
  font-weight: 800;
}

.split-section {
  margin-top: 0;
  padding: clamp(62px, 8vw, 104px) 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
}

.split-section::before,
.split-section::after {
  display: none;
}

.split-section h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  letter-spacing: -0.018em;
}

.split-section p {
  font-size: clamp(16px, 1.35vw, 19px);
}

.section-index {
  border-color: rgba(255, 255, 255, 0.16);
  color: color-mix(in oklch, var(--snow) 62%, transparent);
  font-weight: 700;
}

.site-footer {
  color: color-mix(in oklch, var(--snow) 62%, transparent);
  border-top: 0;
}

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

.article-hero {
  padding-top: clamp(46px, 7vw, 86px);
}

.article-hero > div {
  background: transparent;
  border: 0;
  border-radius: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.article-hero figure {
  border: 0;
  border-radius: 0;
}

.article-hero img {
  filter: saturate(0.88) contrast(1.08);
}

.note-strip {
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  box-shadow: none;
}

.note-strip article {
  border-color: rgba(255, 255, 255, 0.12);
}

.note-strip h2 {
  color: var(--orange);
}

.article-content {
  color: var(--snow);
}

.back-link {
  color: var(--orange);
}

@media (max-width: 900px) {
  .hero {
    min-height: 620px;
  }

  .hero-media,
  .hero-media img {
    min-height: 620px;
  }

  .hero-copy {
    align-self: center;
    width: min(650px, calc(100% - 44px));
    padding: 46px 0;
  }

  .route-band {
    grid-template-columns: 1fr;
  }

  .destination-section {
    grid-template-columns: 1fr;
  }

  .route-band article {
    min-height: auto;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trip-card {
    grid-template-columns: 1fr;
  }

  .trip-card img {
    min-height: 300px;
  }

  .country-banner {
    grid-template-columns: 1fr;
  }

  .country-banner-main {
    min-height: 260px;
    padding: 0 22px 24px;
  }

  .peak-links {
    margin: 0 22px 34px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .top-showcase .section-heading.compact {
    top: 26px;
    left: 22px;
  }

  .floating-menu {
    top: 106px;
    left: 22px;
  }

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

  .destination-grid span {
    border-right: 0;
  }

  .index-drawer summary {
    grid-template-columns: 1fr 34px;
    gap: 16px;
  }

  .index-drawer summary small {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 640px) {
  main,
  .article-shell,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    position: relative;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media,
  .hero-media img {
    min-height: 760px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(5, 15, 12, 0.35), rgba(5, 15, 12, 0.92) 62%),
      linear-gradient(90deg, rgba(5, 15, 12, 0.62), rgba(5, 15, 12, 0.28));
  }

  .hero-copy {
    width: calc(100% - 28px);
    margin-left: 14px;
    padding: 38px 0;
  }

  .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(40px, 14vw, 56px);
    line-height: 1;
  }

  .hero-copy .lead {
    max-width: 34ch;
  }

  .field-tags span {
    padding: 7px 9px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-media figcaption {
    display: none;
  }

  .route-band article {
    padding: 28px 0;
  }

  .trip-card > div {
    padding: 28px 0;
  }

  .country-banners {
    gap: 0;
  }

  .country-banner-main {
    min-height: 100vh;
    justify-content: start;
    padding: 178px 18px 230px;
  }

  .country-banner-main strong {
    font-size: 48px;
  }

  .peak-links a,
  .peak-links span {
    min-height: 42px;
    padding: 0 18px;
    font-size: 16px;
  }

  .top-showcase .section-heading.compact h1 {
    font-size: 22px;
  }

  .floating-menu {
    top: 102px;
    gap: 8px;
  }

  .floating-word {
    min-height: auto;
    padding: 0;
  }

  .peak-links {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    margin: 0;
    max-height: 210px;
    overflow: hidden;
  }

  .split-section {
    padding: 56px 0;
  }

  .destination-section {
    padding: 56px 0;
  }

  .destination-grid span {
    min-height: 68px;
    padding: 16px 0;
  }

  .index-drawers {
    padding: 36px 0 56px;
  }

  .index-drawer summary {
    min-height: 92px;
  }

  .index-drawer summary strong {
    font-size: 30px;
  }

  .trail-signpost {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: clamp(28px, 7vh, 76px);
    max-width: calc(100vw - 48px);
  }
}

.country-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(5, 13, 11, 0.42), rgba(5, 13, 11, 0.92)),
    url("alpine-ridge.webp") center / cover no-repeat fixed,
    var(--bg);
}

.country-page.country-taiwan {
  background:
    linear-gradient(180deg, rgba(6, 13, 11, 0.26), rgba(5, 13, 11, 0.88)),
    linear-gradient(90deg, rgba(5, 13, 11, 0.54), rgba(5, 13, 11, 0.12) 54%, rgba(5, 13, 11, 0.58)),
    url("yushan-background.webp") center / cover no-repeat fixed,
    var(--bg);
}

.country-page.country-japan {
  background:
    linear-gradient(180deg, rgba(6, 13, 11, 0.28), rgba(5, 13, 11, 0.9)),
    linear-gradient(90deg, rgba(5, 13, 11, 0.56), rgba(5, 13, 11, 0.12) 56%, rgba(5, 13, 11, 0.56)),
    url("japan-mountain.webp") center / cover no-repeat fixed,
    var(--bg);
}

.country-page.country-canada {
  background:
    linear-gradient(180deg, rgba(6, 13, 11, 0.38), rgba(5, 13, 11, 0.92)),
    radial-gradient(circle at 70% 34%, rgba(150, 178, 178, 0.26), transparent 34%),
    url("alpine-ridge.webp") 58% center / cover no-repeat fixed,
    var(--bg);
}

.country-page.country-usa {
  background:
    linear-gradient(180deg, rgba(6, 13, 11, 0.42), rgba(5, 13, 11, 0.92)),
    radial-gradient(circle at 64% 28%, rgba(226, 168, 82, 0.18), transparent 34%),
    url("yushan-background.webp") 48% center / cover no-repeat fixed,
    var(--bg);
}

.country-page.country-indonesia {
  background:
    linear-gradient(180deg, rgba(6, 13, 11, 0.36), rgba(5, 13, 11, 0.92)),
    radial-gradient(circle at 68% 42%, rgba(226, 168, 82, 0.24), transparent 34%),
    url("alpine-ridge.webp") 42% center / cover no-repeat fixed,
    var(--bg);
}

.country-page.country-malaysia {
  background:
    linear-gradient(180deg, rgba(6, 13, 11, 0.38), rgba(5, 13, 11, 0.92)),
    radial-gradient(circle at 64% 38%, rgba(150, 178, 150, 0.22), transparent 36%),
    url("japan-mountain.webp") 62% center / cover no-repeat fixed,
    var(--bg);
}

.country-page-shell {
  width: min(980px, calc(100% - 40px));
  min-height: 100vh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  padding-inline: clamp(12px, 2vw, 24px);
  color: var(--snow);
}

.country-page-shell h1 {
  max-width: none;
  margin: 10px 0 clamp(14px, 3vh, 30px);
  color: var(--snow);
  font-size: clamp(42px, 6.4vw, 78px);
}

.country-page-shell .back-link {
  width: auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-bottom: clamp(42px, 10vh, 84px);
  padding: 0;
  color: color-mix(in oklch, var(--orange) 82%, var(--snow));
  background: transparent;
  border: 0;
  box-shadow: none;
}

.country-page-shell .back-link:hover,
.country-page-shell .back-link:focus-visible {
  color: var(--snow);
  background: transparent;
}

.country-map-panel {
  width: 100%;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.country-map-viewport {
  width: 100%;
  display: grid;
  place-items: center;
  overflow: visible;
}

.country-map-stage {
  position: relative;
  width: min(500px, 78vw, calc((100vh - 170px) * 0.72));
  aspect-ratio: 0.72;
}

.country-map-stage-taiwan {
  width: auto;
  height: min(62vh, 600px);
  aspect-ratio: 0.44;
}

.country-map-stage-japan {
  width: min(640px, calc(100vw - 72px), calc((100vh - 150px) * 1.04));
  aspect-ratio: 900 / 864;
}

.country-map-stage-japan .mountain-map-point {
  grid-template-columns: 7px;
  grid-template-areas: "dot";
}

.country-map-stage-japan .map-dot {
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 4px rgba(229, 214, 177, 0.08), 0 0 18px rgba(229, 214, 177, 0.24);
}

.country-map-stage-japan .map-label {
  position: absolute;
  padding: 1px 5px;
  font-size: 9px;
  font-weight: 780;
}

.country-map-stage-canada,
.country-map-stage-usa {
  width: min(920px, 92vw, calc((100vh - 210px) * 1.72));
  aspect-ratio: 900 / 420;
}

.country-map-stage-usa {
  width: min(920px, 92vw, calc((100vh - 210px) * 1.9));
  aspect-ratio: 900 / 420;
}

.country-map-stage-usa .mountain-map-point,
.country-map-stage-canada .mountain-map-point {
  grid-template-columns: 8px auto;
  column-gap: 5px;
  transform: translate(-5px, -50%);
}

.country-map-stage-usa .map-dot,
.country-map-stage-canada .map-dot {
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 4px rgba(229, 214, 177, 0.08), 0 0 18px rgba(229, 214, 177, 0.22);
}

.country-map-stage-usa .map-label,
.country-map-stage-canada .map-label {
  padding: 1px 5px;
  font-size: 9px;
  font-weight: 760;
  background: rgba(5, 13, 11, 0.3);
}

.country-map-stage-indonesia {
  width: min(820px, 88vw);
  aspect-ratio: 2.08;
}

.country-map-stage-malaysia {
  width: min(700px, 86vw);
  aspect-ratio: 1.62;
}

.country-map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.country-map-image {
  opacity: 0.64;
  filter:
    sepia(0.24)
    saturate(0.7)
    brightness(0.86)
    contrast(1.1)
    drop-shadow(0 24px 44px rgba(0, 0, 0, 0.34));
}

.country-map-image-taiwan {
  opacity: 0.82;
  filter:
    sepia(0.16)
    saturate(0.78)
    brightness(1.08)
    contrast(1.08)
    drop-shadow(0 24px 44px rgba(0, 0, 0, 0.32));
}

.mountain-map-point {
  position: absolute;
  z-index: 2;
  display: inline-grid;
  grid-template-columns: 10px auto;
  grid-template-areas: "dot label";
  column-gap: 7px;
  align-items: center;
  color: color-mix(in oklch, var(--snow) 88%, oklch(0.82 0.055 78));
  text-decoration: none;
  transform: translate(-6px, -50%);
}

.mountain-map-point .map-dot {
  grid-area: dot;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: oklch(0.82 0.055 78);
  box-shadow: 0 0 0 6px rgba(229, 214, 177, 0.08), 0 0 24px rgba(229, 214, 177, 0.28);
}

.mountain-map-point .map-label {
  grid-area: label;
  white-space: nowrap;
  padding: 2px 7px;
  color: color-mix(in oklch, var(--snow) 92%, oklch(0.82 0.055 78));
  background: rgba(5, 13, 11, 0.38);
  border: 1px solid rgba(229, 214, 177, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(6px);
}

.mountain-map-point .map-status {
  display: none;
}

.mountain-map-point.written .map-dot {
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(226, 168, 82, 0.12), 0 0 30px rgba(226, 168, 82, 0.38);
}

.mountain-map-point.written {
  min-height: 44px;
}

.mountain-map-point.written:hover,
.mountain-map-point.written:focus-visible {
  color: var(--snow);
  outline: 0;
}

.mountain-map-point.written:hover .map-label,
.mountain-map-point.written:focus-visible .map-label {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.mountain-map-point.planned {
  opacity: 0.76;
}

.mountain-map-point.planned .map-status {
  display: none;
}

.point-yushan {
  left: 44%;
  top: 63%;
}

.point-jiaming-lake {
  left: 61%;
  top: 67%;
}

.point-nanhu {
  left: 57%;
  top: 27%;
}

.point-xueshan {
  left: 47%;
  top: 33%;
}

.point-qilai {
  left: 55%;
  top: 48%;
}

.point-hehuan {
  left: 52%;
  top: 43%;
}

.point-fuji {
  left: 55%;
  top: 55%;
}

.point-fuji .map-label {
  left: 28px;
  top: 22px;
}

html[lang="zh-Hant"] .country-map-stage-japan .point-fuji .map-label {
  left: 28px;
  top: 22px;
}

.point-kamikochi {
  left: 47.5%;
  top: 49.5%;
}

.point-kamikochi .map-label {
  left: 18px;
  top: -5px;
}

.point-hotaka {
  left: 46.5%;
  top: 48.5%;
}

.point-hotaka .map-label {
  right: 18px;
  top: -4px;
}

.point-tateyama {
  left: 48%;
  top: 46.5%;
}

.point-tateyama .map-label {
  left: 18px;
  top: -22px;
}

.point-hakuba {
  left: 47.5%;
  top: 44.5%;
}

.point-hakuba .map-label {
  right: 18px;
  top: -23px;
}

.point-banff {
  left: 38%;
  top: 58%;
}

.point-jasper {
  left: 34%;
  top: 43%;
}

.point-lake-louise {
  left: 42%;
  top: 64%;
}

.point-whistler {
  left: 26%;
  top: 72%;
}

.point-yosemite {
  left: 13%;
  top: 50%;
}

.point-rainier {
  left: 8%;
  top: 22%;
}

.point-grand-canyon {
  left: 26%;
  top: 63%;
}

.point-rocky-mountain {
  left: 39%;
  top: 43%;
}

.point-rinjani {
  left: 67%;
  top: 52%;
}

.point-semeru {
  left: 55%;
  top: 50%;
}

.point-bromo {
  left: 51%;
  top: 47%;
}

.point-ijen {
  left: 59%;
  top: 55%;
}

.country-map-stage-taiwan .mountain-map-point .map-label,
.country-map-stage-canada .mountain-map-point .map-label,
.country-map-stage-indonesia .mountain-map-point .map-label {
  position: absolute;
  width: auto;
  height: auto;
  white-space: nowrap;
}

.country-map-stage-taiwan .point-yushan .map-label {
  right: 18px;
  top: 9px;
}

.country-map-stage-taiwan .point-jiaming-lake .map-label {
  left: 18px;
  top: 16px;
}

.country-map-stage-taiwan .point-nanhu .map-label {
  left: 18px;
  top: -24px;
}

.country-map-stage-taiwan .point-xueshan .map-label {
  left: 18px;
  top: -2px;
}

.country-map-stage-taiwan .point-qilai .map-label {
  left: 18px;
  top: 7px;
}

.country-map-stage-taiwan .point-hehuan .map-label {
  right: 18px;
  top: -24px;
}

.country-map-stage-canada .point-banff .map-label {
  right: 18px;
  top: -11px;
}

.country-map-stage-canada .point-lake-louise .map-label {
  left: 18px;
  top: 12px;
}

.country-map-stage-indonesia .point-semeru .map-label {
  left: 18px;
  top: -30px;
}

.country-map-stage-indonesia .point-bromo .map-label {
  right: 18px;
  top: -7px;
}

.country-map-stage-indonesia .point-ijen .map-label {
  left: 18px;
  top: 18px;
}

.point-kerinci {
  left: 22%;
  top: 45%;
}

.point-kinabalu {
  left: 78%;
  top: 35%;
}

.point-tahan {
  left: 30%;
  top: 49%;
}

.point-mulu {
  left: 70%;
  top: 50%;
}

.point-cameron {
  left: 22%;
  top: 42%;
}

@media (max-width: 760px) {
  .country-page-shell {
    width: calc(100% - 12px);
    align-items: stretch;
  }

  .country-page-shell h1 {
    font-size: 40px;
  }

  .country-map-stage {
    width: min(330px, 100%, calc((100vh - 150px) * 0.72));
  }

  .country-map-stage-japan {
    width: min(100%, calc(100vw - 36px), calc((100vh - 130px) * 1.04));
  }

  .country-map-stage-taiwan {
    width: auto;
    height: min(56vh, 500px);
  }

  .country-map-stage-canada,
  .country-map-stage-usa,
  .country-map-stage-indonesia,
  .country-map-stage-malaysia {
    width: 100%;
  }

  .mountain-map-point .map-label {
    font-size: 12px;
  }

  .country-map-stage-japan .map-label {
    font-size: 9px;
  }

  .country-map-stage-usa .map-label,
  .country-map-stage-canada .map-label,
  .country-map-stage-indonesia .map-label,
  .country-map-stage-malaysia .map-label {
    position: absolute;
    width: auto;
    height: auto;
    max-width: 112px;
    padding: 1px 5px;
    border: 1px solid rgba(229, 214, 177, 0.12);
    overflow: visible;
    clip-path: none;
    white-space: nowrap;
    font-size: 10px;
    text-overflow: ellipsis;
    background: rgba(5, 13, 11, 0.54);
  }
}

.site-header.article-toolbar {
  position: fixed;
  top: 22px;
  right: 18px;
  left: auto;
  z-index: 20;
  width: 48px;
  min-height: 48px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  overflow: hidden;
  background: rgba(10, 24, 20, 0.78);
  border: 1px solid rgba(229, 214, 177, 0.2);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(5, 13, 11, 0.26);
  backdrop-filter: blur(14px);
  transform: none;
}

.site-header.article-toolbar:hover,
.site-header.article-toolbar:focus-within {
  width: 68px;
  gap: 8px;
  border-radius: 999px;
}

.site-header.article-toolbar .brand {
  width: 44px;
  min-width: 44px;
  height: 44px;
}

.site-header.article-toolbar .brand-mark {
  width: 44px;
  height: 44px;
  border-color: rgba(229, 214, 177, 0.22);
}

.site-header.article-toolbar .article-toolbar-nav {
  width: 100%;
  max-height: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 4px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: max-height 180ms ease, opacity 150ms ease, transform 150ms ease;
}

.site-header.article-toolbar:hover .article-toolbar-nav,
.site-header.article-toolbar:focus-within .article-toolbar-nav {
  max-height: 180px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header.article-toolbar .article-toolbar-nav a {
  min-height: 30px;
  justify-content: center;
  padding: 0 4px;
  color: color-mix(in oklch, var(--snow) 82%, oklch(0.82 0.055 78));
  font-size: 12px;
}

@media (max-width: 640px) {
  .site-header.article-toolbar {
    top: 14px;
    right: 14px;
    bottom: auto;
    transform: none;
  }
}

body:has(.article-shell) .site-header.article-toolbar {
  top: auto;
  right: 18px;
  bottom: 18px;
  width: 46px;
  min-height: 46px;
  padding: 5px;
  background: rgba(8, 20, 16, 0.82);
  border-color: rgba(229, 214, 177, 0.18);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  transform: none;
}

@media (max-width: 1180px) {
  body:has(.article-shell) {
    padding-bottom: 92px;
  }

  body:has(.article-shell) .site-header.article-toolbar {
    left: 16px;
    right: 16px;
    bottom: 14px;
    width: auto;
    min-height: 54px;
    padding: 8px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 8px;
    border-radius: 999px;
  }

  body:has(.article-shell) .site-header.article-toolbar:hover,
  body:has(.article-shell) .site-header.article-toolbar:focus-within {
    width: auto;
    min-height: 54px;
    gap: 8px;
  }

  body:has(.article-shell) .site-header.article-toolbar .brand,
  body:has(.article-shell) .site-header.article-toolbar .brand-mark {
    width: 38px;
    min-width: 38px;
    height: 38px;
  }

  body:has(.article-shell) .site-header.article-toolbar .article-toolbar-nav {
    position: static;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  body:has(.article-shell) .site-header.article-toolbar .article-toolbar-nav::-webkit-scrollbar {
    display: none;
  }

  body:has(.article-shell) .site-header.article-toolbar .article-toolbar-nav a {
    min-height: 40px;
    min-width: max-content;
    flex: 0 0 auto;
    padding: 0 12px;
  }

  body:has(.article-shell) .site-header.article-toolbar::after {
    content: none;
  }
}

body:has(.article-shell) .site-header.article-toolbar:hover,
body:has(.article-shell) .site-header.article-toolbar:focus-within {
  width: 46px;
  min-height: 46px;
  gap: 0;
  border-radius: 999px;
}

body:has(.article-shell) .site-header.article-toolbar .brand,
body:has(.article-shell) .site-header.article-toolbar .brand-mark {
  width: 44px;
  min-width: 44px;
  height: 44px;
}

body:has(.article-shell) .site-header.article-toolbar .brand-mark {
  border: 0;
  background: transparent;
}

body:has(.article-shell) .site-header.article-toolbar .brand-mark svg {
  width: 27px;
  height: 27px;
}

body:has(.article-shell) .site-header.article-toolbar .article-toolbar-nav {
  position: fixed;
  right: 18px;
  bottom: 72px;
  width: auto;
  max-height: none;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 7px;
  overflow: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body:has(.article-shell) .site-header.article-toolbar:hover .article-toolbar-nav,
body:has(.article-shell) .site-header.article-toolbar:focus-within .article-toolbar-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body:has(.article-shell) .site-header.article-toolbar .article-toolbar-nav a {
  min-height: 44px;
  min-width: 58px;
  justify-content: center;
  padding: 0 10px;
  color: color-mix(in oklch, var(--snow) 88%, oklch(0.82 0.055 78));
  background: rgba(8, 20, 16, 0.84);
  border: 1px solid rgba(229, 214, 177, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

body:has(.article-shell) .site-header.article-toolbar::after {
  content: "地區";
  position: absolute;
  right: 52px;
  top: 50%;
  color: color-mix(in oklch, var(--snow) 72%, transparent);
  font-size: 12px;
  font-weight: 800;
  opacity: 1;
  pointer-events: none;
  transform: translate(0, -50%);
  transition: opacity 150ms ease, transform 150ms ease;
  white-space: nowrap;
}

body:has(.article-shell) .site-header.article-toolbar:hover::after,
body:has(.article-shell) .site-header.article-toolbar:focus-within::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.language-switch {
  position: absolute;
  top: 28px;
  right: 32px;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(232, 222, 198, 0.28);
  border-radius: 999px;
  background: rgba(13, 28, 24, 0.28);
  color: rgba(250, 249, 241, 0.82);
  backdrop-filter: blur(10px);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-width: 44px;
  min-height: 44px;
  padding: 0 10px;
  border-radius: 999px;
  color: inherit;
  font-family: Optima, "Segoe UI", "Avenir Next", "Helvetica Neue", "Microsoft JhengHei UI", "Microsoft JhengHei", sans-serif;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.language-switch a[aria-current="page"] {
  background: rgba(232, 222, 198, 0.88);
  color: #173026;
}

.article-language-switch {
  position: static;
  align-self: flex-start;
  margin-top: 10px;
  background: rgba(13, 28, 24, 0.18);
}

.country-language-switch {
  top: 24px;
  right: 28px;
}

html[lang="en"] body:has(.article-shell) .site-header.article-toolbar::after {
  content: "Area";
}

@media (max-width: 1180px) {
  body:has(.article-shell) {
    padding-bottom: 0;
  }

  body:has(.article-shell) .site-header.article-toolbar {
    position: sticky;
    left: auto;
    right: auto;
    bottom: auto;
    top: 0;
    width: calc(100% - 32px);
    min-height: 54px;
    margin: 12px 16px 0;
    padding: 8px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px;
    border-radius: 999px;
  }

  body:has(.article-shell) .site-header.article-toolbar:hover,
  body:has(.article-shell) .site-header.article-toolbar:focus-within {
    width: auto;
    min-height: 54px;
    gap: 8px;
  }

  body:has(.article-shell) .site-header.article-toolbar .brand,
  body:has(.article-shell) .site-header.article-toolbar .brand-mark {
    width: 44px;
    min-width: 44px;
    height: 44px;
  }

  body:has(.article-shell) .site-header.article-toolbar .article-toolbar-nav {
    position: static;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  body:has(.article-shell) .site-header.article-toolbar .article-toolbar-nav::-webkit-scrollbar {
    display: none;
  }

  body:has(.article-shell) .site-header.article-toolbar .article-toolbar-nav a {
    min-height: 44px;
    min-width: max-content;
    flex: 0 0 auto;
    padding: 0 12px;
  }

  body:has(.article-shell) .site-header.article-toolbar::after {
    content: none;
  }
}

@media (max-width: 640px) {
  .article-topbar {
    position: relative;
    top: auto;
    z-index: 8;
    flex-wrap: wrap;
    padding: 14px 0 4px;
  }

  .article-topbar .back-link {
    min-height: 40px;
    padding-left: 0;
  }

  .article-topbar .article-language-switch {
    margin-left: auto;
    transform: scale(0.9);
    transform-origin: right center;
  }

  .language-switch {
    top: 18px;
    right: 18px;
  }

  .article-language-switch {
    top: auto;
    right: auto;
  }

  .country-language-switch {
    top: 16px;
    right: 16px;
  }
}

.not-found-page {
  min-height: 100vh;
  color: var(--snow);
  background:
    linear-gradient(90deg, rgba(4, 14, 11, 0.78), rgba(4, 14, 11, 0.36)),
    url("alpine-ridge-sharp.webp") center / cover no-repeat;
}

.not-found-shell {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 24px;
  width: min(680px, 100%);
  margin: 0;
  padding: 48px;
}

.not-found-card {
  display: grid;
  gap: 18px;
}

.not-found-card h1 {
  margin: 0;
  color: var(--snow);
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 500;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.not-found-card p {
  max-width: 34rem;
  margin: 0;
  color: color-mix(in oklch, var(--snow) 78%, transparent);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.8;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.not-found-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(232, 222, 198, 0.32);
  border-radius: 999px;
  color: var(--snow);
  background: rgba(13, 28, 24, 0.34);
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.not-found-actions a:first-child {
  color: #173026;
  background: rgba(232, 222, 198, 0.92);
}

@media (max-width: 640px) {
  .not-found-shell {
    width: auto;
    padding: 28px 20px;
  }

  .not-found-card h1 {
    font-size: clamp(34px, 11vw, 44px);
  }
}

body:has(.article-shell) .meta-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 18px;
}

body:has(.article-shell) .meta-grid div {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

body:has(.article-shell) .meta-grid dt {
  margin: 0;
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
}

body:has(.article-shell) .meta-grid dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.22;
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  body:has(.article-shell) .meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }
}

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .single-scene .language-switch {
    top: 62px;
    right: auto;
    left: 22px;
    max-width: calc(100vw - 28px);
    transform: none;
    transform-origin: top left;
  }

  .single-scene .language-switch a {
    min-width: 44px;
    min-height: 44px;
    padding: 0 8px;
    font-size: 11px;
  }

  body:has(.article-shell) .article-shell {
    width: calc(100vw - 56px);
    max-width: 100vw;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
  }

  body:has(.article-shell) .article-hero {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  body:has(.article-shell) .article-hero > div,
  body:has(.article-shell) .article-content,
  body:has(.article-shell) .note-strip {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .single-scene .top-showcase .section-heading.compact {
    left: 22px;
    right: 22px;
    width: auto;
    max-width: calc(100vw - 44px);
  }

  .single-scene .top-showcase .section-heading.compact h1 {
    white-space: normal;
  }

  body:has(.article-shell) .article-hero .lead {
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  body:has(.article-shell) .meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
    width: 100%;
    max-width: 100%;
  }

  body:has(.article-shell) .meta-grid div {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 6px;
  }

  body:has(.article-shell) .meta-grid dd {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

.newsletter-panel {
  width: min(760px, calc(100vw - 64px));
  margin: 0 auto;
  padding: 14px 16px;
  border: 1px solid rgba(232, 222, 198, 0.12);
  border-radius: 16px;
  background: rgba(8, 18, 15, 0.34);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.12);
}

.single-scene .newsletter-panel {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 5;
  transform: translateX(-50%);
}

.article-shell .newsletter-panel {
  width: min(760px, 100%);
  margin-top: 40px;
}

.newsletter-panel-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: 12px 18px;
  align-items: center;
}

.newsletter-panel-copy {
  display: grid;
  gap: 3px;
}

.newsletter-kicker {
  color: rgba(232, 222, 198, 0.55);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.newsletter-panel-copy h2 {
  margin: 0;
  color: var(--snow);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.18;
  font-weight: 500;
}

.newsletter-panel-copy p,
.newsletter-status {
  margin: 0;
  color: rgba(232, 222, 198, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.newsletter-panel-form,
.newsletter-panel-link,
.newsletter-panel-disabled {
  display: grid;
  gap: 6px;
  justify-items: stretch;
}

.newsletter-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsletter-panel input[type="email"] {
  min-width: 0;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(232, 222, 198, 0.14);
  border-radius: 999px;
  color: var(--snow);
  background: rgba(7, 15, 13, 0.46);
  outline: none;
}

.newsletter-panel input[type="email"]::placeholder {
  color: rgba(232, 222, 198, 0.42);
}

.newsletter-panel button,
.newsletter-panel-link a,
.newsletter-panel-disabled span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(232, 222, 198, 0.16);
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
}

.newsletter-panel button,
.newsletter-panel-link a {
  color: #173026;
  background: rgba(232, 222, 198, 0.86);
  font-weight: 600;
  cursor: pointer;
}

.newsletter-panel-disabled span {
  color: rgba(232, 222, 198, 0.68);
  background: rgba(7, 15, 13, 0.46);
}

@media (max-width: 820px) {
  .newsletter-panel {
    width: calc(100vw - 44px);
    padding: 13px 14px;
  }

  .single-scene .newsletter-panel {
    bottom: 20px;
  }

  .newsletter-panel-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .single-scene .trail-signpost {
    bottom: 252px;
  }

  .single-scene .newsletter-panel {
    position: static;
    transform: none;
    width: calc(100vw - 36px);
    margin: 22px auto 0;
  }

  .newsletter-form-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .newsletter-panel .newsletter-status {
    display: none;
  }
}
