/* ---------- Tokens ---------- */
:root {
  --navy: #132a52;
  --blue-deep: #1c4a86;
  --blue: #2f7dc4;
  --blue-light: #8fcbf2;
  --blue-pale: #eaf5fd;
  --yellow: #f5d020;
  --yellow-deep: #e8b900;
  --ink: #0f1620;
  --gray-700: #3d4756;
  --gray-500: #6b7688;
  --gray-200: #e4e9f0;
  --gray-100: #f4f7fb;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px -20px rgba(19, 42, 82, 0.35);
  --shadow-sm: 0 8px 24px -12px rgba(19, 42, 82, 0.25);
  --ff-display: 'Poppins', 'Noto Sans SC', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', system-ui, sans-serif;
  --ff-body: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', system-ui, sans-serif;
  --ff-zh: 'Noto Sans SC', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --header-h: 76px;
  --topbar-h: 40px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + var(--topbar-h) + 10px); }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--ff-display); margin: 0; line-height: 1.15; }
p { margin: 0; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section__title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  max-width: 780px;
  margin-bottom: 18px;
}
.section__intro {
  color: var(--gray-700);
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 40px;
}
.section { padding: 100px 0; }
.section--alt { background: var(--gray-100); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--blue-deep); color: var(--white); }
.btn--primary:hover { background: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--gray-200); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn--outline { background: transparent; color: var(--blue-deep); border-color: var(--blue-deep); }
.btn--outline:hover { background: var(--blue-deep); color: var(--white); }
.btn--outline-light { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.6); backdrop-filter: blur(6px); }
.btn--outline-light:hover { background: var(--white); color: var(--navy); }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy);
  color: var(--white);
  height: var(--topbar-h);
  font-size: 0.85rem;
}
.topbar__inner {
  max-width: 1180px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar__msg strong { color: var(--yellow); }
.topbar__phone { font-weight: 600; }
.topbar__phone:hover { color: var(--blue-light); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(15,22,32,0.08); border-color: var(--gray-200); }
.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand__logo { height: 52px; width: auto; }
.nav { display: flex; gap: 30px; }
.nav a {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.25s ease;
}
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 24px; background: var(--navy); margin: 0 auto; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,20,40,0.75) 0%, rgba(10,20,40,0.55) 45%, rgba(10,20,40,0.88) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  color: var(--white);
}
.hero .eyebrow { color: var(--yellow); }
.hero__title {
  font-size: clamp(3rem, 9vw, 6.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 22px;
}
.hero__title--accent { color: var(--blue-light); }
.hero__sub {
  display: block;
  font-size: 1.15rem;
  max-width: 540px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 34px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 48px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  z-index: 1;
}
.hero__scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 5px; height: 5px;
  margin-left: -2.5px;
  border-radius: 50%;
  background: var(--white);
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0% { top: 8px; opacity: 1; }
  70% { top: 28px; opacity: 0; }
  100% { top: 28px; opacity: 0; }
}

/* ---------- Reveal animation ---------- */
.reveal, .reveal-word {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible, .reveal-word.is-visible { opacity: 1; transform: translateY(0); }
.hero__title .reveal-word:nth-child(1) { transition-delay: 0.05s; }
.hero__title .reveal-word:nth-child(2) { transition-delay: 0.18s; }
.hero__title .reveal-word:nth-child(3) { transition-delay: 0.31s; }

/* stagger children inside grids */
.services-grid .service-card:nth-child(1) { transition-delay: 0.02s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.08s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.14s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.26s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.32s; }
.services-grid .service-card:nth-child(7) { transition-delay: 0.38s; }
.services-grid .service-card:nth-child(8) { transition-delay: 0.44s; }

/* ---------- Stats ---------- */
.stats { background: var(--navy); padding: 60px 0; }
.stats__inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
.stat__num {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--yellow);
}
.stat__label { color: rgba(255,255,255,0.8); font-size: 0.95rem; font-weight: 500; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: transparent; }
.service-card__icon { font-size: 2rem; display: inline-block; margin-bottom: 14px; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--navy); }
.service-card p { color: var(--gray-500); font-size: 0.92rem; line-height: 1.5; }

