:root {
  --ink: #1d2b28;
  --forest: #214f45;
  --forest-2: #173b34;
  --jade: #4f8069;
  --jade-soft: #e7efe8;
  --sage: #dbe4d9;
  --sand: #f4f0e8;
  --paper: #fffdf8;
  --paper-warm: #fbf8f1;
  --line: #d8d2c5;
  --text: #2b312f;
  --muted: #68716c;
  --muted-2: #8a918d;
  --coral: #d16a50;
  --coral-soft: #f5e4de;
  --gold: #b58a3e;
  --gold-soft: #f3e7cf;
  --blue: #66879b;
  --blue-soft: #e4edf1;
  --whatsapp: #20b96a;
  --white: #ffffff;
  --shadow-sm: 0 6px 18px rgba(32, 46, 41, 0.07);
  --shadow-md: 0 18px 48px rgba(32, 46, 41, 0.11);
  --font-cn: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-display: "Noto Serif SC", "Songti SC", "STSong", serif;
  --font-en: Inter, "Helvetica Neue", Arial, sans-serif;
  --green: var(--forest);
  --green-dark: var(--forest-2);
  --green-light: var(--jade);
  --cream: var(--sand);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper-warm);
}

body {
  background:
    radial-gradient(circle at 8% 18%, rgba(102, 135, 155, 0.08), transparent 26rem),
    radial-gradient(circle at 92% 8%, rgba(209, 106, 80, 0.07), transparent 28rem),
    var(--paper-warm);
  color: var(--text);
  font-family: var(--font-cn);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

.section {
  position: relative;
  padding: 88px 0;
}

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

.section-header {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin: 0 0 42px;
  text-align: left;
}

.section-header::after {
  content: "";
  width: 54px;
  height: 3px;
  margin-top: 4px;
  background: var(--coral);
}

.section-label {
  color: var(--gold);
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.section-header h2 {
  color: var(--forest);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.section-header p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(33, 79, 69, 0.2);
}

.btn-primary:hover {
  background: var(--forest-2);
}

.btn-gold {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(209, 106, 80, 0.2);
}

.btn-gold:hover {
  background: #bd5a42;
}

.btn-wa {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(32, 185, 106, 0.2);
}

.btn-wa:hover {
  background: #18a65d;
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--line);
  color: var(--forest);
}

.btn-outline-dark:hover {
  border-color: var(--forest);
  background: var(--jade-soft);
}

.top-nav {
  display: none;
  position: fixed;
  inset: 0 0 auto;
  height: 74px;
  z-index: 1000;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(216, 210, 197, 0.8);
  backdrop-filter: blur(16px);
}

.top-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.top-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.top-logo::before {
  content: "\f06c";
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--forest);
  color: var(--gold-soft);
  font-family: "Font Awesome 6 Free";
  font-size: 17px;
  font-weight: 900;
}

.top-logo-cn {
  display: block;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.15;
}

.top-logo-en {
  display: block;
  color: var(--gold);
  font-family: var(--font-en);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.top-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-menu > a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border-radius: 8px;
  color: #4f5753;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.top-menu > a:hover {
  background: var(--jade-soft);
  color: var(--forest);
}

.top-menu > a[style*="background"] {
  background: var(--forest) !important;
  color: var(--white) !important;
}

.top-menu .nav-cta {
  background: var(--whatsapp);
  color: var(--white) !important;
}

.bottom-nav {
  position: fixed;
  inset: auto 0 0;
  height: 66px;
  z-index: 1000;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
  background: rgba(255, 253, 248, 0.96);
  border-top: 1px solid rgba(216, 210, 197, 0.85);
  box-shadow: 0 -8px 24px rgba(32, 46, 41, 0.06);
  backdrop-filter: blur(16px);
}

.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 0;
  padding: 4px 6px;
  border-radius: 7px;
  color: #6a726e;
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.1;
  text-align: center;
}

.bottom-nav a i {
  font-size: 1.15rem;
}

.bottom-nav a.active,
.bottom-nav a:hover {
  background: var(--jade-soft);
  color: var(--forest);
}

.bottom-nav .nav-wa-btn {
  color: var(--white);
  background: var(--whatsapp);
}

