/* Treatment page layout */
.tx-hero {
  padding: 120px 46px 60px;
  background: linear-gradient(135deg, var(--soft) 0%, var(--lav) 100%);
  text-align: center;
}
.tx-hero__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.tx-hero__title {
  font-family: var(--font-disp); font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.5rem); letter-spacing: -0.025em;
  color: var(--ink);
}
.tx-hero__sub {
  margin-top: 14px; font-size: 17px; color: var(--muted); max-width: 38em; margin-left: auto; margin-right: auto;
}
.tx-breadcrumb {
  margin-top: 16px; font-size: 12px; color: var(--muted);
}
.tx-breadcrumb a { color: var(--accent); }

.tx-main {
  max-width: 1100px; margin: 0 auto;
  padding: 70px 46px;
}
.tx-content h2 {
  font-family: var(--font-disp); font-weight: 700;
  font-size: 1.7rem; letter-spacing: -0.02em; margin-bottom: 18px; color: var(--ink);
}
.tx-content p { font-size: 15.5px; line-height: 1.75; color: var(--muted); margin-bottom: 14px; }
.tx-content h3 {
  font-family: var(--font-disp); font-weight: 600; font-size: 1.1rem;
  color: var(--ink); margin-top: 28px; margin-bottom: 10px;
}
.tx-content ul { list-style: none; padding: 0; }
.tx-content ul li {
  padding: 9px 0; border-bottom: 1px solid var(--line);
  font-size: 14.5px; color: var(--muted); display: flex; gap: 10px;
}
.tx-content ul li::before { content: "✦"; color: var(--accent); flex-shrink: 0; font-size: 10px; margin-top: 4px; }

.tx-sidebar {}
.tx-sidebar img {
  width: 100%; border-radius: 20px;
  box-shadow: 0 30px 60px -30px rgba(80,50,90,0.3);
  margin-bottom: 28px;
}
.tx-price-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 20px; padding: 28px;
  margin-bottom: 20px;
}
.tx-price-card h4 {
  font-family: var(--font-disp); font-weight: 700; font-size: 1rem;
  color: var(--ink); margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.tx-price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0; border-bottom: 1px solid rgba(30,27,34,0.05);
  font-size: 14px;
}
.tx-price-row:last-child { border-bottom: none; }
.tx-price-row .name { color: var(--muted); }
.tx-price-row .price { font-weight: 700; color: var(--accent); }
.tx-price-row .was { text-decoration: line-through; color: var(--muted); font-size: 12px; margin-left: 6px; }
.tx-price-row .name em { font-style: normal; font-size: 11px; font-weight: 600; color: var(--accent); opacity: 0.8; }
.tx-price-card h4 em { font-style: normal; font-size: 11px; font-weight: 600; color: var(--accent); letter-spacing: 0.01em; }
.tx-price-note { font-size: 12px; color: var(--muted); margin-top: 10px; line-height: 1.5; }

.tx-book-btn {
  display: block; width: 100%; text-align: center;
  background: var(--accent); color: #fff;
  padding: 15px; border-radius: 999px; font-weight: 700;
  font-size: 15px; transition: background 0.2s;
}
.tx-book-btn:hover { background: var(--accent2); }

.tx-variants { margin-top: 32px; }
.tx-variant {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 22px; margin-bottom: 12px;
}
.tx-variant h4 { font-family: var(--font-disp); font-weight: 700; font-size: 1rem; color: var(--ink); margin-bottom: 6px; }
.tx-variant .tag { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; display: block; }
.tx-variant p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.tx-variant .suitable { margin-top: 8px; font-size: 12.5px; color: var(--accent); font-style: italic; }

.tx-benefits {
  background: var(--surf); border-radius: 24px;
  padding: 48px; margin: 0 46px 60px;
}
.tx-benefits h3 {
  font-family: var(--font-disp); font-weight: 700; font-size: 1.4rem;
  color: var(--ink); margin-bottom: 28px; text-align: center;
}
.tx-benefits-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.tx-benefit {
  background: var(--white); border-radius: 16px; padding: 24px;
}
.tx-benefit h4 { font-family: var(--font-disp); font-weight: 600; font-size: 0.95rem; color: var(--ink); margin-bottom: 6px; }
.tx-benefit p { font-size: 13px; color: var(--muted); line-height: 1.5; }

@media (max-width: 860px) {
  .tx-main { display: flex; flex-direction: column; padding: 48px 24px; gap: 36px; }
  .tx-content { order: 1; }
  .tx-sidebar { order: 2; }
  .tx-hero { padding: 110px 24px 48px; }
  .tx-benefits { margin: 0 20px 40px; padding: 36px 24px; }
  .tx-benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .tx-benefits-grid { grid-template-columns: 1fr; }
}

/* ---------- IV Therapy: IntakeQ online booking ---------- */
.iv-booking { background: var(--surf); border-radius: 24px; padding: 48px; margin: 0 46px 60px; text-align: center; }
.iv-booking__eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.iv-booking h3 { font-family: var(--font-disp); font-weight: 700; font-size: 1.4rem; color: var(--ink); margin: 10px 0; }
.iv-booking > p { font-size: 15px; color: var(--muted); max-width: 40em; margin: 0 auto; line-height: 1.6; }
.iv-booking #intakeq { max-width: 720px; width: 100%; margin: 28px auto 0; text-align: left; }
.iv-booking__fallback { margin-top: 18px; font-size: 13px; }
.iv-booking__fallback a { color: var(--accent); border-bottom: 1px solid currentColor; padding-bottom: 2px; }
@media (max-width: 768px) { .iv-booking { padding: 32px 20px; margin: 0 16px 40px; } }

/* Desktop: float the sidebar so content flows full-width beneath it, and
   run the long benefit/peptide lists in two columns to shorten tall pages. */
@media (min-width: 861px) {
  .tx-main { display: block; }
  .tx-sidebar { float: right; width: 380px; margin: 4px 0 32px 56px; }
  .tx-content > h2, .tx-content > h3, .tx-content > p { max-width: 620px; }
  .tx-content ul { columns: 2; column-gap: 44px; }
  .tx-content ul li { -webkit-column-break-inside: avoid; break-inside: avoid; }
  .tx-benefits { clear: both; }
}
