:root {
  --ink: #17201c;
  --muted: #66736c;
  --paper: #f6f2e9;
  --panel: #ffffff;
  --green: #174d3b;
  --red: #b94335;
  --gold: #bd8b4d;
  --line: rgba(23, 32, 28, 0.13);
  --shadow: 0 22px 60px rgba(24, 38, 31, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  background: var(--paper);
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 16px 34px;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 242, 233, 0.88);
  backdrop-filter: blur(18px);
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-self: end;
}

.lang-switch {
  display: flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.lang-btn {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  color: #536159;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.lang-btn.active,
.lang-btn:hover {
  color: white;
  background: var(--red);
}

.site-logo {
  display: flex;
  gap: 12px;
  align-items: center;
}

.site-logo span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: white;
  font-weight: 800;
  background: var(--red);
}

.site-logo strong {
  font-size: 22px;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #425148;
  font-size: 15px;
}

.main-nav a:hover,
.main-nav a.active {
  color: white;
  background: var(--green);
}

.phone-pill {
  padding: 12px 16px;
  border-radius: 999px;
  color: white;
  font-weight: 800;
  background: var(--ink);
}

.hero-portal {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 0.58fr) minmax(340px, 500px);
  gap: 24px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 70px 6vw;
  background:
    linear-gradient(90deg, rgba(246, 242, 233, 0.98), rgba(246, 242, 233, 0.84), rgba(246, 242, 233, 0.4)),
    url("https://images.unsplash.com/photo-1525648199074-cee30ba79a4a?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
}

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.64));
  content: "";
}

.visual-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 22px;
  color: white;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.visual-note span,
.visual-note strong {
  display: block;
}

.visual-note span {
  margin-bottom: 6px;
  color: #f3d59c;
  font-weight: 900;
}

.visual-note strong {
  font-size: 22px;
  line-height: 1.25;
}

.label {
  margin: 0 0 14px;
  color: var(--red);
  font-weight: 800;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 1.06;
}

.hero-lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: #425148;
  font-size: 20px;
  line-height: 1.8;
}

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

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

.btn.primary {
  color: white;
  background: var(--red);
}

.btn.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.trip-console {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.console-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.console-head span {
  color: var(--ink);
  font-weight: 800;
}

.persona-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.persona {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
}

.persona.active,
.persona:hover {
  color: white;
  border-color: var(--green);
  background: var(--green);
}

.plan-panel {
  padding: 22px;
  border-radius: 22px;
  background: #f7f2e8;
}

.plan-kicker {
  margin: 0 0 8px;
  color: var(--red);
  font-weight: 800;
}

.plan-panel h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.plan-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.route-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.route-line span {
  padding: 8px 11px;
  border-radius: 999px;
  color: #563915;
  background: rgba(189, 139, 77, 0.18);
}

.section,
.split-section,
.subpage {
  padding: 72px 6vw;
}

.section-head {
  max-width: 680px;
  margin-bottom: 26px;
}

.section-head h2,
.split-section h2,
.subpage h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.16;
}

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

.scenario,
.info-block,
.article-list article,
.timeline-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(24, 38, 31, 0.08);
}

.scenario {
  min-height: 230px;
  padding: 24px;
}

.scenario span {
  color: var(--gold);
  font-weight: 800;
}

.scenario h3,
.info-block h2,
.article-list h2 {
  margin: 18px 0 10px;
}

.scenario p,
.info-block p,
.article-list p,
.split-section p,
.contact-panel p {
  color: var(--muted);
  line-height: 1.8;
}

.scenario-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: 22px;
  padding: 72px 6vw;
  background:
    radial-gradient(circle at 12% 20%, rgba(189, 139, 77, 0.16), transparent 28%),
    linear-gradient(135deg, #f8f3e8, #eee6d8);
}

.scenario-intro {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 34px;
  border-radius: 30px;
  color: white;
  background:
    linear-gradient(160deg, rgba(23, 77, 59, 0.96), rgba(23, 32, 28, 0.9)),
    url("https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=900&q=80");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.scenario-intro .label {
  color: #f0c783;
}

.scenario-intro h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.12;
}

