/* ============================================================
   BEAUTÉ CONCEPT — ALL STYLES SELF-CONTAINED
   ============================================================ */

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

:root {
  --ivory-50:  #FBF8F3;
  --ivory-100: #F4EFE6;
  --ivory-200: #EAE2D2;
  --ivory-300: #D8CCB6;
  --taupe-500: #8A7B62;
  --taupe-600: #5C513F;
  --ink-900:   #1A1815;
  --ink-800:   #2A2622;
  --moss-700:  #2E3A2A;
  --moss-600:  #3F5039;
  --gold-600:  #9A7F4E;
  --gold-300:  #D9C7A0;
  --ff-display: "Cormorant Garamond", "Times New Roman", serif;
  --ff-sans:    "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --ease-soft:      cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html { scroll-behavior: smooth; }
body {
  background: var(--ivory-50);
  color: var(--ink-900);
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}


.b-cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--gold-600);
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform 0.22s var(--ease-soft);
}
@media (hover: none) { .b-cursor { display: none; } }

/* ---- Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1100ms var(--ease-out-quart), transform 1100ms var(--ease-out-quart); }
.reveal.visible { opacity: 1; transform: translateY(0); }

::selection { background: var(--gold-300); color: var(--ink-900); }

/* ============================================================
   HEADER
   ============================================================ */


/* shared button */
.b-btn {
  display: inline-flex; align-items: center; padding: 14px 32px;
  background: var(--ink-900); color: var(--ivory-50);
  font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none;
  transition: background 0.28s var(--ease-soft), transform 0.1s;
}
.b-btn:hover { background: var(--moss-700); opacity: 1; }
.b-btn:active { transform: scale(0.98); }
.b-btn-ghost {
  background: transparent; color: var(--ink-900);
  border: 1px solid var(--ivory-300);
}
.b-btn-ghost:hover { background: var(--ivory-100); }

.b-eyebrow {
  font-family: var(--ff-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe-500);
}
.b-link {
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--moss-700); text-decoration: none;
  border-bottom: 1px solid var(--gold-600); padding-bottom: 2px;
  transition: opacity 0.22s;
}
.b-link:hover { opacity: 0.65; }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.tx-crumbs {
  padding: 28px 56px 0;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--taupe-500);
}
.tx-crumbs a { color: var(--taupe-500); text-decoration: none; transition: color .22s; }
.tx-crumbs a:hover { color: var(--ink-900); }
.tx-crumbs .sep { opacity: 0.4; }
.tx-crumbs .here { color: var(--ink-900); }

/* ============================================================
   HERO
   ============================================================ */
.tx-hero { padding: 56px 56px 48px; position: relative; overflow: hidden; }
.tx-hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px;
  align-items: end; min-height: calc(100vh - 200px); padding: 64px 0 80px;
}
.tx-hero-text { max-width: 620px; }

.tx-eyebrow-bar {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--taupe-500); margin-bottom: 32px;
}
.tx-eyebrow-bar .line { width: 28px; height: 1px; background: var(--gold-600); flex-shrink: 0; }

.tx-h1 {
  font-family: var(--ff-display); font-weight: 300;
  font-size: clamp(64px, 9vw, 152px); line-height: 0.94; letter-spacing: -0.03em;
  margin: 0 0 32px;
}
.tx-h1 em { font-style: italic; color: var(--gold-600); font-weight: 300; }
.tx-h1 .ln { display: block; overflow: hidden; }
.tx-h1 .ln-inner { display: inline-block; transform: translateY(110%); opacity: 0; animation: txRise 1100ms cubic-bezier(0.25,1,0.5,1) forwards; }
.tx-h1 .ln:nth-child(1) .ln-inner { animation-delay: 200ms; }
.tx-h1 .ln:nth-child(2) .ln-inner { animation-delay: 360ms; }
@keyframes txRise { to { transform: translateY(0); opacity: 1; } }

.tx-deck {
  font-family: var(--ff-sans); font-weight: 300;
  font-size: 19px; line-height: 1.6; color: var(--taupe-600);
  margin: 0 0 40px; max-width: 50ch;
  opacity: 0; animation: txRise 1100ms cubic-bezier(0.25,1,0.5,1) forwards; animation-delay: 520ms;
}

