/* ==========================================================
   Chinese font support
   ========================================================== */
:lang(zh-Hans) {
  font-family: 'Montserrat', 'PingFang SC', 'Hiragino Sans GB',
               'Microsoft YaHei', 'Noto Sans SC', sans-serif;
  word-break: break-word;
}
:lang(zh-Hans) h1, :lang(zh-Hans) h2, :lang(zh-Hans) h3,
:lang(zh-Hans) h4, :lang(zh-Hans) .section__title,
:lang(zh-Hans) .hero__title, :lang(zh-Hans) .page-hero h1 {
  font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei',
               'Noto Sans SC', 'Cormorant Garamond', serif;
  letter-spacing: 0;
  font-weight: 500; /* Chinese serifs look better at medium weight */
}

/* ==========================================================
   CSS Custom Properties
   ========================================================== */
:root {
  --primary:        #CC2929;
  --primary-light:  #E87070;
  --primary-dark:   #9B1A1A;
  --gold:           #C9A45C;
  --gold-light:     #E8D5A3;
  --dark:           #1d1d1b;   /* EstheClinic brand dark (from logo SVG) */
  --dark-alt:       #2a2a28;
  --text:           #1d1d1b;
  --text-muted:     #5a5a55;
  --text-faint:     #9a9a94;
  --white:          #ffffff;
  --bg:             #ffffff;
  --bg-soft:        #FDF8F0;
  --border:         #EAD9C8;

  /* EstheClinic typography — Cormorant Garamond (headings) + Montserrat (body) */
  --font-head:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:  'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --sp:     100px;     /* section padding */
  --cw:     1280px;    /* container width */
  --cp:     40px;      /* container padding */

  --ease:   all 0.3s ease;
  --ease-s: all 0.6s ease;

  --sh-sm:  0 2px 12px rgba(0,0,0,.08);
  --sh-md:  0 8px 32px rgba(0,0,0,.12);
  --sh-lg:  0 16px 64px rgba(0,0,0,.16);

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-pill: 100px;
}

/* ==========================================================
   Reset
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; transition: var(--ease); }
ul { list-style: none; }
input, textarea, select, button { font: inherit; border: none; outline: none; }

/* ==========================================================
   Layout helpers
   ========================================================== */
.container {
  max-width: var(--cw);
  margin: 0 auto;
  padding: 0 var(--cp);
}
.section        { padding: var(--sp) 0; }
.section--bg    { background: var(--bg-soft); }
.section--dark  { background: var(--dark); color: var(--white); }

.section__head  { text-align: center; margin-bottom: 64px; }
.section__head--light .section__title { color: var(--white); }

.section__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(176,125,110,.1);
  padding: 6px 18px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.section--dark .section__tag { color: var(--gold); background: rgba(201,164,92,.15); }

.section__title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;   /* Cormorant Garamond looks best at Regular weight */
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section--dark .section__title { color: var(--white); }
.section__sub { font-family: var(--font-body); font-size: 16px; color: var(--text-muted); max-width: 580px; margin: 0 auto; line-height: 1.75; }

