:root {
  --ink: #10234a;
  --ink-soft: #31436b;
  --muted: #6a7591;
  --sky: #35a7ff;
  --sky-soft: #eaf7ff;
  --sun: #ffd166;
  --coral: #ff6042;
  --orange: #ff8a2a;
  --teal: #2dd4bf;
  --violet: #8b5cf6;
  --white: #ffffff;
  --line: #dbe7f4;
  --shadow: 0 24px 60px rgba(22, 61, 115, 0.14);
  --radius: 8px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(235, 248, 255, 0.8), rgba(255, 255, 255, 0) 520px),
    var(--white);
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 clamp(20px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219, 231, 244, 0.9);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(20, 61, 112, 0.1);
  background: rgba(255, 255, 255, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  display: block;
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}

.brand-text > span {
  font-weight: 800;
  color: var(--ink);
}

.brand-text > strong {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.54em;
  font-weight: 800;
  color: var(--coral);
  transform: translateY(-1px) rotate(-4deg);
}

.site-footer .brand-mark {
  width: 32px;
  height: 32px;
}

:lang(zh-CN) body,
:lang(ja) body,
:lang(ko) body {
  font-family: Inter, "Noto Sans CJK SC", "Microsoft YaHei", "PingFang SC", "Hiragino Sans", "Yu Gothic", "Malgun Gothic", sans-serif;
}

:lang(zh-CN) h1,
:lang(zh-CN) h2,
:lang(zh-CN) h3,
:lang(ja) h1,
:lang(ja) h2,
:lang(ja) h3,
:lang(ko) h1,
:lang(ko) h2,
:lang(ko) h3 {
  font-family: Inter, "Noto Sans CJK SC", "Microsoft YaHei", "PingFang SC", "Hiragino Sans", "Yu Gothic", "Malgun Gothic", sans-serif;
  font-weight: 800;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 28px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--coral);
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: clamp(4px, 1.4vw, 14px);
  padding-left: clamp(10px, 1.8vw, 18px);
  border-left: 1px solid rgba(219, 231, 244, 0.95);
}

.main-nav .language-switcher a {
  min-width: 30px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.main-nav .language-switcher a::after {
  display: none;
}

.main-nav .language-switcher a:hover,
.main-nav .language-switcher a:focus-visible {
  color: var(--ink);
  background: var(--sky-soft);
}

.main-nav .language-switcher a.active {
  color: white;
  background: var(--ink);
}

.header-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.header-cta,
.button-primary {
  padding: 0 22px;
  color: white;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  box-shadow: 0 14px 28px rgba(255, 96, 66, 0.24);
}

.button-secondary {
  padding: 0 22px;
  color: var(--coral);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 96, 66, 0.42);
}

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

.nav-toggle {
  display: none;
}

.section-full {
  min-height: min(820px, 88svh);
}

.section-pad {
  padding: clamp(64px, 8vw, 120px) clamp(20px, 4vw, 64px);
}

section[id] {
  scroll-margin-top: 88px;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 96px clamp(20px, 5vw, 76px) 60px;
  isolation: isolate;
}

.hero-media,
.closing-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("./assets/hero-shanghai.png");
  background-size: cover;
  background-position: center right;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 28%, rgba(255, 255, 255, 0.22) 58%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.28));
}

.hero-copy {
  max-width: 660px;
  padding-top: 30px;
}

.hero h1,
.section-heading h2,
.closing h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--ink);
}

.hero h1 {
  max-width: 780px;
  font-size: 79px;
}

.hero p {
  max-width: 600px;
  margin: 28px 0 0;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.58;
  color: var(--ink-soft);
}

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

