/* ══════════════════════════════════════════════
   Panchakarma page — extends style.css
   Import style.css BEFORE this file.

   A luxury-resort pass over the original layout:
   warm gold accenting, deeper shadow work, subtle
   texture, and a proper showcase for the five
   classical therapies.
   ══════════════════════════════════════════════ */

:root {
  --gold:      #c08a2e;
  --gold-lt:   #e9c27a;
  --gold-grad: linear-gradient(135deg, #a9781f 0%, #e0ab4a 50%, #f3d493 100%);
  --pk-shadow: 0 24px 60px rgba(43, 20, 70, .16);
}

/* ── Decorative divider, reused across sections ── */
.luxe-divider {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--gold); font-size: 15px; margin-bottom: 14px;
}
.luxe-divider::before, .luxe-divider::after {
  content: ''; flex: 0 0 54px; height: 1px;
  background: linear-gradient(90deg, rgba(192,138,46,0), rgba(192,138,46,.55));
}
.luxe-divider::after { background: linear-gradient(90deg, rgba(192,138,46,.55), rgba(192,138,46,0)); }

.section-kicker {
  display: block; text-align: center;
  font-size: 11px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 10px;
}

/* ── Page hero — full-bleed cinematic overlay ──── */
.page-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: pkKenBurns 26s ease-in-out infinite alternate;
}
@keyframes pkKenBurns {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.16); }
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(10,4,22,.94) 0%, rgba(10,4,22,.8) 34%, rgba(10,4,22,.46) 60%, rgba(10,4,22,.2) 82%, rgba(10,4,22,.1) 100%),
    linear-gradient(to top, rgba(10,4,22,.7) 0%, rgba(10,4,22,.15) 30%, rgba(10,4,22,0) 55%);
}

.page-hero-text {
  position: relative; z-index: 2;
  max-width: 640px;
  padding: 130px 6% 120px 7%;
}
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 700; letter-spacing: .26em;
  color: var(--gold-lt); text-transform: uppercase; margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(233,194,122,.35);
}
.page-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.6vw, 74px);
  font-weight: 600; line-height: 1.04;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -.01em;
  text-shadow: 0 4px 30px rgba(0,0,0,.25);
}
.page-hero-text h1 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-lt) 0%, #fff 55%, var(--pink) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.page-hero-sub {
  font-family: var(--font-display);
  font-style: italic; font-size: clamp(18px, 2vw, 26px);
  color: var(--gold-lt); margin-bottom: 26px;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.page-hero-divider {
  display: flex; align-items: center; gap: 10px;
  color: var(--gold-lt); font-size: 14px; margin-bottom: 26px; opacity: .9;
}
.page-hero-divider::before, .page-hero-divider::after {
  content: ''; flex: 0 0 60px; height: 1px; background: linear-gradient(90deg, rgba(233,194,122,0), rgba(233,194,122,.6));
}
.page-hero-divider::after { background: linear-gradient(90deg, rgba(233,194,122,.6), rgba(233,194,122,0)); }
.page-hero-desc {
  font-size: 14.5px; font-weight: 300; line-height: 2;
  color: rgba(255,255,255,.9); max-width: 460px; margin-bottom: 34px;
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
}

.page-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .1em;
  padding: 14px 24px; border-radius: 8px;
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4);
  text-decoration: none; cursor: pointer;
  transition: background .25s, border-color .25s, transform .25s;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }

/* Bottom stat strip — frosted glass bar anchored to the hero's base,
   left-aligned under the text block */
.page-hero-stats {
  position: relative; z-index: 2;
  display: flex; align-items: stretch;
  background: rgba(10, 4, 22, .6);
  backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 22px 30px;
  align-self: flex-start;
  margin: 0 0 48px 7%;
  gap: 28px;
  box-shadow: 0 20px 50px rgba(15,6,30,.4);
}
.phs-item { display: flex; flex-direction: column; gap: 4px; min-width: 92px; }
.phs-num {
  font-family: var(--font-display); font-size: 26px; font-weight: 600;
  background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.phs-label { font-size: 10px; font-weight: 500; letter-spacing: .04em; color: rgba(255,255,255,.75); line-height: 1.35; }
.phs-div { width: 1px; background: rgba(255,255,255,.18); }

/* ── Journey steps ─────────────────────────────── */
.journey-section {
  max-width: 1120px; margin: 90px auto 0;
  padding: 64px 6% 58px;
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--pk-shadow);
  position: relative;
  overflow: hidden;
}
.journey-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--gold-grad);
}
.journey-header {
  text-align: center; margin-bottom: 44px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.journey-header h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px); font-weight: 600;
  letter-spacing: .04em; color: var(--indigo);
}
.journey-header .lotus { display: none; }