/* ---------- Express ---------- */
.express { padding: 100px 0; background: linear-gradient(135deg, var(--blue-pale), var(--white)); }
.express__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.express__copy p { color: var(--gray-700); margin: 16px 0 22px; line-height: 1.6; }
.express__media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--gray-700);
  font-size: 0.96rem;
}
.check-list li::before {
  content: '✓';
  position: absolute; left: 0; top: -1px;
  width: 20px; height: 20px;
  background: var(--blue-deep);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Packages ---------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 20px;
}
.package-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.package-card--featured { border: 2px solid var(--blue-deep); box-shadow: var(--shadow); }
.package-card__badge {
  position: absolute; top: -14px; left: 26px;
  background: var(--yellow); color: var(--navy);
  font-family: var(--ff-display); font-weight: 700; font-size: 0.75rem;
  padding: 6px 14px; border-radius: 999px;
}
.package-card__img { border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 18px; aspect-ratio: 5/4; }
.package-card__img img { width: 100%; height: 100%; object-fit: cover; }
.package-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 4px; }
.package-card__tag { color: var(--blue); font-weight: 600; font-size: 0.85rem; margin-bottom: 16px; }
.package-card .check-list { margin-bottom: 20px; flex-grow: 1; }
.price-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 0.88rem; }
.price-table tr { border-bottom: 1px dashed var(--gray-200); }
.price-table tr:last-child { border-bottom: none; }
.price-table td { padding: 9px 0; vertical-align: middle; }
.price-table__label { color: var(--gray-700); }
.price-table td:last-child {
  text-align: right;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--blue-deep);
  white-space: nowrap;
  padding-left: 12px;
}

.addons { margin-top: 60px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 36px; }
.addons h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 20px; }
.addons__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 40px; }
.addon { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--gray-200); font-size: 0.95rem; }
.addon span:first-child { color: var(--gray-700); }
.addon span:last-child { font-weight: 700; color: var(--blue-deep); font-family: var(--ff-display); }
.addons__note { margin-top: 20px; color: var(--gray-500); font-size: 0.9rem; }
.addons__note a { color: var(--blue-deep); font-weight: 600; }

/* ---------- Gallery ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 26px; }
.ba-card { margin: 0; }
.ba-card__imgs { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.ba-card__imgs img { width: 100%; transition: transform 0.5s ease; }
.ba-card:hover .ba-card__imgs img { transform: scale(1.04); }
.ba-card figcaption { margin-top: 12px; font-weight: 600; color: var(--navy); font-family: var(--ff-display); font-size: 0.92rem; }
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-strip img { border-radius: var(--radius-sm); aspect-ratio: 1/1; object-fit: cover; transition: transform 0.4s ease; }
.gallery-strip img:hover { transform: scale(1.03); }

/* ---------- About ---------- */
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about__media { position: relative; }
.about__img-main { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; }
.about__img-sub {
  position: absolute;
  width: 46%;
  bottom: -34px; right: -30px;
  border-radius: var(--radius-sm);
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3; object-fit: cover;
}
.about__copy p { color: var(--gray-700); line-height: 1.7; margin-bottom: 16px; }
.about__badges { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; }
.about__badge {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  padding: 12px 14px; font-size: 0.88rem; font-weight: 600; color: var(--navy);
}

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column;
}
.review-card__stars { color: var(--yellow-deep); letter-spacing: 2px; margin-bottom: 14px; }
.review-card p { color: var(--gray-700); font-size: 0.94rem; line-height: 1.6; flex-grow: 1; }
.review-card__author { margin-top: 18px; font-family: var(--ff-display); font-weight: 700; color: var(--navy); display: flex; flex-direction: column; gap: 2px; }
.review-card__author span { font-family: var(--ff-body); font-weight: 500; color: var(--gray-500); font-size: 0.8rem; }