/* ==========================================================
   Buttons
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
}
@keyframes btn-heartbeat {
  0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(176,125,110,.5); }
  14%  { transform: scale(1.06); }
  28%  { transform: scale(1); }
  42%  { transform: scale(1.04); }
  70%  { transform: scale(1); box-shadow: 0 0 0 10px rgba(176,125,110,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(176,125,110,0); }
}
@keyframes btn-shine {
  0%   { left: -80%; }
  50%, 100% { left: 130%; }
}
.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  position: relative;
  overflow: hidden;
  animation: btn-heartbeat 2.4s ease-in-out infinite;
}
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.35) 50%, transparent 80%);
  animation: btn-shine 2.4s ease-in-out infinite;
  pointer-events: none;
}
.btn--primary:hover {
  background: #a8883e;
  border-color: #a8883e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,164,92,.4);
  animation: none;
}
.btn--primary:hover::after { display: none; }
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn--outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn--gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  font-weight: 700;
}
.btn--gold:hover {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--lg  { padding: 16px 38px; font-size: 12px; }
.btn--sm  { padding: 9px 20px;  font-size: 11px; letter-spacing: 1.2px; }
.btn--full { width: 100%; }

/* ==========================================================
   Header / Navigation
   ========================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--ease);
}
.header.scrolled { box-shadow: var(--sh-md); }

.nav {
  display: flex;
  align-items: center;
  height: 76px;
  gap: 24px;
}
.nav__logo { flex-shrink: 0; font-family: var(--font-head); font-size: 22px; font-weight: 400; letter-spacing: 3px; text-transform: uppercase; }
.logo-estre  { color: var(--primary); }
.logo-clinic { color: var(--dark); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
}
.nav__item { position: relative; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 9px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text);
  border-radius: var(--r-sm);
  white-space: nowrap;
  cursor: pointer;
}
.nav__link:hover { color: var(--primary); background: var(--bg-soft); }
.caret { font-style: normal; font-size: 10px; transition: transform .2s; }
.nav__item:hover .caret { transform: rotate(180deg); }

/* Dropdown — desktop hover panel */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
  padding: 10px 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all .22s ease;
  pointer-events: none;
  z-index: 100;
}
.nav__item:hover .dropdown,
.nav__item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown li a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: var(--text);
  border-radius: var(--r-sm);
  white-space: nowrap;
}
.dropdown li a:hover { background: var(--bg-soft); color: var(--primary); padding-left: 18px; }
.has-dropdown > .nav__link { cursor: pointer; }
.nav__item.open > .nav__link .caret,
.nav__item:hover > .nav__link .caret { transform: rotate(180deg); }

.nav__item--cta { margin-left: 10px; }


/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--ease);
}

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 76px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #130808 0%, #2a1010 25%, #3a1e1e 55%, #1a1a2e 100%);
  z-index: -2;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 85% at 30% 50%, rgba(176,125,110,.22) 0%, transparent 70%),
    radial-gradient(ellipse 45% 65% at 80% 75%, rgba(201,164,92,.08) 0%, transparent 60%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%, rgba(0,0,0,.05) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 500px;
  grid-template-rows: 520px;
  align-items: center;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 80px;
}
.hero__content { max-width: 560px; }
.hero__visual-wrap {
  position: relative;
}
.hero__visual {
  position: relative;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
}
.hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Starburst badge — sits on the wrapper (outside overflow:hidden card) */
.hero__badge {
  position: absolute;
  bottom: -36px;
  right: -36px;
  width: 210px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
}
.hero__badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  clip-path: polygon(50% 0%,55% 18%,69% 6%,63% 23%,80% 17%,68% 30%,87% 32%,72% 40%,87% 50%,72% 60%,87% 68%,68% 70%,80% 83%,63% 77%,69% 94%,55% 82%,50% 100%,45% 82%,31% 94%,37% 77%,20% 83%,32% 70%,13% 68%,28% 60%,13% 50%,28% 40%,13% 32%,32% 30%,20% 17%,37% 23%,31% 6%,45% 18%);
  animation: badge-spin 14s linear infinite;
}
.hero__badge span {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-body);
  line-height: 1.5;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0,0,0,.2);
  pointer-events: none;
}
:lang(zh-Hans) .hero__badge span {
  font-size: 17px;
  text-transform: none;
  letter-spacing: 1px;
  line-height: 1.6;
}
@keyframes badge-spin {
  to { transform: rotate(360deg); }
}
@media (max-width: 768px) {
  .hero__badge { width: 164px; height: 164px; bottom: -24px; right: -24px; }
  .hero__badge span { font-size: 14px; }
  :lang(zh-Hans) .hero__badge span { font-size: 15px; }
}
.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.1);
  pointer-events: none;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  background: rgba(201,164,92,.18);
  border: 1px solid rgba(201,164,92,.38);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 300;           /* Cormorant Light — elegant & thin */
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 22px;
}
.hero__title em { font-style: italic; font-weight: 300; color: var(--primary-light); }

.hero__sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Stats bar */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 40px;
  max-width: 680px;
}
.hero__stat { text-align: center; padding: 0 16px; position: relative; }
.hero__stat + .hero__stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: rgba(255,255,255,.12);
}
.hero__stat-num {
  display: inline;
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -1px;
}
.hero__stat-suf {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
}
.hero__stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-top: 8px;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.35);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero__scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.35), transparent);
}