.journey-steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: flex-start; gap: 18px;
  position: relative;
}
.journey-step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px; border-radius: 16px;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.journey-step:hover {
  transform: translateY(-4px);
  background: #fdf8fc;
  box-shadow: 0 14px 32px rgba(74,53,145,.1);
}
.journey-num {
  width: 50px; height: 50px; flex-shrink: 0; border-radius: 50%;
  background: var(--grad-dark);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 8px 22px rgba(26,10,46,.35);
  border: 1px solid rgba(224,171,74,.4);
}
.journey-num::before {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 1px solid rgba(192,138,46,.3);
}
.journey-num span {
  font-family: var(--font-display); font-weight: 600; font-size: 19px;
  background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.journey-step-text h4 {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  color: var(--indigo); margin-bottom: 5px;
}
.journey-step-text p { font-size: 12.5px; color: #6a5f75; font-weight: 300; line-height: 1.7; max-width: 220px; }

.journey-connector {
  display: flex; align-items: center; gap: 3px;
  margin-top: 25px; color: var(--gold); opacity: .55;
}
.journey-connector-line {
  width: 30px; height: 1px;
  background: linear-gradient(90deg, rgba(192,138,46,0), rgba(192,138,46,.7));
}
.journey-connector svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ── Classical therapies showcase ──────────────── */
.category-section { padding: 72px 6%; position: relative; }
.category-section.alt {
  background:
    radial-gradient(circle at 90% 10%, rgba(232,53,107,.05) 0%, rgba(232,53,107,0) 45%),
    #f5f0fb;
}
.category-header { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.category-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .24em;
  color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 12px;
}
.category-header h2 {
  font-family: var(--font-display); font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600; color: var(--indigo); margin-bottom: 14px;
}
.category-header p {
  font-size: 13.5px; font-weight: 300; line-height: 1.9; color: #6a5f75;
}

.treatment-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 22px; max-width: 1280px; margin: 0 auto;
  counter-reset: therapynum;
}
.treatment-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(123,58,181,.08);
  box-shadow: 0 10px 30px rgba(74,53,145,.08);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
  counter-increment: therapynum;
  position: relative;
  isolation: isolate;
}
.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 54px rgba(74,53,145,.2);
  border-color: rgba(192,138,46,.3);
}
.treatment-img-wrap { aspect-ratio: 4/3; overflow: hidden; background: #ece4f5; position: relative; }
.treatment-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.treatment-card:hover .treatment-img-wrap img { transform: scale(1.09); }
.treatment-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,6,30,.55) 0%, rgba(15,6,30,0) 45%);
}
.treatment-img-wrap::before {
  content: counter(therapynum, decimal-leading-zero);
  position: absolute; z-index: 2; top: 14px; left: 14px;
  font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: .08em;
  color: #1a0a2e; background: var(--gold-grad);
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(192,138,46,.4);
}
.treatment-card-body { padding: 20px 20px 24px; }
.treatment-card-body h4 {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  color: var(--indigo); margin-bottom: 8px;
}
.treatment-card-body p { font-size: 12.5px; color: #6a5f75; font-weight: 300; line-height: 1.75; }

/* ── 3-column info block: programmes / included / benefits ─ */
.info-block-section {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; max-width: 1140px; margin: 72px auto 70px; padding: 0 6%;
}
.info-block {
  background: #fff; border: 1px solid rgba(123,58,181,.1);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative; overflow: hidden;
  box-shadow: 0 10px 30px rgba(74,53,145,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.info-block:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(74,53,145,.15); }
.info-block::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-dark);
}
.info-block:nth-child(2)::before { background: var(--gold-grad); }
.info-block:nth-child(3)::before { background: var(--grad-main); }
.info-block-section .info-block:nth-child(1) { transition-delay: 0s; }
.info-block-section .info-block:nth-child(2) { transition-delay: .12s; }
.info-block-section .info-block:nth-child(3) { transition-delay: .24s; }

