/* ============================================
   DUDA-inspired theme — Dental Excellence by LERTs
   Image-led hero · price-prominent service cards
   9-point Why Us · testimonials gallery
============================================ */

:root {
  --c-forest: #0E1F1A;
  --c-forest-2: #15302A;
  --c-forest-light: #1E423A;
  --c-gold: #B89968;
  --c-gold-2: #d4b787;
  --c-cream: #F7F1E4;
  --c-ivory: #FAF6EE;
  --c-white: #FFFFFF;
  --c-ink: #14191A;
  --c-text: #3A3A3A;
  --c-mute: #807C75;
  --c-line: #E6DFD0;
  --c-wa: #25D366;
  --c-wa-2: #1eb955;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(14, 31, 26, 0.05), 0 2px 6px rgba(14, 31, 26, 0.06);
  --shadow-md: 0 12px 28px rgba(14, 31, 26, 0.1);
  --shadow-lg: 0 30px 60px rgba(14, 31, 26, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1240px;
  --pad-x: clamp(20px, 5vw, 56px);

  --f-display: "Cormorant Garamond", "Sarabun", "IBM Plex Sans Thai", Georgia, serif;
  --f-sans: "Inter", "Sarabun", "IBM Plex Sans Thai", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--c-gold); }
button { font: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--c-gold); color: var(--c-forest); }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--c-ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

.eyebrow {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 600;
}
.lead { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--c-text); max-width: 60ch; }

/* ---------- Container / Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
section { padding: clamp(64px, 8vw, 110px) 0; position: relative; }

.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-3 { margin-top: 18px; }
.mt-6 { margin-top: 36px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 1px solid transparent;
  line-height: 1;
  min-height: 52px;
  transition: background .25s var(--ease), color .25s var(--ease), transform .2s var(--ease), box-shadow .25s var(--ease);
}
.btn-primary {
  background: var(--c-gold);
  color: var(--c-forest);
  box-shadow: 0 10px 24px rgba(184, 153, 104, 0.32);
}
.btn-primary:hover { background: var(--c-gold-2); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(184, 153, 104, 0.4); }

.btn-dark { background: var(--c-forest); color: var(--c-ivory); }
.btn-dark:hover { background: var(--c-forest-2); color: var(--c-gold-2); transform: translateY(-2px); }

.btn-outline { background: transparent; border-color: var(--c-forest); color: var(--c-forest); }
.btn-outline:hover { background: var(--c-forest); color: var(--c-ivory); }

.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.5); color: var(--c-ivory); }
.btn-ghost:hover { border-color: var(--c-gold); color: var(--c-gold); }

.btn-whatsapp { background: var(--c-wa); color: #fff; }
.btn-whatsapp:hover { background: var(--c-wa-2); color: #fff; transform: translateY(-2px); }

.btn-sm { padding: 10px 18px; font-size: 12px; min-height: 38px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(14, 31, 26, 0.0);
  backdrop-filter: blur(0px);
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(14, 31, 26, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(217, 195, 154, 0.16);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--c-ivory);
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-forest);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  flex: none;
}
.brand-meta { display: flex; flex-direction: column; line-height: 1.1; }
.brand-title { font-family: var(--f-display); font-size: 20px; font-weight: 500; color: var(--c-ivory); }
.brand-sub { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold-2); }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 14px;
  color: var(--c-ivory);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--c-gold);
  transition: width .3s var(--ease);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover, .nav a.active { color: var(--c-gold); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.32);
  color: var(--c-ivory);
  letter-spacing: 0.06em;
}
.lang-toggle:hover { color: var(--c-gold); border-color: var(--c-gold); }

.nav-toggle { display: none; width: 40px; height: 40px; position: relative; }
.nav-toggle span { position: absolute; left: 8px; right: 8px; height: 2px; background: var(--c-ivory); transition: all .3s var(--ease); }
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: block; position: relative; z-index: 110; }
  /* Full-screen overlay menu */
  .nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: #0E1F1A;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    padding: 96px 24px 48px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s var(--ease), visibility .4s var(--ease);
  }
  .nav.open { opacity: 1; visibility: visible; }
  .nav a {
    font-family: var(--f-display);
    font-size: clamp(30px, 8.5vw, 44px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #FAF6EE;
    padding: 14px 0;
    text-decoration: none;
    width: auto;
    text-align: center;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .5s var(--ease), transform .5s var(--ease), color .25s var(--ease);
  }
  .nav.open a { opacity: 1; transform: translateY(0); }
  .nav.open a:nth-child(1) { transition-delay: .10s; }
  .nav.open a:nth-child(2) { transition-delay: .16s; }
  .nav.open a:nth-child(3) { transition-delay: .22s; }
  .nav.open a:nth-child(4) { transition-delay: .28s; }
  .nav.open a:nth-child(5) { transition-delay: .34s; }
  .nav.open a:nth-child(6) { transition-delay: .40s; }
  .nav a::after { display: none; }
  .nav a:active, .nav a:hover, .nav a.active { color: var(--c-gold); }
  .header-cta .btn { display: none; }
}

/* ============================================
   HERO — Duda-style: full-bleed photo + right-aligned gold overlay
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  color: var(--c-ivory);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    url("../img/clinic/dental-12.jpg") center/cover no-repeat,
    var(--c-forest);
  filter: brightness(0.72) saturate(1.05);
  z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  /* Right-side wash for premium feel */
  background: linear-gradient(to left, rgba(8, 20, 16, 0.55) 0%, rgba(8, 20, 16, 0.3) 30%, transparent 65%);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  /* Top + bottom darken for header and CTA strip */
  background:
    linear-gradient(180deg, rgba(14, 31, 26, 0.55) 0%, transparent 18%, transparent 60%, rgba(14, 31, 26, 0.75) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 40px;
  display: grid;
  align-items: center;
  width: 100%;
}

/* Right-aligned text block */
.hero-overlay {
  justify-self: end;
  text-align: right;
  max-width: 720px;
  padding: 0 0 60px;
}
.hero-overlay h1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-style: italic;
  color: #d4af6a;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45), 0 8px 32px rgba(0, 0, 0, 0.6);
}
.hero-overlay .by {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  color: var(--c-gold-2);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-top: 6px;
  text-transform: none;
  letter-spacing: 0;
}
.hero-overlay .at-location {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--c-ivory);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 28px;
  text-shadow: 0 4px 24px rgba(14, 31, 26, 0.9), 0 2px 8px rgba(14, 31, 26, 0.7);
  letter-spacing: 0.02em;
}
.hero-overlay .tagline {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--c-ivory);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-top: 6px;
  font-weight: 400;
  text-shadow: 0 4px 24px rgba(14, 31, 26, 0.9), 0 2px 8px rgba(14, 31, 26, 0.7);
}