/* ---------- FAQ ---------- */
.accordion__item { border-bottom: 1px solid var(--gray-200); }
.accordion__trigger {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 4px; font-family: var(--ff-display); font-weight: 600; font-size: 1.02rem;
  color: var(--navy); display: flex; justify-content: space-between; align-items: center;
}
.accordion__trigger { gap: 16px; }
.accordion__icon { font-size: 1.4rem; color: var(--blue); transition: transform 0.3s ease; flex-shrink: 0; }
.accordion__item.is-open .accordion__icon { transform: rotate(45deg); }
.accordion__trigger .zh--inline { margin-right: auto; }
.accordion__panel { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion__panel p { padding: 0 4px 22px; color: var(--gray-700); line-height: 1.6; }

/* ---------- Contact ---------- */
.contact { background: var(--navy); color: var(--white); padding-top: 100px; }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding-bottom: 80px; }
.contact .eyebrow { color: var(--yellow); }
.contact .section__title { color: var(--white); }
.contact__list { margin: 26px 0; display: flex; flex-direction: column; gap: 16px; }
.contact__list li { display: flex; flex-direction: column; gap: 2px; }
.contact__list strong { color: var(--blue-light); font-family: var(--ff-display); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }
.contact__list a:hover { color: var(--yellow); }
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.92rem; }
.hours-table td:first-child { color: rgba(255,255,255,0.7); }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.contact__note { color: var(--blue-light); font-size: 0.9rem; }

.contact__form-wrap { background: var(--white); border-radius: var(--radius); padding: 32px; color: var(--ink); }
.contact__form h3 { color: var(--navy); margin-bottom: 20px; font-size: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.contact__form input, .contact__form select, .contact__form textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: var(--ff-body); font-size: 0.95rem; margin-bottom: 14px; background: var(--gray-100);
}
.contact__form textarea { resize: vertical; }
.form-note { text-align: center; font-size: 0.82rem; color: var(--gray-500); margin-top: 14px; }
.form-note a { color: var(--blue-deep); font-weight: 600; }

.map { height: 380px; width: 100%; }
.map iframe { filter: grayscale(15%); }

/* ---------- Footer ---------- */
.footer { background: #0c1830; color: rgba(255,255,255,0.8); padding: 70px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer__brand img { height: 48px; margin-bottom: 14px; background: var(--white); padding: 8px 12px; border-radius: var(--radius-sm); }
.footer__brand p { font-size: 0.9rem; max-width: 280px; color: rgba(255,255,255,0.6); }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 6px; }
.footer__col a, .footer__col span { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.footer__col a:hover { color: var(--yellow); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 24px; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.5);
}

/* ---------- Messaging channels (WhatsApp / WeChat) ---------- */
.channels__lead {
  margin: 30px 0 12px;
  font-family: var(--ff-display); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--blue-light);
}
.channels__status {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: 10px; padding: 3px 10px; border-radius: 999px;
  font-family: var(--ff-body); font-size: 0.72rem; font-weight: 500;
  text-transform: none; letter-spacing: 0;
  vertical-align: middle;
}
.channels__status::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor;
}
.channels__status.is-open { background: rgba(7,193,96,0.18); color: #34d17f; }
.channels__status.is-closed { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
.channels { display: flex; flex-wrap: wrap; gap: 12px; }
.channel {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px 12px 14px;
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06); color: var(--white);
  font-family: var(--ff-body); font-size: 1rem; text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.channel:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.35); transform: translateY(-2px); }
