﻿:root {
  color-scheme: dark;
  --bg: #0a090f;
  --bg-2: #15111b;
  --panel: #1e1a25;
  --paper: #f0eadc;
  --text: #f7f1e4;
  --muted: #c9bfae;
  --ink: #1b1720;
  --gold: #e6c280;
  --red: #a31d1d;
  --moss: #52695a;
  --line: rgba(230, 194, 128, 0.24);
  --shadow: 0 22px 56px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --header-h: 72px;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--ink);
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  background: rgba(10, 9, 15, 0.88);
  border-bottom: 1px solid rgba(230, 194, 128, 0.2);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: var(--header-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 1px solid rgba(230, 194, 128, 0.32);
  border-radius: 6px;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  color: rgba(247, 241, 228, 0.86);
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta).is-active {
  background: rgba(230, 194, 128, 0.06);
  border-color: rgba(230, 194, 128, 0.72);
  box-shadow: 0 0 0 1px rgba(230, 194, 128, 0.08), 0 0 18px rgba(230, 194, 128, 0.12);
  color: var(--gold);
}

.nav-links .nav-cta {
  margin-left: 8px;
  background: var(--gold);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-links .nav-cta:hover {
  background: #f4d59b;
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(230, 194, 128, 0.09);
  border: 1px solid rgba(230, 194, 128, 0.28);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold);
  border-radius: 2px;
  transform-origin: center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hero {
  position: relative;
  min-height: min(84vh, 760px);
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
  border-bottom: 1px solid rgba(230, 194, 128, 0.18);
}

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

.hero-media img {
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 9, 15, 0.96) 0%, rgba(10, 9, 15, 0.78) 42%, rgba(10, 9, 15, 0.38) 100%),
    linear-gradient(180deg, rgba(10, 9, 15, 0.35) 0%, rgba(10, 9, 15, 0.74) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 54px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 780px;
  color: var(--gold);
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.58);
}

.hero-subtitle {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(247, 241, 228, 0.92);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 30px 0 0;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(230, 194, 128, 0.18);
}

.button-primary:hover {
  background: #f3d397;
}

.button-secondary {
  background: rgba(247, 241, 228, 0.08);
  color: var(--text);
  border-color: rgba(230, 194, 128, 0.3);
}

.button-secondary:hover {
  background: rgba(230, 194, 128, 0.14);
}

