:root {
  --peak-blue: #163f68;
  --peak-blue-dark: #0d2a46;
  --mist-blue: #dcebf2;
  --forest: #315d4c;
  --rock: #5d6565;
  --gold: #d99a3d;
  --cream: #f6f3ec;
  --paper: #fffdf8;
  --ink: #16242c;
  --line: rgba(22, 63, 104, 0.15);
  --shadow: 0 24px 70px rgba(14, 42, 69, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", "Noto Sans SC", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.lang-zh {
  font-family: "DM Sans", "Noto Serif SC", serif;
}

.market-gateway {
  display: grid;
  min-height: 100vh;
  padding: 24px;
  background:
    linear-gradient(rgba(13, 42, 70, 0.5), rgba(13, 42, 70, 0.72)),
    url("assets/zhangjiajie-hero.png") center / cover;
  place-items: center;
}

.gateway-card {
  width: min(560px, 100%);
  padding: 58px 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(16px);
}

.gateway-card .brand-mark {
  width: 76px;
  height: auto;
  margin: 0 auto;
}

.gateway-card > p {
  margin: 18px 0 10px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gateway-card h1 {
  margin: 0;
  color: var(--peak-blue);
  font-family: "Noto Serif SC", serif;
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.25;
}

.gateway-card h1 span {
  font-size: 0.72em;
}

.gateway-actions {
  display: flex;
  margin-top: 34px;
  justify-content: center;
  gap: 12px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

svg {
  display: block;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: white;
  background: var(--peak-blue);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.scrolled {
  color: var(--peak-blue);
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 10px 35px rgba(13, 42, 70, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  width: min(1250px, calc(100% - 48px));
  min-height: 84px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 220px;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 56px;
  height: 45px;
  flex: 0 0 auto;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.08));
}

.site-header:not(.scrolled) .brand-mark path:first-of-type {
  stroke: white;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Noto Serif SC", serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 7px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.language-toggle {
  padding: 8px 3px;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.language-active {
  font-weight: 700;
}

.language-inactive {
  opacity: 0.62;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.button-small {
  min-height: 42px;
  padding: 0 17px;
}

.button-whatsapp {
  color: white;
  background: var(--forest);
}

.button-line {
  color: white;
  background: #06c755;
}

.line-wordmark {
  font-weight: 800;
  letter-spacing: -0.04em;
}

.button-primary {
  color: white;
  background: var(--gold);
  box-shadow: 0 12px 32px rgba(217, 154, 61, 0.28);
}

.button-glass {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 790px;
  color: white;
  background: var(--peak-blue-dark) url("assets/zhangjiajie-hero.png") center 55% / cover no-repeat;
  align-items: center;
  overflow: hidden;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 31, 49, 0.88) 0%, rgba(7, 31, 49, 0.57) 42%, rgba(7, 31, 49, 0.08) 75%),
    linear-gradient(0deg, rgba(7, 31, 49, 0.48), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
}

.hero-kicker {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-kicker > span:first-child {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(58px, 7vw, 100px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero p {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  margin-top: 37px;
  gap: 14px;
}

.hero-actions .button-line {
  display: none;
}

body.prefer-line .hero-actions .js-whatsapp {
  display: none;
}

body.prefer-line .hero-actions .button-line {
  display: inline-flex;
}

.hero .hero-response {
  display: flex;
  margin-top: 19px;
  align-items: center;
  gap: 9px;
  font-size: 12px;
}

.hero-response > span:first-child {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #78d5a3;
  box-shadow: 0 0 0 5px rgba(120, 213, 163, 0.15);
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  color: var(--peak-blue);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  min-height: 118px;
  align-items: center;
  grid-template-columns: repeat(5, 1fr);
}

.trust-grid article {
  display: flex;
  min-height: 64px;
  padding: 0 20px;
  align-items: center;
  gap: 13px;
  border-right: 1px solid var(--line);
}

.trust-grid article:first-child {
  padding-left: 0;
}

.trust-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-grid svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 13px;
}

.trust-grid span {
  margin-top: 5px;
  color: var(--rock);
  font-size: 10px;
  line-height: 1.35;
}

.market-section {
  padding: 72px 0 0;
  background:
    linear-gradient(180deg, rgba(220, 235, 242, 0.35), transparent 80%),
    var(--paper);
}

.market-panel {
  display: grid;
  padding: 34px;
  align-items: center;
  gap: 34px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at 9% 20%, rgba(217, 154, 61, 0.13), transparent 28%),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 55px rgba(13, 42, 70, 0.08);
  grid-template-columns: 0.92fr 1.08fr;
}

.market-panel h2 {
  max-width: 520px;
  margin: 12px 0 14px;
  color: var(--peak-blue-dark);
  font-family: "Noto Serif SC", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.17;
  letter-spacing: -0.03em;
}

.market-panel p {
  max-width: 560px;
  margin: 0;
  color: var(--rock);
  font-size: 14px;
  line-height: 1.75;
}

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

.market-cards article {
  min-height: 154px;
  padding: 22px;
  border: 1px solid rgba(22, 63, 104, 0.12);
  border-radius: 18px;
  background: white;
}

.market-cards strong {
  display: block;
  color: var(--peak-blue);
  font-family: "Noto Serif SC", serif;
  font-size: 20px;
}

.market-cards span {
  display: block;
  margin-top: 12px;
  color: var(--rock);
  font-size: 12px;
  line-height: 1.6;
}

.seo-planning-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(217, 154, 61, 0.1), transparent 28%),
    linear-gradient(180deg, var(--paper), #f8fbfb);
}

.planning-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
}

.planning-card,
.itinerary-stack article,
.attraction-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 55px rgba(13, 42, 70, 0.07);
}

.planning-card-feature {
  display: flex;
  min-height: 430px;
  padding: 42px;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(0deg, rgba(13, 42, 70, 0.88), rgba(13, 42, 70, 0.2)),
    url("assets/zhangjiajie-hero.png") 46% 54% / 1080px auto;
  color: white;
  overflow: hidden;
}

.planning-card span,
.planning-card h3,
.planning-card p {
  position: relative;
  z-index: 1;
}

.planning-card > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.planning-card h3 {
  max-width: 650px;
  margin: 15px 0 16px;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(30px, 3.4vw, 47px);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.planning-card p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.75;
}

.planning-card .text-link {
  width: min(330px, 100%);
  color: white;
}

.itinerary-stack {
  display: grid;
  gap: 14px;
}

.itinerary-stack article {
  display: grid;
  min-height: 134px;
  padding: 26px 28px;
  align-content: center;
  border-radius: 18px;
}

.itinerary-stack strong {
  color: var(--peak-blue);
  font-family: "Noto Serif SC", serif;
  font-size: 22px;
  font-weight: 600;
}

.itinerary-stack p,
.attraction-grid p {
  margin: 10px 0 0;
  color: var(--rock);
  font-size: 13px;
  line-height: 1.7;
}

.attraction-grid {
  display: grid;
  margin-top: 24px;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.attraction-grid article {
  min-height: 230px;
  padding: 28px;
  border-radius: 18px;
}

.attraction-grid span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 26px;
  color: var(--peak-blue);
  border-radius: 50%;
  background: var(--mist-blue);
  font-size: 11px;
  font-weight: 800;
  place-items: center;
}

.attraction-grid h3 {
  margin: 0;
  color: var(--peak-blue-dark);
  font-family: "Noto Serif SC", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
}

.section {
  padding: 120px 0;
}

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

.split-heading {
  display: grid;
  align-items: end;
  gap: 60px;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
}

.section-heading h2 {
  margin: 15px 0 0;
  color: var(--peak-blue-dark);
  font-family: "Noto Serif SC", serif;
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--rock);
  font-size: 16px;
  line-height: 1.75;
}

.eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #a5d0bd;
}

