/* =============================================
   ETERNAL AESTHETIC — main.css  (clean v4)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #FAF6F1;
  --cream-mid:  #F2EBE0;
  --plum:       #2E1A2E;
  --plum-mid:   #3D2440;
  --gold:       #B8975A;
  --gold-light: #D4B483;
  --white:      #FFFFFF;
  --ink:        #1A1018;
  --muted:      #7A6875;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --section-pad: clamp(60px, 8vw, 110px);
  --container:   1200px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* =============================================
   LOGO FIX
   ============================================= */
.header__logo img,
.header__logo .custom-logo {
  height: 48px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain !important;
  display: block !important;
}
.footer__logo img,
.footer__logo .custom-logo {
  height: 40px !important;
  width: auto !important;
  max-width: 160px !important;
  object-fit: contain !important;
  display: block !important;
  filter: brightness(0) invert(1);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 32px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn--nav {
  background: var(--plum);
  color: var(--cream);
  border-color: var(--plum);
  padding: 10px 22px;
  font-size: 11px;
}
.btn--nav:hover { background: transparent; color: var(--plum); }
.btn--hero {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
  margin-top: 8px;
}
.btn--hero:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline:hover { background: var(--gold); color: var(--plum); }

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: var(--plum);
  color: rgba(255,255,255,0.75);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  padding: 7px 0;
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.topbar__item:hover { color: var(--gold-light); }
.topbar__item svg { flex-shrink: 0; opacity: 0.7; }

/* =============================================
   HEADER / NAV
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(46,26,46,0.08); }
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__logo, .footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__icon { color: var(--plum); font-size: 20px; line-height: 1; }
.footer__logo .logo__icon { color: var(--gold-light); }
.logo__text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--plum);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.footer__logo .logo__text { color: var(--white); }
.logo__text em {
  display: block;
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  letter-spacing: 0.06em;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__link {
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding: 8px 12px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 12px; right: 12px;
  height: 1px;
  background: var(--plum);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav__link:hover { color: var(--plum); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__dropdown { position: relative; }
.nav__sub {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(46,26,46,0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}
.nav__dropdown:hover .nav__sub {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav__sub a {
  display: block;
  padding: 11px 18px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.15s, color 0.15s;
}
.nav__sub a:last-child { border-bottom: none; }
.nav__sub a:hover { background: var(--cream); color: var(--plum); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: all 0.25s; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: clamp(520px, 90vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero.loaded .hero__img { transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(46,26,46,.18) 0%, rgba(26,16,24,.55) 55%, rgba(26,16,24,.72) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: var(--container);
  width: 100%; margin: 0 auto;
  text-align: right;
  padding-right: clamp(32px, 8vw, 120px);
  padding-left: 32px;
}
.hero__eyebrow {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 18px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300; line-height: 1;
  color: var(--white); margin-bottom: 16px;
}
.hero__headline em { font-style: italic; font-weight: 300; color: var(--gold-light); }
.hero__sub {
  font-size: 14px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8); margin-bottom: 28px; font-weight: 300;
}
.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,0.5); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* =============================================
   SHARED SECTION ELEMENTS
   ============================================= */
.section {
  padding: var(--section-pad) 32px;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300; letter-spacing: 0.02em;
  color: var(--ink); margin-bottom: 16px;
}
.section__desc {
  font-size: 14.5px; color: var(--muted);
  line-height: 1.8; max-width: 520px; margin: 0 auto;
}
.lotus {
  color: var(--plum); opacity: 0.4;
  margin-bottom: 16px; display: flex; justify-content: center;
}
.lotus--gold { color: var(--gold); opacity: 0.7; }
.divider {
  width: 80px; height: 1px;
  background: var(--plum); opacity: 0.15;
  margin: 0 auto 28px;
}
.divider--gold { background: var(--gold); opacity: 0.4; }

/* =============================================
   TREATMENTS
   ============================================= */
.treatments-intro { padding-bottom: 0; }

.treatments-grid { padding: 0; background: var(--ink); }
.tgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 420px 420px;
}
.tgrid__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
/* Images fill the cell absolutely so they never distort */
.tgrid__item img,
.tgrid__item .wp-post-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.78) saturate(0.9);
  display: block !important;
}
.tgrid__item:hover img,
.tgrid__item:hover .wp-post-image {
  transform: scale(1.06);
  filter: brightness(0.6) saturate(1.1);
}
.tgrid__label {
  position: absolute; bottom: 0; left: 0;
  padding: 20px 26px; z-index: 2;
}
.tgrid__label--right { left: auto; right: 0; text-align: right; }
.tgrid__item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,16,24,.65) 0%, transparent 55%);
  pointer-events: none;
}
.tgrid__label h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 300; color: var(--white);
  line-height: 1.15; letter-spacing: 0.03em;
}

