:root {
  --ink: #0c0d0f;
  --ink-2: #15171a;
  --paper: #f4f1ea;
  --white: #fff;
  --gold: #b69a65;
  --gold-light: #d4c19b;
  --muted: #6d6d6b;
  --line: rgba(12, 13, 15, .12);
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .14);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Noto Serif SC", "Songti SC", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.12;
}
h1 { font-size: clamp(44px, 6vw, 82px); margin-bottom: 24px; }
h2 { font-size: clamp(34px, 4vw, 56px); margin-bottom: 20px; }
h3 { font-size: 22px; line-height: 1.3; }
.lede { max-width: 680px; color: #696a69; font-size: 18px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--gold-light); }
.button.dark { background: var(--ink); color: var(--white); }
.button.outline { border-color: rgba(255, 255, 255, .4); background: transparent; color: var(--white); }
.button.outline-dark { border-color: var(--line); background: transparent; color: var(--ink); }

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
}
.nav-wrap {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.brand {
  width: 248px;
  height: 62px;
  display: block;
  overflow: hidden;
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  background: #f4f1ea;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 650; }
.main-nav a:not(.button) { opacity: .9; }
.main-nav a:not(.button):hover { color: var(--gold-light); opacity: 1; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: transparent;
  color: white;
}

.hero {
  position: relative;
  min-height: 850px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,8,10,.96) 0%, rgba(7,8,10,.78) 43%, rgba(7,8,10,.28) 76%, rgba(7,8,10,.5) 100%),
              linear-gradient(0deg, rgba(7,8,10,.72) 0%, transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 58%);
  padding-top: 70px;
}
.hero .subhead { max-width: 630px; color: rgba(255,255,255,.78); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 48px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 20px 28px; color: rgba(255,255,255,.82); font-size: 14px; }
.hero-points span::before { content: "✓"; color: var(--gold); margin-right: 8px; font-weight: 900; }

.quote-shell {
  position: relative;
  z-index: 5;
  margin-top: -94px;
}
.quote-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.quote-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 22px; }
.quote-head h2 { margin: 0; font-family: inherit; font-size: 25px; font-weight: 800; letter-spacing: -.02em; }
.quote-head p { margin: 0; color: var(--muted); font-size: 14px; }
.quote-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: end; }
.quote-grid .button { width: 100%; }
.field label { display: block; margin: 0 0 7px; font-size: 12px; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid #dad8d2;
  border-radius: 12px;
  background: #faf9f6;
  color: var(--ink);
  outline: none;
}
.field textarea { min-height: 120px; padding-top: 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(182,154,101,.15); }
.form-honey { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.form-contact-note { margin: 0 0 10px; color: var(--muted); font-size: 13px; }
.form-contact-error { min-height: 22px; margin: 10px 0 0; color: #a33c2f; font-size: 13px; font-weight: 750; }
.thank-you-card { max-width: 820px; text-align: center; }
.thank-you-card .eyebrow { justify-content: center; }
.thank-you-card .lede { margin-inline: auto; }
.thank-you-card .hero-actions { justify-content: center; }

.trustbar { padding: 52px 0 34px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.trust-item { padding: 23px; background: var(--paper); }
.trust-item strong { display: block; margin-bottom: 4px; font-size: 16px; }
.trust-item span { color: var(--muted); font-size: 13px; }

.section { padding: 110px 0; }
.section.white { background: var(--white); }
.section.dark { background: var(--ink); color: var(--white); }
.section.dark .lede { color: rgba(255,255,255,.62); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 52px; }
.section-head > div:first-child { max-width: 760px; }
.section-head h2 { margin-bottom: 0; }
.text-link { color: var(--gold); font-size: 14px; font-weight: 800; white-space: nowrap; }
.text-link::after { content: " →"; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #faf9f6;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 22px 55px rgba(12,13,15,.08); }
.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-size: 21px;
}
.service-card p { color: var(--muted); }

.fleet-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 18px; }
.fleet-card {
  position: relative;
  min-height: 530px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #232427;
}
.fleet-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.fleet-card:hover img { transform: scale(1.035); }
.fleet-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,8,10,.95) 0%, rgba(7,8,10,.08) 65%); }
.fleet-info { position: absolute; z-index: 2; bottom: 0; left: 0; width: 100%; padding: 30px; }
.fleet-info h3 { margin-bottom: 8px; font-size: 25px; }
.fleet-info p { margin-bottom: 0; color: rgba(255,255,255,.68); font-size: 14px; }
.fleet-meta { display: flex; gap: 15px; margin-top: 15px; color: var(--gold-light); font-size: 12px; }
.fleet-note { margin-top: 20px; color: rgba(255,255,255,.54); font-size: 12px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-media { position: relative; min-height: 640px; border-radius: var(--radius); overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.benefit-list { display: grid; gap: 18px; margin: 35px 0; }
.benefit { display: grid; grid-template-columns: 42px 1fr; gap: 14px; }
.benefit b { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); }
.benefit h3 { margin-bottom: 4px; font-size: 17px; }
.benefit p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.airport-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.airport-card { padding: 34px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); background: var(--ink-2); }
.airport-code { display: block; color: var(--gold); font: 500 54px/1 Georgia, serif; }
.airport-card h3 { margin: 15px 0 12px; }
.airport-card p { color: rgba(255,255,255,.58); }

