:root {
  --teal-deep: #0D4A47;
  --teal-mid: #1A6B68;
  --teal-light: #2A8E8A;
  --amber: #D4952A;
  --amber-light: #F0B84A;
  --amber-pale: #FFF4E0;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE1;
  --text-dark: #1C2B2A;
  --text-mid: #3D5453;
  --text-light: #7A9694;
  --white: #FFFFFF;
  --green-leaf: #2E6B3E;
  --green-sage: #5A8F6A;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--teal-mid); border-radius: 2px; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
  transition: padding 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled { padding: 10px 48px; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--teal-deep);
  letter-spacing: -0.3px; line-height: 1.1;
}
.nav-logo-text .sub {
  font-size: 8px; font-weight: 600; letter-spacing: 2px;
  color: var(--amber); text-transform: uppercase; margin-top: 3px;
}
.nav-back {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 500; color: var(--text-mid);
  text-decoration: none; padding: 8px 18px;
  border: 1.5px solid var(--cream-dark); border-radius: 50px;
  transition: all 0.25s; letter-spacing: 0.3px;
}
.nav-back:hover { border-color: var(--teal-mid); color: var(--teal-deep); background: var(--cream); }
.nav-cta {
  background: var(--teal-deep); color: var(--white);
  padding: 10px 22px; border-radius: 50px;
  font-weight: 500; font-size: 13px; text-decoration: none;
  letter-spacing: 0.5px; transition: background 0.25s, transform 0.2s;
}
.nav-cta:hover { background: var(--teal-mid); transform: translateY(-1px); }
.nav-right { display: flex; align-items: center; gap: 14px; }

/* ── HERO ── */
.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(135deg, #0B3A38 0%, #1A6B68 55%, #22897f 100%);
}
.hero-bg-decor {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 600px 600px at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 10% 90%, rgba(212,149,42,0.08) 0%, transparent 60%);
}
.hero-watermark {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  letter-spacing: -0.02em;
  user-select: none;
}
/* Leaf SVG decoration */
.hero-leaf {
  position: absolute;
  right: 0; bottom: 0;
  width: 340px; opacity: 0.06;
  pointer-events: none;
}
.hero-content { padding: 60px 60px 60px 80px; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(212,149,42,0.18);
  border: 1px solid rgba(212,149,42,0.3);
  border-radius: 50px; padding: 7px 16px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  color: var(--amber-light); text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow span { font-size: 16px; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 76px; font-weight: 300; line-height: 1.0;
  color: var(--white); letter-spacing: -1px;
  margin-bottom: 10px;
}
.hero-title em { font-style: italic; color: var(--amber-light); }
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.55); margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.hero-desc {
  font-size: 15px; line-height: 1.8;
  color: rgba(255,255,255,0.72);
  max-width: 480px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--amber); color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 14px; text-decoration: none;
  letter-spacing: 0.5px; transition: all 0.25s;
  box-shadow: 0 8px 28px rgba(212,149,42,0.35);
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(212,149,42,0.4); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.85);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 500; font-size: 14px; text-decoration: none;
  letter-spacing: 0.5px; transition: all 0.25s;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }
.hero-stats {
  display: flex; gap: 36px; margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat { }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 600;
  color: var(--amber-light); line-height: 1;
}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.5px; }

/* Hero visual panel */
.hero-visual {
  padding: 60px 80px 60px 40px;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 16px;
}
.hero-img-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.hero-img-card {
  border-radius: 20px; overflow: hidden;
  position: relative; aspect-ratio: 4/3;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-img-card.tall { aspect-ratio: 3/4; grid-row: span 2; }
.hero-img-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: 0.88; transition: opacity 0.4s, transform 0.5s;
}
.hero-img-card:hover img { opacity: 1; transform: scale(1.04); }
.hero-img-label {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  background: rgba(13,74,71,0.75);
  backdrop-filter: blur(8px);
  border-radius: 10px; padding: 8px 12px;
  font-size: 11.5px; font-weight: 500; color: rgba(255,255,255,0.9);
  letter-spacing: 0.3px;
}