.scenario-intro p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
}

.scenario-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.scenario-tile {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 252px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(23, 32, 28, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 36px rgba(24, 38, 31, 0.1);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.scenario-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(24, 38, 31, 0.16);
}

.scenario-tile::after {
  position: absolute;
  right: -42px;
  top: -42px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(185, 67, 53, 0.08);
  content: "";
}

.scenario-tile h3 {
  margin: 18px 0 10px;
  font-size: 28px;
}

.scenario-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.scenario-tile em {
  margin-top: 18px;
  color: var(--red);
  font-style: normal;
  font-weight: 900;
}

.tile-index {
  color: var(--gold);
  font-weight: 900;
}

.tile-tag {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(23, 77, 59, 0.1);
  font-size: 13px;
  font-weight: 900;
}

.tile-primary {
  grid-row: span 2;
  color: white;
  background:
    linear-gradient(180deg, rgba(185, 67, 53, 0.12), rgba(23, 32, 28, 0.84)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80");
  background-position: center;
  background-size: cover;
}

.tile-primary p,
.tile-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.tile-primary .tile-tag,
.tile-dark .tile-tag {
  color: white;
  background: rgba(255, 255, 255, 0.16);
}

.tile-primary em,
.tile-dark em {
  color: #f0c783;
}

.tile-dark {
  color: white;
  background: linear-gradient(145deg, #17201c, #174d3b);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(300px, 1fr);
  gap: 38px;
  align-items: center;
  background: #fffaf0;
}

.page-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.page-map a {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  font-weight: 800;
}

.subpage {
  min-height: calc(100vh - 150px);
}

.subpage > h1 {
  margin-bottom: 28px;
}

.info-block,
.article-list article,
.timeline-card {
  padding: 24px;
}

.article-list {
  display: grid;
  gap: 14px;
  max-width: 880px;
}

.timeline-card {
  max-width: 860px;
}

.timeline-card ol {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.timeline-card li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  padding: 14px;
  border-radius: 16px;
  background: #f7f2e8;
}

.timeline-card time {
  color: var(--red);
  font-weight: 800;
}

.contact-panel {
  max-width: 880px;
  margin: 72px auto;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-methods a {
  padding: 16px 18px;
  border-radius: 16px;
  color: white;
  background: var(--green);
  font-weight: 800;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 26px 6vw;
  color: #526058;
  border-top: 1px solid var(--line);
  background: #fdfaf3;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .main-nav {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .phone-pill {
    justify-self: start;
  }

  .header-actions {
    justify-self: start;
  }

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

  .hero-visual {
    min-height: 360px;
  }

  .scenario-grid,
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .site-logo strong {
    font-size: 19px;
  }

  .hero-portal,
  .section,
  .split-section,
  .subpage {
    padding: 42px 18px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .persona-tabs,
  .scenario-grid,
  .content-grid,
  .page-map {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 22px 18px;
  }
}

.hero-rich {
  position: relative;
  overflow: hidden;
}

.hero-rich::after {
  position: absolute;
  right: 6vw;
  bottom: 42px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  content: "";
}

.service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin-top: 26px;
}

.service-strip span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #31423a;
  font-weight: 800;
}

.enhanced-console {
  position: relative;
  z-index: 1;
}

.mini-proof {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  color: #35443d;
  background: rgba(23, 77, 59, 0.08);
}

.mini-proof span {
  color: var(--muted);
  line-height: 1.7;
}

.feature-band {
  background: #fffaf0;
}

.city-card-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: 240px;
  gap: 16px;
}

.city-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  min-height: 220px;
  border-radius: 26px;
  background: #111;
  box-shadow: 0 16px 36px rgba(24, 38, 31, 0.14);
}

.city-card.card-large {
  grid-row: span 2;
}

.city-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.35s ease;
}

.city-card:hover img {
  transform: scale(1.06);
}

.city-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.72));
  content: "";
}

.city-card div {
  position: relative;
  z-index: 1;
  padding: 22px;
  color: white;
}

.city-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #f3d59c;
  font-weight: 800;
}