/* =============================================
   SPECIALIZED SERVICE
   ============================================= */
.specialized {
  background: var(--cream-mid);
  padding: var(--section-pad) 32px;
  text-align: center;
}
.specialized__body {
  max-width: 560px; margin: 0 auto 52px;
}
.specialized__body p {
  font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 10px;
}
.specialized__stats {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap;
  max-width: 700px; margin: 0 auto;
}
.stat {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  padding: 0 48px; text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 300; color: var(--plum); line-height: 1;
}
.stat__num em { font-size: 0.55em; font-style: normal; color: var(--gold); vertical-align: super; }
.stat__label {
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); line-height: 1.5;
}
.stat__divider { width: 1px; height: 64px; background: var(--plum); opacity: 0.12; flex-shrink: 0; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why {
  background: var(--white);
  padding: var(--section-pad) 32px;
  text-align: center;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 52px auto 0;
}
.why__item {
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.why__icon {
  width: 58px; height: 58px;
  border: 1.5px solid var(--plum);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--plum); opacity: 0.65;
}
.why__icon svg { width: 24px; height: 24px; }
.why__title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400; color: var(--ink);
}
.why__desc { font-size: 14px; color: var(--muted); line-height: 1.8; max-width: 240px; }

/* =============================================
   CLINIC DETAILS
   ============================================= */
.clinic-details {
  position: relative;
  background: #0e0a10;
  overflow: hidden;
  padding: 80px 32px;
  text-align: center;
}
.clinic-details__bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 0.35 !important;
  filter: saturate(0.65) !important;
  display: block !important;
}
.clinic-details__inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}
/* Lotus override for dark bg */
.clinic-details .lotus {
  color: #fff !important;
  opacity: 0.75 !important;
  margin-bottom: 14px;
}
.clinic-details__rule {
  width: 100%; height: 1px;
  background: rgba(255,255,255,0.18);
  border: none;
  margin: 0 0 52px;
}
/* 2-column centered grid — matches the reference exactly */
.clinic-details__grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 48px 80px !important;
  text-align: center;
}
.clinic-details__col h4 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.9);
  margin: 0 0 16px;
}
/* Force every line of text to stack — defeats theme inline overrides */
.clinic-details__col p,
.clinic-details__col a,
.clinic-details__col span.cd-line {
  display: block !important;
  font-size: 15px !important;
  line-height: 2 !important;
  color: rgba(255,255,255,0.62) !important;
  text-decoration: none !important;
  font-family: var(--font-body) !important;
}
.clinic-details__col a:hover { color: var(--gold-light) !important; }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: var(--plum);
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.cta-band p {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em; margin: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--plum-mid); color: rgba(255,255,255,0.7); }
.footer__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 72px 32px 56px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px;
}
.footer__brand { display: flex; flex-direction: column; gap: 20px; }
.footer__tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: 15px; color: var(--gold-light); letter-spacing: 0.03em;
}
.footer__contact-block {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13.5px; line-height: 1.7;
}
.footer__contact-block a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer__contact-block a:hover { color: var(--gold-light); }