/* Bottom centered CTA strip */
.hero-bottom-cta {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--pad-x) 48px;
  color: var(--c-ivory);
}
.hero-bottom-cta .hours {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 6px;
  color: rgba(250, 246, 238, 0.9);
  text-shadow: 0 2px 12px rgba(14, 31, 26, 0.6);
}
.hero-bottom-cta .hours-time {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: var(--c-ivory);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(14, 31, 26, 0.6);
}
.hero-bottom-cta .btn {
  box-shadow: 0 14px 32px rgba(14, 31, 26, 0.35), 0 8px 24px rgba(184, 153, 104, 0.35);
}
.hero-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.btn-cta-secondary {
  background: rgba(184, 153, 104, 0.92);
  min-width: 220px;
}
.btn-cta-secondary:hover {
  background: var(--c-gold);
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .hero { min-height: 100vh; }
  .hero .container { padding-top: 110px; padding-bottom: 20px; }
  .hero-overlay {
    text-align: center;
    justify-self: center;
    padding: 40px 16px 0;
  }
  .hero-bg::before {
    background: linear-gradient(180deg, rgba(14, 31, 26, 0.45) 0%, rgba(14, 31, 26, 0.2) 40%, rgba(14, 31, 26, 0.75) 100%);
  }
  .hero-bottom-cta { padding-bottom: 32px; }
  .hero-bottom-cta .hours-time { font-size: 1.05rem; }
}

/* ============================================
   BRAND ETYMOLOGY STRIP — LERTS name origin
============================================ */
.brand-strip {
  background: var(--c-forest);
  padding: 38px 0;
  border-bottom: 1px solid rgba(184, 153, 104, 0.2);
  color: var(--c-ivory);
}
.brand-strip .brand-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.brand-mark-wrap {
  display: flex;
  justify-content: center;
}
.brand-mark-wrap img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
}
.brand-story .brand-eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-gold-2);
  font-weight: 600;
  margin-bottom: 8px;
}
.brand-story h2 {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--c-ivory);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.brand-story h2 .thai {
  font-family: 'Sarabun', var(--f-display), serif;
  color: var(--c-gold);
  font-weight: 600;
  margin-right: 4px;
}
.brand-story h2 em {
  color: var(--c-gold-2);
  font-style: italic;
  font-weight: 400;
  margin-right: 6px;
}
.brand-story h2 .dot {
  color: rgba(212, 175, 106, 0.5);
  font-style: normal;
  margin: 0 6px;
}
.brand-story h2 .meaning {
  color: var(--c-ivory);
  font-style: italic;
  font-weight: 500;
}
.brand-story p {
  font-size: 0.9rem;
  color: rgba(250, 246, 238, 0.82);
  line-height: 1.55;
  margin: 0;
  max-width: 70ch;
}
.brand-story p strong {
  color: var(--c-ivory);
  font-weight: 600;
}
.brand-story p em {
  color: var(--c-gold-2);
  font-family: var(--f-display);
  font-style: italic;
}
.brand-story .brand-bottom {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--c-gold-2);
  margin-top: 6px;
  padding-top: 0;
  border-top: none;
}
@media (max-width: 760px) {
  .brand-strip { padding: 28px 0; }
  .brand-strip .brand-grid { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .brand-story p, .brand-story .brand-bottom { max-width: none; margin-left: auto; margin-right: auto; }
  .brand-mark-wrap img { max-width: 160px; }
}

/* Large pill button — used on hero bottom CTA */
.btn-lg {
  padding: 18px 44px;
  font-size: 14px;
  letter-spacing: 0.14em;
  min-height: 56px;
  border-radius: var(--r-pill);
}

/* ============================================
   TRUST STRIP — brand logos
============================================ */
.trust {
  background: var(--c-cream);
  padding: 36px 0;
  border-bottom: 1px solid var(--c-line);
}
.trust-head {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-mute);
  font-weight: 600;
  margin-bottom: 24px;
}
.trust-logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
  align-items: center;
  justify-items: center;
}
.trust-logos > div {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1);
  opacity: 0.6;
  transition: opacity .3s var(--ease), filter .3s var(--ease);
}
.trust-logos > div:hover { opacity: 1; filter: grayscale(0); }
.trust-logos img { max-height: 100%; max-width: 120px; width: auto; height: auto; object-fit: contain; }
@media (max-width: 1100px) {
  .trust-logos { grid-template-columns: repeat(4, 1fr); gap: 28px 30px; }
}
@media (max-width: 720px) {
  .trust-logos { grid-template-columns: repeat(3, 1fr); gap: 24px 26px; }
  .trust-logos > div:nth-child(7) { grid-column: 2 / 3; }
}
@media (max-width: 480px) {
  .trust-logos { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .trust-logos > div:nth-child(7) { grid-column: 1 / 3; }
}

/* ============================================
   SECTION HEAD
============================================ */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 60px);
}
.section-head .eyebrow { margin-bottom: 14px; display: inline-block; }
.section-head h2 { margin-top: 6px; }
.section-head p { margin-top: 18px; color: var(--c-text); }

/* ============================================
   SERVICE CARDS — icon + image + price
============================================ */
.services { background: var(--c-white); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-img {
  aspect-ratio: 4/3;
  background-color: var(--c-cream);
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14, 31, 26, 0.25));
}
.service-icon {
  position: absolute;
  bottom: -28px; left: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-forest);
  color: var(--c-gold);
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(14, 31, 26, 0.25);
  z-index: 2;
}
.service-icon svg { width: 24px; height: 24px; }

.service-body {
  padding: 44px 24px 28px;
  flex: 1;
  display: flex; flex-direction: column;
}
.service-body h3 {
  font-size: 1.4rem;
  color: var(--c-forest);
  margin-bottom: 8px;
}
.service-body p {
  font-size: 0.94rem;
  color: var(--c-text);
  margin-bottom: 18px;
  flex: 1;
}
.service-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--c-line);
}
.service-price .from {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mute);
  font-weight: 600;
}
.service-price .amount {
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--c-forest);
  font-weight: 600;
}
.service-price .unit { font-size: 12px; color: var(--c-mute); }
.service-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link::after {
  content: "→";
  transition: transform .25s var(--ease);
}
.service-link:hover::after { transform: translateX(4px); }