.transfer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.transfer-card { display: grid; grid-template-columns: 74px 1fr; gap: 22px; min-height: 230px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #faf9f6; }
.transfer-code { width: 68px; height: 68px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--gold-light); font: 700 15px/1 Inter, sans-serif; letter-spacing: .08em; }
.transfer-card small { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.transfer-card h3 { margin: 7px 0 10px; }
.transfer-card p { color: var(--muted); font-size: 14px; }
.transfer-card a { color: var(--gold); font-size: 13px; font-weight: 800; }
.transfer-card a::after { content: " →"; }
.wechat-booking-section { background: #e9e3d7; }
.wechat-booking { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: center; }
.booking-checklist { display: flex; flex-wrap: wrap; gap: 9px; margin: 28px 0; }
.booking-checklist span { padding: 9px 13px; border: 1px solid rgba(12,13,15,.13); border-radius: 999px; background: rgba(255,255,255,.55); font-size: 12px; font-weight: 700; }
.wechat-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.copy-status { min-height: 24px; margin-top: 12px; color: #52735b; font-size: 13px; font-weight: 800; }
.wechat-qr-panel { padding: 28px; border-radius: var(--radius); background: var(--ink); color: white; text-align: center; box-shadow: var(--shadow); }
.wechat-qr-panel img {
  width: min(100%, 300px);
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 auto 18px;
  padding: 10px;
  border-radius: 16px;
  background: white;
  object-fit: contain;
}
.wechat-qr-panel strong, .wechat-qr-panel span { display: block; }
.wechat-qr-panel strong { font-size: 19px; }
.wechat-qr-panel span { margin-top: 5px; color: rgba(255,255,255,.6); font-size: 12px; }

.route-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.route-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 25px;
  border-radius: var(--radius);
  color: var(--white);
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
.route-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,8,10,.9), rgba(7,8,10,.08)); }
.route-card > * { position: relative; }
.route-card small { color: var(--gold-light); text-transform: uppercase; letter-spacing: .12em; }
.route-card h3 { margin: 8px 0 0; }