.channel:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }
.channel__icon { width: 26px; height: 26px; flex: none; }
.channel--whatsapp .channel__icon { color: #25d366; }
.channel--wechat .channel__icon { color: #07c160; }
.channel__text { display: flex; flex-direction: column; gap: 1px; }
.channel__name { font-weight: 600; font-size: 0.95rem; }
.channel__meta { font-size: 0.82rem; color: rgba(255,255,255,0.62); }
.channel.is-copied { border-color: #07c160; background: rgba(7,193,96,0.16); }
.channels__hint { margin: 14px 0 0; font-size: 0.82rem; color: rgba(255,255,255,0.55); max-width: 46ch; }
.channels__hint .zh { color: rgba(255,255,255,0.45); }

/* ---------- WeChat QR dialog ---------- */
.qr-dialog {
  border: none; padding: 30px 30px 26px; border-radius: var(--radius);
  max-width: 340px; width: calc(100% - 40px);
  background: var(--white); color: var(--ink);
  box-shadow: 0 30px 70px -20px rgba(15,22,32,0.5);
  text-align: center;
}
.qr-dialog::backdrop { background: rgba(15,22,32,0.62); backdrop-filter: blur(3px); }
.qr-dialog__close {
  position: absolute; top: 10px; right: 14px;
  background: none; border: none; cursor: pointer;
  font-size: 1.6rem; line-height: 1; color: var(--gray-500);
}
.qr-dialog__close:hover { color: var(--navy); }
.qr-dialog__title { font-size: 1.15rem; color: var(--navy); margin-bottom: 16px; }
.qr-dialog__title .zh { font-size: 0.8rem; margin-top: 4px; }
.qr-dialog__code {
  width: 100%; max-width: 240px; height: auto; margin: 0 auto 16px;
  border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
}
.qr-dialog__scan { font-size: 0.88rem; color: var(--gray-700); margin-bottom: 18px; }
.qr-dialog__or {
  font-size: 0.8rem; color: var(--gray-500); margin-bottom: 12px;
  padding-top: 16px; border-top: 1px solid var(--gray-200);
}
.qr-dialog__scan .zh, .qr-dialog__or .zh { margin-top: 3px; }
.qr-dialog__copy { width: 100%; font-family: var(--ff-body); }
.qr-dialog__copy.is-copied { background: #07c160; border-color: #07c160; color: var(--white); }

/* ---------- Floating action buttons ---------- */
.fab-stack {
  display: none;
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  flex-direction: column; gap: 12px;
}
.fab {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue-deep); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: var(--shadow);
}
.fab--whatsapp { background: #25d366; }
.fab--whatsapp svg { width: 28px; height: 28px; }

/* ---------- Bilingual (Chinese secondary text) ---------- */
.zh {
  display: block;
  font-family: var(--ff-zh);
  font-weight: 400;
  font-size: 0.86em;
  line-height: 1.5;
  color: var(--gray-500);
  letter-spacing: 0.01em;
  margin-top: 2px;
}
.zh--inline { display: inline; margin-top: 0; font-size: 0.92em; opacity: 0.85; }
.check-list .zh { font-size: 0.84em; }
.hero__sub .zh, .footer__brand .zh { color: rgba(255,255,255,0.6); }
.contact__list .zh--inline, .contact .eyebrow .zh--inline { color: var(--blue-light); }
.hours-table .zh { display: inline; margin-left: 6px; color: rgba(255,255,255,0.45); font-size: 0.85em; }
.about__badge .zh { color: var(--gray-500); font-weight: 400; }
.service-card .zh { color: var(--blue); font-weight: 500; font-size: 0.9rem; margin-bottom: 10px; }
.stat__label .zh { color: rgba(255,255,255,0.55); font-size: 0.82rem; }
.eyebrow .zh--inline { color: var(--gray-500); letter-spacing: 0.04em; }
.hero .eyebrow .zh--inline { color: rgba(255,255,255,0.72); }
.contact .section__title + .zh { color: rgba(255,255,255,0.7); }

/* ---------- Express wash tier table ---------- */
.tiers { margin-top: 70px; }
.tiers__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
.tiers__hint { display: none; text-align: center; font-size: 0.8rem; color: var(--gray-500); margin-top: 12px; }
.tier-table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.tier-table th, .tier-table td {
  padding: 16px 14px;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}
.tier-table thead th {
  background: var(--navy);
  color: var(--white);
  vertical-align: bottom;
  border-bottom: none;
}
.tier-table thead th.tier-table__best { background: linear-gradient(160deg, #b8860b, #8a6508); }
.tier-table__crown { display: block; font-size: 1.1rem; margin-bottom: 2px; }
.tier-table__name {
  display: block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tier-table__price {
  display: block;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--yellow);
  margin-top: 4px;
}
.tier-table thead th.tier-table__best .tier-table__price { color: #ffe9a8; }
.tier-table th.tier-table__feature,
.tier-table td.tier-table__feature {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--ff-display);
  font-size: 0.95rem;
  width: 42%;
}
.tier-table thead th.tier-table__feature { color: var(--white); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }
.tier-table thead th.tier-table__feature .zh { color: rgba(255,255,255,0.6); }
.tier-table td.tier-table__feature .zh { font-weight: 400; }
.tier-table tbody tr:nth-child(even) { background: var(--gray-100); }
.tier-table tbody tr:last-child td { border-bottom: none; }
.tier-table td.tier-table__best { background: rgba(184,134,11,0.07); }
.tier-table tbody tr:nth-child(even) td.tier-table__best { background: rgba(184,134,11,0.12); }
.tick {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
}
.tick--double {
  width: auto; height: auto;
  border-radius: 999px;
  padding: 5px 13px;
  background: linear-gradient(160deg, #b8860b, #8a6508);
  font-family: var(--ff-display);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.dash { color: var(--gray-200); font-size: 1.1rem; }

/* ---------- Wash passes ---------- */
.pass-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 20px; }
.pass-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.pass-card--featured { border: 2px solid var(--yellow-deep); box-shadow: var(--shadow); }
.pass-card__badge {
  position: absolute; top: -13px; left: 28px;
  background: var(--blue-deep); color: var(--white);
  font-family: var(--ff-display); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}
.pass-card__badge--gold { background: var(--yellow); color: var(--navy); }
.pass-card h3 { font-size: 1.24rem; color: var(--navy); }
.pass-card__zh { color: var(--blue); font-weight: 500; margin-bottom: 20px; font-size: 0.95rem; }
.pass-card__rows { display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }
.pass-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 16px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
}
.pass-row__name { font-family: var(--ff-display); font-weight: 600; color: var(--navy); font-size: 0.98rem; }
.pass-row__name .zh { font-family: var(--ff-zh); font-weight: 400; }
.pass-row__price {
  font-family: var(--ff-display); font-weight: 800; font-size: 1.5rem;
  color: var(--blue-deep); white-space: nowrap; text-align: right;
}
.pass-row__price small { display: block; font-size: 0.7rem; font-weight: 500; color: var(--gray-500); letter-spacing: 0.02em; }
.pass-card__note { font-size: 0.85rem; color: var(--gray-500); }
.pass-card__note .zh { font-size: 0.92em; }

.policy-list { margin-top: 34px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 40px; }
.policy-list li {
  position: relative; padding-left: 24px;
  font-size: 0.88rem; color: var(--gray-500);
}
.policy-list li::before { content: '◎'; position: absolute; left: 0; top: 0; color: var(--blue); }
.policy-list .zh { font-size: 0.94em; }

/* ---------- Deep interior: 22 steps ---------- */
.included {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 36px; margin-bottom: 30px;
}
.included h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 24px; }
.included__list {
  list-style: none; counter-reset: step;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 30px;
  margin: 0; padding: 0;
}
.included__list li {
  counter-increment: step;
  position: relative;
  padding-left: 34px;
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 600;
}
.included__list li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue-deep);
  font-family: var(--ff-display); font-size: 0.74rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.included__list .zh { font-weight: 400; }

.enhance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.enhance-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 32px;
}
.enhance-card h3 { color: var(--navy); font-size: 1.18rem; margin-bottom: 18px; }
.enhance-card .addon { padding: 12px 0; align-items: flex-start; }
.enhance-card .addon span:last-child { white-space: nowrap; padding-left: 16px; }

.notice {
  margin-top: 26px; padding: 18px 22px;
  background: var(--blue-pale); border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm);
  font-size: 0.92rem; color: var(--gray-700);
}
.notice strong { color: var(--navy); font-family: var(--ff-display); }

/* ---------- VIP memberships ---------- */
.memberships { background: linear-gradient(180deg, var(--white), var(--blue-pale)); }
.member-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 20px; }
.member-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.member-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.member-card--featured { border: 2px solid var(--blue-deep); box-shadow: var(--shadow); }
.member-card__badge {
  position: absolute; top: -13px; left: 26px;
  background: var(--blue-deep); color: var(--white);
  font-family: var(--ff-display); font-weight: 700; font-size: 0.72rem;
  padding: 6px 14px; border-radius: 999px;
}
.member-card__badge--gold { background: var(--yellow); color: var(--navy); }
.member-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.member-card__head h3 { font-size: 1.2rem; color: var(--navy); }
.member-card__term {
  flex-shrink: 0;
  background: var(--gray-100); color: var(--gray-500);
  font-size: 0.72rem; font-weight: 600;
  padding: 5px 11px; border-radius: 999px;
}
.member-card__money {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  padding-bottom: 14px; border-bottom: 1px dashed var(--gray-200); margin-bottom: 12px;
}
.member-card__pay, .member-card__get { font-size: 0.82rem; color: var(--gray-500); }
.member-card__pay strong { display: block; font-family: var(--ff-display); font-size: 1.5rem; color: var(--navy); font-weight: 800; }
.member-card__get { margin-left: auto; text-align: right; }
.member-card__get strong { display: block; font-family: var(--ff-display); font-size: 1.5rem; color: var(--blue-deep); font-weight: 800; }
.member-card__value { font-size: 0.88rem; color: var(--yellow-deep); font-weight: 600; margin-bottom: 18px; }
.member-card__value .zh { color: var(--gray-500); font-weight: 400; }
.member-card__comp {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--gray-500); margin-bottom: 12px;
}
.member-card .check-list li { font-size: 0.9rem; }