/* ==========================================================
   Treatment Cards
   ========================================================== */
.treatments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.tcard {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: var(--ease-s);
}
.tcard:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }

.tcard__img {
  display: block;
  height: 380px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.tcard__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 35%, rgba(255,255,255,.18) 0%, transparent 55%),
    radial-gradient(circle at 72% 65%, rgba(0,0,0,.1) 0%, transparent 45%);
}
.tcard__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,.45) 0%, transparent 55%);
}
.tcard__img--1 { background-image: url('../images/1.jpg'); background-size: cover; background-position: center top; }
.tcard__img--2 { background-image: url('../images/2.jpg'); background-size: cover; background-position: center top; }
.tcard__img--3 { background-image: url('../images/3.jpg'); background-size: cover; background-position: center top; }
.tcard__img--4 { background-image: url('../images/4.jpg'); background-size: cover; background-position: center top; }

.tcard__body { padding: 28px; }
.tcard__body h3 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--dark);
  margin-bottom: 10px;
}
.tcard__body p { font-family: var(--font-body); font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.tcard__link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tcard__link .arrow { transition: transform .3s; }
.tcard:hover .tcard__link .arrow { transform: translateX(5px); }

/* ==========================================================
   Program Cards
   ========================================================== */
.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.programs__row--center {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.programs__row--center .pcard {
  flex: 0 0 calc((100% - 24px) / 3);
  max-width: calc((100% - 24px) / 3);
}
.pcard {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--ease-s);
}
.pcard::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.pcard:hover::after { transform: scaleX(1); }

.pcard__num {
  display: block;
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 300;
  color: rgba(176,125,110,.12);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -2px;
  transition: color .4s;
}
.pcard:hover .pcard__num { color: rgba(176,125,110,.2); }

.pcard__title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--dark);
  margin-bottom: 12px;
}
.pcard__desc { font-family: var(--font-body); font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.pcard__link { font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--primary); }
.pcard__link:hover { letter-spacing: .5px; }

/* ==========================================================
   About Section
   ========================================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Visual column */
.about__visual { position: relative; }
.about__img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, #D4A5A5 0%, #B07D6E 40%, #7a5248 70%, #C9A45C 100%);
  position: relative;
  overflow: hidden;
}
.about__img-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(0,0,0,.1) 0%, transparent 40%);
}
.about__img-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 48%;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border: 6px solid var(--white);
  box-shadow: var(--sh-md);
}
.about__float-badge {
  position: absolute;
  top: 28px;
  right: -22px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 14px 22px;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
  text-align: center;
}
.about__float-num {
  display: block;
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.about__float-text { display: block; font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* Content column */
.about__content .section__tag { display: inline-block; margin-bottom: 16px; }
.about__content .section__title { margin-bottom: 20px; }
.about__content > p { font-family: var(--font-body); font-size: 16px; color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; }

.about__features { display: flex; flex-direction: column; gap: 22px; margin: 30px 0 38px; }
.about__feat { display: flex; gap: 14px; align-items: flex-start; }
.about__feat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 7px;
}
.about__feat h4 { font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.5px; color: var(--dark); margin-bottom: 4px; }
.about__feat p  { font-family: var(--font-body); font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ==========================================================
   Why Us
   ========================================================== */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.wcard {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 36px 22px;
  text-align: center;
  transition: var(--ease-s);
}
.wcard:hover {
  background: rgba(176,125,110,.15);
  border-color: rgba(176,125,110,.4);
  transform: translateY(-6px);
}
.wcard__icon { font-size: 34px; margin-bottom: 18px; }
.wcard h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: 0.2px;
}
.wcard p { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ==========================================================
   Awards
   ========================================================== */
.awards__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.award { transition: var(--ease-s); }
.award:hover { transform: translateY(-6px) scale(1.03); }
.award__inner {
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #9a7030 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(201,164,92,.3);
  border: 3px solid rgba(255,255,255,.25);
  position: relative;
  overflow: hidden;
}
.award__inner::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  pointer-events: none;
}
.award__star { font-size: 14px; color: var(--white); margin-bottom: 3px; }
.award__year {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.award__name {
  font-size: 8.5px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.35;
  margin-bottom: 3px;
}
.award__org { font-size: 7.5px; color: rgba(255,255,255,.65); line-height: 1.3; }

/* ==========================================================
   Testimonials / Slider
   ========================================================== */
.slider { overflow: hidden; }
.slider__track {
  display: flex;
  gap: 24px;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}

.review {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--sh-md);
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}
.review__stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 18px; }
.review__text {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.review__author { display: flex; align-items: center; gap: 14px; }
.review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 400;
  flex-shrink: 0;
}
.review__author strong { display: block; font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: 0.5px; color: var(--dark); }
.review__author span  { display: block; font-family: var(--font-body); font-size: 13px; color: var(--text-faint); margin-top: 2px; }