/* Service-card promotion — HOT badge + free-offer line (Zoom Whitening) */
.service-card.has-promo { border-color: rgba(232, 85, 45, 0.40); }
.promo-badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 11px 6px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef5a2a, #f79b1e);
  color: #fff;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.10em; text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(232, 85, 45, 0.45);
  animation: promo-pulse 1.7s ease-in-out infinite;
}
.promo-badge svg { width: 13px; height: 13px; }
@keyframes promo-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 6px 16px rgba(232, 85, 45, 0.45); }
  50% { transform: scale(1.07); box-shadow: 0 9px 22px rgba(232, 85, 45, 0.60); }
}
.promo-offer {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(232, 85, 45, 0.08);
  border: 1px dashed rgba(232, 85, 45, 0.45);
  color: #b83c18;
  font-size: 0.85rem; font-weight: 600; line-height: 1.25;
}
.promo-offer svg { width: 17px; height: 17px; flex: none; color: #ef5a2a; }
.promo-offer strong { font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; }
@media (prefers-reduced-motion: reduce) { .promo-badge { animation: none; } }

/* ============================================
   PROMO BANNER — gold accent
============================================ */
.promo-band {
  background: linear-gradient(105deg, var(--c-forest) 0%, var(--c-forest-2) 100%);
  color: var(--c-ivory);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.promo-band::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 153, 104, 0.18), transparent 60%);
  pointer-events: none;
}
.promo-band .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.promo-band h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: var(--c-ivory);
  font-weight: 500;
  max-width: 38ch;
}
.promo-band h3 .gold { color: var(--c-gold); }

/* ============================================
   WHY CHOOSE US — 9-point grid
============================================ */
.why-us { background: var(--c-cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }

.why-item {
  background: var(--c-white);
  padding: 28px 26px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.why-item:hover { transform: translateY(-4px); border-color: var(--c-gold-2); }
.why-item .num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-forest);
  color: var(--c-gold);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  flex: none;
}
.why-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-forest);
  margin-bottom: 6px;
  line-height: 1.25;
}
.why-item p {
  font-size: 0.92rem;
  color: var(--c-text);
  line-height: 1.55;
}

/* ============================================
   TESTIMONIALS GALLERY — patient photos
============================================ */
.testimonials { background: var(--c-white); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 880px) { .test-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .test-grid { grid-template-columns: 1fr; } }

.test-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  background-color: var(--c-cream);
  background-size: cover;
  background-position: center;
  transition: transform .35s var(--ease);
}
.test-card:hover { transform: scale(1.02); }
.test-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 31, 26, 0.85));
}
.test-card .meta {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  color: var(--c-ivory);
  z-index: 2;
}
.test-card .meta .role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-2);
  font-weight: 600;
  margin-bottom: 6px;
}
.test-card .meta h4 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--c-ivory);
  font-weight: 500;
  line-height: 1.2;
}
.test-card .meta .duration {
  font-size: 13px;
  color: rgba(250, 246, 238, 0.85);
  margin-top: 4px;
}

/* ============================================
   GOOGLE REVIEWS section
============================================ */
.reviews-section {
  background: var(--c-white);
  position: relative;
  padding-top: 64px;
}

/* Duda-style top bar: Google logo + average + CTA pill */
.g-reviews-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 32px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--c-line);
  flex-wrap: wrap;
}
.g-reviews-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.g-wordmark {
  height: 36px;
  width: auto;
  flex: none;
}
.g-reviews-text {
  font-size: 16px;
  color: var(--c-text);
  letter-spacing: 0.01em;
}
.g-reviews-text strong { color: var(--c-forest); font-weight: 600; margin-right: 4px; }
.g-reviews-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 26px;
  border-radius: var(--r-pill);
  background: var(--c-gold);
  color: var(--c-forest);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background .25s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
}
.g-reviews-btn:hover { background: var(--c-gold-2); transform: translateY(-1px); }
@media (max-width: 700px) {
  .g-reviews-bar { justify-content: flex-start; padding-bottom: 22px; margin-bottom: 24px; }
  .g-wordmark { height: 28px; }
  .g-reviews-text { font-size: 14px; }
  .g-reviews-btn { width: 100%; justify-content: center; }
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .review-grid { grid-template-columns: 1fr; } }

.review-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.review-card .rc-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card .rc-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-weight: 600;
  font-family: var(--f-sans);
  font-size: 18px;
  flex: none;
  text-transform: uppercase;
}
.review-card .rc-id { line-height: 1.25; }
.review-card .rc-id strong {
  display: block;
  font-weight: 600;
  color: var(--c-forest);
  font-size: 14px;
}
.review-card .rc-id .when {
  display: block;
  color: var(--c-mute);
  font-size: 12px;
  margin-top: 2px;
}
.review-card .stars {
  color: #F4B400;
  font-size: 16px;
  letter-spacing: 2px;
}
.review-card .quote {
  font-size: 0.9rem;
  color: var(--c-text);
  line-height: 1.6;
  flex: 1;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviews-cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.reviews-cta p {
  font-size: 13px;
  color: var(--c-mute);
  letter-spacing: 0.04em;
}

/* ============================================
   VISIT (location + hours)
============================================ */
.visit { background: var(--c-cream); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr; } }
.visit-info h2 { margin-bottom: 20px; }
.visit-info .info-row {
  display: flex; gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-line);
}
.visit-info .info-row:last-child { border-bottom: none; }
.visit-info .info-row .ic {
  width: 42px; height: 42px; flex: none;
  border-radius: 50%; background: var(--c-forest);
  display: grid; place-items: center;
  color: var(--c-gold);
}
.visit-info .info-row .lbl { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-mute); font-weight: 600; }
.visit-info .info-row .val { font-family: var(--f-display); font-size: 1.2rem; color: var(--c-forest); margin-top: 4px; }
.visit-info .info-row .val a { color: var(--c-forest); }
.visit-info .info-row .val a:hover { color: var(--c-gold); }

.map-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-white);
  box-shadow: var(--shadow-md);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* Visit — contact cards (Location / Contact / Mail) */
.visit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 44px 0 36px;
}
@media (max-width: 820px) {
  .visit-cards { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
}
.vcard {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.vcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.vcard-ic {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--c-forest);
  color: var(--c-gold);
  display: grid; place-items: center;
}
.vcard-ic svg { width: 26px; height: 26px; }
.vcard h3 { font-family: var(--f-display); color: var(--c-forest); font-size: 1.35rem; margin-bottom: 10px; }
.vcard p { color: var(--c-mute); line-height: 1.65; margin-bottom: 16px; }
.vcard p a { color: var(--c-forest); }
.vcard p a:hover { color: var(--c-gold); }
.vcard-link {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-gold);
}
.vcard-link:hover { color: var(--c-forest); }