.hero {
  position: relative;
  display: flex;
  min-height: min(780px, calc(100vh - 66px));
  align-items: flex-start;
  justify-content: flex-start;
  padding: 128px 0 96px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-2);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.82) contrast(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 29, 25, 0.94) 0%, rgba(17, 38, 32, 0.76) 43%, rgba(17, 38, 32, 0.28) 100%),
    linear-gradient(180deg, rgba(10, 24, 21, 0.18), rgba(10, 24, 21, 0.66));
}

.lang-selector {
  position: absolute;
  top: 86px;
  right: max(24px, calc((100vw - 1220px) / 2));
  z-index: 30;
}

.lang-selector .lang-current {
  min-width: 98px;
  min-height: 38px;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 650;
  backdrop-filter: blur(12px);
}

.lang-menu {
  min-width: 124px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.lang-menu button {
  width: 100%;
  padding: 10px 14px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 0.82rem;
  text-align: left;
}

.lang-menu button:hover {
  background: var(--jade-soft);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1220px) / 2));
  padding: 0;
}

.hero-copy {
  width: min(760px, 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #f6efe6;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: "\f5eb";
  color: #efb96d;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3.15rem, 6.8vw, 5.9rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.24);
}

.hero h1 .en {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-en);
  font-size: clamp(0.86rem, 1.5vw, 1.08rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-shadow: none;
}

.hero .subtitle {
  margin: 17px 0 8px;
  color: #f0cda9;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
}

.hero .desc {
  max-width: 680px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  justify-content: flex-start;
}

.hero-actions .btn {
  min-width: 158px;
}

.hero-wa-row {
  margin-top: 12px;
}

.hero-location-badge {
  position: absolute;
  right: max(24px, calc((100vw - 1220px) / 2));
  bottom: 116px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
}

.hero-quickbar {
  position: absolute;
  left: max(24px, calc((100vw - 1220px) / 2));
  bottom: 24px;
  z-index: 3;
  display: grid;
  width: min(820px, calc(100% - 48px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(14, 32, 27, 0.62);
  backdrop-filter: blur(14px);
}

.hero-quickbar a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  min-height: 48px;
  padding: 8px 11px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 650;
  white-space: nowrap;
  transition: background-color 160ms ease;
}

.hero-quickbar a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.quick-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: #f2c68e;
}

.membership {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(244, 240, 232, 0.9)),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(33, 79, 69, 0.025) 31px 32px);
}

.member-hub {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
}

.member-story {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--forest);
  box-shadow: var(--shadow-md);
}

.member-story img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  filter: saturate(0.86);
}

.member-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 44, 37, 0.04), rgba(17, 44, 37, 0.72));
}

.member-story-caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.member-story-caption span {
  color: #f0cfa4;
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.member-story-caption strong {
  font-family: var(--font-en);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.member-flow {
  display: grid;
  gap: 18px;
}

.membership-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: none;
  margin: 0;
}

.benefit-card {
  min-height: 104px;
  justify-content: center;
  padding: 18px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.benefit-card h4 {
  color: var(--white);
  font-size: 0.96rem;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.benefit-green {
  background: var(--forest);
}

.benefit-gold {
  background: var(--gold);
}

.benefit-dark {
  background: var(--blue);
}

.benefit-brown {
  background: var(--coral);
}

#memberRegister,
#memberCard {
  width: 100%;
  margin: 0;
}

#memberRegister > div,
#memberCard > div {
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  padding: 24px !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  background: var(--paper) !important;
  box-shadow: var(--shadow-sm) !important;
}

#memberCard > div {
  min-height: 100%;
}

#memberCard #memberAvatar {
  background: var(--coral);
}

#memberRegister h3,
#memberCard h4 {
  color: var(--forest) !important;
}

.services {
  background: #f2f5f0;
}

.service-cat {
  display: grid;
  gap: 16px;
  margin: 0 0 54px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.service-cat:last-child {
  margin-bottom: 0;
}

.cat-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 12px;
  margin: 0;
  padding: 0 0 13px;
  border-bottom: 1px solid #cbd4c8;
  text-align: left;
}

.cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 7px 11px;
  border-radius: 6px;
  background: var(--jade-soft);
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
}

.cat-header h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
}

.cat-header p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-en);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 16px 18px;
  overflow: hidden;
  border: 1px solid #d6ddd4;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--forest);
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: #aab8aa;
  box-shadow: var(--shadow-sm);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card .info {
  min-width: 0;
}