.tours-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(220, 235, 242, 0.6), transparent 26%),
    var(--paper);
}

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

.tour-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 20px 55px rgba(13, 42, 70, 0.07);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.tour-card-featured {
  transform: translateY(-18px);
}

.tour-card-featured:hover {
  transform: translateY(-25px);
}

.tour-image {
  position: relative;
  height: 255px;
  background-color: var(--peak-blue);
  background-image: linear-gradient(0deg, rgba(12, 43, 70, 0.35), transparent 55%), url("assets/zhangjiajie-hero.png");
  background-repeat: no-repeat;
  background-size: auto, 1150px auto;
}

.tour-image-one {
  background-position: center, 25% 53%;
}

.tour-image-two {
  background-position: center, 57% 47%;
}

.tour-image-three {
  background-position: center, 82% 52%;
  filter: saturate(0.88) sepia(0.08);
}

.tour-duration,
.tour-badge {
  position: absolute;
  top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.tour-duration {
  left: 18px;
  color: var(--peak-blue);
  background: rgba(255, 255, 255, 0.93);
}

.tour-badge {
  right: 18px;
  color: white;
  background: var(--gold);
}

.tour-body {
  padding: 28px 28px 25px;
}

.tour-type {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tour-body h3 {
  margin: 0;
  color: var(--peak-blue);
  font-family: "Noto Serif SC", serif;
  font-size: 25px;
  font-weight: 600;
}

.tour-body > p:not(.tour-type) {
  min-height: 77px;
  margin: 15px 0;
  color: var(--rock);
  font-size: 14px;
  line-height: 1.75;
}

.tour-meta {
  display: flex;
  margin: 20px 0;
  gap: 8px;
  flex-wrap: wrap;
}

.tour-meta span {
  padding: 7px 10px;
  color: var(--forest);
  border-radius: 5px;
  background: #edf4f0;
  font-size: 10px;
  font-weight: 600;
}

.local-note {
  min-height: 128px;
  padding: 18px;
  border-left: 2px solid var(--gold);
  background: var(--cream);
}

.local-note strong {
  color: var(--peak-blue);
  font-size: 11px;
}

.local-note p {
  margin: 8px 0 0;
  color: var(--rock);
  font-size: 12px;
  line-height: 1.6;
}

.tour-link,
.text-link {
  display: flex;
  margin-top: 23px;
  align-items: center;
  justify-content: space-between;
  color: var(--peak-blue);
  font-size: 13px;
  font-weight: 700;
}

.tour-link span:last-child,
.text-link span:last-child {
  color: var(--gold);
  font-size: 20px;
}

.local-section {
  color: white;
  background:
    radial-gradient(circle at 10% 20%, rgba(98, 146, 127, 0.22), transparent 28%),
    var(--peak-blue-dark);
}

.local-layout {
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: 1fr 1fr;
}

.local-visual {
  position: relative;
  min-height: 620px;
}

.local-photo {
  position: absolute;
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(220, 235, 242, 0.16), rgba(49, 93, 76, 0.35)),
    repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 20px);
  place-items: center;
  overflow: hidden;
}