/* Visit — booking form + map */
.visit-booking {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 900px) { .visit-booking { grid-template-columns: 1fr; } }

.booking-panel {
  background: var(--c-forest);
  color: var(--c-ivory);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 520px) { .booking-panel { padding: 28px 22px; } }
.booking-title { font-family: var(--f-display); color: var(--c-ivory); font-size: 1.9rem; font-weight: 600; }
.booking-title .accent { color: var(--c-gold); font-style: italic; }
.booking-note { color: rgba(250, 246, 238, 0.78); margin: 8px 0 24px; font-size: 0.98rem; line-height: 1.6; }

.booking-form .bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .booking-form .bf-row { grid-template-columns: 1fr; gap: 0; } }
.bf-field { display: flex; flex-direction: column; margin-bottom: 16px; }
.bf-field label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250, 246, 238, 0.72); font-weight: 600; margin-bottom: 7px;
}
.bf-field input,
.bf-field textarea {
  font-family: inherit; font-size: 0.95rem;
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(250, 246, 238, 0.18);
  background: rgba(250, 246, 238, 0.06);
  color: var(--c-ivory);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.bf-field input::placeholder,
.bf-field textarea::placeholder { color: rgba(250, 246, 238, 0.4); }
.bf-field input:focus,
.bf-field textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  background: rgba(250, 246, 238, 0.10);
}
.bf-field input[type="date"],
.bf-field input[type="time"] { color-scheme: dark; }
.bf-field textarea { resize: vertical; min-height: 104px; }
.booking-form .btn-block { width: 100%; margin-top: 6px; }
.bf-alt { margin-top: 16px; text-align: center; font-size: 0.9rem; color: rgba(250, 246, 238, 0.72); }
.bf-alt a { color: var(--c-gold); font-weight: 600; }

.booking-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-white);
  box-shadow: var(--shadow-md);
  min-height: 380px;
}
.booking-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ============================================
   FINAL CTA BAND
============================================ */
.cta-band {
  background:
    linear-gradient(135deg, rgba(14, 31, 26, 0.94), rgba(21, 48, 42, 0.94)),
    url("../img/clinic/clinic-1.jpg") center/cover no-repeat;
  color: var(--c-ivory);
  text-align: center;
  padding: 100px 0;
}
.cta-band h2 {
  color: var(--c-ivory);
  font-weight: 400;
  max-width: 22ch;
  margin: 0 auto;
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.cta-band h2 .gold { color: var(--c-gold); font-style: italic; }
.cta-band p { color: rgba(250, 246, 238, 0.78); margin: 22px auto 36px; max-width: 56ch; }
.cta-band .btn-row { justify-content: center; }

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: var(--c-forest);
  color: rgba(250, 246, 238, 0.72);
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 50px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 0.92rem; max-width: 32ch; margin-top: 16px; }
.footer-col h4 { color: var(--c-gold); font-family: var(--f-sans); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.94rem; }
.footer-col a:hover { color: var(--c-gold); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(217, 195, 154, 0.18);
  font-size: 13px;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom .socials { display: flex; gap: 12px; }
.footer-bottom .socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(217, 195, 154, 0.28);
  display: grid; place-items: center;
}
.footer-bottom .socials a:hover { background: var(--c-gold); color: var(--c-forest); border-color: var(--c-gold); }
.footer-bottom .socials svg { width: 16px; height: 16px; }

/* ============================================
   STICKY WHATSAPP BUTTON (bottom-right)
============================================ */
.wa-sticky {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--c-wa);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.wa-sticky:hover { background: var(--c-wa-2); color: #fff; transform: scale(1.06); }
.wa-sticky svg { width: 32px; height: 32px; }
.wa-sticky .pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--c-wa);
  opacity: 0;
  animation: waPulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Mobile sticky CTA — full-width bar */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--c-forest);
  border-top: 1px solid rgba(217, 195, 154, 0.2);
  z-index: 80;
}
.mobile-cta a {
  flex: 1;
  padding: 16px 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ivory);
  border-right: 1px solid rgba(217, 195, 154, 0.15);
}
.mobile-cta a:last-child { border-right: none; }
.mobile-cta a.primary { color: var(--c-gold); }
@media (max-width: 720px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 64px; }
  .wa-sticky { bottom: 76px; right: 16px; width: 52px; height: 52px; }
  .wa-sticky svg { width: 26px; height: 26px; }
  .wa-sticky span { display: none; }
}

/* ============================================
   PAGE HERO — subpages (Treatments / About / FAQ / Contact)
============================================ */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  color: var(--c-ivory);
  overflow: hidden;
  padding: 140px 0 90px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) saturate(1.05);
  z-index: 0;
}
.page-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  /* Heavy LEFT wash so gold text reads clearly */
  background:
    linear-gradient(to right, rgba(8, 20, 16, 0.92) 0%, rgba(8, 20, 16, 0.78) 32%, rgba(14, 31, 26, 0.35) 58%, transparent 82%),
    linear-gradient(180deg, rgba(14, 31, 26, 0.55) 0%, transparent 22%, transparent 75%, rgba(14, 31, 26, 0.7) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-overlay { max-width: 760px; }
.page-hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold-2);
  margin-bottom: 24px;
  font-weight: 600;
}
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-style: italic;
  color: #d4af6a;
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45), 0 8px 32px rgba(0, 0, 0, 0.6);
}
.page-hero h1 .by {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--c-gold-2);
  font-size: 0.42em;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 8px;
}
.page-hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(250, 246, 238, 0.92);
  margin-top: 28px;
  max-width: 56ch;
  line-height: 1.65;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}
.page-hero-sub strong {
  color: var(--c-gold-2);
  font-weight: 600;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.15em;
}
.page-hero-sub em {
  color: var(--c-gold-2);
  font-style: italic;
}