.tx-meta-list {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ivory-300);
  opacity: 0; animation: txRise 1100ms cubic-bezier(0.25,1,0.5,1) forwards; animation-delay: 660ms;
}
.tx-meta-list li {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 24px 18px 0;
  border-bottom: 1px solid var(--ivory-300);
}
.tx-meta-list li:nth-child(odd) { border-right: 1px solid var(--ivory-300); }
.tx-meta-list li:nth-child(even) { padding-left: 24px; padding-right: 0; }
.tx-meta-list .k { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe-500); }
.tx-meta-list .v { font-family: var(--ff-display); font-size: 22px; font-weight: 300; color: var(--ink-900); letter-spacing: -0.01em; }

.tx-hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: txRise 1100ms cubic-bezier(0.25,1,0.5,1) forwards; animation-delay: 800ms;
}

/* Hero art */
.tx-hero-art { position: relative; height: 100%; min-height: 640px; }
.tx-portrait {
  position: absolute; width: 62%; aspect-ratio: 4/5; overflow: hidden;
  top: 0; right: 0; background: var(--ivory-200);
  box-shadow: 0 30px 80px rgba(26,24,21,0.18);
  opacity: 0; transform: translateY(24px);
  animation: txRise 1400ms cubic-bezier(0.25,1,0.5,1) forwards; animation-delay: 600ms;
}
.tx-portrait-inner {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #d4c9b8 0%, #b8a99a 40%, #c4b5a5 100%);
  animation: txKenburns 14s cubic-bezier(0.25,1,0.5,1) infinite alternate;
}
@keyframes txKenburns {
  0% { transform: scale(1.04) translate(0,0); }
  100% { transform: scale(1.14) translate(-1.5%,-2%); }
}
.tx-portrait.alt {
  width: 44%; aspect-ratio: 3/4;
  top: auto; right: auto; bottom: -20px; left: 0;
  background: var(--ivory-300);
  animation-delay: 820ms;
}
.tx-portrait.alt .tx-portrait-inner {
  background: linear-gradient(140deg, #c9bfb5 0%, #a8998a 50%, #bfb0a0 100%);
  animation-duration: 18s; animation-direction: alternate-reverse;
}


/* Floating chips */
.tx-chip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ivory-50); color: var(--ink-900);
  border: 1px solid var(--ivory-300);
  padding: 10px 16px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  box-shadow: 0 12px 30px rgba(26,24,21,0.08);
  animation: txFloat 6s cubic-bezier(0.22,0.61,0.36,1) infinite alternate;
}
.tx-chip .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--gold-600); }
.tx-chip.c1 { top: 18%; left: -4%; animation-delay: 0.2s; }
.tx-chip.c2 { top: 52%; left: 38%; animation-delay: 1.4s; }
.tx-chip.c3 { bottom: 8%; right: 4%; background: var(--ink-900); color: var(--ivory-50); border-color: transparent; animation-delay: 2.6s; }
@keyframes txFloat { 0% { transform: translateY(0); } 100% { transform: translateY(-10px); } }

/* Seal */
.tx-seal {
  position: absolute; right: -36px; bottom: 38%;
  width: 130px; height: 130px; color: var(--moss-700); z-index: 4;
  display: grid; place-items: center;
}
.tx-seal svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: txSpin 22s linear infinite; }
.tx-seal .seal-mid {
  font-family: var(--ff-display); font-size: 32px; color: var(--moss-700);
  font-weight: 300; letter-spacing: -0.02em;
}
@keyframes txSpin { to { transform: rotate(360deg); } }

/* Ticker */
.tx-ticker {
  margin: 32px -56px 0; padding: 22px 0;
  border-top: 1px solid var(--ivory-300); border-bottom: 1px solid var(--ivory-300);
  overflow: hidden; background: var(--ivory-100);
}
.tx-ticker-track {
  display: inline-flex; gap: 36px; white-space: nowrap;
  font-family: var(--ff-display); font-size: 26px; font-weight: 300; font-style: italic;
  color: var(--moss-700); letter-spacing: -0.01em;
  animation: txTicker 38s linear infinite;
}
.tx-ticker-track span:nth-child(even) {
  color: var(--gold-600); font-style: normal; font-family: var(--ff-sans);
  font-size: 14px; align-self: center; letter-spacing: 0.4em;
}
@keyframes txTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SECTION HEAD (shared)
   ============================================================ */