.photo-main {
  top: 0;
  right: 70px;
  bottom: 70px;
  left: 0;
  border-radius: 180px 180px 20px 20px;
}

.photo-detail {
  right: 0;
  bottom: 0;
  width: 230px;
  height: 250px;
  border: 7px solid var(--peak-blue-dark);
  border-radius: 18px;
  background-color: var(--forest);
}

.asset-placeholder {
  max-width: 290px;
  padding: 30px;
  text-align: center;
}

.asset-placeholder span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 15px;
  color: var(--peak-blue-dark);
  border-radius: 50%;
  background: var(--gold);
  font-size: 11px;
  font-weight: 700;
  place-items: center;
}

.asset-placeholder strong,
.asset-placeholder small {
  display: block;
}

.asset-placeholder strong {
  font-family: "Noto Serif SC", serif;
  font-size: 20px;
}

.asset-placeholder small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.5;
}

.asset-placeholder.compact {
  padding: 18px;
}

.asset-placeholder.compact strong {
  font-size: 15px;
}

.local-stamp {
  position: absolute;
  top: 42px;
  right: 15px;
  display: flex;
  width: 130px;
  height: 130px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--peak-blue-dark);
  border: 6px solid var(--peak-blue-dark);
  border-radius: 50%;
  background: var(--gold);
  transform: rotate(7deg);
}