.service-card .info h4 {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
}

.service-card .info h4 .en {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 500;
}

.service-card .info .duration {
  color: var(--muted);
  font-size: 0.74rem;
}

.service-card .right {
  display: grid;
  justify-items: end;
  gap: 8px;
  text-align: right;
}

.service-card .right .price {
  color: var(--coral);
  font-family: var(--font-en);
  font-size: 1.08rem;
  font-weight: 800;
}

.service-card .right .btn-book {
  min-width: 74px;
  padding: 8px 12px;
  border: 0;
  border-radius: 6px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 650;
}

.about {
  background: #e8eee7;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

.about-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--forest);
  box-shadow: var(--shadow-md);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.88);
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18, 45, 37, 0.5));
}

.about-image figcaption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.about-image figcaption i {
  color: #f0c58b;
}

.about-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

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

.feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  min-height: 112px;
  padding: 17px;
  border: 1px solid rgba(33, 79, 69, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  text-align: left;
  box-shadow: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  background: var(--paper);
}

.feature-card .icon {
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 7px;
  background: var(--jade-soft);
  color: var(--forest);
}

.feature-card h4 {
  margin: 0 0 4px;
  color: var(--forest);
  font-size: 0.92rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.8rem;
}

.about-highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.about-highlights > div {
  border-radius: 8px !important;
  background: var(--forest) !important;
  box-shadow: var(--shadow-sm);
}

.about-highlights > div:nth-child(2) {
  background: var(--coral) !important;
}

.about-highlights > div:nth-child(3) {
  background: var(--blue) !important;
}

.therapists {
  background: var(--forest-2);
}

.therapists .section-label {
  color: #efc285;
}

.therapists .section-header h2,
.therapists .section-header p {
  color: var(--white);
}

.therapists .section-header p {
  color: rgba(255, 255, 255, 0.66);
}

.therapist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.therapist-card {
  min-height: 210px;
  padding: 22px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  text-align: center;
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.therapist-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 194, 133, 0.5);
}

.therapist-card .avatar {
  width: 66px;
  height: 66px;
  margin: 0 auto 12px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #f4d6a7;
}

.therapist-card h4 {
  color: var(--white);
  font-size: 0.96rem;
}

.therapist-card .spec,
.therapist-card .exp {
  color: rgba(255, 255, 255, 0.62);
}

.therapist-card .stars {
  color: #f4ca72;
}

.reviews {
  background: var(--paper-warm);
}