.tx-section-head {
  display: flex; flex-direction: column; gap: 18px;
  margin-bottom: 72px; max-width: 760px;
}
.tx-section-head h2 {
  font-family: var(--ff-display); font-weight: 300;
  font-size: clamp(40px, 5vw, 76px); line-height: 1.04; letter-spacing: -0.02em;
  margin: 0; color: var(--ink-900);
}
.tx-section-head h2 em { font-style: italic; color: var(--gold-600); font-weight: 300; }
.tx-section-head.light h2 { color: var(--ivory-50); }
.tx-section-head.light h2 em { color: var(--gold-300); }
.tx-section-head .b-eyebrow.light { color: rgba(251,248,243,0.65); }
.tx-lede { font-family: var(--ff-sans); font-weight: 300; font-size: 17px; line-height: 1.7; color: var(--taupe-600); margin: 0; max-width: 60ch; }
.tx-section-head.light .tx-lede { color: rgba(251,248,243,0.75); }

/* ============================================================
   GLANCE / BENEFITS
   ============================================================ */
.tx-glance { padding: 144px 56px; background: var(--ivory-50); }
.tx-glance-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ivory-300);
}
.tx-benefit {
  padding: 40px 36px 44px; border-bottom: 1px solid var(--ivory-300);
  border-right: 1px solid var(--ivory-300);
  display: flex; flex-direction: column; gap: 14px;
  transition: background .42s cubic-bezier(0.22,0.61,0.36,1);
  position: relative; min-height: 260px;
}
.tx-benefit:nth-child(3n) { border-right: 0; }
.tx-benefit:hover { background: var(--ivory-100); }
.tx-benefit .num { font-family: var(--ff-display); font-weight: 300; font-size: 14px; color: var(--gold-600); letter-spacing: 0.1em; }
.tx-benefit h3 { font-family: var(--ff-display); font-weight: 300; font-size: 28px; line-height: 1.15; letter-spacing: -0.01em; margin: 0; color: var(--ink-900); }
.tx-benefit p { font-size: 14px; line-height: 1.7; color: var(--taupe-600); margin: 0; font-weight: 300; }

/* ============================================================
   HOW IT WORKS (dark moss band)
   ============================================================ */
.tx-how { padding: 144px 56px; background: var(--moss-700); color: var(--ivory-50); position: relative; overflow: hidden; }
.tx-how-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 80% 0%, rgba(217,199,160,0.18), transparent 50%),
              radial-gradient(ellipse at 10% 100%, rgba(26,24,21,0.55), transparent 50%);
}
.tx-how .tx-section-head h2 { color: var(--ivory-50); }
.tx-how .tx-section-head h2 em { color: var(--gold-300); }
.tx-how .tx-lede { color: rgba(251,248,243,0.75); }
.tx-how .b-eyebrow { color: var(--gold-300); }

.tx-phases ol { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.tx-phases .phase {
  --prog: 0; padding: 32px 28px 28px 28px;
  border-left: 1px solid rgba(251,248,243,0.18); position: relative;
}
.tx-phases .phase:first-child { border-left: 0; padding-left: 0; }
.tx-phases .phase-track { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(251,248,243,0.16); }
.tx-phases .phase-fill { height: 100%; background: var(--gold-300); width: calc(var(--prog, 0) * 100%); transition: width .8s cubic-bezier(0.25,1,0.5,1); }
.tx-phases .phase-num { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 14px; }
.tx-phases .phase h3 { font-family: var(--ff-display); font-weight: 300; font-size: 30px; line-height: 1.1; letter-spacing: -0.01em; margin: 0 0 14px; color: var(--ivory-50); }
.tx-phases .phase p { font-size: 14px; line-height: 1.7; color: rgba(251,248,243,0.72); font-weight: 300; margin: 0; }

/* ============================================================
   PRODUCTS — HA types
   ============================================================ */
.tx-products { padding: 144px 56px; background: var(--ivory-100); }
.tx-ha-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ivory-300); }
.tx-ha-card {
  padding: 44px 36px; border-right: 1px solid var(--ivory-300);
  display: flex; flex-direction: column; gap: 20px;
  transition: background .42s cubic-bezier(0.22,0.61,0.36,1);
  position: relative; overflow: hidden;
}
.tx-ha-card:last-child { border-right: 0; }
.tx-ha-card:hover { background: var(--ivory-200); }
.tx-ha-card.featured { background: var(--moss-700); color: var(--ivory-50); border-color: transparent; }
.tx-ha-card.featured:hover { background: var(--moss-600); }
.tx-ha-num {
  font-family: var(--ff-display); font-weight: 300; font-style: italic;
  font-size: clamp(64px, 8vw, 108px); line-height: 0.88; letter-spacing: -0.04em;
  color: transparent; -webkit-text-stroke: 1px rgba(154,127,78,0.4);
}
.tx-ha-card.featured .tx-ha-num { -webkit-text-stroke-color: rgba(217,199,160,0.4); }
.tx-ha-title { font-family: var(--ff-display); font-weight: 300; font-size: 26px; line-height: 1.1; letter-spacing: -0.01em; }
.tx-ha-desc { font-size: 14px; line-height: 1.75; color: var(--taupe-600); margin: 0; font-weight: 300; }
.tx-ha-card.featured .tx-ha-desc { color: rgba(251,248,243,0.75); }
.tx-ha-tag {
  display: inline-block; padding: 7px 14px; border: 1px solid var(--ivory-300);
  border-radius: 999px; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--taupe-500); font-weight: 500; margin-top: auto;
}
.tx-ha-card.featured .tx-ha-tag { border-color: rgba(217,199,160,0.4); color: var(--gold-300); }