.info-block-icon {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff; margin-bottom: 20px;
  background: var(--grad-dark);
  box-shadow: 0 10px 24px rgba(26,10,46,.3);
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.info-block:hover .info-block-icon { transform: rotate(-8deg) scale(1.08); }
.info-block:nth-child(2) .info-block-icon { background: var(--gold-grad); box-shadow: 0 10px 24px rgba(192,138,46,.35); }
.info-block:nth-child(3) .info-block-icon { background: var(--grad-main); box-shadow: 0 10px 24px rgba(200,48,110,.35); }
.info-block h3 {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  letter-spacing: .09em; color: var(--indigo); margin-bottom: 8px;
}
.info-block-rule { width: 40px; height: 2px; background: var(--gold); opacity: .5; margin-bottom: 22px; transition: width .4s ease; }
.info-block:hover .info-block-rule { width: 64px; }

@keyframes pkItemIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}
.programme-item, .check-list li, .benefit-list li { opacity: 0; }
.info-block.visible .programme-item,
.info-block.visible .check-list li,
.info-block.visible .benefit-list li {
  animation: pkItemIn .5s ease forwards;
}
.info-block.visible .programme-item:nth-child(1) { animation-delay: 0s; }
.info-block.visible .programme-item:nth-child(2) { animation-delay: .1s; }
.info-block.visible .programme-item:nth-child(3) { animation-delay: .2s; }
.info-block.visible .check-list li:nth-child(1) { animation-delay: 0s; }
.info-block.visible .check-list li:nth-child(2) { animation-delay: .06s; }
.info-block.visible .check-list li:nth-child(3) { animation-delay: .12s; }
.info-block.visible .check-list li:nth-child(4) { animation-delay: .18s; }
.info-block.visible .check-list li:nth-child(5) { animation-delay: .24s; }
.info-block.visible .check-list li:nth-child(6) { animation-delay: .30s; }
.info-block.visible .check-list li:nth-child(7) { animation-delay: .36s; }
.info-block.visible .check-list li:nth-child(8) { animation-delay: .42s; }
.info-block.visible .check-list li:nth-child(9) { animation-delay: .48s; }
.info-block.visible .benefit-list li:nth-child(1) { animation-delay: 0s; }
.info-block.visible .benefit-list li:nth-child(2) { animation-delay: .06s; }
.info-block.visible .benefit-list li:nth-child(3) { animation-delay: .12s; }
.info-block.visible .benefit-list li:nth-child(4) { animation-delay: .18s; }
.info-block.visible .benefit-list li:nth-child(5) { animation-delay: .24s; }
.info-block.visible .benefit-list li:nth-child(6) { animation-delay: .30s; }
.info-block.visible .benefit-list li:nth-child(7) { animation-delay: .36s; }
.info-block.visible .benefit-list li:nth-child(8) { animation-delay: .42s; }

@media (prefers-reduced-motion: reduce) {
  .info-block, .info-block-icon, .info-block-rule,
  .programme-item, .check-list li, .benefit-list li {
    animation: none !important; transition: none !important; opacity: 1 !important;
  }
}