.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.slider__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 22px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}
.slider__btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

.slider__dots { display: flex; gap: 8px; }
.sdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--ease);
  padding: 0;
}
.sdot.active { background: var(--primary); width: 22px; border-radius: 4px; }

/* ==========================================================
   Media logos
   ========================================================== */
.media__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.media__logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-faint);
  transition: var(--ease);
  cursor: default;
  user-select: none;
}
.media__logo:hover { color: var(--primary); }

/* ==========================================================
   Locations
   ========================================================== */
.locations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lcard {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: var(--ease-s);
}
.lcard:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }

.lcard__map {
  height: 175px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
}
.lcard__map::after { content: '📍'; filter: drop-shadow(0 4px 8px rgba(0,0,0,.2)); }

.lcard__map--1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.lcard__map--2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.lcard__map--3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.lcard__map--4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.lcard__map--5 { background: linear-gradient(135deg, #fa709a, #fee140); }

.lcard__body { padding: 24px; }
.lcard__body h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--dark);
  margin-bottom: 6px;
}
.lcard__addr { font-family: var(--font-body); font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.lcard__hours {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 18px;
}
.lcard__hours span { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.3px; color: var(--text-faint); }
.lcard__actions { display: flex; gap: 10px; }

/* ==========================================================
   Newsletter
   ========================================================== */
.newsletter {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 40%, var(--dark) 100%);
  padding: 80px 0;
}
.newsletter__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.newsletter__badge {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(201,164,92,.2);
  border: 1px solid rgba(201,164,92,.45);
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.newsletter__text h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 300;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}
.newsletter__text p { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.8; }

.newsletter__form { display: flex; flex-direction: column; gap: 12px; }
.newsletter__form input {
  padding: 15px 22px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: 14px;
  transition: var(--ease);
}
.newsletter__form input::placeholder { color: rgba(255,255,255,.45); }
.newsletter__form input:focus { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.4); }
.newsletter__privacy { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 4px; }

/* ==========================================================
   Contact
   ========================================================== */