/* Split-layout variant — smaller title left, copy on right */
.page-hero-split {
  min-height: 52vh;
  padding: 130px 0 80px;
}
.page-hero-split .page-hero-overlay {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
}
.page-hero-split h1 {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1;
  font-style: italic;
}
.page-hero-split h1 .amp {
  font-style: normal;
  font-weight: 400;
  color: rgba(212, 175, 106, 0.55);
  margin: 0 0.2em;
}
.page-hero-split h1 .by {
  font-size: 0.36em;
  margin-top: 12px;
}
.page-hero-split .ph-right {
  padding-bottom: 8px;
}
.page-hero-split .page-hero-sub {
  margin-top: 0;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  max-width: 48ch;
}
.page-hero-split .page-hero-sub strong {
  color: var(--c-gold-2);
  font-weight: 600;
  font-style: italic;
  font-family: var(--f-display);
  font-size: 1.15em;
}
.page-hero-split .page-hero-sub em {
  color: var(--c-gold-2);
  font-style: italic;
}
.page-hero-split .page-hero-sub-2 {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  color: rgba(250, 246, 238, 0.78);
  margin-top: 18px;
  line-height: 1.55;
  max-width: 48ch;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}
@media (max-width: 820px) {
  .page-hero-split { padding: 120px 0 70px; min-height: 48vh; }
  .page-hero-split .page-hero-overlay {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }
  .page-hero-split h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
}

/* ============================================
   TREATMENT NAV — sticky jump-to bar
============================================ */
.tx-nav {
  position: sticky;
  top: 68px;
  z-index: 50;
  background: var(--c-ivory);
  border-bottom: 1px solid var(--c-line);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02);
}
.tx-nav .container {
  display: flex;
  gap: 36px;
  padding-top: 18px;
  padding-bottom: 18px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tx-nav .container::-webkit-scrollbar { display: none; }
.tx-nav a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mute);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color .25s var(--ease);
}
.tx-nav a:hover { color: var(--c-gold); }
@media (max-width: 760px) {
  .tx-nav .container { gap: 22px; }
  .tx-nav a { font-size: 11px; }
}

/* ============================================
   TREATMENT BLOCKS
============================================ */
.tx-block {
  padding: 100px 0;
  background: var(--c-ivory);
  scroll-margin-top: 140px;
}
.tx-block-alt { background: var(--c-cream); }

.tx-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-width: 0;
}
.tx-grid.reverse > .tx-media { order: 2; }
@media (max-width: 920px) {
  .tx-grid, .tx-grid.reverse { grid-template-columns: 1fr; gap: 36px; }
  .tx-grid.reverse > .tx-media { order: 0; }
}

.tx-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.tx-video, .tx-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-forest);
  box-shadow: var(--shadow-md);
}
.tx-video video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Vertical-aspect variant — for portrait testimonial clips */
.tx-video.is-vertical { aspect-ratio: 9/16; max-width: 360px; margin: 0 auto; }
.tx-video.is-vertical video { object-fit: cover; }
.tx-image {
  background-size: cover;
  background-position: center;
}
.tx-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.tx-badge img { max-height: 28px; width: auto; flex: none; }
.tx-badge svg { color: var(--c-gold); flex: none; }
.tx-badge span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-forest);
  font-weight: 600;
}

.tx-content { min-width: 0; }
.tx-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.tx-content h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-forest);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 22px;
}
.tx-content h2 .accent { color: var(--c-gold); font-style: italic; }
.tx-lead {
  font-size: 1.05rem;
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 26px;
}
.tx-points {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tx-points li {
  position: relative;
  padding-left: 26px;
  font-size: 0.96rem;
  color: var(--c-text);
  line-height: 1.55;
}
.tx-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 1px;
  background: var(--c-gold);
}
.tx-points strong { color: var(--c-forest); font-weight: 600; }

.tx-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  flex-wrap: wrap;
}
.tx-price { display: flex; flex-direction: column; gap: 2px; }
.tx-price .lbl {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 600;
}
.tx-price .val {
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--c-forest);
  font-weight: 600;
  line-height: 1;
}
.tx-price .val small { font-size: 0.55em; color: var(--c-mute); font-weight: 500; }
.tx-price .from {
  font-size: 12px;
  color: var(--c-mute);
  margin-top: 4px;
}

/* ============================================
   TREATMENTS CTA BAND
============================================ */
.tx-cta-band {
  background: var(--c-forest);
  color: var(--c-ivory);
  padding: 90px 0;
  text-align: center;
}
.tx-cta-band h2 {
  font-family: var(--f-display);
  color: var(--c-ivory);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 18px;
}
.tx-cta-band h2 .accent { color: var(--c-gold); font-style: italic; }
.tx-cta-band p {
  font-size: 1.05rem;
  color: rgba(250, 246, 238, 0.85);
  margin: 0 auto 32px;
  max-width: 56ch;
  line-height: 1.65;
}
.tx-cta-band .btn-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================
   PATIENT WALL — real visits marquee (homepage)
============================================ */
.patient-wall {
  background: var(--c-forest);
  color: var(--c-ivory);
  padding: 88px 0 96px;
  overflow: hidden;
}
.patient-wall .pw-head {
  max-width: 660px;
  margin: 0 auto 46px;
  padding: 0 20px;
  text-align: center;
}
.patient-wall .pw-head .eyebrow { color: var(--c-gold); }
.patient-wall .pw-head h2 {
  font-family: var(--f-display);
  color: var(--c-ivory);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin: 6px 0 14px;
}
.patient-wall .pw-head h2 .accent { color: var(--c-gold); font-style: italic; }
.patient-wall .pw-head p {
  color: rgba(250, 246, 238, 0.82);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}

.pw-marquee {
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.pw-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  animation: pw-scroll 98s linear infinite;
}
.pw-marquee:hover .pw-track,
.pw-marquee:focus-within .pw-track { animation-play-state: paused; }
@keyframes pw-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.pw-tile {
  position: relative;
  flex: 0 0 auto;
  width: 232px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: #0b1713;
  border: 1px solid rgba(212, 180, 120, 0.18);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.30);
}
.pw-tile img,
.pw-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.pw-tile.is-video { border-color: rgba(212, 180, 120, 0.55); }
.pw-tile.is-video video { object-position: center 22%; }
.pw-vlabel {
  position: absolute;
  left: 12px; bottom: 12px;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(14, 31, 26, 0.66);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  color: var(--c-ivory);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em;
}
.pw-vlabel::before {
  content: "";
  width: 0; height: 0;
  border-left: 7px solid var(--c-gold);
  border-top: 4.5px solid transparent;
  border-bottom: 4.5px solid transparent;
}
@media (max-width: 560px) {
  .pw-tile { width: 178px; }
  .patient-wall { padding: 64px 0 70px; }
}
@media (prefers-reduced-motion: reduce) {
  .pw-track { animation: none; }
  .pw-marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ============================================
   FAQ PAGE — accordion sections by category
============================================ */
.faq-block {
  padding: 90px 0;
  background: var(--c-ivory);
  scroll-margin-top: 140px;
}
.faq-block-alt { background: var(--c-cream); }

.faq-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.faq-head h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-forest);
  font-weight: 600;
  line-height: 1.1;
  margin-top: 10px;
}
.faq-head h2 .accent { color: var(--c-gold); font-style: italic; }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.faq-item:hover { border-color: rgba(184, 153, 104, 0.4); }
.faq-item[open] { box-shadow: var(--shadow-md); border-color: var(--c-gold); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 28px;
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--c-forest);
  font-weight: 500;
  position: relative;
  user-select: none;
  transition: color .25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before, .faq-item summary::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--c-gold);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-item summary::after { transform: rotate(90deg); }