/* ============================================================
   WHO IT'S FOR + AREAS
   ============================================================ */
.tx-fit { padding: 144px 56px; background: var(--ivory-50); }
.tx-fit-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 96px; }
.tx-fit-h2 { font-family: var(--ff-display); font-weight: 300; font-size: clamp(36px,4.4vw,68px); line-height: 1.04; letter-spacing: -0.02em; margin: 18px 0 24px; color: var(--ink-900); }
.tx-fit-h2 em { font-style: italic; color: var(--gold-600); font-weight: 300; }
.tx-fit-lede { font-size: 17px; line-height: 1.7; color: var(--taupe-600); font-weight: 300; margin: 0 0 36px; max-width: 56ch; }
.tx-fit-list { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 16px; }
.tx-fit-list li { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--ivory-300); align-items: baseline; }
.tx-fit-list li .tick { color: var(--gold-600); font-size: 14px; flex-shrink: 0; }
.tx-fit-list li span:last-child { font-size: 16px; color: var(--ink-900); font-weight: 300; line-height: 1.5; }
.tx-disclaimer { font-size: 12px; letter-spacing: 0.04em; color: var(--taupe-500); font-style: italic; margin: 0; }

.tx-areas-right {}
.tx-zones-h { font-family: var(--ff-display); font-weight: 300; font-size: 32px; line-height: 1.1; letter-spacing: -0.01em; margin: 14px 0 28px; }
.tx-area-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--ivory-300); }
.tx-area-list li {
  display: grid; grid-template-columns: 40px 1fr; gap: 20px;
  padding: 18px 0; border-bottom: 1px solid var(--ivory-300);
  align-items: center; cursor: default;
  transition: padding-left .28s cubic-bezier(0.25,1,0.5,1), background .28s;
}
.tx-area-list li:hover { background: var(--ivory-100); padding-left: 12px; }
.tx-area-num { font-family: var(--ff-display); font-weight: 300; font-style: italic; font-size: 20px; color: var(--gold-600); letter-spacing: -0.01em; }
.tx-area-name { font-family: var(--ff-display); font-weight: 300; font-size: 26px; line-height: 1.1; letter-spacing: -0.01em; color: var(--ink-900); }

.tx-areas-stat { margin-top: 32px; border-top: 1px solid var(--ivory-300); display: grid; grid-template-columns: 1fr 1fr; }
.tx-stat-item { display: flex; flex-direction: column; gap: 6px; padding: 18px 16px 18px 0; border-bottom: 1px solid var(--ivory-300); }
.tx-stat-item:nth-child(odd) { border-right: 1px solid var(--ivory-300); }
.tx-stat-item:nth-child(even) { padding-left: 16px; }
.tx-stat-item .sk { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe-500); }
.tx-stat-item .sv { font-family: var(--ff-display); font-size: 22px; font-weight: 300; color: var(--ink-900); letter-spacing: -0.01em; }

/* ============================================================
   PROTOCOL TABLE
   ============================================================ */