.section.contact {
  padding: 48px 0;
  scroll-margin-top: 76px;
  background: linear-gradient(135deg, #2e1a16 0%, #3d2420 40%, #2a1a18 100%);
}
.section.contact .section__head { margin-bottom: 20px; }
.section.contact .section__title { color: #f5e6df; }
.section.contact .section__sub { color: rgba(245,230,223,.6); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
}
.contact__info { display: flex; flex-direction: column; gap: 28px; }
.contact__item { display: flex; gap: 14px; align-items: flex-start; }
.contact__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #d4957e;
}
.contact__icon svg { display: block; }
.contact__item h4 { font-size: 14px; font-weight: 600; color: #f5e6df; margin-bottom: 3px; }
.contact__item p  { font-size: 13px; font-weight: 600; color: #fff; line-height: 1.6; }
.contact__item a  { font-size: 13px; font-weight: 600; color: #fff; }
.contact__item a:hover { color: #f5e6df; }

.contact__socials { display: flex; gap: 10px; }
.csocial {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: var(--ease);
}
.csocial:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* Contact form */
.contact__form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form__grp { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.form__grp:last-child { margin-bottom: 0; }
.form__grp label { font-size: 11px; font-weight: 600; color: var(--dark); letter-spacing: .4px; }
.form__grp input,
.form__grp select,
.form__grp textarea {
  padding: 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  transition: var(--ease);
  appearance: none;
}
.form__grp input:focus,
.form__grp select:focus,
.form__grp textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(176,125,110,.1);
}
.form__grp input::placeholder,
.form__grp textarea::placeholder { color: var(--text-faint); }
.form__grp textarea { resize: vertical; min-height: 100px; }
.form__tel-wrap { display: flex; align-items: center; gap: 8px; }
.form__tel-prefix { font-size: 14px; font-weight: 600; color: var(--text); white-space: nowrap; }
.form__tel-wrap input { flex: 1; }

/* ==========================================================
   Footer
   ========================================================== */
.footer { background: var(--dark); }
.footer__top { padding: 72px 0 48px; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__logo {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #fff;
}
.footer__logo span { color: var(--primary); }
.footer__brand p { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.8; margin-bottom: 22px; }

.footer__socials { display: flex; gap: 10px; }
.fsocial {
  padding: 7px 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.45);
  font-size: 12px;
  transition: var(--ease);
}
.fsocial:hover { background: rgba(255,255,255,.1); color: var(--white); }

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col ul li { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,.4); }
.footer__col ul li a { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,.4); }
.footer__col ul li a:hover { color: var(--primary-light); padding-left: 3px; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 22px 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom-inner p { font-family: var(--font-body); font-size: 13px; letter-spacing: 0.3px; color: rgba(255,255,255,.25); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-family: var(--font-body); font-size: 13px; letter-spacing: 0.3px; color: rgba(255,255,255,.25); }
.footer__legal a:hover { color: rgba(255,255,255,.65); }
.back-to-top { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.5px; color: rgba(255,255,255,.45); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: var(--r-pill); padding: 7px 18px; cursor: pointer; transition: var(--ease); }
.back-to-top:hover { background: rgba(255,255,255,.15); color: rgba(255,255,255,.85); }

/* ==========================================================
   Language Switcher
   ========================================================== */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  border-left: 1px solid var(--border);
  margin-left: 4px;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  width: 42px;
  height: 30px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--ease);
  letter-spacing: .5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.lang-btn:hover { color: var(--primary); border-color: rgba(176,125,110,.4); }
.lang-btn.active { color: var(--primary); border-color: var(--primary); background: rgba(176,125,110,.08); }

/* Mobile lang switcher inside menu */
@media (max-width: 1024px) {
  .nav__lang {
    border-left: none;
    border-top: 1px solid var(--border);
    width: 100%;
    padding: 14px 14px;
    margin-left: 0;
    gap: 8px;
  }
  .lang-btn { font-size: 14px; width: 52px; height: 36px; }
}

/* ==========================================================
   WhatsApp float button
   ========================================================== */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  z-index: 950;
  transition: var(--ease);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,.55); }

/* ==========================================================
   Scroll-reveal animations
   ========================================================== */
[data-aos] { opacity: 1; transform: none; }
[data-aos].in-view { opacity: 1; transform: none; }

/* ==========================================================
   Responsive — 1200 px
   ========================================================== */
@media (max-width: 1200px) {
  :root { --cp: 24px; }
  .awards__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ==========================================================
   Reviews Carousel
   ========================================================== */
.reviews-section { overflow: hidden; background: #F5ECD9; padding-top: var(--sp); padding-bottom: var(--sp); }
.reviews-section .section__head { margin-bottom: 48px; }

.rv-carousel {
  position: relative;
  overflow: hidden;
  padding: 8px 0 24px;
}
.rv-carousel::before,
.rv-carousel::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.rv-carousel::before { left: 0;  background: linear-gradient(to right, #F5ECD9 0%, transparent 100%); }
.rv-carousel::after  { right: 0; background: linear-gradient(to left,  #F5ECD9 0%, transparent 100%); }

.rv-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  width: max-content;
  will-change: transform;
  animation: rv-scroll 60s linear infinite;
}
.rv-track:hover { animation-play-state: paused; }

@keyframes rv-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.rv-card {
  flex: 0 0 340px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: box-shadow .2s;
}
.rv-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,.10); }

.rv-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rv-card__stars { color: #f59e0b; font-size: 15px; letter-spacing: 2px; }
.rv-card__badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #666;
  letter-spacing: 0.3px;
  font-family: var(--font-body);
}

.rv-card__text {
  font-size: 14px;
  line-height: 1.78;
  color: var(--text);
  font-style: italic;
  flex: 1;
}

.rv-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.rv-card__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fdf0f2;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}
.rv-card__info strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  font-family: var(--font-body);
}
.rv-card__info span {
  font-size: 12px;
  color: var(--text-muted);
}
.rv-card__date {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .rv-track { animation: none; }
}

@media (max-width: 768px) {
  .rv-carousel::before,
  .rv-carousel::after { width: 36px; }
  .rv-card { flex: 0 0 270px; min-width: 270px; }
  .rv-track { animation-duration: 80s; }
}

/* ==========================================================
   Responsive — 1024 px (tablet breakpoint)
   ========================================================== */
@media (max-width: 1024px) {
  /* ── Mobile nav panel ── */
  .nav__toggle { display: flex; }
  .nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    height: calc(100dvh - 76px - var(--sat));
    z-index: 50;
    background: #f2f5f2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    padding-top: 4px;
  }
  .nav__menu.open { display: flex; }

  /* Nav items — no borders, generous spacing like FynixChat */
  .nav__item { width: 100%; }
  .nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    color: #4a4a4a;
    background: none;
    border-bottom: none;
    white-space: normal;
    letter-spacing: 0;
  }
  .nav__link:hover { color: var(--primary); background: rgba(0,0,0,.04); }

  /* Language switcher + CTA — pinned to bottom, same section as FynixChat buttons */
  .nav__lang {
    display: flex;
    align-items: center;
    padding: 16px 20px 8px;
    gap: 10px;
    margin-top: auto;
    border-top: 1px solid rgba(0,0,0,.09);
  }
  /* Style lang buttons to look like secondary outlined buttons */
  .nav__lang .lang-btn {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.15);
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    text-align: center;
  }
  .nav__lang .lang-btn.active {
    background: #fff;
    border-color: var(--primary);
    color: var(--primary);
  }

  /* CTA button — full-width, rounded corners like FynixChat */
  .nav__item--cta {
    padding: 8px 20px calc(20px + var(--sab));
    margin-top: 0;
    border-bottom: none;
  }
  .nav__item--cta .btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 24px;
    min-height: 52px;
    border-radius: 10px;
  }

  /* Layout */
  .treatments__grid  { grid-template-columns: repeat(2, 1fr); }
  .programs__grid    { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid      { grid-template-columns: repeat(3, 1fr); }
  .about__grid       { grid-template-columns: 1fr; gap: 48px; }
  .about__visual     { max-width: 460px; margin: 0 auto; }
  .hero__stats       { grid-template-columns: repeat(2, 1fr); max-width: 400px; }
  .locations__grid   { grid-template-columns: repeat(2, 1fr); }
  .newsletter__grid  { grid-template-columns: 1fr; gap: 40px; }
  .contact__grid     { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================
   Responsive — 768 px
   ========================================================== */
@media (max-width: 768px) {
  :root { --sp: 64px; }
  .treatments__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .programs__grid   { grid-template-columns: 1fr; }
  .why-us__grid     { grid-template-columns: 1fr 1fr; }
  .awards__grid     { grid-template-columns: repeat(2, 1fr); }
  .locations__grid  { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .hero__inner      { grid-template-columns: 1fr; grid-template-rows: auto; gap: 32px; padding-top: 48px; padding-bottom: 60px; }
  .hero__content    { max-width: 100%; }
  .hero__visual     { height: 360px; }
  .hero__btns       { flex-direction: column; align-items: flex-start; }
  .form__row        { grid-template-columns: 1fr; gap: 0; }
  .contact__form    { padding: 32px 22px; }
  .footer__grid     { grid-template-columns: 1fr; }
  .media__logos     { gap: 28px; }
  .about__float-badge { right: 0; }
  .about__img-accent  { right: 0; }

  /* Slider: 1 card per view on mobile */
  .review { flex: 0 0 100%; }
}

/* ==========================================================
   Responsive — 480 px
   ========================================================== */
@media (max-width: 480px) {
  :root { --sp: 48px; --cp: 16px; }
  .why-us__grid     { grid-template-columns: 1fr; }
  .hero__stats      { grid-template-columns: 1fr 1fr; }
  .hero__stat + .hero__stat::before { display: none; }
  .lcard__actions   { flex-direction: column; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__legal    { justify-content: center; }
}

/* ==========================================================
   Safe Areas — iPhone Dynamic Island / notch / home bar
   ========================================================== */
:root {
  --sat: env(safe-area-inset-top,    0px);
  --sab: env(safe-area-inset-bottom, 0px);
  --sal: env(safe-area-inset-left,   0px);
  --sar: env(safe-area-inset-right,  0px);
}

/* Fixed header slides under Dynamic Island otherwise */
.header { padding-top: var(--sat); }

/* Hero top-padding must account for taller header on notched devices */
.hero { padding-top: calc(76px + var(--sat)); }

/* WhatsApp float: keep above home indicator / gesture bar */
.wa-float {
  bottom: calc(24px + var(--sab));
  right:  calc(20px + var(--sar));
}

/* Mobile nav panel: position:absolute relative to header, top:100% places it below header */

/* ==========================================================
   Global Touch Enhancements
   ========================================================== */

/* Remove grey tap flash on all touchable elements */
* { -webkit-tap-highlight-color: transparent; }
a, button { -webkit-touch-callout: none; }

/* iOS text size auto-adjustment */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* All buttons meet Apple/Google 44px minimum tap target */
.btn { min-height: 44px; }
.slider__btn, .lang-btn, .faq-q { min-height: 44px; }

/* iOS zoom prevention: any input < 16px triggers zoom */
@media (max-width: 1024px) {
  input, select, textarea { font-size: 16px !important; }
}

/* Mobile menu: smooth momentum scrolling for long menus */
@media (max-width: 1024px) {
  .nav__menu {
    overscroll-behavior-y: contain;
  }
  .nav__link { min-height: 48px; }
  .dropdown li a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 20px;
  }
  .nav__item--cta { margin-top: 8px; }
  .nav__item--cta .btn {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    font-size: 15px;
  }
}

/* ==========================================================
   430 px — iPhone 17 Pro Max / 17 Plus / large Android
   ========================================================== */
@media (max-width: 430px) {
  :root { --sp: 52px; --cp: 18px; }

  /* --- Hero --- */
  .hero__visual { height: 280px; }
  .hero__eyebrow { font-size: 10px; padding: 6px 14px; letter-spacing: 1.5px; }
  .hero__title { font-size: 38px; line-height: 1.08; margin-bottom: 16px; }
  .hero__sub { font-size: 14px; line-height: 1.65; margin-bottom: 28px; }
  .hero__btns { flex-direction: column; width: 100%; gap: 12px; }
  .hero__btns .btn { width: 100%; max-width: 100%; justify-content: center; }
  .hero__stats { grid-template-columns: 1fr 1fr; max-width: 100%; gap: 20px; padding-top: 24px; }
  .hero__stat-num { font-size: 28px; }
  .hero__stat-suf { font-size: 22px; }
  .hero__stat-label { font-size: 9px; letter-spacing: 1px; }
  .hero__scroll-hint { display: none; } /* no room on small screens */

  /* --- Section headings --- */
  .section__head { margin-bottom: 36px; }
  .section__title { font-size: 26px; }
  .section__sub { font-size: 14px; }

  /* --- Treatment cards --- */
  .treatments__grid { grid-template-columns: 1fr; max-width: 100%; }
  .tcard__img { height: 200px; }
  .tcard__body { padding: 22px 20px; }
  .tcard__body h3 { font-size: 18px; }

  /* --- Program cards --- */
  .programs__grid { grid-template-columns: 1fr; }
  .pcard { padding: 28px 20px; }
  .pcard__num { font-size: 48px; }
  .pcard__title { font-size: 19px; }

  /* --- About section --- */
  .about__grid { gap: 48px; }
  .about__visual { max-width: 100%; }
  .about__img-main { aspect-ratio: 4/3; }
  .about__img-accent { display: none; }
  .about__float-badge { top: auto; bottom: -20px; right: 16px; }
  .about__content .btn { width: 100%; justify-content: center; }
  .about__content .section__title { font-size: 24px; }

  /* --- Why Us --- */
  .why-us__grid { grid-template-columns: 1fr; gap: 14px; }
  .wcard { padding: 24px 18px; text-align: left; display: flex; gap: 16px; align-items: flex-start; }
  .wcard__icon { font-size: 26px; margin-bottom: 0; flex-shrink: 0; }
  .wcard h3 { font-size: 14px; margin-bottom: 6px; }
  .wcard p { font-size: 13px; }

  /* --- Awards --- */
  .awards__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .award__year { font-size: 16px; }
  .award__name { font-size: 7.5px; }
  .award__org  { font-size: 7px; }

  /* --- Slider controls --- */
  .slider__btn { width: 40px; height: 40px; font-size: 20px; }
  .testimonials__controls, .slider__controls { gap: 12px; }

  /* --- Locations --- */
  .locations__grid { grid-template-columns: 1fr; max-width: 100%; }
  .lcard__map { height: 150px; }
  .lcard__body { padding: 20px 18px; }
  .lcard__body h3 { font-size: 17px; }
  .lcard__actions { flex-direction: row; gap: 8px; }
  .lcard__actions .btn { flex: 1; justify-content: center; }

  /* --- Newsletter --- */
  .newsletter { padding: 52px 0; }
  .newsletter__text h2 { font-size: 24px; }
  .newsletter__text p { font-size: 14px; }

  /* --- Contact --- */
  .contact__form { padding: 24px 16px; border-radius: var(--r-md); }
  .contact__info { gap: 20px; }
  .contact__icon { width: 40px; height: 40px; font-size: 16px; }

  /* --- Footer --- */
  .footer__top { padding: 44px 0 28px; }
  .footer__grid { gap: 24px; }
  .footer__logo { font-size: 22px; }
  .footer__brand p { font-size: 13px; }
  .footer__col h4 { font-size: 13px; margin-bottom: 14px; }
  .footer__col ul { gap: 9px; }
  .footer__col ul li { font-size: 13px; }
  .footer__bottom { padding: 18px 0; }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
  .footer__legal { justify-content: center; gap: 16px; flex-wrap: wrap; }

  /* --- WhatsApp button --- */
  .wa-float { width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }

  /* --- Lang switcher in mobile menu --- */
  .nav__lang { padding: 12px 14px; gap: 10px; border-top: 1px solid var(--border); }
  .lang-btn { width: 54px; height: 38px; font-size: 13px; }
}

/* ==========================================================
   390 px — iPhone 17 / 16 (standard)
   ========================================================== */
@media (max-width: 390px) {
  :root { --cp: 14px; }
  .hero__title { font-size: 34px; }
  .hero__sub { font-size: 13px; }
  .hero__stat-num { font-size: 25px; }
  .hero__stat-suf { font-size: 20px; }
  .section__title { font-size: 23px; }
  .about__content .section__title { font-size: 22px; }
  .newsletter__text h2 { font-size: 22px; }
  .pcard { padding: 22px 16px; }
  .wcard { padding: 18px 14px; }
}

/* ==========================================================
   360 px — smaller Android / iPhone SE
   ========================================================== */
@media (max-width: 360px) {
  :root { --cp: 12px; }
  .hero__title { font-size: 30px; }
  .hero__stat-num { font-size: 22px; }
  .hero__stat-suf { font-size: 18px; }
  .section__title { font-size: 21px; }
  .btn--lg { padding: 14px 22px; font-size: 14px; }
  .newsletter__text h2 { font-size: 20px; }
  .hero__eyebrow { font-size: 9px; padding: 5px 10px; }
}

/* ==========================================================
   Chinese language — hero & footer font-size adjustments
   ========================================================== */

:lang(zh-Hans) .footer__brand p { font-size: 14px; line-height: 1.9; }
:lang(zh-Hans) .footer__col h4 { font-size: 15px; }
:lang(zh-Hans) .footer__col ul li,
:lang(zh-Hans) .footer__col ul li a { font-size: 14px; }
:lang(zh-Hans) .footer__bottom-inner p,
:lang(zh-Hans) .footer__legal a { font-size: 13px; }

/* Chinese — mobile hero adjustments */
@media (max-width: 768px) {
  :lang(zh-Hans) .hero__title { font-size: 36px; line-height: 1.1; }
  :lang(zh-Hans) .hero__sub   { font-size: 14px; }
}
@media (max-width: 430px) {
  :lang(zh-Hans) .hero__title { font-size: 32px; }
  :lang(zh-Hans) .hero__sub   { font-size: 13px; }
}