.programme-item { display: flex; gap: 14px; margin-bottom: 20px; transition: transform .3s ease; }
.programme-item:last-child { margin-bottom: 0; }
.programme-item:hover { transform: translateX(4px); }
.programme-dot {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%;
  background: var(--grad-dark); color: var(--gold-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  box-shadow: 0 6px 16px rgba(26,10,46,.3);
  transition: transform .3s ease;
}
.programme-item:hover .programme-dot { transform: scale(1.1); }
.programme-item h5 { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--indigo); margin-bottom: 3px; }
.programme-item p { font-size: 12px; color: #6a5f75; font-weight: 300; line-height: 1.6; }

.check-list { display: flex; flex-direction: column; gap: 13px; }
.check-list li {
  list-style: none; display: flex; align-items: center; gap: 11px;
  font-size: 13px; color: #4a4055; font-weight: 400;
  transition: transform .25s ease, color .25s ease;
}
.check-list li:hover { transform: translateX(4px); color: var(--indigo); }
.check-list li::before {
  content: ''; width: 15px; height: 15px; flex-shrink: 0;
  background-color: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M4%2012l5%205L20%206%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M4%2012l5%205L20%206%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E") no-repeat center / contain;
  transition: transform .25s ease;
}
.check-list li:hover::before { transform: scale(1.2); }

/* Benefits — reimagined as a two-column chip grid rather than a plain list */
.benefit-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.benefit-list li {
  list-style: none; display: flex; align-items: center; gap: 9px;
  font-size: 12px; color: #4a4055; font-weight: 500;
  background: #fbf1f6; border: 1px solid rgba(200,48,110,.12);
  padding: 10px 12px; border-radius: 12px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.benefit-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(200,48,110,.18);
  background: #fce6ef; border-color: rgba(200,48,110,.25);
}
.benefit-list li::before {
  content: ''; width: 13px; height: 13px; flex-shrink: 0;
  background-color: var(--pink);
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22p%22%20d%3D%22M12%2012C10.2%209%2010%205.5%2012%202c2%203.5%201.8%207%200%2010Z%22/%3E%3C/defs%3E%3Cuse%20href%3D%22%23p%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%2860%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28120%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28180%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28240%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28300%2012%2012%29%22/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22p%22%20d%3D%22M12%2012C10.2%209%2010%205.5%2012%202c2%203.5%201.8%207%200%2010Z%22/%3E%3C/defs%3E%3Cuse%20href%3D%22%23p%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%2860%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28120%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28180%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28240%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28300%2012%2012%29%22/%3E%3C/svg%3E") no-repeat center / contain;
  transition: transform .25s ease;
}
.benefit-list li:hover::before { transform: scale(1.15) rotate(8deg); }

/* ── Our Approach — full-bleed statement section ─── */
.approach-section {
  position: relative;
  background: var(--grad-dark);
  overflow: hidden;
  isolation: isolate;
  padding: 100px 6% 86px;
  text-align: center;
}
.approach-bg-pattern {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(224,171,74,.16) 0%, rgba(224,171,74,0) 40%),
    radial-gradient(circle at 88% 85%, rgba(232,53,107,.14) 0%, rgba(232,53,107,0) 45%),
    radial-gradient(circle, rgba(255,255,255,.045) 1px, transparent 1.4px);
  background-size: auto, auto, 24px 24px;
  pointer-events: none;
}
.approach-section::after {
  content: '';
  position: absolute; z-index: 0; pointer-events: none;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 680px; height: 680px; max-width: 140vw;
  background: radial-gradient(circle, rgba(224,171,74,.07) 0%, rgba(224,171,74,0) 68%);
}
.approach-inner {
  position: relative; z-index: 1;
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}

.approach-tag { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.approach-tag .lotus {
  width: 42px; height: 42px; border-radius: 50%; background: var(--gold-grad);
  color: #1a0a2e; display: flex; align-items: center; justify-content: center; font-size: 18px;
  box-shadow: 0 8px 18px rgba(192,138,46,.35);
}
.approach-tag span:last-child {
  font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .26em;
  color: var(--gold-lt); text-transform: uppercase;
}

.approach-statement {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(23px, 3vw, 36px); line-height: 1.5; color: #fff;
  margin-bottom: 22px;
}
.approach-statement em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-lt) 0%, #fff 55%, var(--pink) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.approach-sub {
  font-size: 14px; font-weight: 300; line-height: 2; color: rgba(255,255,255,.66);
  max-width: 560px; margin-bottom: 52px;
}

.approach-pillars-row {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 40px; margin-bottom: 48px; flex-wrap: wrap;
}
.approach-pillar { display: flex; flex-direction: column; align-items: center; max-width: 190px; }
.approach-pillar-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(224,171,74,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--gold-lt); margin-bottom: 14px;
  transition: transform .3s ease, background .3s ease;
}
.approach-pillar:hover .approach-pillar-icon { transform: translateY(-4px); background: rgba(224,171,74,.14); }
.approach-pillar h5 { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.approach-pillar p { font-size: 12px; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,.58); }
.approach-pillar-div { width: 1px; height: 68px; background: rgba(255,255,255,.14); margin-top: 8px; flex-shrink: 0; }