.city-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.route-finder,
.day-plan,
.faq-section,
.cta-panel {
  padding: 72px 6vw;
}

.route-finder {
  background: #f1eadc;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.filter.active,
.filter:hover {
  color: white;
  border-color: var(--red);
  background: var(--red);
}

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

.route-card {
  display: block;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 14px 30px rgba(24, 38, 31, 0.08);
}

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

.listing-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: 0 14px 30px rgba(24, 38, 31, 0.08);
}

.listing-card img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.listing-card div {
  padding: 22px;
}

.listing-card span,
.rich-list span {
  color: var(--red);
  font-weight: 900;
}

.listing-card h2,
.rich-list h2 {
  margin: 10px 0;
}

.rich-list a {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 12px 30px rgba(24, 38, 31, 0.08);
}

.detail-page {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 320px;
  gap: 34px;
  align-items: start;
  padding: 58px 6vw;
}

.content-detail,
.detail-aside {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: 0 14px 34px rgba(24, 38, 31, 0.08);
}

.content-detail {
  overflow: hidden;
}

.detail-hero {
  padding: 34px;
}

.crumb {
  color: var(--red);
  font-weight: 900;
}

.detail-hero h1 {
  margin: 14px 0;
  font-size: clamp(34px, 5vw, 64px);
}

.detail-hero p,
.content-detail section p,
.detail-aside p {
  color: var(--muted);
  line-height: 1.85;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.detail-meta span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(23, 77, 59, 0.1);
  font-weight: 900;
}

.detail-cover {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.content-detail section {
  padding: 0 34px 30px;
}

.content-detail section h2 {
  font-size: 30px;
}

.detail-timeline {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-timeline li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  padding: 15px;
  border-radius: 18px;
  background: #f7f2e8;
}

.detail-timeline time {
  color: var(--red);
  font-weight: 900;
}

.detail-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  padding: 24px;
}

.detail-aside strong {
  font-size: 22px;
}

.tour-detail {
  padding: 52px 6vw 80px;
}

.tour-hero {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.tour-gallery {
  display: grid;
  gap: 12px;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 4 / 2.8;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-thumbs img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  border-radius: 18px;
}

.tour-summary {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: white;
  box-shadow: 0 18px 40px rgba(24, 38, 31, 0.1);
}

.tour-summary h1 {
  margin: 14px 0 16px;
  font-size: clamp(34px, 4.5vw, 62px);
}

.tour-summary p {
  color: var(--muted);
  line-height: 1.85;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.summary-grid div {
  padding: 16px;
  border-radius: 18px;
  background: #f7f2e8;
}

.summary-grid small,
.summary-grid strong {
  display: block;
}

.summary-grid small {
  margin-bottom: 6px;
  color: var(--muted);
}

.summary-grid strong {
  color: var(--green);
}

.tour-content-grid,
.blog-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 330px;
  gap: 32px;
  align-items: start;
  max-width: 1180px;
  margin: 46px auto 0;
}

.travel-article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: 0 14px 34px rgba(24, 38, 31, 0.08);
}

.travel-article h2 {
  margin: 30px 0 12px;
  font-size: 30px;
}

.travel-article h2:first-child {
  margin-top: 0;
}

.travel-article p,
.travel-article li {
  color: var(--muted);
  line-height: 1.9;
}

.article-lead {
  font-size: 20px;
  color: #31423a !important;
}

.travel-article blockquote {
  margin: 30px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--red);
  border-radius: 18px;
  color: #31423a;
  background: #f7f2e8;
  font-size: 20px;
  font-weight: 800;
}

.booking-card {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #17201c;
  color: white;
  box-shadow: var(--shadow);
}

.booking-card span {
  color: #f0c783;
  font-weight: 900;
}

.booking-card strong {
  font-size: 24px;
  line-height: 1.25;
}

.booking-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.booking-card .btn.ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.blog-hero {
  position: relative;
  display: flex;
  min-height: 58vh;
  align-items: end;
  padding: 120px 6vw 54px;
  overflow: hidden;
  background: var(--cover);
  background-position: center;
  background-size: cover;
}