.faq-item[open] summary::after { opacity: 0; transform: rotate(0); }
.faq-item summary:hover { color: var(--c-gold); }

.faq-item p {
  padding: 0 56px 24px 28px;
  margin: 0;
  color: var(--c-text);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 68ch;
}
.faq-item p strong { color: var(--c-forest); font-weight: 600; }
.faq-item p a { color: var(--c-gold); text-decoration: underline; }
.faq-item p a:hover { color: var(--c-gold-2); }

@media (max-width: 600px) {
  .faq-item summary { padding: 18px 48px 18px 20px; font-size: 1.02rem; }
  .faq-item summary::before, .faq-item summary::after { right: 20px; }
  .faq-item p { padding: 0 48px 20px 20px; }
}

/* ============================================
   FAQ — Deep Talk with Dr. Wasit (personal, dark)
============================================ */
.faq-deeptalk {
  position: relative;
  padding: 90px 0;
  background: var(--c-forest);
  color: var(--c-ivory);
  scroll-margin-top: 140px;
}
.faq-deeptalk::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 153, 104, 0.55), transparent);
}
.deeptalk-intro {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 44px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto 52px;
}
.deeptalk-portrait {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(184, 153, 104, 0.5);
  box-shadow: var(--shadow-lg);
  background: var(--c-forest-2);
}
.deeptalk-portrait img { width: 100%; height: 100%; object-fit: cover; }
.deeptalk-lead .eyebrow { color: var(--c-gold-2); }
.deeptalk-lead h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-ivory);
  font-weight: 600;
  line-height: 1.1;
  margin: 10px 0 14px;
}
.deeptalk-lead h2 .accent { color: var(--c-gold); font-style: italic; }
.deeptalk-lead > p {
  color: rgba(250, 246, 238, 0.82);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 56ch;
}
.deeptalk-cred {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(184, 153, 104, 0.25);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.deeptalk-cred strong {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--c-ivory);
  font-weight: 600;
}
.deeptalk-cred span {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold-2);
}
/* darker section keeps white accordion cards — they pop on forest */
.deeptalk-list .faq-item[open] { border-color: var(--c-gold-2); }

@media (max-width: 760px) {
  .deeptalk-intro {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 24px;
  }
  .deeptalk-portrait { width: 150px; height: 150px; }
  .deeptalk-lead > p { margin-left: auto; margin-right: auto; }
  .deeptalk-cred { align-items: center; }
}

/* ============================================
   FAQ — Full Price List (bilingual table)
============================================ */
.price-lead {
  margin-top: 14px;
  max-width: 70ch;
  color: var(--c-text);
  font-size: 1rem;
  line-height: 1.7;
}
.price-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-md);
}
.price-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: var(--c-ivory);
  font-size: 0.95rem;
}
.price-table th,
.price-table td {
  padding: 13px 20px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--c-line);
}
.price-table thead th {
  background: var(--c-forest);
  color: var(--c-ivory);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.2rem;
  border-bottom: none;
}
.price-table thead .th-en { color: var(--c-gold-2); font-style: italic; font-weight: 500; }
.price-table thead .th-u,
.price-table thead .th-b {
  background: var(--c-gold);
  color: var(--c-forest);
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-table thead .th-u { text-align: center; }
.price-table thead .th-b { text-align: right; }
.price-table tr.cat td {
  background: var(--c-forest-2);
  color: var(--c-ivory);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.08rem;
  border-bottom: 1px solid var(--c-forest-light);
}
.price-table tr.cat td.en-cat { color: var(--c-gold-2); font-style: italic; }
.price-table tbody tr.item td { color: var(--c-text); }
.price-table tbody tr.item td:first-child { color: var(--c-forest); font-weight: 500; }
.price-table tbody tr.item td.en { color: var(--c-mute); font-size: 0.88rem; }
.price-table td.u {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-mute);
  background: rgba(184, 153, 104, 0.07);
  white-space: nowrap;
}
.price-table td.b {
  text-align: right;
  font-weight: 700;
  color: var(--c-forest);
  background: rgba(184, 153, 104, 0.07);
  white-space: nowrap;
}
.price-table tbody tr.item:hover td { background: var(--c-cream); }
.price-table tbody tr.item:hover td.u,
.price-table tbody tr.item:hover td.b { background: rgba(184, 153, 104, 0.16); }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-note {
  margin-top: 18px;
  font-size: 0.86rem;
  color: var(--c-mute);
  line-height: 1.6;
}
.price-note a { color: var(--c-gold); text-decoration: underline; }
.price-note a:hover { color: var(--c-gold-2); }
@media (max-width: 600px) {
  .price-table { font-size: 0.88rem; }
  .price-table th, .price-table td { padding: 11px 14px; }
}
/* link strip (bottom of treatments page) */
.price-strip {
  padding: 32px 0;
  background: var(--c-cream);
  border-top: 1px solid var(--c-line);
  text-align: center;
}
.price-strip p {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: var(--c-forest);
}
.price-strip a {
  color: var(--c-gold);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.price-strip a:hover { color: var(--c-gold-2); border-bottom-color: currentColor; }

/* ============================================
   WHITENING PAGE — "While you whiten"
============================================ */
.while-section {
  padding: 100px 0;
  background: var(--c-ivory);
}
.while-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}
.while-head h2 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  color: var(--c-forest);
  font-weight: 600;
  line-height: 1.1;
  margin: 12px 0 22px;
}
.while-head h2 .accent { color: var(--c-gold); font-style: italic; }
.while-head .lead {
  font-size: 1.05rem;
  color: var(--c-text);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 60ch;
}

/* Carousel — horizontal scroll with prev/next arrows */
.carousel {
  position: relative;
  padding: 0 16px;
  max-width: 1400px;
  margin: 0 auto;
}
.car-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 6px 0 12px;
}
.car-track::-webkit-scrollbar { display: none; }
.car-track:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 4px; border-radius: var(--r-md); }