.hero-facts {
  max-width: 880px;
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(230, 194, 128, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-facts div {
  min-height: 90px;
  padding: 16px;
  background: rgba(10, 9, 15, 0.72);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-facts dd {
  margin: 6px 0 0;
  color: var(--gold);
  font-weight: 800;
}

.section {
  padding: 82px 0;
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-light {
  background: #111018;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(10, 9, 15, 0.98), rgba(21, 17, 27, 0.98)),
    var(--bg);
}

.section-paper {
  background: var(--paper);
  color: var(--ink);
}

.section-paper .section-kicker,
.section-paper h2,
.section-paper h3 {
  color: #7a1d1d;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 42px;
}

.split-reverse {
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1fr);
}

.split-reverse .copy-block {
  order: 2;
}

.split-reverse .media-panel {
  order: 1;
}

.copy-block p {
  margin: 16px 0 0;
  color: rgba(247, 241, 228, 0.86);
}

.section-paper .copy-block p,
.section-paper .section-heading p,
.section-paper .route-steps p {
  color: rgba(27, 23, 32, 0.78);
}

h2 {
  margin: 0;
  color: var(--gold);
  font-size: 34px;
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--gold);
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: 0;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 12px 0 0;
  color: rgba(247, 241, 228, 0.78);
}

.quick-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.quick-list li {
  padding: 12px 14px;
  background: rgba(230, 194, 128, 0.1);
  border: 1px solid rgba(230, 194, 128, 0.18);
  border-radius: var(--radius);
}

.quick-list span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.media-panel,
.content-art,
.guide-image,
.gallery-card {
  margin: 0;
}

.media-panel {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-panel figcaption {
  padding: 13px 16px;
  color: rgba(247, 241, 228, 0.75);
  font-size: 14px;
}

.section-paper .media-panel {
  background: #fff8e8;
  border-color: rgba(122, 29, 29, 0.22);
}

.section-paper .media-panel figcaption {
  color: rgba(27, 23, 32, 0.72);
}

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

.content-art {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  min-height: 100%;
}

.content-art img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

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

.content-grid article,
.feature-grid article,
.route-steps article,
.guide-list article {
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.content-grid article,
.feature-grid article {
  position: relative;
  min-height: 184px;
  padding: 22px;
  background: rgba(247, 241, 228, 0.055);
}

.content-grid p,
.feature-grid p,
.guide-list p {
  margin: 10px 0 0;
  color: rgba(247, 241, 228, 0.76);
}

.icon-mark {
  display: block;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  border: 1px solid rgba(230, 194, 128, 0.42);
  border-radius: 6px;
  background:
    linear-gradient(45deg, transparent 42%, var(--gold) 43%, var(--gold) 56%, transparent 57%),
    radial-gradient(circle at center, rgba(163, 29, 29, 0.55) 0 28%, transparent 29%);
}

.route-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.route-steps article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(122, 29, 29, 0.18);
}

.framed-media {
  box-shadow: 0 18px 42px rgba(43, 31, 22, 0.18);
}

.guide-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
  gap: 24px;
  align-items: start;
}

.guide-list {
  display: grid;
  gap: 12px;
}

.guide-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 4px 18px;
  min-height: 130px;
  padding: 20px;
  background: rgba(247, 241, 228, 0.055);
}

.guide-list span {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 6px;
  font-weight: 900;
}

.guide-image {
  position: sticky;
  top: 96px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.guide-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.feature-grid article {
  min-height: 178px;
  border-color: rgba(230, 194, 128, 0.18);
}

.feature-grid article:nth-child(3n) {
  border-color: rgba(82, 105, 90, 0.48);
}

.gallery-shell {
  position: relative;
}

.gallery-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  padding: 0;
}

.gallery-card {
  overflow: hidden;
  background: #fff8e8;
  border: 1px solid rgba(122, 29, 29, 0.2);
  border-radius: var(--radius);
}

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

.gallery-card figcaption {
  padding: 12px 14px;
  color: rgba(27, 23, 32, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.timeline li {
  display: grid;
  grid-template-columns: 150px minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(122, 29, 29, 0.18);
  border-radius: var(--radius);
}

.timeline time {
  color: #7a1d1d;
  font-weight: 900;
}

.timeline strong {
  color: var(--ink);
}

.timeline span {
  color: rgba(27, 23, 32, 0.74);
}

.faq-inner {
  max-width: 980px;
}

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

.faq-list details {
  background: rgba(247, 241, 228, 0.055);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  color: var(--gold);
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  width: 28px;
  min-width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 6px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: rgba(247, 241, 228, 0.76);
}

.final-cta {
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 15, 0.96), rgba(111, 21, 24, 0.7)),
    var(--bg);
  border-top: 1px solid rgba(230, 194, 128, 0.2);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.final-cta h2 {
  max-width: 740px;
}

.final-cta p:not(.section-kicker) {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(247, 241, 228, 0.78);
}


.friend-links {
  padding: 68px 0 62px;
  background:
    radial-gradient(circle at 68% 34%, rgba(163, 29, 29, 0.30), transparent 34%),
    linear-gradient(105deg, #0a090f 0%, #171225 48%, #3a1230 100%);
  border-top: 1px solid rgba(230, 194, 128, 0.18);
  border-bottom: 1px solid rgba(230, 194, 128, 0.16);
}

.friend-links-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.friend-kicker {
  margin: 0 0 8px;
  color: rgba(247, 241, 228, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.friend-links h2 {
  position: relative;
  margin: 0;
  color: var(--gold);
  font-size: 32px;
  line-height: 1.2;
}

.friend-links h2::after {
  content: "";
  display: block;
  width: 116px;
  height: 3px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 999px;
}

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

.friend-link-list a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 10px 22px;
  color: rgba(247, 241, 228, 0.94);
  background: rgba(247, 241, 228, 0.10);
  border: 1px solid rgba(230, 194, 128, 0.28);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
  font-size: 15px;
  font-weight: 900;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.friend-link-list a:hover {
  transform: translateY(-2px);
  color: var(--gold);
  background: rgba(230, 194, 128, 0.13);
  border-color: rgba(230, 194, 128, 0.72);
}

.friend-link-list span {
  overflow-wrap: anywhere;
}
.site-footer {
  padding: 24px 0;
  background: #07060a;
  border-top: 1px solid rgba(230, 194, 128, 0.16);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(247, 241, 228, 0.64);
  font-size: 14px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--gold);
  font-weight: 800;
}

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

  .nav-links {
    position: absolute;
    top: var(--header-h);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(10, 9, 15, 0.98);
    border: 1px solid rgba(230, 194, 128, 0.24);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a,
  .nav-links .nav-cta {
    margin: 0;
    justify-content: flex-start;
  }

  .split,
  .split-reverse,
  .content-layout,
  .guide-board {
    grid-template-columns: 1fr;
  }

  .split-reverse .copy-block,
  .split-reverse .media-panel {
    order: initial;
  }

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

  .guide-image {
    position: static;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 64px;
  }

  body {
    font-size: 15px;
  }

  .nav-shell {
    width: min(100% - 24px, 1180px);
  }

  .brand span {
    max-width: 170px;
  }
.hero {
    min-height: 82vh;
  }

  .hero-inner {
    width: min(100% - 24px, 1180px);
    padding: 78px 0 42px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 27px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions,
  .final-cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .section {
    padding: 58px 0;
  }

  .section-inner {
    width: min(100% - 24px, 1180px);
  }

  .quick-list,
  .content-grid,
  .feature-grid,
  .route-steps {
    grid-template-columns: 1fr;
  }

  .content-art img {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .guide-list article {
    grid-template-columns: 1fr;
  }
  .gallery-track {
    grid-template-columns: 1fr;
  }
.footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

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

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

.nav-links a {
  gap: 7px;
}

.nav-links a span,
.button span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-icon {
  width: 16px;
  height: 16px;
}

.nav-cta .nav-icon,
.button-primary .button-icon {
  stroke-width: 2.2;
}

.button-icon {
  width: 18px;
  height: 18px;
}

@media (max-width: 760px) {
  .friend-links {
    padding: 52px 0 48px;
  }

  .friend-links h2 {
    font-size: 27px;
  }

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

  .friend-link-list a {
    width: min(100%, 320px);
  }
}
/* Modern interaction polish */
.media-panel,
.content-art,
.guide-image,
.gallery-card,
.content-grid article,
.feature-grid article,
.route-steps article,
.guide-list article,
.quick-list li,
.hero-facts div,
.timeline li,
.faq-list details {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, filter 180ms ease;
}

.media-panel img,
.content-art img,
.guide-image img,
.gallery-card img {
  transition: transform 260ms ease, filter 260ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .media-panel:hover,
  .content-art:hover,
  .guide-image:hover,
  .gallery-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 194, 128, 0.58);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(230, 194, 128, 0.10);
  }

  .media-panel:hover img,
  .content-art:hover img,
  .guide-image:hover img,
  .gallery-card:hover img {
    transform: scale(1.035);
    filter: saturate(1.08) contrast(1.04);
  }

  .content-grid article:hover,
  .feature-grid article:hover,
  .route-steps article:hover,
  .guide-list article:hover,
  .quick-list li:hover,
  .hero-facts div:hover,
  .timeline li:hover,
  .faq-list details:hover {
    transform: translateY(-3px);
    border-color: rgba(230, 194, 128, 0.52);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(230, 194, 128, 0.08);
  }

  .content-grid article:hover,
  .feature-grid article:hover,
  .guide-list article:hover,
  .faq-list details:hover {
    background: rgba(247, 241, 228, 0.075);
  }

  .section-paper .route-steps article:hover,
  .section-paper .timeline li:hover,
  .section-paper .gallery-card:hover {
    background: rgba(255, 248, 232, 0.92);
    box-shadow: 0 18px 36px rgba(43, 31, 22, 0.18), 0 0 0 1px rgba(122, 29, 29, 0.08);
  }

  .faq-list details[open] {
    border-color: rgba(230, 194, 128, 0.45);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 28px rgba(0, 0, 0, 0.18);
  }

  .button-primary:hover,
  .button-secondary:hover,
  .friend-link-list a:hover {
    box-shadow: 0 14px 30px rgba(230, 194, 128, 0.18), 0 0 0 1px rgba(230, 194, 128, 0.12);
  }

  .brand:hover img {
    border-color: rgba(230, 194, 128, 0.78);
    box-shadow: 0 0 18px rgba(230, 194, 128, 0.16);
  }
}

@media (max-width: 760px) {
  .media-panel,
  .content-art,
  .guide-image,
  .gallery-card,
  .content-grid article,
  .feature-grid article,
  .route-steps article,
  .guide-list article,
  .quick-list li,
  .hero-facts div,
  .timeline li,
  .faq-list details {
    transform: none;
  }
}