/* ---------- Contact form extras ---------- */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-lead { font-size: 0.9rem; color: var(--gray-500); margin: -10px 0 18px; }
.form-lead a { color: var(--blue-deep); font-weight: 700; text-decoration: underline; }
.form-lead a:hover { color: var(--navy); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 20px;
    box-shadow: 0 12px 24px -12px rgba(15,22,32,0.18);
    border-bottom: 1px solid var(--gray-200);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
  .header-cta .btn--ghost { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .express__inner, .about__inner, .contact__inner { grid-template-columns: 1fr; }
  .about__media { margin-bottom: 40px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .ba-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: 1fr 1fr; gap: 34px; }
  .fab-stack { display: flex; }
  .member-grid { grid-template-columns: repeat(2, 1fr); }
  .included__list { grid-template-columns: repeat(2, 1fr); }
  .enhance-grid { grid-template-columns: 1fr; }
  .nav { gap: 0; }
}

@media (max-width: 640px) {
  .topbar__msg { display: none; }
  .topbar__inner { justify-content: center; }
  .section { padding: 70px 0; }
  .hero__title { gap: 0 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .about__img-sub { display: none; }
  .addons__grid { grid-template-columns: 1fr; }
  .brand__logo { height: 42px; }
  .pass-grid { grid-template-columns: 1fr; }
  .member-grid { grid-template-columns: 1fr; }
  .included__list { grid-template-columns: 1fr; }
  .policy-list { grid-template-columns: 1fr; }
  .included, .enhance-card, .addons { padding: 26px 22px; }
  .pass-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .pass-row__price { text-align: left; }
  .pass-row__price small { display: inline; margin-left: 4px; }
  .tiers { margin-top: 46px; }
  .tier-table { min-width: 520px; }
  .tier-table th, .tier-table td { padding: 13px 8px; }
  .tier-table th.tier-table__feature, .tier-table td.tier-table__feature { width: 38%; font-size: 0.86rem; }
  .tier-table__price { font-size: 1.2rem; }
  .tier-table__name { font-size: 0.9rem; }
  .tick--double { padding: 4px 9px; font-size: 0.66rem; }
  .tiers__hint { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-word { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* second detailing row — two wider cards */
.packages-grid--two { grid-template-columns: repeat(2, 1fr); margin-top: 26px; }
@media (max-width: 980px) { .packages-grid--two { grid-template-columns: 1fr; } }