.local-stamp span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.local-stamp strong {
  margin: 5px 0;
  font-family: "Noto Serif SC", serif;
  font-size: 22px;
}

.local-copy h2 {
  margin: 17px 0 24px;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.local-lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.8;
}

.local-points {
  margin-top: 37px;
}

.local-points article {
  display: grid;
  padding: 20px 0;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  grid-template-columns: 36px 1fr;
}

.local-points article > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.local-points h3,
.local-points p {
  margin: 0;
}

.local-points h3 {
  font-size: 15px;
}

.local-points p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.local-section .text-link {
  width: 230px;
  color: white;
}

.centered {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered > p {
  margin: 20px auto 0;
}

.review-section {
  background: var(--cream);
}

.review-empty {
  display: grid;
  max-width: 880px;
  min-height: 180px;
  margin: 0 auto;
  padding: 35px 42px;
  align-items: center;
  gap: 25px;
  border: 1px dashed rgba(22, 63, 104, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
  grid-template-columns: 60px 1fr auto;
}

.review-quote {
  height: 70px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 90px;
  line-height: 1;
}

.review-empty strong {
  color: var(--peak-blue);
  font-family: "Noto Serif SC", serif;
  font-size: 20px;
}

.review-empty p {
  margin: 9px 0 0;
  color: var(--rock);
  font-size: 13px;
  line-height: 1.6;
}

.verified-pill {
  padding: 8px 12px;
  color: var(--forest);
  border-radius: 99px;
  background: #e7f0eb;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.guide-section {
  background: white;
}

.guide-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  grid-template-rows: repeat(2, 230px);
}

.guide-card {
  position: relative;
  display: flex;
  padding: 34px;
  color: white;
  border-radius: 18px;
  background: var(--peak-blue);
  align-items: flex-end;
  overflow: hidden;
}

.guide-card::after {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 190px;
  height: 190px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.guide-card:nth-child(3) {
  background: var(--forest);
}

.guide-card:nth-child(4) {
  color: var(--peak-blue-dark);
  background: var(--mist-blue);
}

.guide-card-large {
  background:
    linear-gradient(0deg, rgba(13, 42, 70, 0.85), rgba(13, 42, 70, 0.05)),
    url("assets/zhangjiajie-hero.png") 32% 55% / 1100px auto;
  grid-row: 1 / 3;
}

.guide-index {
  position: absolute;
  top: 25px;
  left: 28px;
  font-size: 11px;
  font-weight: 700;
}

.guide-card span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guide-card h3 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

.guide-card-large h3 {
  max-width: 520px;
  font-size: 36px;
}

.guide-card p {
  max-width: 520px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

.faq-section {
  background:
    linear-gradient(180deg, white, var(--cream));
}

.faq-layout {
  display: grid;
  align-items: start;
  gap: 70px;
  grid-template-columns: 0.84fr 1.16fr;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  margin: 15px 0 18px;
  color: var(--peak-blue-dark);
  font-family: "Noto Serif SC", serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.faq-intro p {
  margin: 0 0 28px;
  color: var(--rock);
  font-size: 15px;
  line-height: 1.8;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(13, 42, 70, 0.06);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 82px;
  padding: 25px 64px 25px 28px;
  align-items: center;
  color: var(--peak-blue);
  cursor: pointer;
  font-family: "Noto Serif SC", serif;
  font-size: 21px;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  right: 28px;
  width: 28px;
  height: 28px;
  content: "+";
  color: white;
  border-radius: 50%;
  background: var(--gold);
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
}

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

.faq-list p {
  margin: -5px 28px 26px;
  color: var(--rock);
  font-size: 14px;
  line-height: 1.8;
}

.contact-section {
  color: white;
  background: var(--peak-blue);
}

.contact-layout {
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-copy h2 {
  margin: 17px 0 24px;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.75;
}

.contact-facts {
  margin-top: 38px;
}

.contact-facts div {
  display: flex;
  padding: 13px 0;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-facts span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
}

.contact-facts p {
  margin: 0;
  font-size: 13px;
}

.trip-form {
  padding: 42px;
  color: var(--ink);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 25px 70px rgba(5, 25, 40, 0.25);
}

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

.trip-form label {
  display: block;
  margin-bottom: 18px;
}

.trip-form label > span {
  display: block;
  margin-bottom: 8px;
  color: var(--peak-blue);
  font-size: 11px;
  font-weight: 700;
}

.trip-form input,
.trip-form select,
.trip-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  border: 1px solid rgba(22, 63, 104, 0.18);
  border-radius: 8px;
  outline: none;
  background: #fbfcfc;
  font-size: 13px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.trip-form input,
.trip-form select {
  height: 50px;
}

.trip-form textarea {
  resize: vertical;
}

.channel-choice {
  display: flex;
  margin: 2px 0 20px;
  padding: 0;
  gap: 10px;
  border: 0;
}

.channel-choice legend {
  margin-bottom: 9px;
  color: var(--peak-blue);
  font-size: 11px;
  font-weight: 700;
}

.channel-choice label {
  display: flex;
  min-width: 130px;
  min-height: 44px;
  margin: 0;
  padding: 0 14px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(22, 63, 104, 0.18);
  border-radius: 8px;
  cursor: pointer;
}

.channel-choice input {
  width: 16px;
  height: 16px;
  padding: 0;
  accent-color: var(--forest);
}

.channel-choice label > span {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
}

.trip-form input:focus,
.trip-form select:focus,
.trip-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 154, 61, 0.13);
}

.form-submit {
  width: 100%;
  justify-content: space-between;
}

.form-privacy {
  margin: 14px 0 0;
  color: var(--rock);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  padding-top: 70px;
  color: white;
  background: #081e30;
}

.footer-main {
  display: grid;
  padding-bottom: 60px;
  gap: 55px;
  grid-template-columns: 1.4fr 0.6fr 1fr 0.8fr;
}

.brand-footer {
  color: white;
}

.footer-brand p {
  max-width: 340px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 13px;
}

.footer-column strong {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  padding: 25px 0;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 52px;
  padding: 0 18px;
  align-items: center;
  gap: 9px;
  color: white;
  border: 3px solid white;
  border-radius: 999px;
  background: #1f9d5b;
  box-shadow: 0 12px 30px rgba(8, 30, 48, 0.25);
  font-size: 12px;
  font-weight: 700;
}

.floating-whatsapp svg {
  width: 20px;
  fill: currentColor;
}

.floating-line {
  position: fixed;
  z-index: 39;
  right: 22px;
  bottom: 84px;
  display: none;
  width: 55px;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  color: white;
  border: 3px solid white;
  border-radius: 50%;
  background: #06c755;
  box-shadow: 0 12px 30px rgba(8, 30, 48, 0.25);
  font-size: 11px;
}

body.prefer-line .floating-whatsapp {
  display: none;
}

body.prefer-line .floating-line {
  display: flex;
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.open {
    display: flex;
    padding: 20px 24px 28px;
    flex-direction: column;
    gap: 18px;
    color: var(--peak-blue);
    background: var(--paper);
  }

  .trust-grid {
    padding: 22px 0;
    gap: 15px 0;
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-grid article {
    padding: 10px 20px;
  }

  .trust-grid article:nth-child(3) {
    border-right: 0;
  }

  .market-panel {
    grid-template-columns: 1fr;
  }

  .planning-layout,
  .faq-layout {
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

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

  .local-layout,
  .contact-layout {
    gap: 55px;
  }
}

@media (max-width: 820px) {
  .container,
  .header-inner {
    width: min(100% - 32px, 680px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 46px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .header-actions .button-whatsapp {
    display: none;
  }

  .header-actions .button-line {
    display: none;
  }

  .hero {
    min-height: 720px;
    background-position: 58% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(7, 31, 49, 0.86), rgba(7, 31, 49, 0.33)), linear-gradient(0deg, rgba(7, 31, 49, 0.55), transparent 50%);
  }

  .hero-content {
    padding-top: 60px;
  }

  .hero h1 {
    font-size: clamp(49px, 13vw, 76px);
  }

  .hero p {
    max-width: 520px;
    font-size: 16px;
  }

  .hero-caption {
    display: none;
  }

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

  .trust-grid article:nth-child(2),
  .trust-grid article:nth-child(4) {
    border-right: 0;
  }

  .trust-grid article:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .trust-grid article:last-child {
    grid-column: 1 / 3;
  }

  .market-cards {
    grid-template-columns: 1fr;
  }

  .market-cards article {
    min-height: auto;
  }

  .planning-card-feature {
    min-height: 390px;
    background-size: cover;
  }

  .section {
    padding: 85px 0;
  }

  .split-heading,
  .local-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading h2 br {
    display: none;
  }

  .tour-grid {
    max-width: 560px;
    margin: 0 auto;
    grid-template-columns: 1fr;
  }

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

  .tour-card-featured {
    transform: none;
  }

  .tour-card-featured:hover {
    transform: translateY(-7px);
  }

  .tour-image {
    background-size: auto, cover;
  }

  .local-layout {
    gap: 60px;
  }

  .local-visual {
    min-height: 520px;
  }

  .guide-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 220px;
  }

  .guide-card-large {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .guide-card:nth-child(4) {
    grid-column: 1 / 3;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .container,
  .header-inner {
    width: calc(100% - 32px);
  }

  .language-toggle {
    font-size: 10px;
  }

  .hero {
    min-height: 680px;
    align-items: flex-end;
    background-position: 61% center;
  }

  .hero-content {
    padding: 115px 0 68px;
  }

  .hero-kicker {
    font-size: 9px;
  }

  .hero h1 {
    font-size: 52px;
    line-height: 1.02;
  }

  .hero p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 28px;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero .hero-response {
    font-size: 10px;
  }

  .trust-grid {
    display: block;
    padding: 14px 0;
  }

  .trust-grid article,
  .trust-grid article:nth-child(3) {
    min-height: 74px;
    padding: 10px 2px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

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

  .split-heading {
    gap: 20px;
  }

  .section-heading h2,
  .local-copy h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: 37px;
  }

  .planning-card-feature {
    min-height: 420px;
    padding: 30px 24px;
  }

  .itinerary-stack article,
  .attraction-grid article {
    min-height: auto;
    padding: 24px;
  }

  .tour-image {
    height: 220px;
  }

  .tour-body {
    padding: 24px 22px;
  }

  .local-visual {
    min-height: 440px;
  }

  .photo-main {
    right: 38px;
    bottom: 45px;
  }

  .photo-detail {
    width: 155px;
    height: 180px;
  }

  .local-stamp {
    top: 24px;
    width: 105px;
    height: 105px;
  }

  .local-stamp strong {
    font-size: 18px;
  }

  .review-empty {
    padding: 28px;
    grid-template-columns: 1fr;
  }

  .review-quote {
    display: none;
  }

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

  .guide-grid {
    display: block;
  }

  .guide-card {
    min-height: 230px;
    margin-bottom: 14px;
  }

  .guide-card-large {
    min-height: 390px;
  }

  .guide-card-large h3 {
    font-size: 30px;
  }

  .faq-list summary {
    min-height: 74px;
    padding: 22px 58px 22px 22px;
    font-size: 18px;
  }

  .faq-list summary::after {
    right: 22px;
  }

  .faq-list p {
    margin-right: 22px;
    margin-left: 22px;
  }

  .trip-form {
    padding: 26px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    width: 55px;
    min-height: 55px;
    padding: 0;
    justify-content: center;
  }
}