.footer__nav { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 32px; }
.footer__nav-col { display: flex; flex-direction: column; gap: 10px; }
.footer__nav-col h4 {
  font-family: var(--font-body); font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 4px;
}
.footer__nav-col a {
  font-size: 13px; color: rgba(255,255,255,0.55);
  transition: color 0.2s; line-height: 1.4;
}
.footer__nav-col a:hover { color: var(--white); }
.footer__hours { gap: 8px; }
.hours-row {
  display: flex; justify-content: space-between;
  font-size: 12.5px; color: rgba(255,255,255,0.5); gap: 16px;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 32px; text-align: center;
  font-size: 11.5px; color: rgba(255,255,255,0.3); letter-spacing: 0.05em;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .nav, .btn--nav { display: none; }
  .hamburger { display: flex; }
  .header__inner { gap: 0; }
  .nav.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: var(--cream); z-index: 300;
    padding: 90px 32px 40px; gap: 0;
    overflow-y: auto; align-items: flex-start;
  }
  .nav.open .nav__link {
    font-size: 22px; padding: 14px 0; width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.07);
  }
  .nav.open .nav__link::after { display: none; }
  .nav.open .nav__sub {
    position: static; box-shadow: none; border: none;
    opacity: 1; pointer-events: auto; transform: none;
    padding-left: 16px; background: transparent;
  }
  .nav.open .nav__sub a { font-size: 15px; padding: 10px 0; border-bottom: none; color: var(--muted); }
  .nav.open .nav__dropdown { width: 100%; }

  .hero__content { text-align: left; padding-right: 32px; }
  .tgrid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 300px); }
  .why__grid { grid-template-columns: 1fr; gap: 36px; }
  .clinic-details__grid { grid-template-columns: 1fr !important; gap: 36px !important; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --section-pad: 52px; }
  .topbar__inner { gap: 12px; flex-direction: column; align-items: flex-start; }
  .hero { height: 100svh; }
  .hero__content { padding: 0 24px; }
  .section { padding-left: 20px; padding-right: 20px; }
  .specialized__stats { flex-direction: column; gap: 28px; }
  .stat__divider { width: 60px; height: 1px; }
  .stat { padding: 0 20px; }
  .footer__nav { grid-template-columns: 1fr; }
  .footer__bottom { padding: 16px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__img { transition: none; transform: none; }
  .hero__scroll-line { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* =============================================
   LOTUS IMAGE
   ============================================= */
.ea-lotus-img {
  width: auto !important;
  height: 52px !important;
  display: block !important;
  object-fit: contain !important;
}
.lotus {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.clinic-details .lotus .ea-lotus-img {
  height: 56px !important;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* =============================================
   CONTACT PAGE
   ============================================= */

/* --- Hero --- */
.contact-hero {
  position: relative;
  height: clamp(420px, 60vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.contact-hero__bg { position: absolute; inset: 0; }
.contact-hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.contact-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,12,20,.35) 0%, rgba(20,12,20,.62) 100%);
}
.contact-hero__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
  padding: 0 32px;
}
.contact-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.contact-hero__subtitle {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.1em;
  margin: 0;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.btn--book {
  background: transparent;
  border: 1.5px solid var(--gold-light);
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 36px;
  margin-top: 8px;
  transition: all 0.25s;
  font-family: var(--font-body);
  font-weight: 500;
}
.btn--book:hover {
  background: var(--gold-light);
  color: var(--plum);
}
.contact-hero__details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}
.contact-hero__details a {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.contact-hero__details a:hover { color: var(--gold-light); }

/* --- Shared section title --- */
.contact-section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin: 0 0 20px;
}
.contact-section-title--plum { color: var(--plum); }

/* --- Visit Us --- */
.contact-visit {
  padding: 72px 32px;
  background: var(--white);
}
.contact-visit__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-visit__address {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.contact-hours {
  width: 100%;
  border-collapse: collapse;
}
.contact-hours td {
  padding: 9px 0;
  font-size: 14.5px;
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  vertical-align: top;
}
.contact-hours td:first-child {
  font-weight: 500;
  width: 130px;
  color: var(--ink);
}
.contact-hours td:last-child { color: var(--muted); }
.contact-hours tr:last-child td { border-bottom: none; }

.contact-map {
  border: 1px solid rgba(0,0,0,0.1);
  overflow: hidden;
  line-height: 0;
}
.contact-map iframe { display: block; }
.contact-parking {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

/* --- Email Inquiries / Form section --- */
.contact-form-section {
  padding: 72px 32px 88px;
  background: var(--cream);
}
.contact-form-section__inner {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form-section__header {
  margin-bottom: 32px;
}


/* CF7 overrides — style the form to match the wireframe */
.contact-form-section .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form-section .wpcf7-form p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form-section .wpcf7-form label {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.03em;
  font-family: var(--font-body);
}
.contact-form-section .wpcf7-form input[type="text"],
.contact-form-section .wpcf7-form input[type="email"],
.contact-form-section .wpcf7-form input[type="tel"],
.contact-form-section .wpcf7-form textarea {
  width: 100% !important;
  border: none !important;
  border-bottom: 1.5px solid var(--gold) !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 10px 4px !important;
  font-size: 14px !important;
  font-family: var(--font-body) !important;
  color: var(--ink) !important;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color 0.2s !important;
}
.contact-form-section .wpcf7-form input:focus,
.contact-form-section .wpcf7-form textarea:focus {
  border-bottom-color: var(--plum) !important;
}
.contact-form-section .wpcf7-form textarea {
  min-height: 140px !important;
  resize: vertical !important;
}
.contact-form-section .wpcf7-form input[type="submit"] {
  background: var(--plum) !important;
  color: var(--cream) !important;
  border: 1.5px solid var(--plum) !important;
  padding: 13px 40px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all 0.25s !important;
  align-self: flex-start !important;
  border-radius: 0 !important;
  font-family: var(--font-body) !important;
}
.contact-form-section .wpcf7-form input[type="submit"]:hover {
  background: transparent !important;
  color: var(--plum) !important;
}

/* CF7 validation messages */
.contact-form-section .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #c0392b;
  margin-top: 4px;
}
.contact-form-section .wpcf7-response-output {
  font-size: 13px;
  padding: 12px 16px !important;
  margin-top: 8px !important;
  border-radius: 0 !important;
}

/* Fallback form (shown when CF7 isn't installed) */
.cf7-notice {
  background: var(--cream-mid);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.cf7-notice code {
  background: rgba(0,0,0,0.07);
  padding: 1px 5px;
  font-size: 12px;
}
.ea-form-fallback { display: flex; flex-direction: column; gap: 20px; }
.ea-field { display: flex; flex-direction: column; gap: 6px; }
.ea-field label { font-size: 13px; color: var(--ink); letter-spacing: 0.03em; }
.ea-field input,
.ea-field textarea {
  border: none;
  border-bottom: 1.5px solid var(--gold);
  background: transparent;
  padding: 10px 4px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.ea-field input:focus,
.ea-field textarea:focus { border-bottom-color: var(--plum); }
.ea-field textarea { min-height: 140px; resize: vertical; }
.btn--submit {
  background: var(--plum);
  color: var(--cream);
  border: 1.5px solid var(--plum);
  padding: 13px 40px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.25s;
  align-self: flex-start;
  border-radius: 0;
}
.btn--submit:hover { background: transparent; color: var(--plum); }

/* --- Contact responsive --- */
@media (max-width: 860px) {
  .contact-visit__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-section__inner { max-width: 100%; }
}
@media (max-width: 600px) {
  .contact-visit,
  .contact-form-section { padding: 52px 20px; }
  .contact-hero__content { padding: 0 20px; }
}

/* =============================================
   XERF / OUR MACHINE PAGE
   ============================================= */

/* --- Hero --- */
.xerf-hero {
  position: relative;
  height: clamp(420px, 58vh, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.xerf-hero__bg { position: absolute; inset: 0; }
.xerf-hero__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block;
}
.xerf-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,12,20,.28) 0%, rgba(20,12,20,.65) 100%);
}
.xerf-hero__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  padding: 0 32px;
}
.xerf-hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.1; margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.xerf-hero__subtitle {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.1em; margin: 0;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.xerf-hero__tagline {
  margin-top: 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.xerf-hero__tagline p {
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.04em; margin: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* --- Intro split --- */
.xerf-intro {
  background: var(--white);
  padding: 80px 32px;
}
.xerf-intro__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.xerf-intro__text {
  background: var(--white);
  padding: 40px 44px;
  box-shadow: 0 4px 40px rgba(46,26,46,0.07);
}
.xerf-intro__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 20px;
}
.xerf-intro__headline em {
  font-style: italic;
  color: var(--gold);
}
.xerf-intro__body {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.xerf-intro__image {
  position: relative;
  overflow: hidden;
}
.xerf-machine-img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: var(--white);
}

/* --- Structural Skin Tightening --- */
.xerf-sst {
  background: #f0f0f8;
  padding: 88px 32px;
  text-align: center;
}
.xerf-sst__inner {
  max-width: 880px;
  margin: 0 auto;
}
.xerf-sst__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 28px;
  line-height: 1.2;
}
.xerf-sst__lead {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.xerf-sst__body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 52px;
}
.xerf-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.xerf-ba__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.xerf-ba__item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  background: #000;
}
.xerf-ba__label {
  position: absolute;
  bottom: 14px; left: 16px;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

/* --- XERF Specs --- */
.xerf-specs {
  background: #f5f4f2;
  padding: 88px 32px;
}
.xerf-specs__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}
.xerf-specs__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.xerf-specs__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 40px;
}
.xerf-specs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}
.xerf-spec h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.5;
}
.xerf-spec p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
/* XERF brand card */
.xerf-brand-card {
  background: linear-gradient(135deg, #f9c0c8 0%, #f4a0b0 40%, #e8888a 100%);
  border-radius: 12px;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.xerf-brand-card__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.xerf-brand-card__logo {
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  font-family: var(--font-body);
}
.xerf-brand-card__korean {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
}
.xerf-brand-card__freq {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-top: 8px;
}

/* --- Other Technology --- */
.xerf-other {
  background: var(--cream-mid);
  padding: 80px 32px;
}
.xerf-other__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.xerf-other__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  color: var(--plum);
  margin: 0 0 40px;
}
.xerf-other__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.xerf-other__item {
  border-left: 2px solid var(--gold);
  padding-left: 18px;
}
.xerf-other__item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 6px;
}
.xerf-other__item p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* --- CTA --- */
.xerf-cta {
  background: var(--white);
  padding: 64px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn--xerf-book {
  background: var(--gold-light);
  color: var(--ink);
  border: 1.5px solid var(--gold-light);
  padding: 14px 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: all 0.25s;
}
.btn--xerf-book:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--xerf-explore {
  background: var(--plum);
  color: var(--cream);
  border: 1.5px solid var(--plum);
  padding: 14px 40px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: all 0.25s;
}
.btn--xerf-explore:hover {
  background: transparent;
  color: var(--plum);
}

/* --- XERF Responsive --- */
@media (max-width: 900px) {
  .xerf-intro__inner { grid-template-columns: 1fr; gap: 36px; }
  .xerf-intro__text { padding: 28px; }
  .xerf-machine-img { height: 300px; }
  .xerf-specs__inner { grid-template-columns: 1fr; gap: 48px; }
  .xerf-specs__grid { grid-template-columns: 1fr; gap: 24px; }
  .xerf-other__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .xerf-before-after { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .xerf-intro, .xerf-sst, .xerf-specs,
  .xerf-other, .xerf-cta { padding: 52px 20px; }
  .xerf-other__grid { grid-template-columns: 1fr; }
  .xerf-cta { flex-direction: column; }
}

.xerf-ba__credit {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.03em;
  font-style: italic;
}

/* =============================================
   ABOUT / STAFF PAGE
   ============================================= */

/* --- Hero --- */
.about-hero {
  position: relative;
  height: clamp(420px, 58vh, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.about-hero__bg { position: absolute; inset: 0; }
.about-hero__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block;
}
.about-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,12,20,.28) 0%, rgba(20,12,20,.65) 100%);
}
.about-hero__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  padding: 0 32px;
}
.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 600; color: var(--white);
  letter-spacing: 0.03em; line-height: 1.1; margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.about-hero__subtitle {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.1em; margin: 0;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.about-hero__tagline {
  margin-top: 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.about-hero__tagline p {
  font-size: 14px; color: rgba(255,255,255,0.82);
  letter-spacing: 0.04em; margin: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* --- Intro --- */
.about-intro {
  background: var(--white);
  padding: 72px 32px;
}
.about-intro__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.about-intro__inner p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
}

/* --- Shared section title --- */
.about-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--plum);
  text-align: center;
  margin: 0 0 56px;
  letter-spacing: 0.02em;
}