.blog-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 32, 28, 0.22), rgba(23, 32, 28, 0.88));
  content: "";
}

.blog-hero div {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: white;
}

.blog-hero span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #17201c;
  background: rgba(255, 255, 255, 0.84);
  font-weight: 900;
}

.blog-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
}

.blog-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.8;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.blog-meta span {
  margin: 0;
  color: white;
  background: rgba(255, 255, 255, 0.16);
}

.route-card[hidden] {
  display: none;
}

.route-card strong {
  display: block;
  font-size: 20px;
}

.route-card p {
  color: var(--muted);
  line-height: 1.7;
}

.route-card span {
  color: var(--red);
  font-weight: 800;
}

.day-plan {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
}

.day-plan h2,
.faq-section h2,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.16;
}

.day-plan p,
.faq-section p {
  color: var(--muted);
  line-height: 1.8;
}

.home-timeline {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-timeline li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.home-timeline time {
  color: var(--red);
  font-weight: 900;
}

.home-timeline span {
  font-weight: 800;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1fr);
  gap: 42px;
  background: #fffaf0;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.faq-list summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 900;
}

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

.cta-panel {
  margin: 72px 6vw;
  padding: 44px;
  border-radius: 32px;
  color: white;
  background:
    linear-gradient(120deg, rgba(23, 77, 59, 0.96), rgba(185, 67, 53, 0.86)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=80");
  background-position: center;
  background-size: cover;
}

.cta-panel p {
  margin: 0 0 10px;
  color: #f2d5a6;
  font-weight: 900;
}

.cta-panel h2 {
  max-width: 780px;
}

.cta-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cta-panel .btn.ghost {
  color: white;
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 980px) {
  .city-card-grid,
  .route-grid,
  .listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .city-card.card-large {
    grid-row: span 1;
  }

  .day-plan,
  .faq-section,
  .scenario-section,
  .tour-hero,
  .tour-content-grid,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .scenario-intro {
    min-height: auto;
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .city-card-grid,
  .route-grid,
  .listing-grid,
  .detail-page {
    grid-template-columns: 1fr;
  }

  .city-card-grid {
    grid-auto-rows: 230px;
  }

  .route-finder,
  .day-plan,
  .faq-section,
  .scenario-section {
    padding: 42px 18px;
  }

  .scenario-board {
    grid-template-columns: 1fr;
  }

  .tile-primary {
    grid-row: span 1;
  }

  .cta-panel {
    margin: 42px 18px;
    padding: 28px;
  }

  .detail-page {
    padding: 34px 18px;
  }

  .detail-aside {
    position: static;
  }

  .tour-detail {
    padding: 34px 18px 58px;
  }

  .booking-card {
    position: static;
  }

  .blog-hero {
    min-height: 54vh;
    padding: 90px 18px 40px;
  }
}

.directory-hero {
  display: flex;
  min-height: 430px;
  align-items: end;
  padding: 96px 6vw 48px;
  background:
    linear-gradient(90deg, rgba(246, 242, 233, 0.96), rgba(246, 242, 233, 0.74), rgba(246, 242, 233, 0.28)),
    var(--hero-img);
  background-position: center;
  background-size: cover;
}

.routes-hero {
  --hero-img: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80");
}

.guides-hero {
  --hero-img: url("https://images.unsplash.com/photo-1525648199074-cee30ba79a4a?auto=format&fit=crop&w=1600&q=80");
}

.directory-hero > div {
  max-width: 780px;
}

.directory-hero h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
}

.directory-hero p:not(.label) {
  max-width: 640px;
  color: #3f4f47;
  font-size: 19px;
  line-height: 1.8;
}

.directory-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.directory-shell,
.article-directory {
  padding: 64px 6vw;
}

.featured-route {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1fr);
  gap: 24px;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: white;
  box-shadow: var(--shadow);
}

.featured-route-image {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 26px;
}

.featured-route-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-route-image span {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #17201c;
  background: rgba(255, 255, 255, 0.86);
  font-weight: 900;
}

.featured-route-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.featured-route-copy h2 {
  margin: 12px 0;
  font-size: clamp(30px, 4vw, 52px);
}