.car-slide {
  position: relative;
  flex: 0 0 calc((100% - 18px * 3) / 4); /* 4 visible on desktop */
  scroll-snap-align: start;
  margin: 0;
  aspect-ratio: 3/4;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-forest);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease);
}
.car-slide:hover { transform: translateY(-3px); }
.car-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.car-slide figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(8, 20, 16, 0.92));
  color: var(--c-ivory);
}
.cap-tag {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-2);
  font-weight: 600;
  margin-bottom: 6px;
}
.cap-text {
  display: block;
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(250, 246, 238, 0.92);
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .car-slide { flex: 0 0 calc((100% - 18px * 2) / 3); }
}
@media (max-width: 760px) {
  .car-slide { flex: 0 0 calc((100% - 14px) / 2); }
  .car-track { gap: 14px; }
}
@media (max-width: 520px) {
  .car-slide { flex: 0 0 85%; }
}

.car-prev, .car-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  color: var(--c-forest);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.car-prev { left: -8px; }
.car-next { right: -8px; }
.car-prev:hover, .car-next:hover {
  background: var(--c-gold);
  color: var(--c-forest);
  transform: translateY(-50%) scale(1.06);
}
.car-prev:disabled, .car-next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
@media (max-width: 520px) {
  .car-prev, .car-next { display: none; }
}

.car-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.car-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(14, 31, 26, 0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .25s var(--ease), width .25s var(--ease);
}
.car-dot.active {
  background: var(--c-gold);
  width: 24px;
  border-radius: var(--r-pill);
}

/* SEE IT IN ACTION — vertical (9:16) patient clips */
.in-action-section {
  padding: 100px 0;
  background: var(--c-forest);
  color: var(--c-ivory);
}
.ia-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.ia-head .eyebrow { color: var(--c-gold-2); }
.ia-head h2 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  color: var(--c-ivory);
  font-weight: 600;
  line-height: 1.1;
  margin: 12px 0 22px;
}
.ia-head h2 .accent { color: var(--c-gold); font-style: italic; }
.ia-head .lead {
  font-size: 1.05rem;
  color: rgba(250, 246, 238, 0.78);
  line-height: 1.65;
  max-width: 56ch;
  margin: 0 auto;
}

.ia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 720px) { .ia-grid { grid-template-columns: 1fr; } }

.ia-clip {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  aspect-ratio: 9/16;
}
.ia-clip video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ia-clip figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 22px 20px;
  background: linear-gradient(180deg, transparent, rgba(8, 20, 16, 0.95));
  z-index: 2;
}
.ia-clip .cap-tag {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold-2);
  font-weight: 600;
  margin-bottom: 6px;
}
.ia-clip .cap-text {
  display: block;
  font-family: var(--f-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(250, 246, 238, 0.92);
  line-height: 1.4;
}

/* HOW IT WORKS */
.how-section {
  padding: 100px 0;
  background: var(--c-cream);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
}
@media (max-width: 980px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .how-grid { grid-template-columns: 1fr; } }

.how-step {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.how-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.how-step .step-num {
  font-family: var(--f-display);
  font-size: 2.2rem;
  color: var(--c-gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 16px;
}
.how-step h3 {
  font-family: var(--f-display);
  font-size: 1.45rem;
  color: var(--c-forest);
  font-weight: 600;
  margin-bottom: 10px;
}
.how-step p {
  font-size: 0.92rem;
  color: var(--c-text);
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}
.how-step .step-time {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-mute);
  font-weight: 600;
  padding: 6px 12px;
  background: var(--c-cream);
  border-radius: var(--r-pill);
  align-self: flex-start;
}

/* PRICE BLOCK */
.zoom-price {
  padding: 80px 0;
  background: var(--c-ivory);
}
.zoom-price-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (max-width: 760px) { .zoom-price-card { grid-template-columns: 1fr; } }

.zp-left {
  background: var(--c-forest);
  color: var(--c-ivory);
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.zp-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-gold-2);
  font-weight: 600;
}
.zp-amount {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 14px;
}
.zp-from {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.7);
  font-weight: 600;
}
.zp-val {
  font-family: var(--f-display);
  font-size: clamp(3rem, 5vw, 4.2rem);
  color: var(--c-gold);
  font-weight: 600;
  line-height: 1;
}
.zp-note {
  font-size: 0.92rem;
  color: rgba(250, 246, 238, 0.78);
  margin-top: 18px;
  line-height: 1.55;
}

.zp-right {
  padding: 48px 44px;
}
.zp-right h4 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--c-forest);
  margin-bottom: 20px;
  font-weight: 600;
}
.zp-right ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.zp-right li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: var(--c-text);
  line-height: 1.5;
}
.zp-right li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--c-gold);
  font-weight: 700;
}

/* BEFORE / AFTER */
.ba-section {
  padding: 100px 0;
  background: var(--c-cream);
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
@media (max-width: 980px) { .ba-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ba-grid { grid-template-columns: 1fr; } }

.ba-item {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ba-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ba-item img { width: 100%; height: auto; display: block; }
.ba-item figcaption {
  padding: 14px 16px;
  background: #fff;
}
.ba-item .cap-tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.ba-item .cap-text {
  font-family: var(--f-sans);
  font-style: normal;
  font-size: 12px;
  color: var(--c-mute);
}

/* ============================================
   DOCTOR'S FAVORITE MAKEOVERS — featured strip at top of gallery
============================================ */
.favs-section {
  padding: 70px 0 56px;
  background: var(--c-ivory);
  border-bottom: 1px solid var(--c-line);
}
.favs-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
}
.favs-head h2 {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--c-forest);
  font-weight: 600;
  line-height: 1.1;
  margin: 10px 0 14px;
}
.favs-head h2 .accent { color: var(--c-gold); font-style: italic; }
.favs-head .lead {
  font-size: 0.95rem;
  color: var(--c-text);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 auto;
}

.favs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .favs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .favs-grid { grid-template-columns: 1fr; gap: 22px; } }

/* 2-card spotlight variant — larger, more editorial */
.favs-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 760px) { .favs-grid-2 { grid-template-columns: 1fr; gap: 28px; } }