.tx-protocol { padding: 144px 56px; background: var(--ivory-100); }
.tx-protocol-table { border-top: 1px solid var(--ivory-300); }
.tx-protocol-table .row {
  display: grid; grid-template-columns: 1.2fr 2fr 0.5fr; gap: 32px;
  padding: 28px 0; border-bottom: 1px solid var(--ivory-300); align-items: baseline;
  transition: background .32s, padding-left .32s cubic-bezier(0.25,1,0.5,1);
}
.tx-protocol-table .row.hd { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe-500); padding: 14px 0; }
.tx-protocol-table .row:not(.hd):hover { background: var(--ivory-50); padding-left: 16px; }
.tx-protocol-table .row .lb { font-family: var(--ff-display); font-weight: 300; font-size: 22px; letter-spacing: -0.01em; }
.tx-protocol-table .row .lb b { color: var(--gold-600); font-weight: 300; margin-right: 12px; font-size: 14px; letter-spacing: 0.08em; }
.tx-protocol-table .row > span:nth-child(2) { font-size: 15px; color: var(--taupe-600); line-height: 1.6; font-weight: 300; }
.tx-protocol-table .row > span:nth-child(3) { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-900); text-align: right; }

/* ============================================================
   COMBINATION TREATMENTS
   ============================================================ */
.tx-combo { padding: 144px 56px; background: var(--ivory-50); }
.tx-combo-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.tx-combo-head h2 { font-family: var(--ff-display); font-weight: 300; font-size: clamp(36px,4.4vw,68px); line-height: 1.04; letter-spacing: -0.02em; margin: 14px 0 0; color: var(--ink-900); }
.tx-combo-head h2 em { font-style: italic; color: var(--gold-600); font-weight: 300; }
.tx-combo-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--ivory-300); }
.tx-combo-list li {
  display: grid; grid-template-columns: 180px 1fr; gap: 32px;
  padding: 24px 0; border-bottom: 1px solid var(--ivory-300); align-items: baseline;
}
.tx-combo-name { font-family: var(--ff-display); font-weight: 300; font-size: 22px; letter-spacing: -0.01em; color: var(--ink-900); }
.tx-combo-desc { font-size: 14px; line-height: 1.65; color: var(--taupe-600); font-weight: 300; }

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.tx-ba { padding: 144px 56px; background: var(--ivory-100); }
.tx-ba .and { color: var(--gold-600); font-style: italic; }
.tx-ba-stage {
  position: relative; aspect-ratio: 4/3; max-width: 1280px; margin: 0 auto;
  overflow: hidden; cursor: ew-resize; user-select: none;
  background: var(--ivory-200);
}
.tx-ba-img { position: absolute; inset: 0; }
.tx-ba-img-inner { width: 100%; height: 100%; }
.tx-ba-img.after .tx-ba-img-inner { background: linear-gradient(135deg, #cfc5b8 0%, #b5a898 40%, #c8bba8 100%); }
.tx-ba-img.before { z-index: 2; clip-path: inset(0 50% 0 0); }
.tx-ba-img.before .tx-ba-img-inner { background: linear-gradient(135deg, #d8d0c8 0%, #c4bab0 40%, #d0c8bc 100%); }
.tx-ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; z-index: 3;
  width: 2px; background: var(--ivory-50); transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(26,24,21,0.1);
}
.tx-ba-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--ivory-50); color: var(--ink-900);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 18px; font-weight: 300; cursor: ew-resize;
  box-shadow: 0 12px 30px rgba(26,24,21,0.25);
}
.tx-ba-tag {
  position: absolute; top: 24px; z-index: 4;
  background: rgba(26,24,21,0.7); color: var(--ivory-50);
  padding: 8px 14px; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.tx-ba-tag.tag-before { left: 24px; }
.tx-ba-tag.tag-after { right: 24px; }

/* ============================================================
   AFTERCARE
   ============================================================ */
.tx-aftercare { padding: 144px 56px; background: var(--ivory-50); }
.tx-aftercare-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 96px; align-items: start; }
.tx-aftercare-h { font-family: var(--ff-display); font-weight: 300; font-size: clamp(36px,4.4vw,68px); line-height: 1.04; letter-spacing: -0.02em; margin: 14px 0 20px; }
.tx-aftercare-h em { font-style: italic; color: var(--gold-600); font-weight: 300; }
.tx-aftercare-lede { font-size: 17px; line-height: 1.7; color: var(--taupe-600); font-weight: 300; max-width: 44ch; }
.tx-aftercare-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--ivory-300); }
.tx-aftercare-list li { display: grid; grid-template-columns: 80px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--ivory-300); }
.tx-aftercare-list .ac-num { font-family: var(--ff-display); font-weight: 300; font-style: italic; font-size: 56px; line-height: 1; color: var(--gold-600); letter-spacing: -0.02em; }
.tx-aftercare-list h4 { font-family: var(--ff-display); font-weight: 300; font-size: 24px; line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 8px; color: var(--ink-900); }
.tx-aftercare-list p { font-size: 15px; line-height: 1.65; color: var(--taupe-600); font-weight: 300; margin: 0; }

