:root {
  --ink: #173d33;
  --ink-deep: #0d2b24;
  --paper: #f5f1e8;
  --paper-deep: #ebe4d6;
  --white: #fffdf8;
  --sage: #9eb7a9;
  --sage-light: #dbe5de;
  --copper: #cc7549;
  --line: rgba(23, 61, 51, 0.16);
  --shadow: 0 24px 60px rgba(13, 43, 36, 0.12);
  --radius: 28px;
  --shell: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink-deep);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

html[data-lang="zh"] .lang-en,
html[data-lang="en"] .lang-zh {
  display: none !important;
}

html[data-lang="en"] .lang-en {
  display: inline;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink-deep);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(245, 241, 232, 0.88);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(13, 43, 36, 0.05);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50% 50% 50% 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 600;
}

.brand-copy small {
  margin-top: 3px;
  color: rgba(13, 43, 36, 0.62);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  color: rgba(13, 43, 36, 0.74);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

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

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

.language-switch {
  display: flex;
  padding: 3px;
  background: rgba(23, 61, 51, 0.08);
  border-radius: 999px;
}

.language-switch button {
  min-width: 44px;
  padding: 6px 10px;
  color: rgba(13, 43, 36, 0.66);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.language-switch button.is-active {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 5px 14px rgba(13, 43, 36, 0.18);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 92px;
}

.hero::before {
  position: absolute;
  top: -140px;
  left: -200px;
  width: 560px;
  height: 560px;
  content: "";
  border: 1px solid rgba(204, 117, 73, 0.18);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  align-items: center;
  gap: 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--copper);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(204, 117, 73, 0.12);
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
  font-size: clamp(48px, 6.2vw, 82px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

html[data-lang="zh"] .hero h1 {
  font-size: clamp(44px, 5.6vw, 72px);
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.hero-lede {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(13, 43, 36, 0.7);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.8;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 780;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(13, 43, 36, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ink-deep);
  box-shadow: 0 18px 36px rgba(13, 43, 36, 0.26);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.52);
}

.booking-options {
  max-width: 650px;
  margin-top: 22px;
  padding: 16px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(23, 61, 51, 0.13);
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(13, 43, 36, 0.07);
  backdrop-filter: blur(12px);
}

.booking-options > p {
  margin: 0 0 10px;
  color: rgba(13, 43, 36, 0.62);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-option-list a,
.booking-option-list button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px 6px 7px;
  color: var(--ink-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 760;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.booking-option-list a:hover,
.booking-option-list a:focus-visible,
.booking-option-list button:hover,
.booking-option-list button:focus-visible {
  border-color: rgba(23, 61, 51, 0.34);
  box-shadow: 0 8px 18px rgba(13, 43, 36, 0.1);
  transform: translateY(-1px);
}

.booking-option-icon {
  min-width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  padding-inline: 5px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.booking-option-icon-wa { background: #25d366; }
.booking-option-icon-tg { background: #229ed9; }
.booking-option-icon-line { background: #06c755; }
.booking-option-icon-wx { background: #07c160; font-size: 10px; }
.booking-option-icon-app { background: var(--copper); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 36px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(13, 43, 36, 0.72);
  font-size: 13px;
  font-weight: 650;
}

.trust-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--sage-light);
  border-radius: 50%;
  font-size: 12px;
}

.hero-art {
  position: relative;
  min-height: 560px;
}

.hero-art::before {
  position: absolute;
  width: 420px;
  height: 520px;
  content: "";
  background: var(--sage-light);
  border-radius: 48% 48% 18% 18% / 30% 30% 12% 12%;
  transform: rotate(7deg);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(23, 61, 51, 0.22);
  border-radius: 50%;
}

.orbit-one {
  width: 500px;
  height: 260px;
  transform: rotate(-32deg);
}

.orbit-two {
  width: 300px;
  height: 480px;
  border-color: rgba(204, 117, 73, 0.34);
  transform: rotate(44deg);
}

.wellness-card {
  position: absolute;
  z-index: 2;
  width: min(370px, 86%);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.wellness-main {
  top: 76px;
  left: 50%;
  padding: 34px 34px 30px;
  transform: translateX(-50%);
}

.wellness-badge {
  top: 35px;
  right: -6px;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1px;
  padding: 13px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50% 50% 50% 16px;
  text-align: center;
}

.wellness-badge span {
  font-size: 22px;
  line-height: 1;
}

.wellness-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 500;
}

.wellness-badge small {
  color: rgba(245, 241, 232, 0.72);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-kicker {
  margin: 0 0 8px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wellness-main > strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.12;
}

.care-line {
  height: 1px;
  margin: 26px 0;
  background: linear-gradient(90deg, var(--copper), transparent);
}

.care-line span {
  position: absolute;
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: var(--copper);
  border-radius: 50%;
}

.care-line span:nth-child(2) {
  margin-left: 30%;
}

.care-line span:nth-child(3) {
  margin-left: 66%;
}

.wellness-note {
  right: -10px;
  bottom: 42px;
  width: 278px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 18px 34px;
  color: var(--paper);
  background: var(--ink);
  font-size: 13px;
  font-weight: 720;
}

.wellness-note small {
  color: var(--sage);
  font-size: 8px;
  letter-spacing: 0.13em;
}

.wellness-note strong {
  margin-top: 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 500;
}

.wellness-note > span {
  color: rgba(245, 241, 232, 0.62);
  font-size: 10px;
}

.proof-strip {
  background: var(--ink);
}

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

.proof-grid > p {
  margin: 0;
  padding: 28px 34px;
  color: var(--paper);
  border-right: 1px solid rgba(245, 241, 232, 0.16);
}

.proof-grid > p:last-child {
  border-right: 0;
}

.proof-grid strong {
  display: block;
  margin-bottom: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.proof-grid span {
  color: rgba(245, 241, 232, 0.68);
  font-size: 12px;
}

.section {
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 72px minmax(0, 700px);
  gap: 26px;
  margin-bottom: 56px;
}

.section-index {
  padding-top: 13px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.section-heading h2,
.standards-lede h2,
.areas-copy h2,
.faq-copy h2,
.contact-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.section-heading p,
.standards-lede > p,
.areas-copy > p,
.faq-copy > p,
.contact-card > p {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(13, 43, 36, 0.66);
  font-size: 16px;
}

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

.service-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: rgba(255, 253, 248, 0.68);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-color: rgba(204, 117, 73, 0.48);
  box-shadow: 0 18px 44px rgba(13, 43, 36, 0.08);
  transform: translateY(-4px);
}

.service-number {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.service-card h3 {
  margin: 28px 0 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.18;
}

.service-card p {
  margin: 0;
  color: rgba(13, 43, 36, 0.65);
  font-size: 14px;
}

.price-list {
  display: grid;
  gap: 0;
  margin: auto 0 0;
  padding: 26px 0 0;
  list-style: none;
}

.price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  color: rgba(13, 43, 36, 0.68);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.price-list strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 600;
}

.price-list strong::before {
  margin-right: 5px;
  color: var(--copper);
  content: "from";
  font-family: Inter, "Noto Sans SC", sans-serif;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

html[data-lang="zh"] .price-list strong::before {
  content: "起";
}

.price-note {
  max-width: 850px;
  margin: 26px auto 0;
  color: rgba(13, 43, 36, 0.62);
  font-size: 13px;
  text-align: center;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
}

.service-meta span {
  padding: 6px 11px;
  color: var(--ink);
  background: var(--sage-light);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink-deep);
}

.section-dark::after {
  position: absolute;
  right: -180px;
  bottom: -320px;
  width: 600px;
  height: 600px;
  content: "";
  border: 1px solid rgba(204, 117, 73, 0.34);
  border-radius: 50%;
}

.standards-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.standards-lede .eyebrow,
.section-dark .section-index {
  color: var(--copper);
}

.standards-lede h2 {
  color: var(--paper);
}

.standards-lede > p {
  color: rgba(245, 241, 232, 0.66);
}

.standards-list {
  display: grid;
}

.standard-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.14);
}

.standard-item:first-child {
  padding-top: 4px;
}

.standard-item span:first-child {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.standard-item h3 {
  margin: 0 0 7px;
  color: var(--paper);
  font-size: 17px;
}

.standard-item p {
  margin: 0;
  color: rgba(245, 241, 232, 0.62);
  font-size: 14px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-item {
  position: relative;
}

.process-item:not(:last-child)::after {
  position: absolute;
  top: 29px;
  left: 78px;
  width: calc(100% - 48px);
  height: 1px;
  content: "";
  background: var(--line);
}

.process-number {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.process-item h3 {
  margin: 25px 0 10px;
  color: var(--ink);
  font-size: 19px;
}

.process-item p {
  margin: 0;
  color: rgba(13, 43, 36, 0.64);
  font-size: 14px;
}

.areas-section {
  padding: 74px 0;
  background: var(--paper-deep);
}

.areas-grid > div:last-child > p {
  margin: 0 0 26px;
  color: rgba(13, 43, 36, 0.66);
}

.official-section {
  background: var(--white);
}

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

.official-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.official-card-featured {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.official-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 5px 10px;
  color: var(--ink);
  background: var(--sage-light);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.official-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 0 42px;
  color: var(--paper);
  background: var(--copper);
  border-radius: 50% 50% 50% 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.official-card:not(.official-card-featured) .official-icon {
  color: var(--ink);
  background: var(--sage-light);
}

.official-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.2;
}

.official-card-featured h3 {
  color: var(--paper);
}

.official-card > p:not(.official-icon) {
  margin: 0;
  color: rgba(13, 43, 36, 0.64);
  font-size: 14px;
}

.official-card-featured > p:not(.official-icon) {
  color: rgba(245, 241, 232, 0.66);
}

.official-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 26px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 820;
  text-decoration: none;
}

.official-card-featured .official-link {
  color: var(--paper);
  border-top-color: rgba(245, 241, 232, 0.17);
}

.store-badge-link {
  min-height: 74px;
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.store-badge-link:focus-visible {
  outline: 3px solid rgba(204, 117, 73, 0.28);
  outline-offset: 4px;
}

.store-badge {
  display: block;
  width: auto;
  transition: transform 160ms ease, filter 160ms ease;
}

.store-badge-apple {
  height: 48px;
}

.store-badge-google {
  height: 68px;
  margin: -10px -13px;
}

.store-badge-link:hover .store-badge,
.store-badge-link:focus-visible .store-badge {
  filter: drop-shadow(0 8px 12px rgba(13, 43, 36, 0.14));
  transform: translateY(-2px);
}

.official-link span:last-child {
  font-size: 18px;
  transition: transform 160ms ease;
}

.official-link:hover span:last-child,
.official-link:focus-visible span:last-child {
  transform: translate(3px, -3px);
}

.official-note {
  margin: 24px 0 0;
  color: rgba(13, 43, 36, 0.62);
  font-size: 13px;
  text-align: center;
}

.support-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  margin-top: 20px;
  padding: 42px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.support-panel h3 {
  margin: 12px 0 14px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
}

.support-panel > div > p:last-child {
  margin: 0;
  color: rgba(13, 43, 36, 0.64);
  font-size: 14px;
}

.support-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.support-links a,
.support-link-static {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 17px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.support-copy-button {
  width: 100%;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.support-links a:hover,
.support-links a:focus-visible,
.support-copy-button:hover,
.support-copy-button:focus-visible {
  border-color: rgba(204, 117, 73, 0.55);
  transform: translateY(-2px);
}

.copy-toast {
  position: fixed;
  z-index: 1200;
  top: 98px;
  left: 50%;
  max-width: calc(100% - 32px);
  padding: 13px 20px;
  color: var(--white);
  background: var(--ink-deep);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(13, 43, 36, 0.28);
  font-size: 14px;
  font-weight: 760;
  text-align: center;
  transform: translate(-50%, -14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.copy-toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.copy-toast[hidden] {
  display: none;
}

.support-links strong {
  font-size: 13px;
}

.support-links span {
  overflow-wrap: anywhere;
  color: rgba(13, 43, 36, 0.62);
  font-size: 12px;
}

.areas-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tags span {
  padding: 10px 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 46px 24px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  content: "+";
  color: var(--ink);
  background: var(--sage-light);
  border-radius: 50%;
}

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

.faq-list details p {
  margin: -4px 44px 22px 0;
  color: rgba(13, 43, 36, 0.65);
  font-size: 14px;
}

.contact-section {
  padding: 0 0 90px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 72px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 38px;
}

.contact-card::after {
  position: absolute;
  top: -170px;
  right: -90px;
  width: 410px;
  height: 410px;
  content: "";
  border: 1px solid rgba(245, 241, 232, 0.22);
  border-radius: 50%;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card h2 {
  max-width: 760px;
  color: var(--paper);
}

.contact-card > div > p {
  color: rgba(245, 241, 232, 0.7);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.button-outline-light {
  color: var(--paper);
  background: transparent;
  border-color: rgba(245, 241, 232, 0.38);
}

.text-link {
  color: var(--paper);
  font-size: 14px;
  font-weight: 750;
  text-underline-offset: 5px;
}

.site-footer {
  padding: 0 0 34px;
}

.consent-banner {
  position: fixed;
  z-index: 300;
  right: 20px;
  bottom: 20px;
  left: 20px;
  width: min(920px, calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-inline: auto;
  padding: 20px 22px;
  color: var(--paper);
  background: rgba(13, 43, 36, 0.97);
  border: 1px solid rgba(245, 241, 232, 0.18);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(13, 43, 36, 0.28);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 500;
}

.consent-banner p {
  margin: 4px 0 0;
  color: rgba(245, 241, 232, 0.68);
  font-size: 12px;
}

.consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.consent-actions .button {
  min-height: 42px;
  padding: 9px 16px;
  cursor: pointer;
}

.consent-actions .button-secondary {
  color: var(--paper);
  background: transparent;
  border-color: rgba(245, 241, 232, 0.28);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  color: rgba(13, 43, 36, 0.56);
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.brand-footer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.brand-footer .brand-mark {
  width: 32px;
  height: 32px;
  font-size: 11px;
}

:focus-visible {
  outline: 3px solid rgba(204, 117, 73, 0.56);
  outline-offset: 3px;
}

@media (max-width: 960px) {
  :root {
    --shell: min(100% - 32px, 760px);
  }

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

  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    padding: 8px 12px;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 780;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 18px 24px 28px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(13, 43, 36, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 4px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    padding: 70px 0 80px;
  }

  .hero-grid,
  .standards-grid,
  .areas-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-art {
    min-height: 480px;
  }

  .hero-art::before {
    width: 380px;
    height: 440px;
  }

  .orbit-one {
    width: 450px;
  }

  .standards-grid,
  .faq-grid {
    gap: 52px;
  }

  .areas-grid {
    gap: 36px;
  }

  .contact-card {
    padding: 56px 42px;
  }

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

  .official-card {
    min-height: 290px;
  }

  .support-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 28px);
    --radius: 22px;
  }

  .language-switch button {
    min-width: 40px;
    padding-inline: 8px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero h1,
  html[data-lang="zh"] .hero h1 {
    font-size: clamp(39px, 12vw, 56px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-options {
    padding: 14px;
  }

  .booking-option-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-option-list a,
  .booking-option-list button {
    min-width: 0;
  }

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-art {
    min-height: 420px;
  }

  .hero-art::before {
    width: 300px;
    height: 380px;
  }

  .orbit-one {
    width: 340px;
    height: 220px;
  }

  .orbit-two {
    width: 240px;
    height: 360px;
  }

  .wellness-card {
    width: min(330px, 90%);
  }

  .wellness-main {
    padding: 28px;
  }

  .wellness-badge {
    top: 25px;
    right: -2px;
    width: 96px;
    height: 96px;
  }

  .wellness-note {
    padding-inline: 28px;
  }

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

  .proof-grid > p {
    padding: 20px 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 241, 232, 0.14);
  }

  .proof-grid > p:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 38px;
  }

  .section-index {
    padding-top: 0;
  }

  .section-heading h2,
  .standards-lede h2,
  .areas-copy h2,
  .faq-copy h2,
  .contact-card h2 {
    font-size: 38px;
  }

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

  .service-card {
    min-height: 350px;
    padding: 28px;
  }

  .service-card h3 {
    margin-top: 30px;
    font-size: 27px;
  }

  .standard-item {
    grid-template-columns: 34px 1fr;
    gap: 13px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .process-item:not(:last-child)::after {
    top: 70px;
    left: 29px;
    width: 1px;
    height: 30px;
  }

  .areas-section {
    padding: 60px 0;
  }

  .contact-section {
    padding-bottom: 64px;
  }

  .contact-card {
    padding: 42px 26px;
    border-radius: 28px;
  }

  .support-panel {
    padding: 28px 22px;
  }

  .support-panel h3 {
    font-size: 27px;
  }

  .support-links {
    grid-template-columns: 1fr;
  }

  .consent-banner {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
  }

  .consent-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    padding: 8px 2px;
    text-align: center;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