/* 1-card spotlight — side-by-side image + long-form story (compact) */
.favs-grid-1 {
  grid-template-columns: 1fr;
  max-width: 880px;
  margin: 0 auto;
}
.fav-card-spotlight {
  display: grid;
  grid-template-columns: 5fr 6fr;
  align-items: stretch;
}
.fav-card-spotlight .fav-frame {
  aspect-ratio: auto;
  height: 100%;
  min-height: 380px;
}
.fav-card-spotlight .fav-frame img { object-position: center; }
.fav-card-spotlight .fav-note {
  padding: 30px 30px 28px;
  justify-content: center;
}
.fav-card-spotlight .fav-note h4 {
  font-size: clamp(1.3rem, 1.9vw, 1.55rem);
  margin-bottom: 4px;
  line-height: 1.2;
}
.fav-card-spotlight .fav-note p {
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 8px 0 0;
}
.fav-card-spotlight .fav-note p:first-of-type { margin-top: 12px; }
.fav-card-spotlight .fav-by {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--c-line);
  font-size: 10px;
}
@media (max-width: 880px) {
  .fav-card-spotlight { grid-template-columns: 1fr; }
  .fav-card-spotlight .fav-frame { min-height: auto; aspect-ratio: 4/5; }
  .fav-card-spotlight .fav-note { padding: 26px 24px; }
}

.fav-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.fav-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.fav-frame {
  display: block;
  aspect-ratio: 1/1;
  background: var(--c-cream);
  overflow: hidden;
  cursor: zoom-in;
}
.fav-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.fav-card:hover .fav-frame img { transform: scale(1.03); }

.fav-note {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fav-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 600;
}
.fav-note h4 {
  font-family: var(--f-display);
  font-size: 1.45rem;
  color: var(--c-forest);
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
.fav-note p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--c-text);
  line-height: 1.55;
  margin: 8px 0 0;
}
.fav-by {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mute);
  font-weight: 600;
  margin-top: 6px;
}

/* ============================================
   GALLERY PAGE — filter + masonry + lightbox
============================================ */
.gallery-filter {
  position: sticky;
  top: 68px;
  z-index: 50;
  background: var(--c-ivory);
  border-bottom: 1px solid var(--c-line);
}
.gallery-filter .container {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  padding-bottom: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery-filter .container::-webkit-scrollbar { display: none; }
.gf-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  background: transparent;
  border: 1px solid var(--c-line);
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mute);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.gf-tab .count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  border-radius: var(--r-pill);
  background: rgba(184, 153, 104, 0.18);
  color: var(--c-gold);
  font-size: 10px;
  padding: 0 6px;
  font-weight: 700;
  letter-spacing: 0;
}
.gf-tab:hover { color: var(--c-forest); border-color: var(--c-gold); }
.gf-tab.active {
  background: var(--c-forest);
  border-color: var(--c-forest);
  color: var(--c-ivory);
}
.gf-tab.active .count {
  background: rgba(184, 153, 104, 0.32);
  color: var(--c-gold-2);
}
.gf-link {
  text-decoration: none;
  border-color: rgba(184, 153, 104, 0.4);
  color: var(--c-gold);
}
.gf-link:hover { background: var(--c-gold); border-color: var(--c-gold); color: var(--c-forest); }

.gallery-section {
  background: var(--c-ivory);
  padding: 60px 0 100px;
}
.gallery-grid {
  column-count: 3;
  column-gap: 18px;
}
@media (max-width: 900px) { .gallery-grid { column-count: 2; column-gap: 14px; } }
@media (max-width: 520px) { .gallery-grid { column-count: 1; } }

.g-item {
  display: block;
  position: relative;
  break-inside: avoid;
  margin: 0 0 18px;
  background: var(--c-cream);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: zoom-in;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: var(--shadow-sm);
}
.g-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.g-item img {
  width: 100%;
  height: auto;
  display: block;
}
.g-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px 14px;
  background: linear-gradient(180deg, transparent, rgba(14, 31, 26, 0.88));
  color: var(--c-ivory);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.g-item:hover figcaption { opacity: 1; transform: translateY(0); }
.g-item .g-cat {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-2);
  font-weight: 600;
}
.g-item h4 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--c-ivory);
  font-weight: 500;
  margin: 4px 0 4px;
}
.g-item .g-meta {
  font-size: 12px;
  color: rgba(250, 246, 238, 0.7);
}

.gallery-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--c-mute);
  font-size: 1rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 20, 16, 0.94);
  display: grid;
  place-items: center;
  padding: 60px 80px;
}
.lightbox[hidden] { display: none; }
.lb-frame {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0;
}
.lb-frame img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lb-frame figcaption {
  text-align: center;
  color: var(--c-ivory);
  font-family: var(--f-sans);
  max-width: 60ch;
}
.lb-frame figcaption .g-cat {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-2);
  font-weight: 600;
  margin-bottom: 6px;
}
.lb-frame figcaption h4 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--c-ivory);
  margin: 0;
}
.lb-frame figcaption .g-meta {
  font-size: 13px;
  color: rgba(250, 246, 238, 0.65);
  margin-top: 4px;
  display: block;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--c-ivory);
  cursor: pointer;
  border-radius: 50%;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.lb-close {
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  font-size: 28px;
  line-height: 1;
}
.lb-prev, .lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  font-size: 32px;
  line-height: 1;
}
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(184, 153, 104, 0.32);
}
@media (max-width: 600px) {
  .lightbox { padding: 60px 12px; }
  .lb-prev, .lb-next { width: 44px; height: 44px; font-size: 24px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

/* ============================================
   REVEAL ANIMATIONS
============================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   MOBILE-FIRST REFINEMENTS
============================================ */
@media (max-width: 640px) {
  :root { --pad-x: 20px; }
  section { padding: 56px 0; }
  .site-header { padding: 14px 0; }
  .brand-mark { width: 38px; height: 38px; font-size: 18px; }
  .brand-title { font-size: 16px; }
  .brand-sub { font-size: 9px; letter-spacing: 0.18em; }
  .lang-toggle { display: none; }

  .hero { min-height: 90vh; }
  .hero .container { padding-top: 110px; padding-bottom: 60px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-prices { margin-top: 40px; padding-top: 24px; gap: 14px; }

  .section-head { margin-bottom: 30px; }
  .section-head p.lead { font-size: 0.95rem; }

  .promo-band { padding: 36px 0; }
  .promo-band .container { flex-direction: column; align-items: flex-start; }
  .promo-band .btn { width: 100%; }

  .cta-band { padding: 64px 0; }
  .cta-band .btn-row { flex-direction: column; align-items: stretch; max-width: 320px; margin-left: auto; margin-right: auto; }

  .visit-info .info-row .val { font-size: 1.05rem; }
}