.featured-route-copy p,
.directory-note p {
  color: var(--muted);
  line-height: 1.85;
}

.price-badge {
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  background: var(--red);
  font-weight: 900;
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.route-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(23, 77, 59, 0.1);
  font-weight: 800;
}

.tour-card-grid,
.article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tour-list-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: 0 14px 34px rgba(24, 38, 31, 0.08);
}

.tour-list-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.tour-list-card div {
  padding: 20px;
}

.card-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.card-line span,
.card-line strong {
  font-size: 13px;
}

.card-line span {
  color: var(--red);
  font-weight: 900;
}

.card-line strong {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(23, 77, 59, 0.1);
}

.tour-list-card h3 {
  margin: 14px 0 8px;
  font-size: 24px;
}

.tour-list-card p,
.tour-list-card small {
  color: var(--muted);
  line-height: 1.7;
}

.directory-note {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin: 0 6vw 72px;
  padding: 34px;
  border-radius: 30px;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--ink));
}

.directory-note p {
  color: rgba(255, 255, 255, 0.72);
}

.magazine-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1.2fr) minmax(300px, 0.8fr);
  gap: 20px;
  padding: 64px 6vw 24px;
}

.magazine-feature,
.magazine-side a,
.article-card-grid a {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: 0 14px 34px rgba(24, 38, 31, 0.08);
}

.magazine-feature {
  overflow: hidden;
}

.magazine-feature img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  display: block;
}

.magazine-feature div,
.magazine-side a,
.article-card-grid a {
  padding: 24px;
}

.magazine-feature span,
.magazine-side span,
.article-card-grid span {
  color: var(--red);
  font-weight: 900;
}

.magazine-feature h2 {
  margin: 12px 0;
  font-size: clamp(30px, 4vw, 52px);
}

.magazine-side {
  display: grid;
  gap: 20px;
}

.magazine-side h3,
.article-card-grid h3 {
  margin: 12px 0;
  font-size: 26px;
}

.magazine-feature p,
.magazine-side p,
.article-card-grid p {
  color: var(--muted);
  line-height: 1.8;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  gap: 24px;
  align-items: start;
  padding: 64px 6vw;
}

.contact-hero-card,
.need-card,
.contact-faq {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: white;
  box-shadow: var(--shadow);
}

.contact-hero-card {
  overflow: hidden;
  padding: 34px;
  color: white;
  background:
    linear-gradient(160deg, rgba(23, 77, 59, 0.95), rgba(23, 32, 28, 0.88)),
    url("https://images.unsplash.com/photo-1525648199074-cee30ba79a4a?auto=format&fit=crop&w=1000&q=80");
  background-position: center;
  background-size: cover;
}

.contact-hero-card .label {
  color: #f0c783;
}

.contact-hero-card h1 {
  font-size: clamp(34px, 5vw, 62px);
}

.contact-hero-card p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.85;
}

.contact-methods.polished a {
  display: grid;
  gap: 4px;
  padding: 16px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

.contact-methods.polished span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.need-card {
  padding: 28px;
}

.need-head {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.need-head span {
  color: var(--red);
  font-weight: 900;
}

.need-head strong {
  font-size: 30px;
  line-height: 1.2;
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.need-grid div {
  padding: 16px;
  border-radius: 18px;
  background: #f7f2e8;
}

.need-grid small,
.need-grid b {
  display: block;
}

.need-grid small {
  margin-bottom: 6px;
  color: var(--muted);
}

.contact-faq {
  grid-column: 1 / -1;
  padding: 28px;
}

.contact-faq details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.contact-faq summary {
  cursor: pointer;
  font-weight: 900;
}

.contact-faq p {
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 980px) {
  .featured-route,
  .magazine-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .tour-card-grid,
  .article-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .directory-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .directory-hero,
  .directory-shell,
  .article-directory,
  .magazine-layout,
  .contact-layout {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tour-card-grid,
  .article-card-grid,
  .need-grid {
    grid-template-columns: 1fr;
  }

  .directory-note {
    margin: 0 18px 42px;
    padding: 26px;
  }
}