/* ============================================================
   DOCTOR
   ============================================================ */
.tx-doctor { padding: 144px 56px; background: var(--ivory-100); }
.tx-doctor-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 96px; align-items: center; }
.tx-doctor-photo {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  background: linear-gradient(160deg, #ccc0b0 0%, #b0a090 50%, #c0b0a0 100%);
}
.tx-doctor-sig {
  position: absolute; bottom: 24px; right: 24px;
  font-family: var(--ff-display); font-weight: 300; font-style: italic; font-size: 56px;
  color: var(--ivory-50); letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.tx-doctor-text h2 { font-family: var(--ff-display); font-weight: 300; font-size: clamp(36px,4.4vw,64px); line-height: 1.04; letter-spacing: -0.02em; margin: 14px 0 8px; }
.tx-doctor-text h2 em { font-style: italic; color: var(--gold-600); font-weight: 300; }
.tx-doctor-role { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe-500); margin-bottom: 24px; }
.tx-doctor-bio { font-size: 16px; line-height: 1.7; color: var(--taupe-600); font-weight: 300; margin: 0 0 32px; max-width: 56ch; }
.tx-pullquote {
  font-family: var(--ff-display); font-weight: 300; font-style: italic;
  font-size: 24px; line-height: 1.4; letter-spacing: -0.01em;
  color: var(--ink-900); margin: 0 0 36px;
  padding: 24px 0 24px 32px; border-left: 1px solid var(--gold-600);
  max-width: 48ch;
}
.tx-pullquote .open, .tx-pullquote .close { color: var(--gold-600); font-size: 32px; opacity: 0.6; }

/* ============================================================
   FAQ
   ============================================================ */
.tx-faq { padding: 144px 56px; background: var(--ivory-50); }
.tx-faq-list { max-width: 1000px; border-top: 1px solid var(--ivory-300); }
.tx-faq-item { border-bottom: 1px solid var(--ivory-300); }
.tx-faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 32px 0; cursor: pointer; list-style: none;
  transition: padding-left .32s cubic-bezier(0.25,1,0.5,1);
}
.tx-faq-item summary::-webkit-details-marker { display: none; }
.tx-faq-item summary:hover { padding-left: 12px; }
.tx-faq-item .q { font-family: var(--ff-display); font-weight: 300; font-size: clamp(20px,2.2vw,30px); line-height: 1.2; letter-spacing: -0.01em; color: var(--ink-900); }
.tx-faq-item .ic {
  width: 28px; height: 28px; position: relative; flex-shrink: 0;
  border: 1px solid var(--ivory-300); border-radius: 999px;
  transition: background .32s, transform .42s cubic-bezier(0.25,1,0.5,1);
}
.tx-faq-item .ic::before, .tx-faq-item .ic::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--ink-900);
}
.tx-faq-item .ic::before { width: 12px; height: 1px; }
.tx-faq-item .ic::after { width: 1px; height: 12px; transition: transform .32s cubic-bezier(0.25,1,0.5,1); }
.tx-faq-item[open] .ic { background: var(--ink-900); transform: rotate(180deg); }
.tx-faq-item[open] .ic::before, .tx-faq-item[open] .ic::after { background: var(--ivory-50); }
.tx-faq-item[open] .ic::after { transform: translate(-50%,-50%) scaleY(0); }
.tx-faq-item .ans { padding: 0 80px 32px 0; max-width: 70ch; }
.tx-faq-item .ans p { font-size: 16px; line-height: 1.7; color: var(--taupe-600); font-weight: 300; margin: 0; }

/* ============================================================
   IMPORTANT NOTES (ink dark)
   ============================================================ */
.tx-notes { padding: 96px 56px; background: var(--ink-900); color: var(--ivory-50); }
.tx-notes-eb { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 32px; }
.tx-notes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; border-top: 1px solid rgba(251,248,243,0.18); padding-top: 32px; }
.tx-notes-grid > div { display: flex; flex-direction: column; gap: 12px; }
.tx-notes-grid .bullet { font-family: var(--ff-display); font-size: 32px; font-weight: 300; color: var(--gold-300); line-height: 0.5; }
.tx-notes-grid p { font-size: 14px; line-height: 1.65; color: rgba(251,248,243,0.78); margin: 0; font-weight: 300; }

