/* ─── TREATMENT DETAIL PAGE (independent per-service files) ─── */

/* HERO — compact ribbon with image background + title + CTA */
#trt-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 80px 64px;
  overflow: hidden;
  background: #0d0b09;
}

.trt-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.trt-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(13, 11, 9, 0.94) 0%, rgba(13, 11, 9, 0.65) 60%, rgba(13, 11, 9, 0.35) 100%),
    linear-gradient(to top, rgba(13, 11, 9, 0.95) 0%, rgba(13, 11, 9, 0.1) 55%, transparent 80%);
}

.trt-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap
}

.trt-hero-left {
  max-width: 720px
}

.trt-hero-inner .hcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245, 238, 228, 0.5);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.trt-hero-inner .hcrumb a {
  color: rgba(245, 238, 228, 0.5);
  text-decoration: none;
  transition: color .3s
}

.trt-hero-inner .hcrumb a:hover {
  color: var(--gold)
}

.trt-hero-inner .hcsep {
  color: var(--gold);
  font-size: 0.45rem;
  opacity: 0.5
}

.trt-hero-inner .hccur {
  color: var(--gold)
}

.trt-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin: 0;
}

.trt-h1 em {
  font-style: italic;
  color: var(--gold)
}

.trt-hero-cta {
  flex-shrink: 0
}

/* INTRO — heading + body + bullet list + image to the right */
#trt-intro {
  background: var(--ink);
  padding: 120px 80px;
  border-top: 1px solid var(--border)
}

.trt-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto
}

.trt-intro-text .slbl {
  margin-bottom: 20px
}

.trt-intro-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 28px;
}

.trt-intro-text h2 em {
  font-style: italic;
  color: var(--gold)
}

.trt-intro-text p {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.95;
  color: rgba(245, 238, 228, 0.74);
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.trt-intro-text p strong {
  color: var(--ivory);
  font-weight: 500
}

.trt-intro-rule {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 24px 0 28px
}

.trt-bullets {
  list-style: none;
  padding: 0;
  margin: 8px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.trt-bullets li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(245, 238, 228, 0.78);
  letter-spacing: 0.02em;
  padding-left: 0;
}

.trt-bullets li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 9px;
  flex-shrink: 0;
  letter-spacing: 0;
}

.trt-intro-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--border)
}

.trt-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease)
}

.trt-intro-img:hover img {
  transform: scale(1.04)
}

/* BODY SECTIONS — long-form editorial content */
#trt-body {
  background: var(--charcoal);
  padding: 140px 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.trt-body-inner {
  max-width: 1280px;
  margin: 0 auto;
  counter-reset: trt-counter
}

.trt-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  counter-increment: trt-counter;
}

.trt-section:first-child {
  border-top: none;
  padding-top: 0
}

.trt-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--gold);
  margin-bottom: 0;
  position: sticky;
  top: 130px;
}

.trt-section h2::before {
  content: counter(trt-counter, decimal-leading-zero);
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 18px;
}

.trt-content {
  display: block
}

.trt-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--ivory);
  letter-spacing: 0.01em;
  margin: 32px 0 14px;
}

.trt-section p {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 2;
  color: rgba(245, 238, 228, 0.72);
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.trt-section p:last-child {
  margin-bottom: 0
}

.trt-section p strong {
  color: var(--ivory);
  font-weight: 500
}

/* PULL QUOTE */
#trt-quote {
  position: relative;
  background: var(--ink);
  padding: 140px 80px;
  text-align: center;
  overflow: hidden;
}

.trt-quote-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid var(--border);
  opacity: 0.6;
  pointer-events: none;
}

.trt-quote-text {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  line-height: 1.55;
  color: var(--ivory);
  max-width: 840px;
  margin: 0 auto 24px;
  letter-spacing: 0.005em;
}

.trt-quote-attrib {
  position: relative;
  z-index: 1;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
}

/* PRACTITIONER CARD */
#trt-practitioner {
  background: var(--charcoal);
  padding: 100px 80px;
  border-top: 1px solid var(--border)
}

.trt-pract-card {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--border);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.trt-pract-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 32px;
  height: 32px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold)
}

.trt-pract-card::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 32px;
  height: 32px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold)
}

.trt-pract-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border)
}

.trt-pract-photo-fallback {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.04em;
}

.trt-pract-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--ivory);
  letter-spacing: -0.005em;
  margin-bottom: 8px;
}

.trt-pract-role {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.trt-pract-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(245, 238, 228, 0.78);
  letter-spacing: 0.005em;
}