/* ── TREATMENTS GRID ── */
.treatments {
  padding: 100px 80px;
  background: var(--cream);
}
.section-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--teal-mid);
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 24px; height: 2px; background: var(--amber); border-radius: 1px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 400; line-height: 1.1;
  color: var(--text-dark); letter-spacing: -0.5px;
}
.section-title em { font-style: italic; color: var(--teal-mid); }
.treatments-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px;
}
.treatments-header-text { max-width: 540px; }
.treatments-intro {
  font-size: 15px; line-height: 1.8; color: var(--text-light); margin-top: 20px;
}
.treat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.treat-card {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s;
  opacity: 0; transform: translateY(30px);
}
.treat-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s; }
.treat-card:hover { transform: translateY(-10px); box-shadow: 0 28px 64px rgba(0,0,0,0.10); }
.treat-img {
  width: 100%; aspect-ratio: 16/10; overflow: hidden;
  background: linear-gradient(135deg, #0B3A38, #1A6B68);
  position: relative;
}
.treat-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.treat-card:hover .treat-img img { transform: scale(1.06); }
.treat-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
}
.treat-img-icon { font-size: 52px; }
.treat-img-text { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; }
.treat-body { padding: 28px 28px 32px; }
.treat-tag {
  display: inline-block;
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--teal-mid);
  background: rgba(42,142,138,0.1); padding: 4px 12px;
  border-radius: 20px; margin-bottom: 14px;
}
.treat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 12px; line-height: 1.2;
}
.treat-desc {
  font-size: 13.5px; line-height: 1.75; color: var(--text-light); margin-bottom: 20px;
}
.treat-benefits { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.treat-benefits li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12.5px; color: var(--text-mid); line-height: 1.5;
}
.treat-benefits li::before {
  content: '✦'; color: var(--amber); font-size: 10px; margin-top: 2px; flex-shrink: 0;
}
.treat-footer {
  padding: 0 28px 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.treat-duration {
  font-size: 12px; color: var(--text-light);
  display: flex; align-items: center; gap: 6px;
}
.treat-duration::before { content: '⏱'; font-size: 13px; }
.treat-link {
  font-size: 13px; font-weight: 600; color: var(--teal-mid);
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  letter-spacing: 0.3px; transition: gap 0.2s, color 0.2s;
}
.treat-link:hover { color: var(--teal-deep); gap: 10px; }

/* ── PHILOSOPHY BAND ── */
.philosophy {
  background: linear-gradient(135deg, #0B3F3D 0%, #1A6B68 100%);
  padding: 100px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.philosophy-left { }
.philosophy-left .section-label { color: var(--amber-light); }
.philosophy-left .section-label::before { background: var(--amber-light); }
.philosophy-left .section-title { color: var(--white); margin-bottom: 28px; }
.philosophy-left .section-title em { color: var(--amber-light); }
.philosophy-desc {
  font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.68);
  margin-bottom: 40px;
}
.philosophy-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pillar {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px; padding: 22px 20px;
  transition: background 0.3s, transform 0.3s;
}
.pillar:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.pillar-icon { font-size: 26px; margin-bottom: 12px; display: block; }
.pillar-title {
  font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 6px;
}
.pillar-text { font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,0.5); }
.philosophy-right { }
.dosha-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px; padding: 36px;
  position: relative; overflow: hidden;
}
.dosha-card::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.dosha-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 400; color: var(--white);
  margin-bottom: 8px;
}
.dosha-subtitle { font-size: 13px; color: var(--amber-light); margin-bottom: 28px; letter-spacing: 0.5px; }
.dosha-row {
  display: flex; flex-direction: column; gap: 14px;
}
.dosha-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 14px; border: 1px solid rgba(255,255,255,0.08);
}
.dosha-dot {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.dosha-dot.vata { background: rgba(135,206,235,0.2); }
.dosha-dot.pitta { background: rgba(255,140,0,0.2); }
.dosha-dot.kapha { background: rgba(60,179,113,0.2); }
.dosha-info { }
.dosha-name { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.dosha-desc { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ── PROCESS TIMELINE ── */
.process {
  padding: 100px 80px;
  background: var(--cream-dark);
}
.process-header { text-align: center; margin-bottom: 70px; }
.process-header .section-label { justify-content: center; }
.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative; gap: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 40px; left: 12.5%; right: 12.5%;
  height: 1px; background: linear-gradient(90deg, var(--teal-mid), var(--amber), var(--teal-mid));
  z-index: 0;
}
.timeline-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 20px;
  position: relative; z-index: 1;
  opacity: 0; transform: translateY(24px);
}
.timeline-step.visible { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 600; color: var(--teal-deep);
  margin-bottom: 24px;
  box-shadow: 0 8px 28px rgba(13,74,71,0.12);
  transition: background 0.3s, border-color 0.3s;
}
.timeline-step:hover .step-num { background: var(--teal-deep); color: var(--white); }
.step-title {
  font-size: 15px; font-weight: 600; color: var(--text-dark);
  margin-bottom: 10px; line-height: 1.3;
}
.step-desc { font-size: 13px; color: var(--text-light); line-height: 1.7; }



/* ── GALLERY ── */
.gallery {
  padding: 100px 80px;
  background: var(--cream);
}
.gallery-header { text-align: center; margin-bottom: 56px; }
.gallery-header .section-label { justify-content: center; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gal-item {
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, #0B3A38, #22897f);
  position: relative;
  transition: transform 0.4s;
}
.gal-item:hover { transform: scale(1.02); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.85; transition: opacity 0.4s; }
.gal-item:hover img { opacity: 1; }
.gal-item.a { grid-column: span 5; height: 280px; }
.gal-item.b { grid-column: span 7; height: 280px; }
.gal-item.c { grid-column: span 4; height: 220px; }
.gal-item.d { grid-column: span 4; height: 220px; }
.gal-item.e { grid-column: span 4; height: 220px; }
.gal-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; padding: 20px; text-align: center;
}
.gal-placeholder-icon { font-size: 40px; }
.gal-placeholder-text {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.5); letter-spacing: 0.5px;
}
.gal-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(13,74,71,0.85));
  font-size: 12px; color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
}