/* --- Doctors section --- */
.about-doctors {
  background: var(--cream);
  padding: 80px 32px;
}
.about-doctors__inner {
  max-width: var(--container);
  margin: 0 auto;
}

/* Each doctor row */
.about-doctor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 96px;
}
.about-doctor:last-child { margin-bottom: 0; }
.about-doctor--img-left { }
.about-doctor--img-right .about-doctor__text { order: 1; }
.about-doctor--img-right .about-doctor__image { order: 2; }

/* Doctor image — use the promo card PNG as-is */
.about-doctor__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(46,26,46,0.12);
}
.about-doctor__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Doctor text */
.about-doctor__role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.about-doctor__name {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.2;
}
.about-doctor__name-cn {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  margin: 0 0 20px;
  letter-spacing: 0.08em;
}
.about-doctor__divider {
  width: 48px;
  height: 2px;
  background: var(--plum);
  opacity: 0.25;
  margin-bottom: 24px;
}
.about-doctor__bio {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 14px;
}
.about-doctor__expertise {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.about-doctor__expertise h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 14px;
}
.about-doctor__expertise ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0; margin: 0;
}
.about-doctor__expertise li {
  font-size: 12px;
  color: var(--plum);
  border: 1px solid rgba(46,26,46,0.25);
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}