/* FAQ */
#trt-faq {
  background: var(--ink);
  padding: 140px 80px;
  border-top: 1px solid var(--border)
}

.trt-faq-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px
}

.trt-faq-head .slbl {
  justify-content: center
}

.trt-faq-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-top: 18px;
}

.trt-faq-head h2 em {
  font-style: italic;
  color: var(--gold)
}

.trt-faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--border)
}

.trt-fi {
  border-bottom: 1px solid var(--border)
}

.trt-fi-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--ivory);
  letter-spacing: 0.005em;
  text-align: left;
  transition: color .3s, padding .3s;
}

.trt-fi-q:hover {
  color: var(--gold);
  padding-left: 6px
}

.trt-fi-icon {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
  font-family: system-ui, sans-serif;
  font-weight: 300;
  transition: transform .4s var(--ease), background .3s, border-color .3s, color .3s;
  padding-bottom: 2px;
}

.trt-fi.open .trt-fi-icon {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: rotate(45deg)
}

.trt-fi-a {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .65s var(--ease), opacity .4s ease
}

.trt-fi.open .trt-fi-a {
  max-height: 600px;
  opacity: 1
}

.trt-fi-a-inner {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(245, 238, 228, 0.7);
  padding: 0 0 28px;
  letter-spacing: 0.02em;
}

.trt-fi-a-inner strong {
  color: var(--ivory);
  font-weight: 500
}

.trt-fi-a-inner a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(198, 169, 125, 0.4)
}

/* ─── RESPONSIVE ─── */
@media(max-width:1024px) {
  .trt-intro-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .trt-intro-img {
    aspect-ratio: 16/10;
    max-height: 520px;
    order: -1
  }

  .trt-pract-card {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
    padding: 40px 32px
  }

  .trt-pract-photo,
  .trt-pract-photo-fallback {
    margin: 0 auto
  }

  .trt-pract-role {
    justify-content: center
  }

  .trt-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 0
  }

  .trt-section h2 {
    position: static
  }
}

@media(max-width:768px) {
  #trt-hero {
    padding: 120px 24px 48px;
    min-height: auto
  }

  .trt-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px
  }

  .trt-hero-cta {
    width: 100%
  }

  .trt-hero-cta .bgold {
    width: 100%;
    text-align: center;
    justify-content: center
  }

  #trt-intro,
  #trt-body,
  #trt-quote,
  #trt-practitioner,
  #trt-faq {
    padding: 80px 24px
  }

  .trt-body-inner {
    padding: 0
  }

  .trt-section {
    padding: 36px 0
  }

  .trt-quote-circle {
    width: 200px;
    height: 200px
  }

  .trt-pract-name {
    font-size: 1.5rem
  }

  .trt-intro-text p,
  .trt-section p,
  .trt-fi-a-inner {
    font-size: 1.05rem;
  }

  .trt-bullets li {
    font-size: 1rem;
  }
}


/* ─── TESTIMONIAL SLIDER ─── */
#testimonial {
  background: var(--ink);
  padding: 140px 80px;
  position: relative;
  overflow: hidden
}

.t-quote-mark {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  font-weight: 300;
  color: rgba(198, 169, 125, 0.04);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
  user-select: none
}

.slider-wrap {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.slider-head {
  text-align: center;
  margin-bottom: 72px
}

.slider-viewport {
  position: relative;
  overflow: hidden;
  min-height: 320px
}

.slider-track {
  display: flex;
  width: 100%;
  transition: transform .7s var(--ease-out);
  will-change: transform
}

.slide {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px
}

.slide-stars {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 28px
}

.star {
  color: var(--gold);
  font-size: 0.9rem;
  animation: starPop .4s var(--ease-out) both
}

@keyframes starPop {
  from {
    transform: scale(0);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.slide-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  line-height: 1.55;
  color: var(--ivory);
  letter-spacing: 0.01em;
  margin-bottom: 40px
}

.slide-author-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px
}

.slide-author {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold)
}

.slide-location {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: rgba(245, 238, 228, 0.4);
  text-transform: uppercase
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 56px
}

.s-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 238, 228, 0.6);
  font-size: 1rem;
  transition: all .35s var(--ease-out);
  background: transparent;
  flex-shrink: 0
}

.s-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.08)
}

.s-dots {
  display: flex;
  gap: 10px;
  align-items: center
}

.s-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245, 238, 228, 0.2);
  transition: all .4s var(--ease-out);
  border: none;
  padding: 0
}

.s-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px
}

.s-dot:hover {
  background: rgba(198, 169, 125, 0.5)
}

.s-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  width: 0%;
  transition: width linear;
  opacity: 0.5
}