/* ============================================================
   BOOK CTA (moss)
   ============================================================ */
.tx-book { padding: 160px 56px; background: var(--moss-700); color: var(--ivory-50); position: relative; overflow: hidden; }
.tx-book-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 80% 20%, rgba(217,199,160,0.22), transparent 50%),
              radial-gradient(ellipse at 10% 80%, rgba(26,24,21,0.55), transparent 50%);
}
.tx-book-inner { position: relative; max-width: 900px; }
.tx-book .b-eyebrow { color: var(--gold-300); }
.tx-book-h { font-family: var(--ff-display); font-weight: 300; font-size: clamp(48px,6.5vw,100px); line-height: 1.02; letter-spacing: -0.02em; margin: 18px 0 24px; }
.tx-book-h em { font-style: italic; color: var(--gold-300); font-weight: 300; }
.tx-book-lede { font-size: 18px; line-height: 1.7; color: rgba(251,248,243,0.8); font-weight: 300; max-width: 60ch; margin: 0 0 40px; }
.tx-book-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.tx-book .b-btn { background: var(--ivory-50); color: var(--ink-900); }
.tx-book .b-btn:hover { background: var(--gold-300); }
.tx-book .b-btn-ghost { background: transparent; color: var(--ivory-50); border: 1px solid rgba(251,248,243,0.4); }
.tx-book .b-btn-ghost:hover { background: rgba(251,248,243,0.1); }
.tx-book-locs { display: flex; flex-wrap: wrap; gap: 12px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(251,248,243,0.6); }
.tx-book-locs .dot { color: var(--gold-300); }

/* ============================================================
   RELATED TREATMENTS
   ============================================================ */
.tx-related { padding: 144px 56px; background: var(--ivory-50); }
.tx-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.tx-related-card {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  border: 1px solid var(--ivory-300);
  transition: transform .56s cubic-bezier(0.25,1,0.5,1), box-shadow .56s;
}
.tx-related-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(26,24,21,0.10); opacity: 1; }
.tx-related-card .img { aspect-ratio: 4/3; overflow: hidden; background: var(--ivory-200); }
.tx-related-card .img-inner { width: 100%; height: 100%; transition: transform 1.2s cubic-bezier(0.25,1,0.5,1); }
.tx-related-card:hover .img-inner { transform: scale(1.06); }
.tx-related-card .body { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 10px; }
.tx-related-card .eb { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-600); }
.tx-related-card h4 { font-family: var(--ff-display); font-weight: 300; font-size: 26px; letter-spacing: -0.01em; margin: 0; color: var(--ink-900); }
.tx-related-card p { font-size: 14px; line-height: 1.6; color: var(--taupe-600); margin: 0; font-weight: 300; }
.tx-related-card .meta {
  display: flex; justify-content: space-between; gap: 16px;
  margin-top: 10px; padding-top: 16px; border-top: 1px solid var(--ivory-300);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe-500);
}

/* ============================================================
   FOOTER
   ============================================================ */
.b-footer { background: var(--ink-900); color: var(--ivory-50); padding: 80px 56px 0; }
.b-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 56px; padding-bottom: 64px; border-bottom: 1px solid rgba(251,248,243,0.12); }
.b-footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(251,248,243,0.6); font-weight: 300; margin: 20px 0 24px; max-width: 38ch; }
.b-footer-logo-text { font-family: var(--ff-display); font-weight: 300; font-style: italic; font-size: 32px; color: var(--ivory-50); letter-spacing: -0.02em; }
.b-footer-pill {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(251,248,243,0.2); padding: 8px 16px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(251,248,243,0.7);
}
.b-footer-pill .dot { width: 6px; height: 6px; border-radius: 999px; background: #5c8c4a; animation: txDot 2s infinite; }
@keyframes txDot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }
.b-footer-loc h5, .b-footer-cols h5 { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ivory-50); margin-bottom: 16px; }
.b-footer-loc .addr { font-size: 14px; line-height: 1.7; color: rgba(251,248,243,0.6); font-weight: 300; margin-bottom: 6px; }
.b-footer-loc .hrs { font-size: 12px; letter-spacing: 0.1em; color: rgba(251,248,243,0.4); margin-bottom: 12px; }
.b-footer-loc .ph { font-size: 14px; color: var(--gold-300); text-decoration: none; transition: opacity .22s; }
.b-footer-loc .ph:hover { opacity: 0.7; }
.b-footer-cols { display: flex; gap: 40px; }
.b-footer-cols ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.b-footer-cols a { font-size: 14px; color: rgba(251,248,243,0.6); text-decoration: none; font-weight: 300; transition: color .22s; }
.b-footer-cols a:hover { color: var(--ivory-50); }
.b-footer-bot {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.1em; color: rgba(251,248,243,0.35);
}
.b-footer-langs { display: flex; gap: 8px; }
.b-footer-langs .active { color: var(--ivory-50); }
.b-footer-bot .social { display: flex; gap: 24px; }
.b-footer-bot .social a { color: rgba(251,248,243,0.5); text-decoration: none; font-size: 12px; letter-spacing: 0.1em; transition: color .22s; }
.b-footer-bot .social a:hover { color: var(--ivory-50); }