.section-heading {
  max-width: 960px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading h2,
.closing h2 {
  font-size: clamp(31px, 4.2vw, 61px);
}

.section-heading p {
  margin: 20px auto 0;
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.intro-band {
  background:
    radial-gradient(circle at 10% 10%, rgba(53, 167, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff, #f8fcff);
}

.pain-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.experience-carousel {
  max-width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0 20px;
}

.experience-carousel::before,
.experience-carousel::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(56px, 8vw);
  pointer-events: none;
}

.experience-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #f8fcff, rgba(248, 252, 255, 0));
}

.experience-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #f8fcff, rgba(248, 252, 255, 0));
}

.experience-track {
  width: max-content;
  display: flex;
  gap: 8px;
  padding: 0 clamp(20px, 4vw, 64px);
  animation: experience-scroll 42s linear infinite;
}

.experience-carousel:hover .experience-track,
.experience-track:hover {
  animation-play-state: paused;
}

.experience-card {
  height: clamp(500px, 41vw, 590px);
  aspect-ratio: var(--experience-aspect, 216 / 809);
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  display: flex;
  align-items: end;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: var(--experience-image, linear-gradient(135deg, #35a7ff, #2dd4bf));
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 50px rgba(15, 49, 98, 0.14);
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 62px rgba(15, 49, 98, 0.2);
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 35, 74, 0) 58%, rgba(16, 35, 74, 0.34) 100%);
}

.experience-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 16px;
  color: white;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.12;
  letter-spacing: 0;
}

.exp-hanfu {
  --experience-image: url("./assets/experience-hanfu.png");
  --experience-aspect: 234 / 809;
}

.exp-tcm {
  --experience-image: url("./assets/experience-tcm.png");
  --experience-aspect: 227 / 809;
}

.exp-massage {
  --experience-image: url("./assets/experience-massage.png");
  --experience-aspect: 220 / 809;
}

.exp-pottery {
  --experience-image: url("./assets/experience-pottery.png");
  --experience-aspect: 216 / 809;
}

.exp-calligraphy {
  --experience-image: url("./assets/experience-calligraphy.png");
  --experience-aspect: 223 / 809;
}

.exp-opera {
  --experience-image: url("./assets/experience-opera.png");
  --experience-aspect: 221 / 809;
}

.exp-nightmarket {
  --experience-image: url("./assets/experience-nightmarket.png");
  --experience-aspect: 194 / 809;
}

.exp-bar {
  --experience-image: url("./assets/experience-bar.png");
  --experience-aspect: 175 / 809;
}

.exp-rail {
  --experience-image: url("./assets/experience-rail.png");
  --experience-aspect: 211 / 809;
}

@keyframes experience-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 4px));
  }
}

.pain-grid article {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 22px;
  padding: clamp(24px, 3vw, 42px);
}

.pain-grid article + article {
  border-left: 1px solid var(--line);
}