/* --- Support team --- */
.about-team {
  background: var(--white);
  padding: 80px 32px;
}
.about-team__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.about-team__desc {
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  margin: -36px 0 48px;
}
.about-team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}
.about-team__card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.about-team__card:hover {
  box-shadow: 0 6px 28px rgba(46,26,46,0.1);
}
.about-team__card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 6px;
}
.about-team__card p {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.about-team__bio {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  display: block;
}

/* --- CTA reuses xerf-cta styles --- */
.about-cta {
  background: var(--cream-mid);
  padding: 64px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
/* Branch Manager */
.about-manager {
  background: var(--cream-mid);
  padding: 48px 32px;
}
.about-manager__inner {
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
}

/* --- Branch Manager Card ---*/
.about-nan-card {
  background: var(--white);
  border: 1.5px solid var(--gold);
  padding: 40px 32px;
  text-align: center;
}
.about-nan-card h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 8px;
}
.about-nan-card p {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

/* 5-col team grid */
.about-team__grid--five {
  grid-template-columns: repeat(5, 1fr);
  max-width: 100%;
}
.about-team__bio-cn {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 6px;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .about-team__grid--five {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 600px) {
  .about-team__grid--five {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* --- About responsive --- */
@media (max-width: 900px) {
  .about-doctor {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-doctor--img-right .about-doctor__text { order: 2; }
  .about-doctor--img-right .about-doctor__image { order: 1; }
  .about-team__grid { grid-template-columns: 1fr; max-width: 400px; }
}
@media (max-width: 600px) {
  .about-intro, .about-doctors,
  .about-team, .about-cta { padding: 52px 20px; }
}

/* =============================================
   TREATMENTS COMING SOON
   ============================================= */
.treatments-coming-soon {
  min-height: 75vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
}
.tcs__inner {
  max-width: 560px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.tcs__lotus { margin-bottom: 16px; }
.tcs__divider {
  width: 72px; height: 1px;
  background: var(--plum); opacity: 0.15;
  margin: 0 auto 32px;
}
.tcs__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  line-height: 1.1;
}
.tcs__subtitle {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin: 0 0 32px;
}
.tcs__message {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 36px;
}

/* =============================================
   TREATMENTS PAGE
   ============================================= */

/* --- Hero --- */
.treatments-hero {
  position: relative;
  height: clamp(380px, 52vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.treatments-hero__bg { position: absolute; inset: 0; }
.treatments-hero__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.treatments-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,12,20,.3) 0%, rgba(20,12,20,.6) 100%);
}
.treatments-hero__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  padding: 0 32px;
}
.treatments-hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 600; color: var(--white);
  letter-spacing: 0.03em; line-height: 1.1; margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.treatments-hero__subtitle {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.1em; margin: 0;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.treatments-hero__tagline {
  margin-top: 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.treatments-hero__tagline p {
  font-size: 14px; color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em; margin: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* --- Intro text --- */
.treatments-intro-text {
  background: var(--white);
  padding: 48px 32px 0;
  text-align: center;
}
.treatments-intro-text p {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --- Categories --- */
.treatments-categories {
  background: var(--white);
  padding: 48px 32px 72px;
}
.treatments-categories__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Each category block */
.tcat__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--plum);
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}
.tcat__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Treatment pill buttons */
.tpill {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream-mid);
  border: 1px solid rgba(46,26,46,0.12);
  padding: 9px 20px;
  border-radius: 24px;
  transition: all 0.2s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.tpill:hover {
  background: var(--plum);
  color: var(--cream);
  border-color: var(--plum);
}

/* --- Our Machine CTA --- */
.treatments-machine-cta {
  background: var(--cream-mid);
  padding: 64px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.treatments-machine-cta p {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  margin: 0;
}

/* --- Responsive --- */
@media (max-width: 600px) {
  .treatments-categories { padding: 40px 20px 60px; }
  .treatments-intro-text { padding: 40px 20px 0; }
  .tpill { font-size: 12.5px; padding: 8px 16px; }
}