.attraction-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.attraction-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
}
.attraction-card:hover { transform: translateY(-5px); box-shadow: 0 22px 55px rgba(12,13,15,.1); }
.attraction-card img { width: 100%; height: 245px; object-fit: cover; }
.attraction-card > div { padding: 25px; }
.attraction-card small, .tour-route-card > span { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.attraction-card h3 { margin: 7px 0 9px; }
.attraction-card p { margin: 0; color: var(--muted); font-size: 14px; }
.tour-route-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.tour-route-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.tour-route-card h3 { margin: 10px 0 14px; }
.tour-route-card p { color: var(--muted); }
.tour-route-card .tour-stops { color: var(--ink); font-weight: 750; }
.route-disclaimer { margin: 28px 0 0; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.route-disclaimer.on-dark { border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.58); }

.private-experiences { background: #e9e3d7; }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.experience-card { overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: 0 14px 36px rgba(12,13,15,.06); }
.experience-card img { width: 100%; height: 220px; object-fit: cover; }
.experience-card > div { padding: 25px; }
.experience-card small { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.experience-card h3 { margin: 8px 0 10px; font-size: 20px; }
.experience-card p { min-height: 69px; color: var(--muted); font-size: 13px; }
.experience-card a { color: var(--gold); font-size: 13px; font-weight: 800; }
.experience-card a::after { content: " →"; }
.experience-wechat { display: grid; grid-template-columns: 1fr 190px; gap: 40px; align-items: center; margin-top: 34px; padding: 34px; border-radius: var(--radius); background: var(--white); }
.experience-wechat h3 { margin-bottom: 10px; font-size: 26px; }
.experience-wechat p { color: var(--muted); }
.experience-wechat img { width: 190px; height: auto; aspect-ratio: 1 / 1; padding: 8px; border: 1px solid var(--line); border-radius: 16px; object-fit: contain; }

.hotel-overview { position: relative; z-index: 3; margin-top: -1px; background: var(--ink); color: var(--white); }
.hotel-stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.12); }
.hotel-stats > div { padding: 30px 24px; border-right: 1px solid rgba(255,255,255,.12); }
.hotel-stats > div:last-child { border-right: 0; }
.hotel-stats strong { display: block; color: var(--gold-light); font: 500 30px/1.15 "Noto Serif SC", Georgia, serif; }
.hotel-stats span { display: block; margin-top: 8px; color: rgba(255,255,255,.58); font-size: 12px; }
.hotel-heading { margin-bottom: 30px; }
.hotel-tools { display: grid; grid-template-columns: 1.5fr 1fr; gap: 14px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #faf9f6; }
.hotel-tools label span { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 800; }
.hotel-tools input, .hotel-tools select { width: 100%; min-height: 54px; padding: 0 15px; border: 1px solid #d9d6ce; border-radius: 12px; background: white; color: var(--ink); }
.hotel-results-bar { display: flex; justify-content: space-between; gap: 20px; margin: 30px 0 16px; color: var(--muted); font-size: 13px; }
.hotel-results-bar strong { color: var(--ink); font-size: 15px; }
.hotel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.hotel-card { display: grid; grid-template-columns: 58px 1fr auto; gap: 18px; align-items: start; padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.hotel-card[hidden] { display: none; }
.hotel-index { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--gold-light); font-size: 12px; font-weight: 800; }
.hotel-copy span { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hotel-copy h3 { margin: 5px 0 8px; font-size: 18px; }
.hotel-copy p { margin: 0; color: var(--muted); font-size: 13px; }
.hotel-actions { min-width: 116px; text-align: right; }
.hotel-actions a { display: block; margin-bottom: 8px; color: var(--gold); font-size: 12px; font-weight: 800; }
.hotel-pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 30px; }
.hotel-pagination button { min-width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--ink); cursor: pointer; }
.hotel-pagination button[aria-current="page"] { border-color: var(--ink); background: var(--ink); color: white; }
.hotel-empty { padding: 60px 25px; border: 1px dashed var(--line); border-radius: var(--radius); text-align: center; }
.hotel-empty p { color: var(--muted); }
.hotel-note { margin-top: 45px; padding: 28px; border-left: 3px solid var(--gold); background: #f6f3ec; }
.hotel-note h3 { margin-bottom: 8px; font-size: 18px; }
.hotel-note p { margin: 0; color: var(--muted); font-size: 13px; }
.hotel-transfer { align-items: center; }
.hotel-transfer-image { min-height: 420px; border-radius: var(--radius); overflow: hidden; }
.hotel-transfer-image img { width: 100%; height: 420px; object-fit: cover; }

.woodbury-overview { background: var(--ink); color: white; }
.woodbury-facts { display: grid; grid-template-columns: repeat(4, 1fr); }
.woodbury-facts > div { padding: 30px 24px; border-right: 1px solid rgba(255,255,255,.12); }
.woodbury-facts > div:last-child { border-right: 0; }
.woodbury-facts strong { display: block; color: var(--gold-light); font: 500 25px/1.2 "Noto Serif SC", Georgia, serif; }
.woodbury-facts span { display: block; margin-top: 7px; color: rgba(255,255,255,.58); font-size: 12px; }
.woodbury-plan-section { background: #e9e3d7; }
.woodbury-info-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: start; }
.official-links { padding: 30px; border-radius: var(--radius); background: var(--ink); color: white; }
.official-links h3 { color: var(--gold-light); }
.official-links a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 14px; }
.official-links a::after { content: " ↗"; color: var(--gold); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: steps; }
.step { padding-top: 26px; border-top: 1px solid var(--line); counter-increment: steps; }
.step::before { content: "0" counter(steps); display: block; margin-bottom: 30px; color: var(--gold); font-size: 13px; font-weight: 800; }
.step p { color: var(--muted); }

.faq { max-width: 880px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 24px 46px 24px 0; list-style: none; font-weight: 800; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 5px; font-size: 24px; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 720px; padding-bottom: 24px; color: var(--muted); }

.cta {
  padding: 96px 0;
  color: var(--white);
  background: var(--ink);
}
.cta-wrap { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.cta h2 { max-width: 780px; margin-bottom: 10px; }
.cta p { color: rgba(255,255,255,.62); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.site-footer { padding: 70px 0 25px; color: rgba(255,255,255,.72); background: #07080a; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 50px; }
.service-network-links { display: flex; flex-wrap: wrap; gap: 12px 22px; align-items: center; margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); }
.service-network-links div { margin-right: auto; max-width: 560px; }
.service-network-links strong, .service-network-links span { display: block; }
.service-network-links strong { color: #fff; font-size: 13px; }
.service-network-links span { color: #9ca3af; font-size: 11px; margin-top: 4px; }
.service-network-links > a { color: #d8b36a; font-size: 12px; font-weight: 700; }
.service-network-grid { grid-template-columns: repeat(3, 1fr); }
.service-network-grid .content-card { display: flex; flex-direction: column; }
.service-network-grid .content-card small { color: #8a6a31; letter-spacing: .12em; font-weight: 800; }
.service-network-grid .content-card .text-link { margin-top: auto; padding-top: 16px; }
.footer-logo-frame {
  width: 290px;
  height: 82px;
  display: block;
  overflow: hidden;
  padding: 7px 10px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: var(--paper);
}
.footer-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-brand p { max-width: 380px; font-size: 14px; }
.footer-col h3 { color: var(--white); font-size: 14px; }
.footer-col a { display: block; margin: 8px 0; font-size: 14px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
}

.page-hero { min-height: 510px; display: flex; align-items: end; padding: 160px 0 80px; color: white; background: var(--ink); position: relative; overflow: hidden; }
.page-hero .page-bg { position: absolute; inset: 0; opacity: .42; }
.page-hero .page-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .page-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,8,10,.9), rgba(7,8,10,.2)); }
.page-hero .container { position: relative; }
.page-hero h1 { max-width: 850px; font-size: clamp(44px, 6vw, 72px); }
.page-hero p { max-width: 650px; color: rgba(255,255,255,.72); font-size: 18px; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.content-card { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.content-card p { color: var(--muted); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; }
.contact-list { display: grid; gap: 15px; }
.contact-item { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-item small { display: block; color: var(--muted); }
.contact-item strong { font-size: 19px; }
.wechat-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #faf9f6;
}
.wechat-card img {
  width: 150px;
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 7px;
  border-radius: 12px;
  background: white;
  object-fit: contain;
}
.wechat-card small { display: block; color: var(--gold); font-weight: 800; }
.wechat-card strong { display: block; margin: 5px 0; font-size: 18px; }
.wechat-card p { margin: 0; color: var(--muted); font-size: 13px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-grid .full { grid-column: 1 / -1; }
.article-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.article-meta-bar strong { color: var(--ink); }
.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 54px;
  align-items: start;
}
.blog-article {
  max-width: 820px;
  font-size: 17px;
  line-height: 1.9;
}
.blog-article > p:first-child {
  font-size: 21px;
  line-height: 1.75;
  color: #343536;
}
.blog-article h2 {
  margin: 54px 0 18px;
  font-size: clamp(28px, 4vw, 40px);
}
.blog-article h3 {
  margin: 32px 0 12px;
  font-size: 23px;
}
.blog-article p, .blog-article li { color: #4e4f50; }
.blog-article ul, .blog-article ol { padding-left: 1.35em; }
.blog-article li { margin-bottom: 10px; }
.article-note {
  margin: 30px 0;
  padding: 24px 26px;
  border-left: 3px solid var(--gold);
  border-radius: 0 14px 14px 0;
  background: #f3efe6;
}
.article-note strong { display: block; margin-bottom: 5px; color: var(--ink); }
.route-day {
  margin: 22px 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #faf9f6;
}
.route-day small { color: var(--gold); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.route-day h3 { margin-top: 8px; }
.route-day p:last-child { margin-bottom: 0; }
.article-sources {
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.article-sources a { color: #765f32; text-decoration: underline; text-underline-offset: 3px; }
.article-sidebar {
  position: sticky;
  top: 24px;
  padding: 26px;
  border-radius: 20px;
  background: var(--ink);
  color: white;
}
.article-sidebar h2 { margin-bottom: 12px; font-size: 28px; }
.article-sidebar p { color: rgba(255,255,255,.7); font-size: 14px; }
.article-sidebar img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 20px 0;
  padding: 8px;
  border-radius: 14px;
  background: white;
  object-fit: contain;
}
.article-sidebar .button { width: 100%; margin-top: 10px; }
.article-sidebar .wechat-id { display: block; text-align: center; font-weight: 800; }
.article-back { display: inline-flex; margin-bottom: 24px; color: #765f32; font-weight: 800; }
.floating-contact {
  position: fixed;
  z-index: 45;
  right: 18px;
  bottom: 18px;
}
.floating-contact .wechat-qr-float {
  width: 136px;
  display: grid;
  gap: 5px;
  padding: 8px 8px 7px;
  border: 1px solid rgba(12,13,15,.1);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(0,0,0,.2);
  color: var(--ink);
  text-align: center;
}
.floating-contact .wechat-qr-float img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.floating-contact .wechat-qr-float span {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

@media (max-width: 1050px) {
  .main-nav { gap: 17px; }
  .main-nav a:nth-child(7) { display: none; }
  .quote-grid { grid-template-columns: 1fr 1fr 1fr; }
  .quote-grid .button { width: 100%; }
  .service-grid, .airport-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .fleet-card:first-child { grid-column: 1 / -1; }
  .route-grid, .attraction-grid, .experience-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav-wrap { height: 74px; }
  .brand { width: 210px; height: 54px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 74px 0 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 22px;
    color: white;
    background: rgba(7,8,10,.98);
  }
  .nav-open .main-nav { display: flex; }
  .main-nav a, .main-nav a:nth-child(7) { display: block; padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .main-nav .button { margin-top: 18px; }
  .hero { min-height: 760px; }
  .hero-bg::after { background: linear-gradient(0deg, rgba(7,8,10,.96), rgba(7,8,10,.3)), linear-gradient(90deg, rgba(7,8,10,.75), transparent); }
  .hero-content { width: 100%; padding-top: 65px; }
  h1 { font-size: 46px; }
  .hero .subhead { font-size: 16px; }
  .quote-shell { margin-top: -42px; }
  .quote-card { padding: 21px; }
  .quote-head { display: block; }
  .quote-head p { margin-top: 5px; }
  .quote-grid, .trust-grid, .service-grid, .fleet-grid, .airport-grid, .steps, .content-grid, .contact-grid, .form-grid, .tour-route-grid, .hotel-stats, .hotel-tools, .hotel-grid, .transfer-grid, .wechat-booking, .woodbury-facts, .woodbury-info-grid { grid-template-columns: 1fr; }
  .blog-article-layout { grid-template-columns: 1fr; gap: 38px; }
  .article-sidebar { position: static; }
  .blog-article { font-size: 16px; }
  .blog-article > p:first-child { font-size: 19px; }
  .form-grid .full { grid-column: auto; }
  .trust-grid { gap: 0; }
  .section { padding: 78px 0; }
  .section-head, .cta-wrap { display: block; }
  .section-head .text-link { display: inline-block; margin-top: 18px; }
  .fleet-card:first-child { grid-column: auto; }
  .fleet-card { min-height: 450px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-media { min-height: 440px; }
  .route-grid, .attraction-grid, .experience-grid { grid-template-columns: 1fr; }
  .experience-wechat { grid-template-columns: 1fr; padding: 24px; }
  .experience-wechat img { width: 170px; height: auto; }
  .hotel-stats > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .hotel-card { grid-template-columns: 48px 1fr; padding: 20px; gap: 14px; }
  .hotel-index { width: 42px; height: 42px; }
  .hotel-actions { grid-column: 2; display: flex; flex-wrap: wrap; gap: 14px; min-width: 0; text-align: left; }
  .hotel-actions a { margin: 0; }
  .hotel-results-bar { align-items: center; }
  .hotel-transfer-image, .hotel-transfer-image img { min-height: 300px; height: 300px; }
  .transfer-card { grid-template-columns: 58px 1fr; min-height: 0; padding: 22px; gap: 16px; }
  .transfer-code { width: 54px; height: 54px; font-size: 12px; }
  .wechat-booking { gap: 35px; }
  .woodbury-facts > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .route-card { min-height: 260px; }
  .cta-actions { margin-top: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .floating-contact { bottom: 12px; right: 12px; }
  .floating-contact .wechat-qr-float { width: 104px; padding: 6px 6px 5px; border-radius: 12px; }
  .floating-contact .wechat-qr-float span { font-size: 12px; }
  .wechat-card { grid-template-columns: 118px 1fr; gap: 15px; }
  .wechat-card img { width: 118px; height: auto; }
}

@media (max-width: 480px) {
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; gap: 8px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

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