.icon-disc,
.service-icon,
.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.icon-disc {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

.icon-disc svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blue { background: linear-gradient(135deg, #1377d9, #35a7ff); }
.violet { background: linear-gradient(135deg, #8b5cf6, #b088ff); }
.coral { background: linear-gradient(135deg, #ff6042, #ff9a3e); }
.teal { background: linear-gradient(135deg, #10bfa8, #38d8c8); }
.orange { background: linear-gradient(135deg, #ff7a2e, #ffa72f); }

.pain-grid h3,
.service-card h3,
.steps h3,
.proof h3,
.faq summary {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.22;
  letter-spacing: 0;
}

.pain-grid h3,
.pain-grid p {
  grid-column: 2;
}

.pain-grid p,
.service-card p,
.steps p,
.proof p,
.faq p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.services {
  background: #ffffff;
}

.audience {
  background:
    linear-gradient(180deg, #f8fcff, #ffffff);
}

.audience-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.audience-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 44px rgba(15, 49, 98, 0.07);
}

.audience-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--sky), var(--teal));
  font-size: 13px;
  font-weight: 800;
}

.audience-grid article:nth-child(2) .audience-mark { background: linear-gradient(135deg, var(--violet), #b088ff); }
.audience-grid article:nth-child(3) .audience-mark { background: linear-gradient(135deg, var(--coral), var(--orange)); }
.audience-grid article:nth-child(4) .audience-mark { background: linear-gradient(135deg, #1377d9, var(--sky)); }

.audience-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.18;
}

.audience-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.comparison-shell {
  max-width: 1240px;
  margin: 0 auto;
}

.package-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.package-summary article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 34px rgba(15, 49, 98, 0.06);
}

.package-summary article.recommended {
  border-color: rgba(45, 212, 191, 0.58);
  background: white;
}

.package-summary span {
  display: block;
  color: #1976d2;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.package-summary h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
}

.package-summary p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.package-price {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(219, 231, 244, 0.92);
}

.package-price strong {
  display: block;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
}

.package-price small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.package-order-link {
  min-height: 42px;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 96, 66, 0.34);
  border-radius: var(--radius);
  padding: 0 16px;
  color: var(--coral);
  background: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
}

.package-order-link:hover,
.package-order-link:focus-visible {
  color: white;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  box-shadow: 0 14px 28px rgba(255, 96, 66, 0.18);
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 48px rgba(15, 49, 98, 0.08);
}

.comparison-table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
  color: var(--ink);
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
  text-align: center;
  vertical-align: middle;
}

.comparison-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: var(--ink);
  background: #fbfdff;
  font-size: 14px;
  font-weight: 800;
}

.comparison-table th:first-child {
  width: 46%;
  position: sticky;
  left: 0;
  z-index: 2;
  text-align: left;
  background: #fbfdff;
}

.comparison-table tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  color: #26385f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  background: white;
}

.comparison-table thead th:first-child {
  z-index: 3;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table .highlight-col {
  background: rgba(18, 163, 109, 0.055);
}

.feature-status {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feature-status svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-status.yes {
  color: #12a36d;
}

.feature-status.no {
  color: #a8b3c5;
}

.comparison-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.service-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 20px 50px rgba(15, 49, 98, 0.08);
}

.service-card.featured {
  border-color: rgba(45, 212, 191, 0.45);
  box-shadow: 0 24px 60px rgba(16, 191, 168, 0.14);
}

.service-image {
  height: 210px;
  background-image: url("./assets/services-strip.png");
  background-repeat: no-repeat;
  background-size: 400% 100%;
}

.service-one { background-position: 0% 50%; }
.service-two { background-position: 33.333% 50%; }
.service-three { background-position: 66.666% 50%; }
.service-four { background-position: 100% 50%; }

.service-body {
  position: relative;
  padding: 48px 26px 30px;
}

.service-icon {
  position: absolute;
  top: -28px;
  left: 24px;
  width: 58px;
  height: 58px;
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(16, 35, 74, 0.16);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tier-label {
  display: block;
  margin-bottom: 10px;
  color: #1976d2;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--orange));
}

.service-note {
  margin-top: 18px !important;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted) !important;
  font-size: 13px !important;
}

.how {
  background:
    linear-gradient(180deg, #f8fcff, #ffffff);
}

.steps {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 33px;
  left: 12%;
  right: 12%;
  border-top: 2px dashed rgba(53, 167, 255, 0.35);
}

.steps article {
  position: relative;
  text-align: center;
  padding: 0 10px;
}

.steps span {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-weight: 800;
  font-size: 22px;
  box-shadow: 0 15px 32px rgba(53, 167, 255, 0.18);
}

.steps article:nth-child(1) span { background: linear-gradient(135deg, #1377d9, #35a7ff); }
.steps article:nth-child(2) span { background: linear-gradient(135deg, #8b5cf6, #b088ff); }
.steps article:nth-child(3) span { background: linear-gradient(135deg, #10bfa8, #38d8c8); }
.steps article:nth-child(4) span { background: linear-gradient(135deg, #ff6042, #ffa72f); }

.cities {
  background: #ffffff;
}

.city-label {
  max-width: 1240px;
  margin: 0 auto 12px;
  color: #1976d2;
  font-weight: 800;
  font-size: 15px;
}

.city-label.muted {
  margin-top: 28px;
  color: var(--muted);
}

.city-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.city-card {
  min-height: 265px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.8);
  background-image: url("./assets/destinations-strip.png");
  background-size: 300% 100%;
  box-shadow: 0 20px 50px rgba(15, 49, 98, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.city-card:hover,
.city-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(15, 49, 98, 0.2);
}

.city-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 35, 74, 0.02), rgba(16, 35, 74, 0.62));
}

.city-card div {
  position: relative;
  padding: 24px;
  color: white;
}

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

.city-card p {
  max-width: 320px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.5;
}

.city-link {
  display: inline-flex;
  margin-top: 14px;
  color: white;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.city-beijing { background-position: 0% 50%; }
.city-shanghai { background-position: 50% 50%; }
.city-shenzhen { background-position: 100% 50%; }

.coming-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.coming-grid span {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid rgba(219, 231, 244, 0.95);
  background:
    linear-gradient(135deg, rgba(53, 167, 255, 0.08), rgba(45, 212, 191, 0.08)),
    white;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 800;
}

.proof {
  background: #ffffff;
}

.proof-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7fcff, #ffffff);
  box-shadow: var(--shadow);
}

.proof article {
  padding: 26px;
}

.proof article + article {
  border-left: 1px solid var(--line);
}

.mini-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--teal));
}

.proof article:nth-child(2) .mini-icon { background: linear-gradient(135deg, var(--teal), #24b782); }
.proof article:nth-child(3) .mini-icon { background: linear-gradient(135deg, var(--violet), #b088ff); }
.proof article:nth-child(4) .mini-icon { background: linear-gradient(135deg, var(--coral), var(--orange)); }
.proof article:nth-child(5) .mini-icon { background: linear-gradient(135deg, #1377d9, var(--sky)); }

.mini-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq {
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 209, 102, 0.16), transparent 24%),
    linear-gradient(180deg, #ffffff, #f8fcff);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 34px rgba(15, 49, 98, 0.06);
}

.faq summary {
  cursor: pointer;
  padding: 22px 26px;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  float: right;
  color: var(--coral);
  font-weight: 800;
  font-size: 22px;
  line-height: 18px;
}

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

.faq details p {
  padding: 0 26px 22px;
  margin-top: -4px;
  font-size: 15px;
}

.closing {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 76px);
  isolation: isolate;
}

.closing-media {
  background-image: url("./assets/great-wall-cta.png");
  background-position: center right;
}

.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78) 40%, rgba(255, 255, 255, 0.12) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(16, 83, 157, 0.2));
}

.closing-copy {
  max-width: 620px;
}

.closing p {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.64;
}

.lead-form {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(170px, 0.8fr) auto;
  gap: 12px;
  align-items: end;
  max-width: 840px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(16, 35, 74, 0.18);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(53, 167, 255, 0.16);
}

.form-note {
  font-size: 14px !important;
  color: var(--muted) !important;
}

.form-note.success {
  color: #057a55 !important;
  font-weight: 800;
}

.contact-actions {
  margin-top: 30px;
}

.contact-points {
  max-width: 650px;
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-points span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(53, 167, 255, 0.24);
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.order-page {
  background:
    radial-gradient(circle at 8% 4%, rgba(53, 167, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #f7fbff, #ffffff 540px);
}

.order-back {
  color: var(--muted);
}

.order-section {
  padding: 132px clamp(20px, 5vw, 76px) 86px;
}

.order-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: center;
  min-width: 0;
}

.checkout-side {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 16px;
  min-width: 0;
}

.checkout-card,
.checkout-side-card,
.payment-success {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 48px rgba(15, 49, 98, 0.08);
}

.checkout-card {
  padding: clamp(26px, 5vw, 52px);
  min-width: 0;
}

.checkout-side-card {
  padding: 24px;
}

.checkout-kicker {
  margin: 24px 0 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-card h1 {
  margin: 0;
  max-width: 720px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.checkout-price {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 22px;
}

.checkout-price strong {
  color: var(--ink);
  font-size: clamp(42px, 8vw, 72px);
  line-height: 0.92;
}

.checkout-price span {
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
  padding-bottom: 7px;
}

.checkout-promise-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.45;
}

.checkout-promise-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.checkout-promise-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(18, 163, 109, 0.11);
  color: #057a55;
  font-size: 13px;
  font-weight: 900;
}

.checkout-side-card h2,
.payment-success h2 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.08;
}

.checkout-side-card p,
.checkout-form label,
.payment-success p,
.success-summary,
.order-steps {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.order-steps {
  display: grid;
  gap: 16px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.order-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.order-steps span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--sky), var(--teal));
  font-size: 13px;
  font-weight: 800;
}

.muted-card {
  background: linear-gradient(135deg, rgba(53, 167, 255, 0.08), rgba(45, 212, 191, 0.08)), white;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.checkout-form input {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(16, 35, 74, 0.16);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fbfdff;
  outline: none;
  height: 48px;
  padding: 0 14px;
}

.checkout-form input:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(53, 167, 255, 0.14);
}

.checkout-pay-button {
  width: 100%;
  min-height: 54px;
  font-size: 16px;
}

.checkout-consult {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.checkout-consult a {
  color: var(--ink);
  font-weight: 900;
}

.payment-success {
  max-width: 720px;
  margin: 28px auto 0;
  padding: clamp(24px, 5vw, 42px);
}

.payment-success .checkout-kicker {
  margin-top: 16px;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(18, 163, 109, 0.11);
  color: #057a55;
  font-size: 28px;
  font-weight: 900;
}

.success-summary {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.success-summary div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.success-summary dt {
  color: var(--muted);
  font-weight: 900;
}

.success-summary dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.member-page {
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 209, 102, 0.18), transparent 24%),
    linear-gradient(180deg, #f7fbff, #ffffff 520px);
}

.member-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 82px;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.member-status,
.member-form {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 49, 98, 0.08);
}

.member-status {
  position: sticky;
  top: 98px;
  padding: 26px;
}

.member-status h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.member-status p {
  color: var(--muted);
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.member-progress {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.member-progress span {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.member-progress span::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid var(--line);
  border-radius: 50%;
}

.member-progress .is-done,
.member-progress .is-active {
  color: var(--ink);
}

.member-progress .is-done::before {
  border-color: #12a36d;
  background: #12a36d;
}

.member-progress .is-active::before {
  border-color: var(--sky);
  box-shadow: 0 0 0 5px rgba(53, 167, 255, 0.14);
}

.member-form {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.member-section {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border-bottom: 1px solid var(--line);
}

.member-section:last-child {
  border-bottom: 0;
}

.member-section h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
}

.member-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.member-section label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
}

.member-section input,
.member-section select,
.member-section textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(16, 35, 74, 0.16);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fbfdff;
  outline: none;
  padding: 0 14px;
}

.member-section input,
.member-section select {
  min-height: 48px;
}

.member-section textarea {
  min-height: 112px;
  padding-top: 13px;
  resize: vertical;
}

.member-section input:focus,
.member-section select:focus,
.member-section textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(53, 167, 255, 0.14);
}

.member-confirm label {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted);
}

.member-confirm input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  padding: 0;
}

.member-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.city-page {
  background: #ffffff;
}

.city-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(20px, 5vw, 76px) 70px;
  isolation: isolate;
}

.city-hero::before,
.city-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.city-hero::before {
  z-index: -2;
  background-image: url("./assets/destinations-strip.png");
  background-size: 300% 100%;
}

.city-hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 35, 74, 0.82), rgba(16, 35, 74, 0.36) 48%, rgba(16, 35, 74, 0.08)),
    linear-gradient(180deg, rgba(16, 35, 74, 0.08), rgba(16, 35, 74, 0.68));
}

.city-hero.beijing::before { background-position: 0% 50%; }
.city-hero.shanghai::before { background-position: 50% 50%; }
.city-hero.shenzhen::before { background-position: 100% 50%; }

.city-hero-copy {
  max-width: 780px;
  color: white;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
}

.checkout-card .order-back {
  color: var(--muted);
}

.city-hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.98;
  letter-spacing: 0;
}

.city-hero p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.58;
}

.city-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.city-facts span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  padding: 0 14px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 800;
}

.city-content {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
}

.city-main {
  display: grid;
  gap: 34px;
}

.city-section,
.city-sidebar-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 40px rgba(15, 49, 98, 0.06);
}