/* ── FAQ / TESTIMONIALS ── */
.testimonials {
  padding: 100px 80px;
  background: var(--cream-dark);
}
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-label { justify-content: center; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test-card {
  background: var(--white); border-radius: 24px; padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.35s, box-shadow 0.35s;
  opacity: 0; transform: translateY(20px);
}
.test-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s, transform 0.5s, box-shadow 0.35s; }
.test-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.test-card.featured { background: var(--teal-deep); }
.test-stars { color: var(--amber); font-size: 12px; letter-spacing: 2px; margin-bottom: 14px; }
.test-card.featured .test-stars { color: var(--amber-light); }
.test-qmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px; line-height: 0.7;
  color: var(--cream-dark); margin-bottom: 16px; display: block;
}
.test-card.featured .test-qmark { color: rgba(255,255,255,0.15); }
.test-text {
  font-size: 14.5px; line-height: 1.8;
  color: var(--text-mid); margin-bottom: 24px; font-style: italic;
}
.test-card.featured .test-text { color: rgba(255,255,255,0.8); }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-light));
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.test-name { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.test-card.featured .test-name { color: var(--white); }
.test-tag { font-size: 11.5px; color: var(--text-light); }
.test-card.featured .test-tag { color: rgba(255,255,255,0.5); }

/* ── CTA BAND ── */
.cta-band {
  padding: 100px 80px;
  background: var(--amber-pale);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.cta-left { }
.cta-label {
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--amber); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.cta-label::before { content: ''; width: 24px; height: 2px; background: var(--amber); border-radius: 1px; }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 400; line-height: 1.1;
  color: var(--text-dark); margin-bottom: 20px;
}
.cta-title em { font-style: italic; color: var(--teal-deep); }
.cta-desc { font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 36px; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--teal-deep); color: var(--white);
  padding: 16px 36px; border-radius: 50px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  letter-spacing: 0.5px; transition: all 0.25s;
  box-shadow: 0 10px 32px rgba(13,74,71,0.28);
}
.cta-btn:hover { background: var(--teal-mid); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(13,74,71,0.35); }
.cta-right { }
.cta-info-cards { display: flex; flex-direction: column; gap: 16px; }
.cta-info {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: var(--white);
  border-radius: 16px; border: 1px solid rgba(212,149,42,0.15);
  transition: box-shadow 0.25s, transform 0.25s;
}
.cta-info:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.06); transform: translateY(-2px); }
.cta-info-icon {
  width: 44px; height: 44px;
  background: var(--amber-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.cta-info-text { }
.cta-info-label { font-size: 11px; font-weight: 600; letter-spacing: 1px; color: var(--amber); text-transform: uppercase; margin-bottom: 4px; }
.cta-info-val { font-size: 14px; color: var(--text-dark); line-height: 1.5; }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal.visible { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease; }


/* ── LIGHTBOX MODAL ── */
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(7, 29, 28, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.lightbox-overlay.active {
  opacity: 1; pointer-events: auto;
}
.lightbox-close {
  position: absolute;
  top: 30px; right: 40px;
  font-size: 40px; color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
}
.lightbox-close:hover {
  color: var(--accent);
  transform: rotate(90deg);
}
.lightbox-content-wrapper {
  max-width: 85%; max-height: 80%;
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox-overlay.active .lightbox-content-wrapper {
  transform: scale(1);
}
.lightbox-content-wrapper img {
  max-width: 100%; max-height: 70vh;
  border-radius: 16px;
  border: 2px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain;
}
.lightbox-caption-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600;
  color: var(--accent-light);
  text-align: center;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 40px 24px 32px; }
  .hero-title { font-size: 48px; }
  .hero-visual { display: none; }
  .treatments, .philosophy, .process, .doctors, .gallery, .testimonials, .cta-band { padding: 60px 24px; }
  .treat-grid, .doc-grid, .test-grid { grid-template-columns: 1fr; }
  .philosophy { grid-template-columns: 1fr; gap: 40px; }
  .cta-band { grid-template-columns: 1fr; gap: 40px; }
  .cta-title { font-size: 36px; }
  .treatments-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gal-item.a, .gal-item.b, .gal-item.c, .gal-item.d, .gal-item.e { grid-column: span 1; height: 180px; }
}