.approach-signature-row {
  display: flex; align-items: center; gap: 14px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.12);
}
.approach-avatar {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(224,171,74,.5);
}
.approach-signature { font-family: var(--font-display); font-style: italic; font-size: 13.5px; color: var(--gold-lt); }

/* ── Begin journey CTA — full-bleed cinematic close ─── */
.healing-cta {
  position: relative;
  min-height: 66vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; isolation: isolate;
  text-align: center;
}
.healing-cta-bg { position: absolute; inset: 0; z-index: 0; }
.healing-cta-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: pkKenBurns 26s ease-in-out infinite alternate;
}
.healing-cta-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle at 50% 30%, rgba(224,171,74,.14) 0%, rgba(224,171,74,0) 55%),
    linear-gradient(180deg, rgba(15,6,30,.6) 0%, rgba(15,6,30,.8) 55%, rgba(15,6,30,.92) 100%);
}
.healing-cta-content {
  position: relative; z-index: 2;
  max-width: 620px; padding: 96px 6%;
  display: flex; flex-direction: column; align-items: center;
}
.healing-cta-lotus {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--gold-grad); color: #1a0a2e;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  margin-bottom: 20px;
  box-shadow: 0 12px 30px rgba(192,138,46,.4);
}
.healing-cta-content .section-kicker { margin-bottom: 14px; }
.healing-cta-content h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 3.6vw, 44px); color: #fff; line-height: 1.15;
  margin-bottom: 18px;
}
.healing-cta-content h2 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-lt) 0%, #fff 55%, var(--pink) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.healing-cta-divider {
  display: flex; align-items: center; gap: 10px;
  color: var(--gold-lt); font-size: 14px; margin-bottom: 24px; opacity: .9;
}
.healing-cta-divider::before, .healing-cta-divider::after {
  content: ''; flex: 0 0 60px; height: 1px;
  background: linear-gradient(90deg, rgba(233,194,122,0), rgba(233,194,122,.6));
}
.healing-cta-divider::after { background: linear-gradient(90deg, rgba(233,194,122,.6), rgba(233,194,122,0)); }
.healing-cta-content p {
  font-size: 14.5px; font-weight: 300; line-height: 1.9;
  color: rgba(255,255,255,.8); max-width: 480px; margin-bottom: 34px;
}
.btn-gold {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .1em;
  padding: 15px 26px; border-radius: 8px;
  background: var(--gold-grad); background-size: 180% 180%; background-position: 0% 50%;
  color: #1a0a2e; border: none; cursor: pointer;
  box-shadow: 0 12px 28px rgba(192,138,46,.35);
  transition: transform .25s, box-shadow .25s, background-position .5s ease;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(224,171,74,.5);
  background-position: 100% 50%;
}
/* ── Responsive ─────────────────────────────────── */
@media (max-width: 980px) {
  .page-hero { min-height: 100vh; }
  .page-hero-text { padding: 110px 6% 40px; max-width: 100%; }
  .page-hero-stats { flex-wrap: wrap; margin: 0 6% 40px; align-self: stretch; justify-content: space-between; }
  .journey-section { margin-top: 56px; padding: 44px 6%; }
  .journey-steps { grid-template-columns: 1fr; gap: 20px; }
  .journey-arrow { display: none; }
  .info-block-section { grid-template-columns: 1fr; }
  .approach-section { padding: 72px 6% 64px; }
  .approach-pillars-row { gap: 30px; }
  .approach-pillar-div { display: none; }
  .healing-cta { min-height: 52vh; }
  .healing-cta-content { padding: 72px 6%; }
}
@media (max-width: 480px) {
  .approach-pillars-row { flex-direction: column; align-items: center; gap: 28px; }
  .benefit-list { grid-template-columns: 1fr; }
}
@media (max-width: 1180px) {
  .treatment-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .treatment-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .page-hero-stats { gap: 16px 22px; padding: 18px 20px; }
  .phs-div { display: none; }
  .phs-item { min-width: 40%; }
  .page-hero-actions { flex-direction: column; align-items: flex-start; }
}