.city-section {
  padding: clamp(26px, 4vw, 42px);
}

.city-section h2,
.city-sidebar-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.04;
}

.city-section p,
.city-section li,
.city-sidebar-card p,
.city-sidebar-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.city-section p {
  margin: 16px 0 0;
}

.city-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.city-list li {
  border: 1px solid rgba(219, 231, 244, 0.95);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: #f8fcff;
}

.city-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.city-sidebar {
  position: sticky;
  top: 98px;
  align-self: start;
  display: grid;
  gap: 16px;
}

.city-sidebar-card {
  padding: 24px;
}

.city-sidebar-card h2 {
  font-size: 30px;
}

.city-sidebar-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.city-cta {
  color: white;
  background:
    linear-gradient(135deg, rgba(255, 96, 66, 0.94), rgba(255, 138, 42, 0.94));
}

.city-cta h2,
.city-cta p {
  color: white;
}

.city-cta .button {
  margin-top: 20px;
  color: var(--coral);
  background: white;
  box-shadow: none;
}

.site-footer {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 64px);
  color: white;
  background: #0c3f78;
}

.site-footer .brand span,
.site-footer .brand strong,
.site-footer a,
.site-footer p {
  color: white;
}

.site-footer nav {
  justify-self: center;
  display: flex;
  gap: 32px;
  font-size: 13px;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .hero h1 {
    font-size: 65px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    justify-self: end;
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ink);
    transition: transform 160ms ease;
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  body.nav-open .main-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 40px rgba(20, 61, 112, 0.12);
  }

  body.nav-open .main-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .language-switcher {
    margin: 12px 0 0;
    padding: 14px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
  }

  body.nav-open .main-nav .language-switcher a {
    min-width: 38px;
    padding: 0 10px;
    border-bottom: 0;
  }

  .pain-grid,
  .audience-grid,
  .service-grid,
  .steps,
  .city-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pain-grid article + article,
  .proof article + article {
    border-left: 0;
  }

  .pain-grid article:nth-child(2n),
  .proof article:nth-child(2n) {
    border-left: 1px solid var(--line);
  }

  .pain-grid article:nth-child(n + 3),
  .proof article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .steps::before {
    display: none;
  }

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

  .package-summary,
  .city-content,
  .order-layout,
  .member-shell {
    grid-template-columns: 1fr;
  }

  .member-shell {
    width: min(calc(100% - 32px), 358px);
  }

  .city-sidebar,
  .checkout-side,
  .member-status {
    position: static;
  }

  .lead-form {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 66px;
    padding: 0 16px;
  }

  body.nav-open .main-nav {
    top: 66px;
  }

  .brand {
    font-size: 25px;
  }

  .section-full {
    min-height: 610px;
  }

  .hero {
    align-items: start;
    padding: 96px 18px 48px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.83) 48%, rgba(255, 255, 255, 0.22) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
  }

  .hero h1 {
    font-size: 43px;
    line-height: 1.04;
  }

  :lang(zh-CN) .hero h1,
  :lang(ja) .hero h1,
  :lang(ko) .hero h1 {
    font-size: 37px;
    line-height: 1.14;
  }

  :lang(ja) .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .section-pad {
    padding: 58px 18px;
  }

  .pain-grid,
  .audience-grid,
  .service-grid,
  .steps,
  .city-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .pain-grid article,
  .proof article {
    border-left: 0 !important;
    border-top: 1px solid var(--line);
  }

  .pain-grid article:first-child,
  .proof article:first-child {
    border-top: 0;
  }

  .pain-grid article {
    grid-template-columns: 62px 1fr;
    gap: 18px;
    padding: 24px;
  }

  .icon-disc {
    width: 58px;
    height: 58px;
  }

  .icon-disc svg {
    width: 28px;
    height: 28px;
  }

  .service-image {
    height: 230px;
  }

  .experience-carousel::before,
  .experience-carousel::after {
    width: 44px;
  }

  .experience-track {
    gap: 8px;
    padding: 0 18px;
    animation-duration: 36s;
  }

  .experience-card {
    height: 442px;
  }

  .experience-card h3 {
    padding: 12px;
    font-size: 13px;
  }

  .audience-grid article {
    min-height: auto;
  }

  .package-summary {
    grid-template-columns: 1fr;
  }

  .order-section {
    padding: 90px 16px 58px;
  }

  .member-shell {
    width: min(100% - 32px, 520px);
    padding: 90px 0 58px;
  }

  .member-status,
  .member-section {
    padding: 22px;
  }

  .member-status h1 {
    font-size: 38px;
  }

  :lang(zh-CN) .member-status h1 {
    font-size: 32px;
    line-height: 1.16;
  }

  .member-field-grid {
    grid-template-columns: 1fr;
  }

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

  .checkout-layout {
    max-width: 358px;
    margin: 0;
  }

  .checkout-card {
    padding: 22px;
  }

  .checkout-card h1 {
    font-size: 42px;
    line-height: 1.04;
  }

  .checkout-price strong {
    font-size: 48px;
  }

  .checkout-promise-list {
    font-size: 14px;
  }

  .payment-success {
    max-width: 358px;
    margin: 0;
    padding: 24px;
  }

  .payment-success h2 {
    font-size: 25px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 12px;
  }

  .comparison-table {
    min-width: 680px;
  }

  .comparison-table th:first-child {
    width: 42%;
  }

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

  .closing {
    min-height: 700px;
    align-items: start;
    padding: 58px 18px 320px;
  }

  .closing-media {
    background-position: 72% bottom;
  }

  .closing::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86) 48%, rgba(255, 255, 255, 0.2) 100%);
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer nav {
    justify-self: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 26px;
  }

  .city-hero {
    min-height: 560px;
    padding: 104px 18px 54px;
  }

  .city-hero h1 {
    font-size: 58px;
  }

  .city-list {
    grid-template-columns: 1fr;
  }

  .contact-points {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================================
   Member-center rich form components
   (repeatable hotel / restaurant lists, itinerary day cards, draft status,
   inline error box, submission summary card)
   ========================================================================= */

.member-section p.section-hint {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.member-section small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.field-full {
  grid-column: 1 / -1;
}

.repeat-list,
.day-list {
  display: grid;
  gap: 10px;
}

.repeat-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.repeat-row input {
  min-height: 44px;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  transition: color 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.icon-button:hover {
  color: var(--coral);
  border-color: var(--coral);
  transform: translateY(-1px);
}

.button-inline {
  align-self: start;
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.button-inline:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.day-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  padding: 14px 16px;
  display: grid;
  gap: 10px;
}

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

.day-card-header strong {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.day-card textarea {
  min-height: 84px;
  background: #ffffff;
}

.manual-note {
  padding: 14px 16px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--sky-soft);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.member-file-field {
  display: grid;
  gap: 10px;
}

.member-file-label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
}

.file-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.file-list:empty {
  display: none;
}

.file-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  background: #fbfdff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px;
}

.file-row-name {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  overflow-wrap: anywhere;
}

.file-size {
  color: var(--muted);
  font-size: 12px;
}

.error-box {
  padding: 12px 16px;
  border-radius: var(--radius);
  background: rgba(255, 96, 66, 0.1);
  color: var(--coral);
  font-size: 13px;
  line-height: 1.5;
}

.draft-status {
  font-size: 12px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.draft-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}

.draft-status-saved::before {
  background: #12a36d;
}

.draft-status-dirty::before {
  background: var(--sun);
}

.draft-status-error {
  color: var(--coral);
}

.draft-status-error::before {
  background: var(--coral);
}

.result-card {
  margin: 20px clamp(22px, 4vw, 34px) 28px;
  padding: 20px;
  border: 1px solid #d2efde;
  border-radius: var(--radius);
  background: #f1faf4;
  display: grid;
  gap: 12px;
}

.result-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
}

.result-card .eyeline {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #12a36d;
  font-weight: 800;
}

.summary-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px 18px;
  margin: 6px 0 0;
}

.summary-list div {
  display: grid;
  gap: 2px;
}

.summary-list dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 800;
}

.summary-list dd {
  margin: 0;
  font-size: 14px;
  color: var(--ink);
}

.member-aside {
  display: grid;
  gap: 16px;
}

.member-aside-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 20px;
}

.member-aside-card h2 {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.member-aside-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.member-aside-card .boundary {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  background: var(--sky-soft);
  border-radius: var(--radius);
  padding: 12px 14px;
}

@media (max-width: 920px) {
  .member-field-grid {
    grid-template-columns: 1fr;
  }

  .summary-list {
    grid-template-columns: 1fr 1fr;
  }
}