.review-summary {
  display: inline-flex;
  margin: 0 0 24px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.review-summary strong {
  color: var(--forest);
}

.reviews-actions {
  margin: -12px 0 28px;
  text-align: left;
}

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

.review-card {
  min-height: 210px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: none;
}

.review-card .header {
  align-items: flex-start;
}

.review-card .header .stars {
  color: var(--gold);
}

.review-card p {
  color: #59615d;
}

.review-form-wrap {
  max-width: 720px;
  margin: 44px auto 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.form-group input,
.form-group textarea {
  border-color: #ccd3cb;
  border-radius: 7px;
  background: #fafbf8;
}

.faq {
  background: #eef3ef;
}

.faq-item {
  border: 1px solid rgba(33, 79, 69, 0.14);
  border-radius: 8px;
  background: var(--paper);
}

.faq-item summary {
  min-height: 56px;
  padding: 15px 18px;
  color: var(--forest);
  font-size: 0.98rem;
}

.faq-item summary::after {
  color: var(--coral);
}

.location {
  background: #f6f2e9;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: stretch;
}

.location-grid > div:first-child {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.info-card {
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.info-card .icon {
  width: 38px;
  height: 38px;
  border-radius: 7px;
  background: var(--jade-soft);
  color: var(--forest);
}

.location-map {
  min-height: 380px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 8px;
}

.contact {
  position: relative;
  isolation: isolate;
  padding: 96px 0;
  overflow: hidden;
  background: var(--forest-2);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("/assets/wellness-stones.jpg") center/cover;
  filter: saturate(0.68);
}

.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(15, 39, 33, 0.92), rgba(15, 39, 33, 0.68));
}

.contact-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.contact-card h2 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: none;
  margin: 28px auto 18px;
}

.contact-note {
  color: rgba(255, 255, 255, 0.5) !important;
}

.footer {
  padding: 64px 0 110px;
  background: #18231f;
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.2fr;
  gap: 44px;
}

.footer-brand h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.footer-brand .en {
  color: #efc285;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #efc285;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  justify-content: initial;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-strip span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-bottom {
  text-align: left;
}

.modal-overlay {
  background: rgba(16, 28, 24, 0.64);
  backdrop-filter: blur(6px);
}

.modal-overlay.show {
  display: flex;
}

.modal-overlay > div {
  border-radius: 8px;
}

.modal-overlay[id="loginModal"],
.modal-overlay[id="topupFrontModal"] {
  align-items: center;
}

.modal-overlay[id="loginModal"] > div,
.modal-overlay[id="topupFrontModal"] > div {
  width: min(430px, calc(100% - 28px));
  padding: 28px !important;
  border-radius: 8px !important;
  box-shadow: var(--shadow-md);
}

.modal-container {
  width: min(600px, calc(100% - 28px));
  border-radius: 8px;
}

.modal-header {
  padding: 24px 24px 14px;
  text-align: left;
}

.modal-header h3 {
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.modal-body {
  padding: 0 24px 24px;
}

.modal-footer {
  padding: 16px 24px 22px;
  justify-content: flex-end;
}

.modal-footer .btn {
  flex: initial;
  min-width: 116px;
}

.date-option,
.time-slot,
.therapist-option {
  border-radius: 7px;
}

.date-option.selected,
.time-slot.selected,
.therapist-option.selected {
  border-color: var(--forest);
  background: var(--jade-soft);
}

.toast {
  border-radius: 8px;
  border-left-color: var(--coral);
  box-shadow: var(--shadow-md);
}

.scroll-top {
  right: 22px;
  bottom: 84px;
  background: var(--forest);
  box-shadow: var(--shadow-md);
}

.wa-float {
  right: 22px;
  bottom: 152px;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 8px 22px rgba(32, 185, 106, 0.32);
}

@media (max-width: 1020px) {
  .top-nav {
    display: block;
  }

  .top-menu > a:not(:nth-last-child(-n+2)) {
    display: none;
  }

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

  .member-story {
    min-height: 420px;
  }

  .member-story img {
    min-height: 420px;
  }

  .therapist-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .location-map {
    min-height: 420px;
  }
}

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

  .container {
    width: min(100% - 28px, 1220px);
  }

  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero {
    display: block;
    min-height: min(760px, calc(100vh - 66px));
    padding: 118px 0 112px;
  }

  .hero-content {
    width: min(100% - 28px, 760px);
    margin-left: 14px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 11.5vw, 3.85rem);
  }

  .hero .desc {
    margin-bottom: 18px;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .hero-location-badge {
    display: none;
  }

  .hero-quickbar {
    left: 14px;
    bottom: 82px;
    width: calc(100% - 28px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-quickbar a {
    min-height: 44px;
  }

  .lang-selector {
    top: 76px;
    right: 14px;
  }

  .member-story {
    min-height: 300px;
  }

  .member-story img {
    min-height: 300px;
  }

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

  .cat-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cat-header p {
    display: none;
  }

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

  .about-image,
  .about-image img {
    min-height: 320px;
  }

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

  .therapist-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 0 12px;
    scroll-snap-type: x mandatory;
  }

  .therapist-card {
    min-width: 190px;
    scroll-snap-align: start;
  }

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

  .location-grid > div:first-child {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-bottom: 96px;
  }

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

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .modal-overlay {
    align-items: flex-end !important;
  }

  .modal-overlay[id="loginModal"] > div,
  .modal-overlay[id="topupFrontModal"] > div {
    width: 100%;
    max-height: 92vh;
    border-radius: 12px 12px 0 0 !important;
  }

  .modal-container {
    width: 100%;
    max-width: none;
    max-height: 92vh;
    border-radius: 12px 12px 0 0;
  }

  .wa-float {
    right: 16px;
    bottom: 146px;
  }

  .scroll-top {
    right: 16px;
    bottom: 80px;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .membership-benefits,
  .feature-grid,
  .about-highlights {
    grid-template-columns: 1fr 1fr !important;
  }

  .benefit-card {
    min-height: 92px;
    padding: 14px;
  }

  .contact-methods {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-methods .btn {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