/* ============================================================
   FLOATING BOOK PILL
   ============================================================ */
.tx-floating-book {
  position: fixed; right: 32px; bottom: 32px; z-index: 95;
  background: var(--ink-900); color: var(--ivory-50); text-decoration: none;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  box-shadow: 0 20px 40px rgba(26,24,21,0.25);
  transform: translateY(120%); opacity: 0;
  transition: transform .56s cubic-bezier(0.25,1,0.5,1), opacity .42s, background .22s;
}
.tx-floating-book.show { transform: translateY(0); opacity: 1; }
.tx-floating-book:hover { background: var(--moss-700); opacity: 1; }
.tx-floating-book .fdot { width: 8px; height: 8px; border-radius: 999px; background: var(--gold-300); animation: txDot 2s infinite; }
.tx-floating-book .arr { transition: transform .32s cubic-bezier(0.25,1,0.5,1); }
.tx-floating-book:hover .arr { transform: translateX(4px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  
  .tx-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .tx-hero-art { min-height: 480px; }
  .tx-glance-grid { grid-template-columns: 1fr 1fr; }
  .tx-benefit:nth-child(3n) { border-right: 1px solid var(--ivory-300); }
  .tx-benefit:nth-child(2n) { border-right: 0; }
  .tx-phases ol { grid-template-columns: 1fr 1fr; }
  .tx-ha-grid { grid-template-columns: 1fr; }
  .tx-ha-card { border-right: 0; border-bottom: 1px solid var(--ivory-300); }
  .tx-ha-card:last-child { border-bottom: 0; }
  .tx-fit-grid { grid-template-columns: 1fr; gap: 56px; }
  .tx-aftercare-grid, .tx-doctor-grid { grid-template-columns: 1fr; gap: 56px; }
  .tx-notes-grid { grid-template-columns: 1fr 1fr; }
  .tx-related-grid { grid-template-columns: 1fr 1fr; }
  .tx-combo-inner { grid-template-columns: 1fr; gap: 40px; }
  .b-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  
  
  .tx-hero, .tx-glance, .tx-how, .tx-products, .tx-fit, .tx-protocol, .tx-combo, .tx-ba, .tx-aftercare, .tx-doctor, .tx-faq, .tx-notes, .tx-book, .tx-related { padding-left: 24px; padding-right: 24px; }
  .tx-crumbs { padding: 20px 24px 0; }
  .tx-ticker { margin-left: -24px; margin-right: -24px; }
  .tx-glance-grid { grid-template-columns: 1fr; }
  .tx-benefit { border-right: 0; }
  .tx-phases ol { grid-template-columns: 1fr; }
  .tx-phases .phase { border-left: 0; padding-left: 0; border-top: 1px solid rgba(251,248,243,0.18); }
  .tx-phases .phase:first-child { border-top: 0; }
  .tx-protocol-table .row { grid-template-columns: 1fr; gap: 8px; }
  .tx-protocol-table .row > span:nth-child(3) { text-align: left; }
  .tx-notes-grid { grid-template-columns: 1fr; }
  .tx-aftercare-list li { grid-template-columns: 60px 1fr; }
  .tx-related-grid { grid-template-columns: 1fr; }
  .tx-combo-list li { grid-template-columns: 1fr; gap: 6px; }
  .b-footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .tx-floating-book .lbl { display: none; }
}