/* ══════════════════════════════════════════════════════════
   SRS SPECIALTY CLINIC - "WARM LIGHT"
   Brand Pink #E91E8C · Brand Cyan #00C8E0 · Warm Cream Base
   Airy · Professional · Narrative · Light
   ══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Manrope:wght@200;300;400;500;600;700&display=swap');

/* ── Variables ── */
:root {
  /* Backgrounds - warm light tones */
  --bg:          #FDFAF7;
  --bg-soft:     #F7F3EE;
  --bg-mid:      #F0EBE5;
  --bg-lift:     #FFFFFF;
  --bg-section:  #FAF5F0;

  /* Brand colors - direct from logo */
  --pink:        #E91E8C;
  --rose:        #E91E8C;
  --pink-bright: #F72EA0;
  --pink-mid:    #C41878;
  --pink-dim:    rgba(233,30,140,0.08);
  --pink-glow:   rgba(233,30,140,0.14);

  --cyan:        #00C8E0;
  --teal:        #00C8E0;
  --cyan-mid:    #00A8BE;
  --cyan-dim:    rgba(0,200,224,0.09);
  --cyan-glow:   rgba(0,200,224,0.16);

  --gold:        #B07D2A;
  --gold-dim:    rgba(176,125,42,0.10);

  /* Text */
  --ink:         #140E22;
  --ink-mid:     #2D2040;
  --body:        #3D3156;
  --muted:       rgba(45,32,64,0.52);
  --whisper:     rgba(45,32,64,0.30);
  --divider:     rgba(45,32,64,0.10);

  /* Fonts */
  --font-d:      'Lora', Georgia, serif;
  --font-b:      'Manrope', system-ui, sans-serif;

  /* Easing */
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --ease-out:    cubic-bezier(0,0,0.2,1);

  /* Shadows - soft elevation, not glows */
  --shadow-sm:   0 2px 12px rgba(233,30,140,0.07), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-md:   0 8px 32px rgba(233,30,140,0.10), 0 2px 10px rgba(0,0,0,0.05);
  --shadow-lg:   0 20px 60px rgba(233,30,140,0.13), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-btn:  0 4px 20px rgba(233,30,140,0.35), 0 2px 8px rgba(233,30,140,0.20);
  --glow-rose:   0 8px 32px rgba(233,30,140,0.14), 0 2px 10px rgba(0,0,0,0.05);
}

/* Temporarily hidden homepage sections (remove class to restore) */
.sections-temp-hidden { display: none !important; }

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html::-webkit-scrollbar { width: 3px; }
html::-webkit-scrollbar-track { background: var(--bg); }
html::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 3px; }
body { font-family: var(--font-b); background: var(--bg); color: var(--body); overflow-x: hidden; line-height: 1.75; font-weight: 300; }
a { color: inherit; text-decoration: none; cursor: pointer; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-b); }
body { animation: bodyIn 0.4s ease both; }
@keyframes bodyIn { from { opacity: 0; } to { opacity: 1; } }

/* ══════════════════════════════════════════════════
   SCROLL PROGRESS
══════════════════════════════════════════════════ */
#progress-line {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 2.5px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  z-index: 9999; transition: width 0.1s linear;
  box-shadow: 0 0 6px rgba(233,30,140,0.5);
}

/* ══════════════════════════════════════════════════
   PRELOADER
══════════════════════════════════════════════════ */
#preloader {
  position: fixed; inset: 0; z-index: 99990;
  background: var(--bg-lift);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 22px;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}
#preloader.fade-out { opacity: 0; visibility: hidden; }
.preloader-logo { width: 72px; animation: prelogoIn 0.7s ease both; }
@keyframes prelogoIn { from { opacity:0; transform: scale(0.7); } to { opacity:1; transform: scale(1); } }
.preloader-name { font-family: var(--font-d); font-size: clamp(1.1rem,3vw,1.6rem); font-weight: 400; color: var(--ink); letter-spacing: 0.05em; animation: riseUp 0.6s 0.3s ease both; opacity: 0; }
.preloader-name span { color: var(--pink); font-style: italic; }
.preloader-scan { width: 180px; height: 1px; background: rgba(233,30,140,0.12); border-radius: 1px; overflow: hidden; animation: riseUp 0.5s 0.5s ease both; opacity: 0; position: relative; }
.preloader-scan::after { content: ''; position: absolute; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, var(--pink), transparent); animation: scanLine 1.4s ease-in-out infinite; }
@keyframes scanLine { from { left: -100%; } to { left: 100%; } }
.preloader-tag { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted); animation: riseUp 0.5s 0.7s ease both; opacity: 0; }

/* ══════════════════════════════════════════════════
   SUBTLE GRAIN (very light)
══════════════════════════════════════════════════ */
body::before {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  z-index: 9000; pointer-events: none; opacity: 0.3;
}

/* ══════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 20px 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.5s var(--ease);
}
.nav::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(253,250,247,0.97) 0%, rgba(253,250,247,0) 100%);
  transition: backdrop-filter 0.5s;
}
.nav.scrolled::before {
  background: rgba(253,250,247,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(233,30,140,0.08);
  box-shadow: 0 1px 20px rgba(233,30,140,0.06);
}
.nav.scrolled { padding: 13px 5%; }
.nav-logo { display: flex; align-items: center; gap: 11px; position: relative; z-index: 1; }
.nav-logo img { height: 72px; width: auto; object-fit: contain; }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-text .name { font-family: var(--font-d); font-size: 1.05rem; font-weight: 500; color: var(--ink); line-height: 1.1; letter-spacing: 0.01em; }
.nav-brand-text .tag { font-size: 0.59rem; color: var(--pink); letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 22px; position: relative; z-index: 1; }
.nav-links a { font-size: 0.73rem; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: var(--muted); transition: color 0.3s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after { content: ''; position: absolute; bottom: -5px; left: 0; right: 0; height: 1.5px; background: var(--pink); }
.nav-book { background: var(--pink) !important; color: white !important; padding: 8px 20px; border-radius: 28px; font-weight: 600 !important; box-shadow: var(--shadow-btn); transition: all 0.3s !important; border: none !important; }
.nav-book:hover { background: var(--pink-bright) !important; transform: translateY(-1px); box-shadow: var(--shadow-lg); color: white !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; z-index: 1; padding: 4px; }
.nav-hamburger span { width: 22px; height: 1.5px; background: var(--ink); display: block; transition: all 0.3s; }

/* NAV - Services dropdown */
.nav-dropdown { position: relative; align-self: center; }
.nav-dropdown-btn {
  background: none; border: none; padding: 0;
  font-size: 0.73rem; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted); font-family: var(--font-b); cursor: pointer; transition: color 0.3s;
}
.nav-dropdown-btn:hover, .nav-dropdown-btn:focus-visible,
.nav-dropdown.open > .nav-dropdown-btn { color: var(--ink); outline: none; }
.nav-dropdown-btn.active { color: var(--ink); position: relative; }
.nav-dropdown-btn.active::after {
  content: ''; position: absolute; bottom: -5px; left: 0; right: 0; height: 1.5px; background: var(--pink);
}
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  min-width: 280px; max-width: min(340px, 92vw);
  padding: 6px;
  background: var(--bg-lift);
  border: 1px solid var(--divider);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s;
  z-index: 1200;
}
.nav-dropdown-panel a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  color: var(--ink-mid);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown-panel a:hover { background: var(--pink-dim); color: var(--pink); }
.nav-dropdown-panel a strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
}
.nav-dropdown-panel a span {
  display: block;
  margin-top: 3px;
  font-size: 0.61rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.45;
  color: var(--muted);
}
@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover > .nav-dropdown-panel,
  .nav-dropdown:focus-within > .nav-dropdown-panel {
    opacity: 1; visibility: visible;
  }
}
.nav-dropdown.open > .nav-dropdown-panel {
  opacity: 1; visibility: visible;
}

/* ══════════════════════════════════════════════════
   FLOATS
══════════════════════════════════════════════════ */
.social-rail { position: fixed; left: 20px; top: 50%; transform: translateY(-50%); z-index: 100; display: flex; flex-direction: column; gap: 4px; align-items: center; }
.social-rail::before, .social-rail::after { content: ''; width: 1px; height: 48px; background: linear-gradient(180deg, transparent, rgba(233,30,140,0.25)); }
.social-rail::after { background: linear-gradient(180deg, rgba(233,30,140,0.25), transparent); }
.social-icon { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; color: var(--muted); border: 1px solid var(--divider); transition: all 0.3s; font-weight: 500; }
.social-icon:hover { color: var(--pink); border-color: var(--pink); box-shadow: var(--shadow-sm); }

.whatsapp-btn { position: fixed; bottom: 30px; right: 26px; z-index: 100; width: 50px; height: 50px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; animation: waPing 2.5s ease-in-out infinite; transition: transform 0.3s; box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
.whatsapp-btn:hover { transform: scale(1.1); animation: none; box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
@keyframes waPing { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); } 50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); } }

.to-top { position: fixed; bottom: 90px; right: 26px; z-index: 100; width: 36px; height: 36px; border: 1.5px solid var(--divider); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--muted); background: var(--bg-lift); opacity: 0; pointer-events: none; transition: all 0.4s; box-shadow: var(--shadow-sm); }
.to-top.vis { opacity: 1; pointer-events: auto; }
.to-top:hover { border-color: var(--pink); color: var(--pink); box-shadow: var(--shadow-md); }

/* ══════════════════════════════════════════════════
   CHAPTER NAV
══════════════════════════════════════════════════ */
.chapter-nav { position: fixed; right: 20px; top: 50%; transform: translateY(-50%); z-index: 100; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.chap-nav-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--divider); transition: all 0.35s; position: relative; cursor: pointer; }
.chap-nav-dot.active, .chap-nav-dot:hover { background: var(--pink); box-shadow: 0 0 6px rgba(233,30,140,0.4); width: 16px; border-radius: 2.5px; }
.chap-nav-dot::before { content: attr(data-label); position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--ink); white-space: nowrap; background: var(--bg-lift); padding: 3px 9px; border-radius: 16px; border: 1px solid var(--divider); box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.chap-nav-dot:hover::before { opacity: 1; }
@media (max-width: 900px) { .chapter-nav { display: none; } }

/* ══════════════════════════════════════════════════
   MOBILE STICKY CTA
══════════════════════════════════════════════════ */
.sticky-cta-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 990; background: rgba(253,250,247,0.97); backdrop-filter: blur(16px); border-top: 1px solid var(--divider); padding: 10px 20px; display: none; gap: 12px; align-items: center; justify-content: space-between; box-shadow: 0 -4px 20px rgba(233,30,140,0.07); }
.sticky-cta-bar .s-cta-call { display: flex; align-items: center; gap: 8px; color: var(--body); font-size: 0.8rem; font-weight: 400; text-decoration: none; flex: 1; }
.sticky-cta-bar .s-cta-call .s-num { color: var(--pink); font-weight: 700; font-size: 0.85rem; }
.sticky-cta-bar .s-cta-book { background: var(--pink); color: white; padding: 9px 20px; border-radius: 28px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; white-space: nowrap; text-decoration: none; box-shadow: var(--shadow-btn); }
@media (max-width: 768px) { .sticky-cta-bar { display: flex; } }

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--bg-lift);
}
.hero-carousel-viewport {
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
}
.hero-carousel-track {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  transition: transform 0.78s var(--ease);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .hero-carousel-track { transition: none; }
}
.hero-slide {
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: clamp(88px, 10vh, 104px) 8% 72px;
}
.hero-slide--nephrology {
  align-items: flex-start;
  padding-top: clamp(96px, 11vh, 112px);
  padding-bottom: 64px;
}
.hero.hero-on-nephrology .hero-carousel-dot.active {
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(0,200,224,0.45);
}

/* Hero carousel controls - arrows + dots */
.hero-carousel-controls {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 8;
  align-items: center;
  pointer-events: auto;
}
.hero-carousel-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-carousel-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--divider);
  background: rgba(253,250,247,0.92);
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.2s;
  box-shadow: var(--shadow-sm);
}
.hero-carousel-arrow:hover:not(:disabled) {
  border-color: rgba(233,30,140,0.35);
  color: var(--pink);
  box-shadow: var(--shadow-md);
  transform: scale(1.06);
}
.hero-carousel-arrow:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}
.hero-carousel-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.hero.hero-on-nephrology .hero-carousel-arrow:hover:not(:disabled) {
  border-color: rgba(0,200,224,0.4);
  color: var(--cyan-mid);
}
.hero-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--divider);
  cursor: pointer;
  transition: width 0.3s, background 0.3s, box-shadow 0.3s, border-radius 0.3s;
}
.hero-carousel-dot:hover { background: rgba(233,30,140,0.35); }
.hero-carousel-dot.active {
  background: var(--pink);
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(233,30,140,0.35);
}

/* Slide 2 - Dr. Sakthi Rajan / nephrology (teal) */
.hero-bg--renal {
  background: linear-gradient(180deg, #f9fdfe 0%, #f1fafb 52%, #ecf7f9 100%);
}
.hero-slide--nephrology .hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: renalOrbFloat 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.hero-slide--nephrology .hero-orb.orb-a { width: 420px; height: 420px; background: rgba(0,200,224,0.09); top: -8%; right: -4%; }
.hero-slide--nephrology .hero-orb.orb-b { width: 300px; height: 300px; background: rgba(233,30,140,0.05); bottom: 8%; left: 4%; animation-delay: -5s; }
.hero-slide--nephrology .hero-orb.orb-c { width: 220px; height: 220px; background: rgba(0,200,224,0.06); top: 28%; right: 22%; animation-delay: -8s; }
@keyframes renalOrbFloat {
  0%,100% { transform: translate(0,0); }
  33% { transform: translate(14px,-18px); }
  66% { transform: translate(-12px,8px); }
}
.ecg-line--cyan { opacity: 0.22; }
.hero-chapter-line--cyan { background: var(--cyan); }
.hero-chapter-text--cyan { color: var(--cyan-mid) !important; }
.hero-headline--renal em { color: var(--cyan-mid); }
.hero-slide-hint--renal { display: none; }
.hero-content--renal { max-width: 680px; }
.hero-slide--nephrology .hero-headline { margin-bottom: 8px; }
.hero-slide--nephrology .hero-body { margin-bottom: 6px; }
.hero-slide--nephrology .badge-strip { padding: 16px 0; }
.hero-slide--nephrology .hero-stats--renal {
  bottom: 8%;
  gap: 8px;
}
.hero-side-number--renal {
  -webkit-text-stroke: 1px rgba(0,200,224,0.1);
  font-size: clamp(7rem, 13vw, 14rem);
}
.hero-stats--renal .renal-num {
  color: var(--cyan-mid) !important;
}
.hero-stats--renal .hero-stat-pill:hover {
  border-color: rgba(0,200,224,0.22);
  box-shadow: var(--shadow-md);
}
.btn-primary.btn-primary--cyan {
  background: var(--cyan) !important;
  box-shadow: 0 4px 20px rgba(0,200,224,0.35);
  color: white !important;
}
.btn-primary.btn-primary--cyan:hover {
  background: var(--cyan-mid) !important;
  box-shadow: 0 8px 28px rgba(0,168,190,0.45);
}
.btn-outline.btn-outline--cyan:hover {
  border-color: var(--cyan);
  color: var(--cyan-mid);
  box-shadow: var(--shadow-sm);
}

/* Hero gradient mesh - brand colors, very light */
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #fff 0%, #fdfaf7 55%, #fbf6f1 100%);
}

/* Main hero - soft bubbles rising from the bottom */
.hero-slide--main .hero-bubbles {
  position: absolute;
  inset: 0;
  bottom: -4%;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
.hero-slide--main .hero-bubble {
  position: absolute;
  bottom: -12px;
  border-radius: 50%;
  width: var(--bubble-s, 28px);
  height: var(--bubble-s, 28px);
  left: var(--bubble-l, 50%);
  margin-left: calc(var(--bubble-s, 28px) / -2);
  background:
    radial-gradient(circle at 32% 30%, rgba(255,255,255,0.55), transparent 42%),
    radial-gradient(circle at 72% 70%, rgba(233,30,140,0.38), rgba(233,30,140,0.06));
  box-shadow:
    inset 3px -2px 8px rgba(255,255,255,0.25),
    0 2px 12px rgba(233,30,140,0.14);
  opacity: 0;
  animation: heroBubbleRise var(--bubble-dur, 6.5s) ease-in-out infinite;
  animation-delay: var(--bubble-delay, 0s);
  will-change: transform, opacity;
}
.hero-slide--main .hero-bubble--teal {
  background:
    radial-gradient(circle at 32% 30%, rgba(255,255,255,0.5), transparent 42%),
    radial-gradient(circle at 72% 70%, rgba(0,200,224,0.34), rgba(0,200,224,0.06));
  box-shadow:
    inset 3px -2px 8px rgba(255,255,255,0.28),
    0 2px 12px rgba(0,200,224,0.12);
  animation-name: heroBubbleRiseTeal;
}
@keyframes heroBubbleRise {
  0% {
    transform: translate3d(var(--bubble-drift, 0px), 0, 0) scale(0.25);
    opacity: 0;
  }
  12% {
    opacity: 0.82;
    transform: translate3d(calc(var(--bubble-drift, 0px) * 0.35), -15vh, 0) scale(1.06);
  }
  22% {
    transform: translate3d(calc(var(--bubble-drift, 0px) * 0.5), -24vh, 0) scale(1);
  }
  88% {
    opacity: 0.35;
    transform: translate3d(var(--bubble-drift, 0px), -76vh, 0) scale(0.62);
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(var(--bubble-drift, 0px) * 1.2), -90vh, 0) scale(0.4);
  }
}
@keyframes heroBubbleRiseTeal {
  0% {
    transform: translate3d(var(--bubble-drift, 0px), 0, 0) scale(0.28);
    opacity: 0;
  }
  12% {
    opacity: 0.76;
    transform: translate3d(calc(var(--bubble-drift, 0px) * 0.3), -14vh, 0) scale(1.04);
  }
  22% {
    transform: translate3d(calc(var(--bubble-drift, 0px) * 0.55), -22vh, 0) scale(1);
  }
  88% {
    opacity: 0.3;
    transform: translate3d(var(--bubble-drift, 0px), -74vh, 0) scale(0.58);
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(var(--bubble-drift, 0px) * 1.15), -86vh, 0) scale(0.38);
  }
}
.hero-slide--main .hero-bubble:nth-child(1) {
  --bubble-s: 22px;
  --bubble-l: 8%;
  --bubble-dur: 5.9s;
  --bubble-delay: 0s;
  --bubble-drift: -18px;
}
.hero-slide--main .hero-bubble:nth-child(2) {
  --bubble-s: 34px;
  --bubble-l: 18%;
  --bubble-dur: 7.2s;
  --bubble-delay: -1.1s;
  --bubble-drift: 26px;
}
.hero-slide--main .hero-bubble:nth-child(3) {
  --bubble-s: 26px;
  --bubble-l: 28%;
  --bubble-dur: 6.4s;
  --bubble-delay: -3.6s;
  --bubble-drift: -42px;
}
.hero-slide--main .hero-bubble:nth-child(4) {
  --bubble-s: 40px;
  --bubble-l: 42%;
  --bubble-dur: 8s;
  --bubble-delay: -2.2s;
  --bubble-drift: 14px;
}
.hero-slide--main .hero-bubble:nth-child(5) {
  --bubble-s: 18px;
  --bubble-l: 54%;
  --bubble-dur: 5.2s;
  --bubble-delay: -4.4s;
  --bubble-drift: 36px;
}
.hero-slide--main .hero-bubble:nth-child(6) {
  --bubble-s: 30px;
  --bubble-l: 64%;
  --bubble-dur: 7s;
  --bubble-delay: -0.9s;
  --bubble-drift: -54px;
}
.hero-slide--main .hero-bubble:nth-child(7) {
  --bubble-s: 24px;
  --bubble-l: 73%;
  --bubble-dur: 6s;
  --bubble-delay: -5s;
  --bubble-drift: 20px;
}
.hero-slide--main .hero-bubble:nth-child(8) {
  --bubble-s: 36px;
  --bubble-l: 82%;
  --bubble-dur: 7.6s;
  --bubble-delay: -3.8s;
  --bubble-drift: -30px;
}
.hero-slide--main .hero-bubble:nth-child(9) {
  --bubble-s: 20px;
  --bubble-l: 33%;
  --bubble-dur: 5.5s;
  --bubble-delay: -2.8s;
  --bubble-drift: 48px;
}
.hero-slide--main .hero-bubble:nth-child(10) {
  --bubble-s: 32px;
  --bubble-l: 51%;
  --bubble-dur: 6.8s;
  --bubble-delay: -1.4s;
  --bubble-drift: -22px;
}
.hero-slide--main .hero-bubble:nth-child(11) {
  --bubble-s: 28px;
  --bubble-l: 91%;
  --bubble-dur: 7.4s;
  --bubble-delay: -4.9s;
  --bubble-drift: 16px;
}
.hero-slide--main .hero-bubble:nth-child(12) {
  --bubble-s: 16px;
  --bubble-l: 95%;
  --bubble-dur: 5s;
  --bubble-delay: -0.4s;
  --bubble-drift: -40px;
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide--main .hero-bubbles {
    display: none;
  }
  .hero-slide--main .hero-bottom-flow path {
    animation: none !important;
    transform: none !important;
    fill: rgba(233,30,140,0.1);
  }
}

.hero-bottom-flow {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -2px;
  height: clamp(120px, 16vw, 210px);
  z-index: 2;
  opacity: 0.75;
  pointer-events: none;
}
.hero-bottom-flow svg { width: 100%; height: 100%; display: block; }
.hero-bottom-flow path {
  fill: rgba(233,30,140,0.08);
  animation: heroFlowRise 6.5s ease-in-out infinite;
}
/* First banner: faster swell + stronger pink ↔ cyan fill */
.hero-slide--main .hero-bottom-flow path {
  animation: heroFlowRiseVivid 9s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}
@keyframes heroFlowRise {
  0%,100% { transform: translateY(10px) scaleX(1); fill: rgba(233,30,140,0.08); }
  50% { transform: translateY(-6px) scaleX(1.03); fill: rgba(0,168,190,0.09); }
}
@keyframes heroFlowRiseVivid {
  0%, 100% {
    transform: translateY(12px) scaleX(1);
    fill: rgba(233,30,140,0.16);
  }
  50% {
    transform: translateY(-10px) scaleX(1.06);
    fill: rgba(0,200,224,0.28);
  }
}

#heroCanvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.ecg-line { position: absolute; bottom: 22%; left: 0; right: 0; height: 2px; overflow: hidden; opacity: 0.14; z-index: 2; }
.ecg-path { position: absolute; left: -100%; width: 200%; height: 100%; animation: ecgScroll 3.5s linear infinite; }
@keyframes ecgScroll { from { transform: translateX(0); } to { transform: translateX(50%); } }

.hero-content { position: relative; z-index: 5; max-width: 720px; }
.hero-right-image {
  position: absolute;
  right: 16%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: min(34vw, 430px);
  pointer-events: none;
}
.hero-right-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 35px rgba(233,30,140,0.16));
}
.hero-right-image--renal {
  right: clamp(4%, 8vw, 10%);
  width: min(38vw, 480px);
  max-height: min(72vh, 560px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-right-image--renal img {
  width: 100%;
  max-height: min(72vh, 560px);
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 16px 42px rgba(0,200,224,0.24));
}
.hero-image-ecg--cyan polyline {
  stroke: rgba(0,200,224,0.34);
  filter: drop-shadow(0 0 10px rgba(0,200,224,0.28));
}
.hero-image-ecg {
  position: absolute;
  left: -12%;
  right: -10%;
  top: 46%;
  height: 90px;
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0.75;
  pointer-events: none;
}
.hero-image-ecg svg { width: 100%; height: 100%; display: block; }
.hero-image-ecg polyline {
  fill: none;
  stroke: rgba(233,30,140,0.32);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  filter: drop-shadow(0 0 8px rgba(233,30,140,0.3));
  animation: ecgTrace 3.6s linear infinite;
}
@keyframes ecgTrace {
  0% { stroke-dashoffset: 520; opacity: 0.25; }
  35% { opacity: 0.9; }
  100% { stroke-dashoffset: 0; opacity: 0.3; }
}
.hero-chapter { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 28px; animation: riseUp 0.9s 1.4s ease both; opacity: 0; }
.hero-chapter-line { width: 36px; height: 1.5px; background: var(--pink); }
.hero-chapter-text { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--pink); }

.hero-headline { font-family: var(--font-d); font-size: clamp(3rem,6.2vw,4.8rem); font-weight: 400; line-height: .90; color: var(--ink); letter-spacing: -0.015em; margin-bottom: 10px; animation: riseUp 0.9s 1.6s ease both; opacity: 0; }
.hero-headline em { font-style: italic; color: var(--pink); font-weight: 400; }
.hero-headline .line2 { display: block; padding-left: 64px; }
.hero-headline .line3 { display: block; padding-left: 0px; font-family: var(--font-b); font-size: 18px; font-weight: 400; color: var(--muted); letter-spacing: 0.04em; margin-top: 14px; font-style: normal; line-height: 1.6; }

.hero-body { font-size: clamp(0.88rem,1.3vw,1rem); color: var(--muted); max-width: 500px; line-height: 1.95; margin-bottom: 10px; font-weight: 300; animation: riseUp 0.9s 1.8s ease both; opacity: 0; }
.hero-body strong { color: var(--body); font-weight: 600; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: riseUp 0.9s 2s ease both; opacity: 0; }

/* Hero ghost character - now light outline */
.hero-side-number { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); font-family: var(--font-d); font-size: clamp(10rem,18vw,20rem); font-weight: 600; color: transparent; -webkit-text-stroke: 1px rgba(233,30,140,0.07); line-height: 1; z-index: 1; user-select: none; animation: riseUp 1.4s 2.2s ease both; opacity: 0; }

.hero-stats { position: absolute; bottom: 10%; right: 4%; display: flex; flex-direction: column; gap: 10px; z-index: 5; animation: riseUp 0.9s 2.4s ease both; opacity: 0; }
.hero-stat-pill { display: flex; align-items: center; gap: 12px; padding: 10px 18px; background: var(--bg-lift); border: 1px solid var(--divider); border-radius: 50px; box-shadow: var(--shadow-sm); transition: all 0.3s; }
.hero-stat-pill:hover { border-color: rgba(233,30,140,0.2); box-shadow: var(--shadow-md); transform: translateX(-3px); }
.hero-stat-pill .num { font-family: var(--font-d); font-size: 1.4rem; font-weight: 500; color: var(--pink); line-height: 1; }
.hero-stat-pill .lbl { font-size: 0.69rem; color: var(--muted); letter-spacing: 0.02em; font-weight: 400; }


.scroll-cue-text { font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--whisper); font-weight: 500; }
.scroll-cue-line { width: 1px; height: 44px; background: linear-gradient(180deg, var(--pink), transparent); }
@keyframes scCueFloat { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
@keyframes riseUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 13px 32px; border-radius: 50px; font-family: var(--font-b); font-size: 0.77rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; background: var(--pink); color: white; box-shadow: var(--shadow-btn); transition: all 0.35s var(--ease); }
.btn-primary:hover { background: var(--pink-bright); box-shadow: 0 8px 32px rgba(233,30,140,0.45); transform: translateY(-2px); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-family: var(--font-b); font-size: 0.77rem; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase; background: transparent; color: var(--body); border: 1.5px solid var(--divider); transition: all 0.35s; }
.btn-outline:hover { border-color: var(--pink); color: var(--pink); box-shadow: var(--shadow-sm); }
.btn-outline.teal { border-color: rgba(0,200,224,0.4); color: var(--cyan-mid); }
.btn-outline.teal:hover { background: var(--cyan); color: white; border-color: var(--cyan); box-shadow: 0 4px 20px rgba(0,200,224,0.3); }

/* ══════════════════════════════════════════════════
   DIVIDERS - light version
══════════════════════════════════════════════════ */
.glow-rule { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(233,30,140,0.2), transparent); }
.glow-rule.teal { background: linear-gradient(90deg, transparent, rgba(0,200,224,0.2), transparent); }

.pulse-ring-container { position: relative; height: 40px; display: flex; align-items: center; justify-content: center; }
.pulse-rule { position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(233,30,140,0.18), transparent); }
.pulse-ring { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); position: relative; z-index: 1; }
.pulse-ring::before, .pulse-ring::after { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--pink); animation: pRingExp 2.2s ease-out infinite; }
.pulse-ring::after { animation-delay: -1.1s; }
@keyframes pRingExp { from { transform: scale(1); opacity: 0.6; } to { transform: scale(4.5); opacity: 0; } }
.pulse-ring-container.teal .pulse-ring { background: var(--cyan); }
.pulse-ring-container.teal .pulse-ring::before, .pulse-ring-container.teal .pulse-ring::after { border-color: var(--cyan); }
.pulse-ring-container.teal .pulse-rule { background: linear-gradient(90deg, transparent, rgba(0,200,224,0.18), transparent); }

.wave-divider { width: 100%; overflow: hidden; line-height: 0; display: block; }
.wave-divider svg { display: block; width: 100%; }
.wave-divider.flip { transform: rotate(180deg); }

/* ══════════════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════════════ */
.stats-strip { padding: 60px 8%; background: var(--bg-lift); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
.stats-strip-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(5,1fr); }
@media (max-width: 900px) { .stats-strip-inner { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 600px) { .stats-strip-inner { grid-template-columns: repeat(2,1fr); } }
.stat-block { padding: 20px 16px; text-align: center; border-right: 1px solid var(--divider); transition: background 0.3s; }
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: var(--pink-dim); }
.stat-icon { width: 34px; height: 34px; margin: 0 auto 10px; }
.stat-number { font-family: var(--font-d); font-size: 2rem; font-weight: 500; color: var(--pink); line-height: 1; margin-bottom: 5px; }
.stat-number.teal { color: var(--cyan-mid); }
.stat-desc { font-size: 0.69rem; color: var(--muted); letter-spacing: 0.02em; line-height: 1.5; font-weight: 400; }

/* ══════════════════════════════════════════════════
   MOTHERHOOD JOURNEY TIMELINE
══════════════════════════════════════════════════ */
.motherhood-journey-section {
  padding: clamp(48px, 6vw, 68px) 8% clamp(52px, 6vw, 72px);
  background:
    radial-gradient(ellipse 90% 70% at 50% -20%, rgba(233,30,140,0.09), transparent 58%),
    radial-gradient(ellipse 55% 45% at 100% 100%, rgba(0,200,224,0.07), transparent 52%),
    linear-gradient(180deg, rgba(255,255,255,0.55) 0%, var(--bg-soft) 100%);
  border-top: 1px solid rgba(233,30,140,0.08);
  border-bottom: 1px solid rgba(45,32,64,0.06);
}
.motherhood-journey-eyebrow {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 28px;
  text-align: center;
}

.journey-timeline {
  --jtl-pad-top: 20px;
  --jtl-dot-size: 52px;
  --jtl-dot-half: 26px;
  position: relative;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: visible;
  padding: var(--jtl-pad-top) 1% calc(var(--jtl-pad-top) + 14px);
  scrollbar-width: thin;
  scrollbar-color: rgba(233,30,140,0.25) transparent;
  gap: 4px;
  max-width: 1240px;
  margin: 0 auto;
}
.journey-timeline::-webkit-scrollbar { height: 4px; }
.journey-timeline::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(233,30,140,0.35), rgba(0,200,224,0.35));
  border-radius: 3px;
}

/* Animated connector - soft track + sweeping light pulse */
.journey-timeline-flow {
  position: absolute;
  left: clamp(56px, 9%, 100px);
  right: clamp(56px, 9%, 100px);
  top: calc(var(--jtl-pad-top) + var(--jtl-dot-half));
  height: 5px;
  transform: translateY(-50%);
  z-index: 0;
  border-radius: 6px;
  pointer-events: none;
  overflow: hidden;
}
.journey-flow-track {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg,
    rgba(233,30,140,0.22) 0%,
    rgba(233,30,140,0.12) 32%,
    rgba(247,46,160,0.14) 50%,
    rgba(0,200,224,0.14) 78%,
    rgba(0,168,190,0.24) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
}
.journey-flow-glow {
  position: absolute;
  top: -4px;
  bottom: -4px;
  width: min(34%, 200px);
  left: -30%;
  border-radius: 8px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.15) 15%,
    rgba(247,46,160,0.95) 48%,
    rgba(255,255,255,0.35) 72%,
    transparent 100%);
  opacity: 0.75;
  filter: blur(0.6px);
  animation: motherhoodFlowSweep 4.8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  mix-blend-mode: soft-light;
}
.journey-flow-glow--delayed {
  animation-delay: -2.4s;
  width: min(26%, 150px);
  opacity: 0.45;
  background: linear-gradient(90deg,
    transparent,
    rgba(0,238,252,0.55) 50%,
    transparent);
}
@keyframes motherhoodFlowSweep {
  0% { transform: translateX(0); opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 0.95; }
  100% { transform: translateX(420%); opacity: 0; }
}

.journey-timeline:hover .journey-flow-glow {
  animation-duration: 3.45s;
  opacity: 0.88;
}
.journey-timeline:hover .journey-flow-glow--delayed {
  animation-duration: 3.95s;
  opacity: 0.55;
}
.journey-timeline:hover .journey-flow-track {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 0 20px rgba(233,30,140,0.06);
}

.jtl-step {
  flex: 1;
  min-width: 154px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 14px 12px 20px;
  margin-top: -2px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: transparent;
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out),
    border-color 0.45s var(--ease),
    background 0.5s var(--ease-out);
}
.jtl-step:hover {
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,250,252,0.72) 100%);
  border-color: rgba(233,30,140,0.14);
  box-shadow: 0 16px 42px rgba(233,30,140,0.11), 0 4px 14px rgba(45,32,64,0.06);
}
.jtl-step--lifelong:hover {
  border-color: rgba(0,200,224,0.18);
  box-shadow: 0 16px 42px rgba(0,200,224,0.1), 0 4px 14px rgba(45,32,64,0.06);
}

.jtl-dot {
  width: var(--jtl-dot-size);
  height: var(--jtl-dot-size);
  border-radius: 50%;
  border: 2px solid rgba(233,30,140,0.28);
  background: linear-gradient(155deg, #fff 0%, rgba(253,246,251,1) 45%, var(--pink-dim) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  color: var(--pink);
  box-shadow:
    0 2px 8px rgba(233,30,140,0.08),
    inset 0 1px 0 rgba(255,255,255,0.95);
  transition:
    transform 0.52s cubic-bezier(0.34, 1.4, 0.64, 1),
    box-shadow 0.45s var(--ease-out),
    border-color 0.42s var(--ease),
    background 0.45s var(--ease-out),
    filter 0.45s ease;
}
.jtl-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(247,46,160,0.25);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.45s var(--ease-out), transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.jtl-dot svg {
  width: 24px;
  height: 24px;
  transition: transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.jtl-step:hover .jtl-dot {
  transform: scale(1.08) rotate(-4deg);
  border-color: rgba(247,46,160,0.55);
  box-shadow:
    0 10px 28px rgba(233,30,140,0.22),
    0 2px 8px rgba(233,30,140,0.12),
    inset 0 1px 0 rgba(255,255,255,1);
}
.jtl-step:hover .jtl-dot::after {
  opacity: 1;
  transform: scale(1.05);
}
.jtl-step:hover .jtl-dot svg {
  transform: scale(1.06);
}

.jtl-dot--teal {
  color: var(--cyan-mid);
  border-color: rgba(0,200,224,0.32);
  background: linear-gradient(155deg, #fff 0%, rgba(240,253,255,1) 40%, var(--cyan-dim) 100%);
  box-shadow:
    0 2px 8px rgba(0,200,224,0.08),
    inset 0 1px 0 rgba(255,255,255,0.98);
}
.jtl-dot--teal::after {
  border-color: rgba(0,220,238,0.28);
}
.jtl-step:hover .jtl-dot--teal {
  border-color: rgba(0,200,224,0.52);
  box-shadow:
    0 12px 32px rgba(0,200,224,0.2),
    0 2px 8px rgba(0,168,190,0.12),
    inset 0 1px 0 #fff;
}

.jtl-label {
  font-family: var(--font-b);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.4s var(--ease);
}
.jtl-sub {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 400;
  max-width: 18ch;
  margin: 0 auto;
  transition: color 0.4s var(--ease);
}

.jtl-step:hover .jtl-label {
  color: var(--pink-mid);
}
.jtl-step--lifelong:hover .jtl-label {
  color: var(--cyan-mid);
}
.jtl-step:hover .jtl-sub {
  color: var(--body);
}

@media (prefers-reduced-motion: reduce) {
  .journey-flow-glow,
  .journey-flow-glow--delayed {
    animation: none !important;
    opacity: 0;
  }
  .journey-flow-track {
    background: linear-gradient(90deg,
      rgba(233,30,140,0.18) 0%,
      rgba(0,200,224,0.16) 100%);
  }
  .journey-timeline:hover .journey-flow-glow {
    opacity: 0;
  }
  .jtl-step,
  .jtl-dot,
  .jtl-dot svg,
  .jtl-dot::after,
  .jtl-label,
  .jtl-sub {
    transition-duration: 0.01ms !important;
  }
  .jtl-step:hover {
    transform: none;
  }
  .jtl-step:hover .jtl-dot {
    transform: scale(1.02);
    filter: brightness(1.02);
  }
}
@media (max-width: 760px) {
  .journey-timeline {
    --jtl-pad-top: 18px;
    --jtl-dot-size: 46px;
    --jtl-dot-half: 23px;
    padding-bottom: calc(var(--jtl-pad-top) + 10px);
  }
  .journey-timeline-flow {
    left: clamp(42px, 12%, 70px);
    right: clamp(42px, 12%, 70px);
  }
  .jtl-step { min-width: 146px; }
  .jtl-dot svg {
    width: 21px;
    height: 21px;
  }
}

/* ══════════════════════════════════════════════════
   SRS APPROACH (homepage bridge)
══════════════════════════════════════════════════ */
.srs-approach {
  position: relative;
  padding: clamp(44px, 5.5vw, 64px) 8% clamp(36px, 4.5vw, 52px);
  background:
    radial-gradient(ellipse 72% 55% at 14% 0%, rgba(233,30,140,0.06), transparent 58%),
    radial-gradient(ellipse 65% 50% at 88% 100%, rgba(0,200,224,0.07), transparent 55%),
    var(--bg-soft);
  border-top: 1px solid rgba(45,32,64,0.05);
  overflow: hidden;
}
.srs-approach-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.45;
}
.srs-approach-glow--rose {
  width: min(340px, 42vw);
  height: min(340px, 42vw);
  top: -8%;
  left: -4%;
  background: rgba(233,30,140,0.11);
}
.srs-approach-glow--teal {
  width: min(300px, 38vw);
  height: min(300px, 38vw);
  bottom: -6%;
  right: -2%;
  background: rgba(0,200,224,0.1);
}
.srs-approach-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}
.srs-approach-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto clamp(28px, 3.5vw, 36px);
}
.srs-approach-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.srs-approach-eyebrow-line {
  width: 22px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--pink), rgba(0,200,224,0.55));
  display: block;
}
.srs-approach-title {
  font-family: var(--font-d);
  font-size: clamp(1.75rem, 3.5vw, 2.55rem);
  font-weight: 400;
  line-height: 1.14;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.srs-approach-title em {
  font-style: italic;
  color: var(--cyan-mid);
}
.srs-approach-lead {
  font-size: clamp(0.84rem, 1.1vw, 0.9rem);
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}
.srs-approach-table {
  --srs-table-cols: minmax(168px, 23%) 1fr 1fr;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(45,32,64,0.07);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(45,32,64,0.04);
  overflow: hidden;
}
.srs-approach-table-head,
.srs-approach-row {
  display: grid;
  grid-template-columns: var(--srs-table-cols);
}
.srs-approach-table-head {
  border-bottom: 1px solid rgba(45,32,64,0.08);
  background: rgba(255,255,255,0.55);
}
.srs-approach-table-corner {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-right: 1px solid rgba(45,32,64,0.06);
}
.srs-approach-corner-label {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(45,32,64,0.38);
}
.srs-approach-colhead {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
}
.srs-approach-colhead--rose {
  border-right: 1px solid rgba(45,32,64,0.06);
  background: linear-gradient(135deg, rgba(233,30,140,0.05) 0%, transparent 100%);
}
.srs-approach-colhead--teal {
  background: linear-gradient(135deg, rgba(0,200,224,0.06) 0%, transparent 100%);
}
.srs-approach-colhead-title {
  display: block;
  font-family: var(--font-d);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.srs-approach-colhead--rose .srs-approach-colhead-title { color: var(--pink); }
.srs-approach-colhead--teal .srs-approach-colhead-title { color: var(--cyan-mid); }
.srs-approach-colhead-sub {
  display: block;
  margin-top: 2px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--muted);
  line-height: 1.35;
}
.srs-approach-row {
  border-bottom: 1px solid rgba(45,32,64,0.06);
  transition: background 0.3s;
}
.srs-approach-row:last-child { border-bottom: none; }
.srs-approach-row:hover { background: rgba(255,255,255,0.45); }
.srs-approach-row-label {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 11px 12px;
  border-right: 1px solid rgba(45,32,64,0.06);
  background: rgba(45,32,64,0.012);
}
.srs-approach-row-label-head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.srs-approach-row-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--pink), var(--cyan));
  opacity: 0.45;
}
.srs-approach-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.srs-approach-icon--sm {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}
.srs-approach-icon--head {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}
.srs-approach-icon svg { width: 16px; height: 16px; }
.srs-approach-icon--sm svg { width: 12px; height: 12px; }
.srs-approach-icon--head svg { width: 14px; height: 14px; }
.srs-approach-icon--rose {
  color: var(--pink);
  background: var(--pink-dim);
  border: 1px solid rgba(233,30,140,0.12);
}
.srs-approach-icon--teal {
  color: var(--cyan-mid);
  background: var(--cyan-dim);
  border: 1px solid rgba(0,200,224,0.15);
}
.srs-approach-pillar-title {
  font-family: var(--font-d);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.25;
}
.srs-approach-pillar-text {
  font-size: 0.7rem;
  color: rgba(61,49,86,0.68);
  line-height: 1.48;
  font-weight: 350;
  margin: 0;
  padding-left: 32px;
}
.srs-approach-cell {
  display: flex;
  align-items: center;
  padding: 11px 14px;
  border-right: 1px solid rgba(45,32,64,0.06);
  transition: background 0.3s;
}
.srs-approach-cell:last-child { border-right: none; }
.srs-approach-cell p {
  font-size: 0.8rem;
  color: var(--ink-mid);
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
}
.srs-approach-cell--rose {
  background: rgba(233,30,140,0.02);
}
.srs-approach-cell--teal {
  background: rgba(0,200,224,0.025);
}
.srs-approach-row:hover .srs-approach-cell--rose {
  background: rgba(233,30,140,0.045);
}
.srs-approach-row:hover .srs-approach-cell--teal {
  background: rgba(0,200,224,0.05);
}
@media (max-width: 860px) {
  .srs-approach-table {
    --srs-table-cols: 1fr;
    border-radius: 18px;
  }
  .srs-approach-table-head {
    display: none;
  }
  .srs-approach-row {
    display: flex;
    flex-direction: column;
    padding-bottom: 4px;
  }
  .srs-approach-row-label {
    border-right: none;
    border-bottom: 1px solid rgba(45,32,64,0.06);
    padding: 10px 12px;
  }
  .srs-approach-cell {
    border-right: none;
    border-bottom: 1px solid rgba(45,32,64,0.05);
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
  }
  .srs-approach-cell::before {
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .srs-approach-cell--rose::before {
    content: 'Women\u2019s health';
    color: var(--pink);
  }
  .srs-approach-cell--teal::before {
    content: 'Kidney care';
    color: var(--cyan-mid);
  }
  .srs-approach-cell:last-child { border-bottom: none; }
}
.srs-approach-closer {
  text-align: center;
  margin-top: clamp(24px, 3vw, 32px);
  font-family: var(--font-d);
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  font-style: italic;
  color: var(--ink-mid);
  letter-spacing: -0.01em;
  line-height: 1.45;
}
.srs-approach-closer em {
  font-style: italic;
  color: var(--pink);
}
.srs-approach-rule {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233,30,140,0.18) 25%, rgba(0,200,224,0.2) 75%, transparent);
}
@media (prefers-reduced-motion: reduce) {
  .srs-approach-row,
  .srs-approach-cell { transition-duration: 0.01ms; }
}

/* ══════════════════════════════════════════════════
   CHAPTER STRUCTURE
══════════════════════════════════════════════════ */
.chapter { position: relative; overflow: hidden; }
.chapter-inner { max-width: 1280px; margin: 0 auto; padding: 30px 8%; }

.chp-label { display: flex; align-items: flex-end; gap: 14px; margin-bottom: 20px; }
.chp-num { font-family: var(--font-d); font-size: 4rem; font-weight: 400; color: transparent; -webkit-text-stroke: 1px rgba(233,30,140,0.15); line-height: 1; }
.chp-label-right { display: flex; flex-direction: column; gap: 3px; padding-bottom: 6px; }
.chp-tag { font-size: 0.61rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--pink); }
.chp-subtitle { font-size: 0.74rem; color: var(--muted); letter-spacing: 0.02em; font-weight: 400; }

.chp-headline { font-family: var(--font-d); font-size: clamp(2.2rem,4.8vw,3rem); font-weight: 400; line-height: 1.08; color: var(--ink); margin-bottom: 22px; letter-spacing: -0.015em; }
.chp-headline em { font-style: italic; color: var(--pink); }
.chp-headline .teal { color: var(--cyan-mid); font-style: italic; }

.chp-lead { font-size: clamp(0.88rem,1.3vw,1rem); color: var(--muted); line-height: 1.95; max-width: 520px; font-weight: 300; margin-bottom: 10px; }
.chp-lead strong { color: var(--body); font-weight: 600; }

.two-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .two-grid { grid-template-columns: 1fr; gap: 48px; } .two-grid > * { order: unset !important; } }
.obstetrics-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .obstetrics-layout { grid-template-columns: 1fr; gap: 48px; } }
.fertility-full { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 900px) { .fertility-full { grid-template-columns: 1fr; gap: 48px; } }

/* ══════════════════════════════════════════════════
   SERVICE JOURNEY LIST
══════════════════════════════════════════════════ */
.service-journey-list { display: flex; flex-direction: column; }
.service-journey-item { display: flex; align-items: flex-start; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--divider); transition: all 0.3s; position: relative; }
.service-journey-item:last-child { border-bottom: none; }
.service-journey-item:hover { padding-left: 8px; }
.service-journey-item:hover::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, transparent, var(--pink), transparent); border-radius: 1px; }
.sji-icon { width: 40px; height: 40px; min-width: 40px; border-radius: 10px; background: var(--pink-dim); border: 1px solid rgba(233,30,140,0.15); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.sji-icon svg { width: 18px; height: 18px; stroke: var(--pink); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-journey-item:hover .sji-icon { background: rgba(233,30,140,0.13); box-shadow: var(--shadow-sm); }
.sji-icon.teal { background: var(--cyan-dim); border-color: rgba(0,200,224,0.18); }
.sji-icon.teal svg { stroke: var(--cyan-mid); }
.service-journey-item:hover .sji-icon.teal { background: rgba(0,200,224,0.14); }
.sji-content h4 { font-family: var(--font-d); font-size: 1rem; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.sji-content p { font-size: 0.76rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ══════════════════════════════════════════════════
   CHAPTER VISUALS
══════════════════════════════════════════════════ */
.chapter-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.cv-ring-outer { width: clamp(240px,26vw,380px); height: clamp(240px,26vw,380px); border-radius: 50%; position: relative; display: flex; align-items: center; justify-content: center; }
.gyno-orbit-image {
  position: absolute;
  z-index: 3;
  width: clamp(170px, 22vw, 260px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(233,30,140,0.16));
}
.cv-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(233,30,140,0.12); animation: cvRingPulse 4.5s ease-in-out infinite; }
.cv-ring:nth-child(2) { inset: 18px; border-color: rgba(233,30,140,0.08); animation-delay: -1.5s; }
.cv-ring:nth-child(3) { inset: 36px; border-color: rgba(233,30,140,0.06); animation-delay: -3s; }
@keyframes cvRingPulse { 0%,100% { transform: scale(1); opacity: 0.9; } 50% { transform: scale(1.035); opacity: 0.4; } }
.cv-core { width: 58%; height: 58%; border-radius: 50%; background: radial-gradient(circle at 40% 40%, rgba(233,30,140,0.10), rgba(233,30,140,0.03) 55%, transparent); display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; box-shadow: inset 0 0 40px rgba(233,30,140,0.05); }
.cv-core.teal { background: radial-gradient(circle at 40% 40%, rgba(0,200,224,0.10), rgba(0,200,224,0.02) 55%, transparent); }
.cv-core svg { width: clamp(60px,8vw,100px); height: auto; animation: cvFloat 5.5s ease-in-out infinite; }
@keyframes cvFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-10px) scale(1.03); } }

/* Data chips - card style on light */
.data-chip { background: var(--bg-lift); border: 1px solid var(--divider); border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow-md); text-align: center; position: absolute; }
.data-chip .big { font-family: var(--font-d); font-size: 1.5rem; font-weight: 500; color: var(--pink); line-height: 1; }
.data-chip .small { font-size: 0.64rem; color: var(--muted); margin-top: 3px; font-weight: 400; }
.data-chip.teal { border-color: rgba(0,200,224,0.2); }
.data-chip.teal .big { color: var(--cyan-mid); }
.chip-1 { top: 6%; right: -8%; }
.chip-2 { bottom: 12%; left: -10%; }

/* ══════════════════════════════════════════════════
   PULL QUOTE
══════════════════════════════════════════════════ */
.pull-quote { position: relative; padding: 32px 32px 32px 40px; border-left: 2px solid var(--pink); background: var(--pink-dim); border-radius: 0 16px 16px 0; margin: 32px 0; }
.pull-quote::before { content: '\201C'; font-family: var(--font-d); font-size: 5.5rem; line-height: 0.8; color: rgba(233,30,140,0.12); position: absolute; top: 18px; left: 8px; font-weight: 600; }
.pull-quote p { font-family: var(--font-d); font-size: clamp(1rem,1.7vw,1.3rem); font-style: italic; color: var(--ink-mid); line-height: 1.6; font-weight: 400; position: relative; z-index: 1; }
.pull-quote .attribution { font-family: var(--font-b); font-size: 0.7rem; color: var(--pink); margin-top: 12px; letter-spacing: 0.1em; font-style: normal; font-weight: 600; }

/* ══════════════════════════════════════════════════
   INFRASTRUCTURE TILES
══════════════════════════════════════════════════ */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 14px;
  align-items: stretch;
}
@media (max-width: 1024px) { .infra-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 768px) { .infra-grid { gap: 14px; } }
@media (max-width: 480px) { .infra-grid { grid-template-columns: 1fr; } }
.infra-tile {
  display: flex;
  flex-direction: column;
  min-height: 248px;
  padding: 32px 20px 28px;
  background: var(--bg-lift);
  border: 1px solid var(--divider);
  border-radius: 18px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.infra-tile::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--pink), var(--cyan)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; border-radius: 0 0 18px 18px; }
.infra-tile:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(233,30,140,0.16); }
.infra-tile:hover::after { transform: scaleX(1); }
.infra-icon { width: 40px; height: 40px; margin-bottom: 16px; flex-shrink: 0; }
.infra-icon svg { width: 100%; stroke: var(--pink); fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.infra-icon.teal svg { stroke: var(--cyan-mid); }
.infra-tile h4 {
  font-family: var(--font-d);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.35;
  min-height: 2.65em;
}
.infra-tile p {
  flex: 1;
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 300;
}
.infra-tile--soon {
  border-style: dashed;
  border-color: rgba(0,200,224,0.28);
  background: linear-gradient(165deg, var(--bg-lift) 0%, rgba(0,200,224,0.05) 100%);
}
.infra-tile--soon:hover { border-color: rgba(0,200,224,0.38); }
.infra-soon-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan-mid);
  background: var(--cyan-dim);
  border: 1px solid rgba(0,200,224,0.22);
  padding: 5px 11px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,200,224,0.12);
}

/* Hospital affiliations — dedicated section */
.hospital-affil {
  position: relative;
  padding: clamp(64px, 8vw, 96px) 8%;
  background:
    radial-gradient(ellipse 80% 60% at 12% 20%, rgba(233,30,140,0.09), transparent 58%),
    radial-gradient(ellipse 70% 55% at 88% 80%, rgba(0,200,224,0.1), transparent 55%),
    linear-gradient(165deg, #fff 0%, var(--bg-soft) 48%, #f4fafb 100%);
  border-top: 1px solid rgba(233,30,140,0.08);
  border-bottom: 1px solid rgba(0,200,224,0.1);
  overflow: hidden;
}
.hospital-affil-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(233,30,140,0.03) 50%, transparent);
  pointer-events: none;
}
.hospital-affil-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; }
.hospital-affil-header { max-width: 620px; margin-bottom: clamp(36px, 5vw, 52px); }
.hospital-affil-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 14px;
}
.hospital-affil-eyebrow-line { width: 22px; height: 1.5px; background: var(--pink); display: block; }
.hospital-affil-title {
  font-family: var(--font-d); font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 400;
  color: var(--ink); line-height: 1.1; letter-spacing: -0.015em;
}
.hospital-affil-title em { font-style: italic; color: var(--cyan-mid); }
.hospital-affil-lead {
  margin-top: 14px; font-size: 0.9rem; color: var(--muted); line-height: 1.85; font-weight: 300;
}
.hospital-affil-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .hospital-affil-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .hospital-affil-grid { grid-template-columns: 1fr; } }
.hospital-affil-card {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  background: var(--bg-lift);
  border: 1px solid var(--divider);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
  position: relative; overflow: hidden;
}
.hospital-affil-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--pink), var(--pink-bright));
  opacity: 0.85;
}
.hospital-affil-card--teal::before {
  background: linear-gradient(180deg, var(--cyan), var(--cyan-mid));
}
.hospital-affil-card--featured {
  border-color: rgba(233,30,140,0.22);
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(233,30,140,0.04) 100%);
  box-shadow: var(--glow-rose);
}
.hospital-affil-card:last-child:nth-child(3n+1) {
  grid-column: 2;
}
@media (max-width: 900px) and (min-width: 521px) {
  .hospital-affil-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 14px) / 2);
  }
}
.hospital-affil-card--featured::before {
  width: 4px;
  background: linear-gradient(180deg, var(--pink), var(--cyan));
}
.hospital-affil-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(233,30,140,0.2);
}
.hospital-affil-card--teal:hover { border-color: rgba(0,200,224,0.28); }
.hospital-affil-card-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--pink-dim);
  border: 1px solid rgba(233,30,140,0.12);
  color: var(--pink);
}
.hospital-affil-card--teal .hospital-affil-card-icon {
  background: var(--cyan-dim);
  border-color: rgba(0,200,224,0.16);
  color: var(--cyan-mid);
}
.hospital-affil-card-icon svg { width: 22px; height: 22px; }
.hospital-affil-card-body { min-width: 0; }
.hospital-affil-card-body h3 {
  font-family: var(--font-d); font-size: 1.02rem; font-weight: 500;
  color: var(--ink); line-height: 1.25; margin-bottom: 4px;
}
.hospital-affil-loc {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
}
.hospital-affil-loc::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--pink); flex-shrink: 0;
}
.hospital-affil-card--teal .hospital-affil-loc::before { background: var(--cyan-mid); }

/* ══════════════════════════════════════════════════
   DOCTOR PANELS
══════════════════════════════════════════════════ */
.doctors-editorial { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 0 8% 96px; max-width: 1280px; margin: 0 auto; }
.doctors-editorial--split { gap: 22px; }
@media (max-width: 900px) { .doctors-editorial { grid-template-columns: 1fr; padding: 0 6% 68px; } }

/* Homepage: compact photo strip + copy block (no equal-height stretch) */
.doctors-editorial--split .doctor-panel {
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}
.doctors-editorial--split .doctor-panel-media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: clamp(200px, 24vw, 252px);
  min-height: 0;
  padding: 8px 12px 0;
  overflow: hidden;
  background: linear-gradient(165deg, #fffdfc 0%, rgba(253,246,251,1) 40%, var(--pink-dim) 100%);
  border-bottom: 1px solid rgba(233,30,140,0.1);
}
.doctors-editorial--split .doctor-panel-media::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(62%, 210px);
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(233,30,140,0.14) 0%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.doctors-editorial--split .doctor-panel-media--teal {
  background: linear-gradient(165deg, #fcffff 0%, rgba(240,252,253,1) 45%, var(--cyan-dim) 100%);
  border-bottom-color: rgba(0,200,224,0.12);
}
.doctors-editorial--split .doctor-panel-media--teal::before {
  background: radial-gradient(ellipse at center, rgba(0,200,224,0.16) 0%, transparent 72%);
}
.doctors-editorial--split .doctor-panel-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: 100%;
  max-width: min(90%, 240px);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 8px 20px rgba(20,14,34,0.11));
  transition: transform 0.5s var(--ease-out), filter 0.5s var(--ease-out);
}
.doctors-editorial--split .teal-panel .doctor-panel-photo {
  max-width: min(94%, 270px);
}
.doctors-editorial--split .rose-panel:hover .doctor-panel-photo {
  transform: translateY(-2px) scale(1.008);
  filter: drop-shadow(0 12px 28px rgba(233,30,140,0.14));
}
.doctors-editorial--split .teal-panel:hover .doctor-panel-photo {
  transform: translateY(-2px) scale(1.008);
  filter: drop-shadow(0 12px 28px rgba(0,200,224,0.16));
}
.doctors-editorial--split .doctor-panel-copy {
  position: relative;
  padding: 22px 26px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: start;
  flex: 0 0 auto;
  min-height: 0;
}
@media (max-width: 900px) {
  .doctors-editorial--split .doctor-panel-media {
    height: clamp(188px, 46vw, 230px);
  }
  .doctors-editorial--split .doctor-panel-photo {
    max-width: min(86%, 220px);
  }
  .doctors-editorial--split .teal-panel .doctor-panel-photo {
    max-width: min(90%, 240px);
  }
  .doctors-editorial--split .doctor-panel-copy {
    padding: 20px 22px 24px;
  }
}
.doctors-editorial--split .doctor-panel-photo-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(82%, 220px);
  aspect-ratio: 4 / 5;
  max-height: 88%;
  border-radius: 18px;
  border: 2px dashed rgba(233,30,140,0.28);
  background: rgba(255,255,255,0.65);
  color: rgba(233,30,140,0.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.4s;
}
.doctors-editorial--split .doctor-panel-photo-ph--teal {
  border-color: rgba(0,200,224,0.3);
  color: rgba(0,168,190,0.38);
}
.doctors-editorial--split .doctor-panel-ph-icon {
  width: clamp(52px, 12vw, 72px);
  height: auto;
  opacity: 0.85;
}
.doctors-editorial--split .doctor-panel-ph-label {
  font-family: var(--font-b);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.75;
}
.doctors-editorial--split .rose-panel:hover .doctor-panel-photo-ph {
  border-color: rgba(247,46,160,0.45);
  background: rgba(255,255,255,0.82);
  color: rgba(233,30,140,0.42);
  box-shadow: inset 0 1px 0 #fff, 0 8px 28px rgba(233,30,140,0.08);
}
.doctors-editorial--split .teal-panel:hover .doctor-panel-photo-ph--teal {
  border-color: rgba(0,220,238,0.5);
  background: rgba(255,255,255,0.88);
  color: rgba(0,168,190,0.48);
  box-shadow: inset 0 1px 0 #fff, 0 8px 28px rgba(0,200,224,0.1);
}
.doctors-editorial--split .doctor-panel-copy {
  position: relative;
  padding: 26px 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  min-height: 0;
}
.doctors-editorial--split .doctor-panel-copy .doc-panel-bg-text {
  bottom: auto;
  top: -4%;
  right: -2%;
  font-size: clamp(4.5rem, 14vw, 6.8rem);
}
.doctors-editorial--split .doctor-panel-copy .doc-overline {
  margin-bottom: 10px;
}
.doctors-editorial--split .doctor-panel-copy .doc-name {
  font-size: clamp(1.42rem, 2.8vw, 2.1rem);
  margin-bottom: 6px;
}
.doctors-editorial--split .doctor-panel-copy .doc-quals {
  margin-bottom: 10px;
  line-height: 1.4;
}
.doctors-editorial--split .doc-bio--compact {
  margin-bottom: 0;
  font-size: 0.78rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.doctors-editorial--split .doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}
.doctors-editorial--split .doc-actions a {
  font-size: 0.67rem !important;
  padding: 10px 18px !important;
  letter-spacing: 0.08em !important;
  transition:
    background 0.4s var(--ease),
    color 0.4s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    transform 0.35s var(--ease);
}
.doctors-editorial--split .doc-actions .btn-doc-highlight:hover {
  transform: translateY(-2px);
}
.doctors-editorial--split .doc-actions .btn-doc-profile:hover {
  transform: translateY(-2px);
}
/* Panel hover: flip outline to solid + deepen primary fills */
.doctors-editorial--split .rose-panel:hover .btn-doc-profile {
  background: var(--pink) !important;
  color: #fff !important;
  border-color: var(--pink) !important;
  box-shadow: 0 8px 26px rgba(233,30,140,0.38);
}
.doctors-editorial--split .rose-panel:hover .btn-doc-highlight {
  background: var(--pink-mid) !important;
  box-shadow: 0 10px 34px rgba(233,30,140,0.42);
}
.doctors-editorial--split .teal-panel:hover .btn-doc-profile {
  background: var(--cyan) !important;
  color: #fff !important;
  border-color: var(--cyan) !important;
  box-shadow: 0 8px 26px rgba(0,200,224,0.35);
}
.doctors-editorial--split .teal-panel:hover .btn-doc-highlight {
  background: var(--cyan-mid) !important;
  box-shadow: 0 10px 34px rgba(0,168,190,0.38);
}

@media (prefers-reduced-motion: reduce) {
  .doctors-editorial--split .doc-actions a {
    transition-duration: 0.01ms !important;
  }
  .doctors-editorial--split .doc-actions .btn-doc-highlight:hover,
  .doctors-editorial--split .doc-actions .btn-doc-profile:hover {
    transform: none;
  }
}

.doctor-panel { position: relative; padding: 52px 44px; overflow: hidden; border-radius: 24px; background: var(--bg-lift); border: 1px solid var(--divider); box-shadow: var(--shadow-sm); transition: all 0.5s var(--ease); }
.doctor-panel:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.doctor-panel.rose-panel { border-top: 3px solid var(--pink); }
.doctor-panel.teal-panel { border-top: 3px solid var(--cyan); }
.doctor-panel.rose-panel:hover { border-color: rgba(233,30,140,0.25); }
.doctor-panel.teal-panel:hover { border-color: rgba(0,200,224,0.25); }
.doc-panel-bg-text { position: absolute; bottom: -12%; right: -3%; font-family: var(--font-d); font-size: 9rem; font-weight: 600; color: transparent; -webkit-text-stroke: 1px rgba(233,30,140,0.05); line-height: 1; user-select: none; pointer-events: none; }
.teal-panel .doc-panel-bg-text { -webkit-text-stroke-color: rgba(0,200,224,0.05); }
.doc-overline { font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--pink); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; font-weight: 600; }
.doc-overline::before { content: ''; width: 18px; height: 1.5px; background: var(--pink); }
.teal-panel .doc-overline { color: var(--cyan-mid); }
.teal-panel .doc-overline::before { background: var(--cyan); }
.doc-name { font-family: var(--font-d); font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 400; color: var(--ink); line-height: 1.1; margin-bottom: 8px; }
.doc-quals { font-size: 0.61rem; font-weight: 700; letter-spacing: 0.06em; color: var(--pink); margin-bottom: 6px; }
.teal-panel .doc-quals { color: var(--cyan-mid); }
.doc-role { font-size: 0.76rem; color: var(--muted); margin-bottom: 4px; font-weight: 400; }
.doc-exp { font-family: var(--font-d); font-size: 0.95rem; font-style: italic; color: var(--muted); margin-bottom: 20px; }
.doc-bio { font-size: 0.78rem; color: var(--muted); line-height: 1.9; font-weight: 300; margin-bottom: 10px; }
.doc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.doc-tag { font-size: 0.61rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 11px; border-radius: 20px; border: 1.5px solid rgba(233,30,140,0.18); color: var(--pink); background: var(--pink-dim); }
.teal-panel .doc-tag { border-color: rgba(0,200,224,0.2); color: var(--cyan-mid); background: var(--cyan-dim); }

#doctor-sharadha,
#doctor-sakthi {
  scroll-margin-top: clamp(72px, 12vh, 120px);
}

/* ══════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════ */
.testimonials-carousel { max-width: 820px; margin: 0 auto; text-align: center; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; animation: slideIn 0.6s ease; }
@keyframes slideIn { from { opacity:0; transform: translateY(14px); } to { opacity:1; transform: translateY(0); } }
.testi-quote { font-family: var(--font-d); font-size: clamp(1.1rem,2.1vw,1.75rem); font-style: italic; font-weight: 400; color: var(--ink-mid); line-height: 1.55; margin-bottom: 28px; position: relative; }
.testi-quote::before { content: '\201C'; font-size: 5rem; line-height: 0; color: rgba(233,30,140,0.12); position: absolute; top: 0; left: -20px; font-weight: 600; }
.testi-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--pink), rgba(233,30,140,0.6)); display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-size: 1.2rem; color: white; font-weight: 600; box-shadow: var(--shadow-sm); }
.testi-info .name { font-weight: 700; font-size: 0.85rem; color: var(--ink); margin-bottom: 2px; }
.testi-info .loc { font-size: 0.7rem; color: var(--muted); font-weight: 300; }
.testi-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; margin-top: 3px; }
.testi-nav { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.testi-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--divider); border: none; padding: 0; transition: all 0.3s; }
.testi-dot.active { background: var(--pink); width: 18px; border-radius: 2.5px; box-shadow: 0 0 6px rgba(233,30,140,0.35); }

/* ══════════════════════════════════════════════════
   BIG CTA
══════════════════════════════════════════════════ */
.chp-cta {
  background: linear-gradient(135deg, rgba(233,30,140,0.05) 0%, rgba(0,200,224,0.04) 50%, rgba(233,30,140,0.03) 100%),
              var(--bg-soft);
  text-align: center; padding: clamp(64px, 8vw, 96px) 8%; position: relative; overflow: hidden;
  border-top: 1px solid var(--divider);
}
.chp-cta::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='0.4' fill='rgba(233,30,140,0.08)'/%3E%3C/svg%3E"); pointer-events: none; }
.cta-intro { position: relative; max-width: 640px; margin: 0 auto clamp(36px, 5vw, 52px); }
.cta-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 14px;
}
.cta-eyebrow-line { width: 22px; height: 1.5px; background: var(--pink); display: block; }
.cta-headline { font-family: var(--font-d); font-size: clamp(2.5rem,5.5vw,4.8rem); font-weight: 400; color: var(--ink); line-height: 1.06; margin-bottom: 16px; position: relative; }
.cta-headline em { font-style: italic; color: var(--pink); }
.cta-body { font-size: 0.95rem; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.9; font-weight: 300; position: relative; }
.cta-specialty-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto clamp(40px, 5vw, 52px);
  text-align: left;
  align-items: start;
}
@media (max-width: 900px) { .cta-specialty-grid { grid-template-columns: 1fr; max-width: 440px; gap: 28px; } }
.cta-specialty-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.cta-specialty-card {
  display: flex; flex-direction: column;
  padding: 24px 22px 22px;
  background: var(--bg-lift);
  border: 1px solid var(--divider);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
  position: relative; overflow: hidden;
}
.cta-specialty-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  opacity: 0.9;
}
.cta-specialty-card--rose::before { background: linear-gradient(90deg, var(--pink), var(--pink-bright)); }
.cta-specialty-card--teal::before { background: linear-gradient(90deg, var(--cyan), var(--cyan-mid)); }
.cta-specialty-card--gold::before { background: linear-gradient(90deg, #c9a227, var(--gold)); }
.cta-specialty-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.cta-specialty-card--rose:hover { border-color: rgba(233,30,140,0.22); }
.cta-specialty-card--teal:hover { border-color: rgba(0,200,224,0.28); }
.cta-specialty-card--gold:hover { border-color: rgba(176,125,42,0.28); }
.cta-specialty-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.cta-specialty-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
}
.cta-specialty-icon svg { width: 22px; height: 22px; }
.cta-specialty-card--rose .cta-specialty-icon { background: var(--pink-dim); color: var(--pink); border: 1px solid rgba(233,30,140,0.12); }
.cta-specialty-card--teal .cta-specialty-icon { background: var(--cyan-dim); color: var(--cyan-mid); border: 1px solid rgba(0,200,224,0.14); }
.cta-specialty-card--gold .cta-specialty-icon { background: rgba(176,125,42,0.1); color: var(--gold); border: 1px solid rgba(176,125,42,0.18); }
.cta-specialty-tag {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 20px;
}
.cta-specialty-card--rose .cta-specialty-tag { color: var(--pink); background: var(--pink-dim); }
.cta-specialty-card--teal .cta-specialty-tag { color: var(--cyan-mid); background: var(--cyan-dim); }
.cta-specialty-card--gold .cta-specialty-tag { color: var(--gold); background: rgba(176,125,42,0.1); }
.cta-specialty-name {
  font-family: var(--font-d); font-size: 1.28rem; font-weight: 500;
  color: var(--ink); line-height: 1.2; margin-bottom: 10px;
}
.cta-specialty-desc {
  font-size: 0.8rem; color: var(--muted); line-height: 1.75; font-weight: 300; margin-bottom: 14px;
}
.cta-specialty-desc strong { color: var(--body); font-weight: 600; }
.cta-specialty-points {
  list-style: none; margin: 0 0 18px; padding: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.cta-specialty-points li {
  font-size: 0.72rem; color: var(--muted); line-height: 1.5;
  padding-left: 14px; position: relative;
}
.cta-specialty-points li::before {
  content: '';
  position: absolute; left: 0; top: 0.55em;
  width: 5px; height: 5px; border-radius: 50%;
}
.cta-specialty-card--rose .cta-specialty-points li::before { background: var(--pink); }
.cta-specialty-card--teal .cta-specialty-points li::before { background: var(--cyan-mid); }
.cta-specialty-card--gold .cta-specialty-points li::before { background: var(--gold); }
.cta-specialty-btn {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 16px; border-radius: 50px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s var(--ease);
}
.cta-specialty-btn--rose { background: var(--pink); color: white; box-shadow: var(--shadow-btn); }
.cta-specialty-btn--rose:hover { background: var(--pink-bright); transform: translateY(-1px); color: white; }
.cta-specialty-btn--teal { background: var(--cyan); color: white; box-shadow: 0 4px 18px rgba(0,200,224,0.3); }
.cta-specialty-btn--teal:hover { background: var(--cyan-mid); transform: translateY(-1px); color: white; }
.cta-specialty-btn--gold { background: transparent; color: var(--gold); border: 1.5px solid rgba(176,125,42,0.35); }
.cta-specialty-btn--gold:hover { background: rgba(176,125,42,0.08); border-color: var(--gold); color: var(--gold); }
.cta-hours {
  display: inline-flex; gap: 28px; padding: 16px 36px;
  background: var(--bg-lift); border: 1px solid var(--divider); border-radius: 50px;
  box-shadow: var(--shadow-sm); flex-wrap: wrap; justify-content: center; position: relative;
}
.cta-hours--card {
  width: 100%;
  gap: 0;
  padding: 11px 10px;
  margin-bottom: 0;
  border-radius: 50px;
}
.cta-hours--card .cta-hour-item {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 0 5px;
}
.cta-hours--card .cta-hour-item .time {
  font-size: clamp(0.74rem, 1.65vw, 0.95rem);
  line-height: 1.25;
}
.cta-hours--card .cta-hour-item .slot {
  font-size: 0.54rem;
  letter-spacing: 0.06em;
  margin-top: 1px;
}
.cta-hours--card .cta-hours-divider {
  height: 22px;
  align-self: center;
  margin: 0 1px;
  flex-shrink: 0;
}
.cta-hours-note {
  margin: 6px 0 0;
  text-align: center;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
}
.cta-hours-divider { width: 1px; background: var(--divider); height: 28px; flex-shrink: 0; }
.cta-hour-item .time { font-family: var(--font-d); font-size: 1.1rem; font-weight: 500; color: var(--ink); }
.cta-hour-item .slot { font-size: 0.61rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; font-weight: 500; }
.cta-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; margin-top: 4px; }
.btn-outline--whatsapp { border-color: rgba(37,211,102,0.4); color: #16a34a; }
.btn-outline--whatsapp:hover { border-color: #25d366; color: #15803d; background: rgba(37,211,102,0.06); }

/* ══════════════════════════════════════════════════
   BADGE STRIP
══════════════════════════════════════════════════ */
.badge-strip { display: flex; gap: 9px; flex-wrap: wrap; align-items: center; padding: 24px 0; }
.badge { display: inline-flex; align-items: center; gap: 7px; padding: 6px 13px; border: 1px solid var(--divider); border-radius: 28px; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); background: var(--bg-lift); transition: all 0.3s; box-shadow: var(--shadow-sm); }
.badge:hover { border-color: rgba(233,30,140,0.25); color: var(--pink); box-shadow: var(--shadow-md); }
.badge .bdot { width: 5px; height: 5px; border-radius: 50%; background: var(--pink); flex-shrink: 0; }
.badge.teal .bdot { background: var(--cyan); }
.badge.teal:hover { border-color: rgba(0,200,224,0.3); color: var(--cyan-mid); }
.badge.gold .bdot { background: var(--gold); }

/* ══════════════════════════════════════════════════
   SERVICES PAGE - ACT VISUALS
══════════════════════════════════════════════════ */
.service-act { position: relative; overflow: hidden; }
.service-act-inner { max-width: 1280px; margin: 0 auto; padding: 96px 8%; display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.service-act-inner.flip { direction: rtl; }
.service-act-inner.flip > * { direction: ltr; }
@media (max-width: 900px) { .service-act-inner { grid-template-columns: 1fr; gap: 50px; } .service-act-inner.flip { direction: ltr; } }
.act-label { font-size: 0.61rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--pink); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.act-label::before { content: ''; width: 16px; height: 1.5px; background: var(--pink); }
.act-label.teal { color: var(--cyan-mid); }
.act-label.teal::before { background: var(--cyan); }
.act-headline { font-family: var(--font-d); font-size: clamp(2rem,4vw,3.4rem); font-weight: 400; color: var(--ink); line-height: 1.06; margin-bottom: 16px; }
.act-headline em { font-style: italic; color: var(--pink); }
.act-story { font-size: 0.88rem; color: var(--muted); line-height: 1.95; font-weight: 300; margin-bottom: 26px; font-style: italic; }
.act-services { display: flex; flex-direction: column; margin-bottom: 30px; }
.act-service-row { display: flex; align-items: center; gap: 13px; padding: 11px 0; border-bottom: 1px solid var(--divider); font-size: 0.79rem; color: var(--muted); transition: color 0.3s; font-weight: 300; }
.act-service-row:hover { color: var(--body); }
.act-service-row::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--pink); flex-shrink: 0; }
.act-service-row.teal::before { background: var(--cyan); }
/* Blob visual on light bg */
.act-visual { position: relative; }
.act-blob { width: 100%; padding-bottom: 90%; position: relative; border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; animation: blobMorph 11s ease-in-out infinite; }
.act-blob-1 { background: radial-gradient(circle at 40% 40%, rgba(233,30,140,0.10), rgba(233,30,140,0.03) 60%, transparent); }
.act-blob-2 { background: radial-gradient(circle at 60% 40%, rgba(0,200,224,0.09), rgba(0,200,224,0.02) 60%, transparent); border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%; }
.act-blob-3 { background: radial-gradient(circle at 50% 50%, rgba(176,125,42,0.08), rgba(176,125,42,0.02) 60%, transparent); border-radius: 50% 50% 40% 60% / 30% 70% 40% 60%; }
.act-blob-4 { background: radial-gradient(circle at 40% 60%, rgba(233,30,140,0.08), rgba(0,200,224,0.04) 60%, transparent); border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%; }
@keyframes blobMorph { 0%,100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; } 25% { border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%; } 50% { border-radius: 50% 50% 30% 70% / 40% 60% 50% 50%; } 75% { border-radius: 40% 60% 60% 40% / 70% 30% 60% 40%; } }
.act-blob-svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: clamp(64px,8vw,100px); animation: cvFloat 6s ease-in-out infinite; }
.act-blob-svg svg { width: 100%; stroke: rgba(233,30,140,0.6); fill: rgba(233,30,140,0.06); stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.act-blob-svg.teal svg { stroke: rgba(0,168,190,0.6); fill: rgba(0,200,224,0.06); }

/* ══════════════════════════════════════════════════
   OBG SERVICE PAGE
══════════════════════════════════════════════════ */
.obg-hero {
  min-height: auto;
  flex-direction: column;
  align-items: stretch;
  padding: 130px 8% clamp(36px, 4.5vw, 48px);
}
.obg-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
  column-gap: clamp(28px, 4.5vw, 52px);
  align-items: start;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.obg-hero .act-story { margin-bottom: 14px; font-size: 0.84rem; }
.obg-hero-body {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 18px;
  max-width: 520px;
}
.obg-hero-link {
  font-size: 0.8rem;
  color: var(--pink);
  text-decoration: none;
}
.obg-hero-link:hover { color: var(--ink); }
.obg-hero-aside .about-quote-callout--aside { margin-top: 0; }
.obg-hero-quote-note {
  font-family: var(--font-b);
  font-size: 0.78rem !important;
  font-style: normal !important;
  font-weight: 300;
  color: var(--muted);
  margin-top: 10px !important;
  line-height: 1.65;
}
.obg-hero-phases {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: clamp(28px, 3.5vw, 40px) auto 0;
  padding-top: clamp(20px, 2.5vw, 28px);
  border-top: 1px solid rgba(233,30,140,0.1);
}
.obg-hero-phases .motherhood-journey-eyebrow {
  margin-bottom: 18px;
  text-align: left;
}
.journey-timeline--obg { justify-content: center; padding-top: 12px; padding-bottom: 4px; }
.journey-timeline--obg .jtl-step {
  flex: 1 1 0;
  min-width: min(100%, 180px);
  max-width: 320px;
}
.journey-timeline--obg .jtl-sub { font-size: 0.68rem; line-height: 1.45; }
.obg-quote-by {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 14px;
  padding-left: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  line-height: 1.5;
  max-width: 100%;
  word-wrap: break-word;
}
.about-quote-callout--aside cite.obg-quote-by {
  padding-right: 4px;
  padding-bottom: 2px;
}
.obg-services-chapter .chapter-inner--breath {
  padding-top: clamp(28px, 3.5vw, 40px);
  padding-bottom: clamp(28px, 3.5vw, 40px);
}
.obg-services-intro { margin-bottom: clamp(24px, 3vw, 32px); }
.obg-services-intro .chp-headline { margin-bottom: 0; }
.obg-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 32px) clamp(28px, 4vw, 44px);
}
.obg-catalog-block {
  padding: clamp(16px, 2vw, 22px) 0 0;
  border-top: 1px solid var(--divider);
}
.obg-act-services { margin-bottom: 0; }
.obg-act-services .act-service-row { padding: 8px 0; font-size: 0.76rem; }
.obg-catalog-head {
  font-family: var(--font-d);
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 10px;
}
.obg-catalog-block .act-label { margin-bottom: 6px; }
.obg-service-row-nested {
  flex-wrap: wrap;
  background: rgba(233,30,140,0.04);
  border-radius: 10px;
  padding: 10px 12px !important;
  margin-top: 2px;
  border-bottom: none !important;
}
.obg-service-row-nested::before { background: var(--gold) !important; }
.obg-nested-label {
  display: block;
  width: 100%;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.obg-service-row-nested a {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.obg-service-row-nested a:hover { color: var(--ink); }
.obg-catalog-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 3.5vw, 36px);
  padding-top: clamp(24px, 3vw, 28px);
  border-top: 1px solid var(--divider);
}
@media (max-width: 900px) {
  .obg-hero { padding-top: 120px; }
  .obg-hero-inner { grid-template-columns: 1fr; }
  .obg-hero-aside { order: -1; }
  .obg-hero-phases .motherhood-journey-eyebrow { text-align: center; }
  .obg-catalog-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 600px) {
  .obg-hero h1 { font-size: clamp(2.2rem, 9vw, 2.8rem); }
}

/* Kidney service page — teal variant of OBG layout */
.kidney-hero-eyebrow { color: var(--cyan-mid) !important; }
.kidney-hero-eyebrow::before { background: var(--cyan) !important; }
.kidney-hero h1 em { color: var(--cyan-mid); }
.kidney-hero-link { color: var(--cyan-mid); }
.kidney-hero-link:hover { color: var(--ink); }
.kidney-hero-phases { border-top-color: rgba(0,200,224,0.12); }
.kidney-phases-eyebrow { color: var(--cyan-mid); }
.kidney-quote-by { color: var(--cyan-mid); }
.kidney-services-chapter .chp-headline em.teal { font-style: italic; color: var(--cyan-mid); }
.journey-timeline--kidney .jtl-dot:not(.jtl-dot--teal) {
  border-color: rgba(0,200,224,0.22);
  color: var(--cyan-mid);
}

/* ══════════════════════════════════════════════════
   DOWNLOADS
══════════════════════════════════════════════════ */
.dl-category { margin-bottom: 60px; }
.dl-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.dl-category--column {
  margin-bottom: 0;
}
.dl-grid--stack {
  grid-template-columns: 1fr;
}
@media (max-width: 900px) {
  .dl-columns {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .dl-category--column:last-child {
    margin-bottom: 0;
  }
}
.dl-category-header { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; padding-bottom: 16px; border-bottom: 1px solid var(--divider); }
.dl-category-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(233,30,140,0.18); background: var(--pink-dim); }
.dl-category-icon svg { width: 22px; height: 22px; stroke: var(--pink); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.dl-category-icon.teal { border-color: rgba(0,200,224,0.2); background: var(--cyan-dim); }
.dl-category-icon.teal svg { stroke: var(--cyan-mid); }
.dl-category-header h2 { font-family: var(--font-d); font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 400; color: var(--ink); line-height: 1.1; letter-spacing: -0.02em; }
.dl-category-header p { font-size: 0.74rem; color: var(--muted); margin-top: 3px; font-weight: 300; }
.dl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 14px; }
.dl-card { padding: 24px 20px; border: 1px solid var(--divider); border-radius: 16px; background: var(--bg-lift); display: flex; flex-direction: column; gap: 10px; transition: all 0.35s; position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.dl-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--pink), rgba(233,30,140,0.4)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.dl-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(233,30,140,0.15); }
.dl-card:hover::before { transform: scaleX(1); }
.dl-card.teal-card::before { background: linear-gradient(90deg, var(--cyan), rgba(0,200,224,0.4)); }
.dl-card.teal-card:hover { border-color: rgba(0,200,224,0.2); }
.dl-card-icon { width: 30px; height: 30px; }
.dl-card-icon svg { width: 100%; stroke: var(--pink); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.dl-card.teal-card .dl-card-icon svg { stroke: var(--cyan-mid); }
.dl-card h4 { font-family: var(--font-d); font-size: 0.95rem; font-weight: 500; color: var(--ink); line-height: 1.35; }
.dl-card p { font-size: 0.74rem; color: var(--muted); line-height: 1.6; flex: 1; font-weight: 300; }
.dl-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--pink); border: 1.5px solid rgba(233,30,140,0.22); padding: 6px 13px; border-radius: 20px; align-self: flex-start; transition: all 0.3s; }
.dl-btn:hover { background: var(--pink); color: white; }
.dl-btn.teal { color: var(--cyan-mid); border-color: rgba(0,200,224,0.25); }
.dl-btn.teal:hover { background: var(--cyan); color: white; }
.newsletter-bar { padding: 44px 48px; background: var(--bg-lift); border: 1px solid var(--divider); border-radius: 20px; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.newsletter-bar h3 { font-family: var(--font-d); font-size: 1.8rem; font-weight: 400; color: var(--ink); }
.newsletter-bar h3 em { font-style: italic; color: var(--pink); }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-input { background: var(--bg); border: 1.5px solid var(--divider); border-radius: 50px; padding: 11px 22px; font-family: var(--font-b); font-size: 0.85rem; color: var(--body); outline: none; width: 240px; transition: border-color 0.3s; }
.newsletter-input:focus { border-color: var(--pink); }
.newsletter-input::placeholder { color: var(--whisper); }

/* Patient info — Watch & Follow (YouTube + Instagram) */
.patient-social {
  padding: clamp(48px, 6vw, 72px) 8%;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(233,30,140,0.06), transparent 55%),
    radial-gradient(ellipse 60% 45% at 92% 100%, rgba(0,200,224,0.07), transparent 52%),
    var(--bg-soft);
}
.patient-social-inner { max-width: 1100px; margin: 0 auto; }
.patient-social-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto clamp(32px, 4vw, 44px);
}
.patient-social-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.patient-social-eyebrow-line {
  width: 20px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
}
.patient-social-title {
  font-family: var(--font-d);
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.patient-social-title em { font-style: italic; color: var(--cyan-mid); }
.patient-social-lead {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}
.patient-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 20px);
  align-items: stretch;
}
@media (max-width: 820px) {
  .patient-social-grid { grid-template-columns: 1fr; }
}
.patient-social-panel {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(45,32,64,0.07);
  border-radius: 18px;
  box-shadow: 0 10px 36px rgba(45,32,64,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.patient-social-panel--yt { border-top: 3px solid var(--pink); }
.patient-social-panel--ig { border-top: 3px solid var(--cyan-mid); }
.patient-social-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(45,32,64,0.06);
}
.patient-social-panel-head h3 {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.patient-social-panel-head a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
}
.patient-social-panel--yt .patient-social-panel-head a:hover { color: var(--pink); }
.patient-social-panel--ig .patient-social-panel-head a:hover { color: var(--cyan-mid); }
.patient-social-panel-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.patient-social-panel-icon svg { width: 18px; height: 18px; }
.patient-social-panel-icon--yt {
  color: var(--pink);
  background: var(--pink-dim);
  border: 1px solid rgba(233,30,140,0.12);
}
.patient-social-panel-icon--ig {
  color: var(--cyan-mid);
  background: var(--cyan-dim);
  border: 1px solid rgba(0,200,224,0.14);
}
.patient-social-feed {
  padding: 14px 16px 18px;
  flex: 1;
  min-height: 280px;
}
.patient-social-feed--yt {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.patient-social-yt-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.patient-social-yt-card:hover {
  background: rgba(233,30,140,0.04);
  border-color: rgba(233,30,140,0.1);
  transform: translateX(2px);
}
.patient-social-yt-thumb {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--bg-mid);
}
.patient-social-yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.patient-social-yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45,32,64,0.22);
  transition: background 0.25s;
}
.patient-social-yt-play svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}
.patient-social-yt-card:hover .patient-social-yt-play { background: rgba(233,30,140,0.35); }
.patient-social-yt-title {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--ink-mid);
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.patient-social-ig-fallback {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  min-height: 240px;
  padding: 8px 4px;
}
.patient-social-ig-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.patient-social-ig-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cyan-mid);
  background: linear-gradient(135deg, rgba(233,30,140,0.12), rgba(0,200,224,0.14));
  border: 2px solid rgba(0,200,224,0.22);
}
.patient-social-ig-handle {
  display: block;
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 3px;
}
.patient-social-ig-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.45;
}
.patient-social-ig-note {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 320px;
}
.patient-social-ig-btn {
  font-size: 0.78rem;
  padding: 10px 20px;
}
.patient-social-empty {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  padding: 40px 12px;
}
@media (max-width: 480px) {
  .patient-social-yt-card { grid-template-columns: 96px 1fr; gap: 10px; }
}

/* ══════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: flex-start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-info-block { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--divider); }
.contact-info-block:last-of-type { border-bottom: none; }
.cib-icon { width: 40px; height: 40px; min-width: 40px; border-radius: 10px; background: var(--pink-dim); border: 1px solid rgba(233,30,140,0.15); display: flex; align-items: center; justify-content: center; }
.cib-icon svg { width: 18px; stroke: var(--pink); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.cib-icon.teal { background: var(--cyan-dim); border-color: rgba(0,200,224,0.18); }
.cib-icon.teal svg { stroke: var(--cyan-mid); }
.cib-label { font-size: 0.57rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--pink); margin-bottom: 5px; }
.cib-label.teal { color: var(--cyan-mid); }
.cib-value { font-size: 0.84rem; color: var(--body); line-height: 1.65; font-weight: 300; }
.cib-value a { transition: color 0.3s; }
.cib-value a:hover { color: var(--pink); }
.hours-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.hour-item .t { font-family: var(--font-d); font-size: 1rem; color: var(--ink); }
.hour-item .l { font-size: 0.64rem; color: var(--muted); font-weight: 300; }
.contact-form-card { background: var(--bg-lift); border: 1px solid var(--divider); border-radius: 24px; padding: 48px 42px; position: relative; overflow: hidden; box-shadow: var(--shadow-md); }
.contact-form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--pink), var(--cyan), var(--pink)); }
.form-title { font-family: var(--font-d); font-size: 2rem; font-weight: 400; color: var(--ink); margin-bottom: 6px; }
.form-title em { font-style: italic; color: var(--pink); }
.form-sub { font-size: 0.77rem; color: var(--muted); margin-bottom: 34px; line-height: 1.7; font-weight: 300; }
.fg { margin-bottom: 24px; }
.fg label { display: block; font-size: 0.57rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.fg input, .fg select, .fg textarea { width: 100%; background: transparent; border: none; border-bottom: 1.5px solid var(--divider); padding: 9px 0; font-family: var(--font-b); font-size: 0.88rem; color: var(--body); outline: none; transition: border-color 0.3s; cursor: text; font-weight: 300; }
.fg select { cursor: pointer; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--pink); }
.fg select option { background: white; color: var(--body); }
.fg textarea { resize: vertical; min-height: 80px; }
.fg input::placeholder, .fg textarea::placeholder { color: var(--whisper); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.btn-submit { width: 100%; padding: 14px; background: var(--pink); color: white; border: none; border-radius: 50px; font-family: var(--font-b); font-size: 0.84rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; box-shadow: var(--shadow-btn); transition: all 0.4s; margin-top: 6px; cursor: pointer; }
.btn-submit:hover { background: var(--pink-bright); box-shadow: 0 8px 32px rgba(233,30,140,0.45); transform: translateY(-2px); }
.success-msg { display: none; text-align: center; padding: 40px 20px; }
.success-msg .s-icon svg { width: 48px; stroke: var(--pink); fill: rgba(233,30,140,0.08); margin: 0 auto 16px; }
.success-msg h3 { font-family: var(--font-d); font-size: 1.8rem; font-weight: 400; color: var(--ink); margin-bottom: 10px; }
.success-msg p { font-size: 0.84rem; color: var(--muted); line-height: 1.8; font-weight: 300; }
.map-embed { margin-top: 32px; border-radius: 18px; overflow: hidden; height: 220px; background: var(--bg-soft); border: 1px solid var(--divider); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.map-embed svg { width: 36px; stroke: var(--pink); fill: none; stroke-width: 1.3; }
.map-embed p { font-size: 0.77rem; color: var(--muted); font-weight: 300; text-align: center; }
.faq-items { display: flex; flex-direction: column; }
.faq-row { padding: 24px 0; border-bottom: 1px solid var(--divider); display: grid; grid-template-columns: 1fr 1.5fr; gap: 36px; align-items: start; transition: padding-left 0.3s; }
.faq-row:last-child { border-bottom: none; }
.faq-row:hover { padding-left: 6px; }
@media (max-width: 768px) { .faq-row { grid-template-columns: 1fr; gap: 8px; } }
.faq-q { font-family: var(--font-d); font-size: 1rem; font-weight: 500; color: var(--ink); line-height: 1.45; }
.faq-a { font-size: 0.77rem; color: var(--muted); line-height: 1.85; font-weight: 300; }

/* ══════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════ */
.rose-italic { font-style: italic; color: var(--pink); font-weight: 400; }

.chapter-inner--breath {
  max-width: 1120px;
  padding: clamp(52px, 9vw, 92px) 8%;
}

/* Origin · “Where we come from” - airy split, quote boxed left */
.about-origin {
  background:
    radial-gradient(ellipse 80% 55% at 12% 30%, rgba(233,30,140,0.07), transparent 55%),
    radial-gradient(ellipse 60% 50% at 88% 80%, rgba(0,200,224,0.05), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.5) 0%, var(--bg-soft) 100%);
}
.about-values {
  background:
    radial-gradient(ellipse 70% 45% at 90% 12%, rgba(0,200,224,0.06), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, #faf9f8 100%);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  column-gap: clamp(32px, 5.5vw, 72px);
  align-items: start;
}
.about-story-aside {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-story .story-text--breath {
  gap: clamp(14px, 2.2vw, 22px);
  padding-top: 4px;
  padding-bottom: 0;
}
.about-quote-callout--aside {
  margin-top: clamp(18px, 2.8vw, 26px);
  padding: 18px 18px 20px 22px;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(233,30,140,0.07), 0 2px 8px rgba(45,32,64,0.04);
}
.about-quote-callout--aside .about-quote-callout-mark {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  top: 4px;
  left: 10px;
}
.about-quote-callout--aside p {
  font-size: clamp(0.88rem, 1.35vw, 1.02rem);
  line-height: 1.58;
  margin-top: 6px;
  padding-left: 4px;
}
@media (max-width: 900px) {
  .about-story {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .about-quote-callout--aside {
    margin-top: 20px;
    padding: 16px 16px 18px 20px;
  }
  .about-story .story-text--breath {
    margin-top: 22px;
    padding-top: 22px;
    gap: 16px;
  }
}

.about-kicker {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.about-kicker--inline {
  margin-bottom: 14px;
  align-items: center;
}
.about-kicker-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  background: linear-gradient(145deg, rgba(255,255,255,0.95), var(--pink-dim));
  border: 1px solid rgba(233,30,140,0.12);
  box-shadow: var(--shadow-sm);
}
.about-kicker-icon svg { width: 22px; height: 22px; }
.about-kicker-icon--teal {
  color: var(--cyan-mid);
  background: linear-gradient(145deg, #fff, var(--cyan-dim));
  border-color: rgba(0,200,224,0.14);
}
.about-kicker-text { display: flex; flex-direction: column; gap: 4px; padding-top: 2px; }
.about-kicker--inline .chp-tag { margin: 0; }

.about-aside-heading {
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  margin-bottom: 0;
  line-height: 1.08;
}
.about-quote-callout {
  position: relative;
  margin: 0;
  padding: 26px 24px 28px 28px;
  border-radius: 20px;
  background: linear-gradient(145deg, #fffefb 0%, rgba(253,246,251,1) 50%, rgba(255,252,253,1) 100%);
  border: 1px solid rgba(233,30,140,0.13);
  box-shadow: 0 18px 48px rgba(233,30,140,0.08), 0 2px 8px rgba(45,32,64,0.04);
}
.about-quote-callout--teal {
  background: linear-gradient(145deg, #fdffff 0%, rgba(238,251,253,1) 55%, #fff 100%);
  border-color: rgba(0,200,224,0.16);
  box-shadow: 0 18px 48px rgba(0,200,224,0.07), 0 2px 8px rgba(45,32,64,0.04);
}
.about-quote-callout-mark {
  position: absolute;
  top: 8px;
  left: 14px;
  font-family: var(--font-d);
  font-size: 4.2rem;
  line-height: 1;
  color: rgba(233,30,140,0.14);
  font-weight: 600;
  pointer-events: none;
}
.about-quote-callout p {
  position: relative;
  z-index: 1;
  font-family: var(--font-d);
  font-size: clamp(1.05rem, 1.85vw, 1.35rem);
  font-style: italic;
  font-weight: 450;
  color: var(--ink-mid);
  line-height: 1.62;
  margin: 10px 0 0;
  padding-left: 8px;
}
.about-quote-callout-label {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan-mid);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.about-quote-callout--teal p {
  margin-top: 14px;
  font-size: clamp(1rem, 1.65vw, 1.22rem);
}

.story-text p {
  font-size: 0.9rem;
  color: rgba(61,49,86,0.78);
  line-height: 1.88;
  margin-bottom: 0;
  font-weight: 350;
}
.story-text--breath {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3.5vw, 32px);
  padding: 8px 0 12px 4px;
  border-left: 1px solid rgba(233,30,140,0.08);
  padding-left: clamp(20px, 3vw, 36px);
}
@media (max-width: 900px) {
  .story-text--breath {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(233,30,140,0.08);
    padding-top: 28px;
  }
}
.story-text p.lead { font-family: var(--font-d); font-size: clamp(1rem,1.8vw,1.25rem); color: var(--ink-mid); font-style: italic; font-weight: 400; line-height: 1.6; }
.story-text--breath strong { color: var(--body); font-weight: 650; }

/* Values - vision box left · icon cards right */
.about-values-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: clamp(36px, 5.5vw, 80px);
  align-items: start;
}
@media (max-width: 980px) {
  .about-values-shell { grid-template-columns: 1fr; gap: 44px; }
}

.about-value-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 22px);
}
@media (max-width: 640px) {
  .about-value-cards { grid-template-columns: 1fr; }
}
.value-card {
  padding: 22px 20px 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(45,32,64,0.06);
  box-shadow: 0 8px 28px rgba(45,32,64,0.04);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(233,30,140,0.08);
  border-color: rgba(233,30,140,0.12);
}
.value-card--span {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  gap: clamp(14px, 2.5vw, 22px);
  align-items: flex-start;
}
.value-card--span .value-card-icon { margin-bottom: 0; flex-shrink: 0; }
@media (max-width: 480px) {
  .value-card--span {
    flex-direction: column;
  }
  .value-card--span .value-card-icon { margin-bottom: 12px; }
}

.value-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.value-card-icon svg { width: 22px; height: 22px; }
.value-card-icon--rose {
  color: var(--pink);
  background: var(--pink-dim);
  border: 1px solid rgba(233,30,140,0.12);
}
.value-card-icon--teal {
  color: var(--cyan-mid);
  background: var(--cyan-dim);
  border: 1px solid rgba(0,200,224,0.15);
}

.value-card-title {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.value-card-text {
  font-size: 0.8rem;
  color: rgba(61,49,86,0.72);
  line-height: 1.65;
  font-weight: 350;
}

/* Doctor watermark (replaces numeric bg on About) */
.doc-panel-watermark {
  position: absolute;
  bottom: -6%;
  right: -5%;
  width: min(200px, 42%);
  color: var(--pink);
  pointer-events: none;
}
.doc-panel-watermark svg {
  width: 100%;
  height: auto;
  display: block;
}
.doc-panel-watermark--teal { color: var(--cyan-mid); }

.about-doctors-intro,
.about-team-intro,
.about-affil-intro {
  max-width: 620px;
  margin-bottom: clamp(44px, 6vw, 72px);
}
.about-doctors-intro { margin-inline: auto; text-align: center; }
.about-doctors-intro .about-kicker { justify-content: center; }
.about-doctors-intro__head { margin-top: 8px; }
.about-affil-intro__head { margin-top: 8px; }
.about-team-intro__head { margin-top: 10px; }
.about-team-intro__lead { margin-top: 14px; }

.about-team .team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.8vw, 28px);
}
@media (max-width: 900px) and (min-width: 521px) {
  .about-team .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .about-team .team-grid {
    grid-template-columns: 1fr;
  }
}

.about-team-support {
  margin-top: clamp(32px, 4.5vw, 52px);
}
.about-team-support-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.about-team-support-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 32px);
  padding: clamp(26px, 3.5vw, 38px) clamp(22px, 3.2vw, 42px);
  border-radius: 20px;
  border: 1px solid rgba(233,30,140,0.12);
  background:
    linear-gradient(135deg, var(--bg-lift) 0%, rgba(233,30,140,0.04) 48%, rgba(255,189,168,0.08) 100%);
  box-shadow: 0 4px 28px rgba(233,30,140,0.07);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.35s;
}
.about-team-support-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233,30,140,0.22);
  box-shadow: 0 18px 48px rgba(233,30,140,0.12);
}
.about-team-support-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2.5px solid rgba(233,30,140,0.18);
  box-shadow: 0 6px 20px rgba(233,30,140,0.12);
  background: var(--bg-soft);
}
.about-team-support-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}
.about-team-support-name {
  font-family: var(--font-d);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.about-team-support-role {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--rose);
  margin-bottom: 8px;
}
.about-team-support-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 56ch;
  margin: 0;
}
.about-team-support-link {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rose);
  white-space: nowrap;
  transition: color 0.25s, transform 0.25s;
}
.about-team-support-link:hover {
  color: var(--pink);
  transform: translateX(3px);
}
@media (max-width: 860px) {
  .about-team-support-card {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .about-team-support-link {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 4px;
  }
}
@media (max-width: 520px) {
  .about-team-support-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .about-team-support-photo {
    width: 72px;
    height: 72px;
  }
}

/* Moving 1px gradient frame + strong hover on team cards */
.about-team .team-cell {
  position: relative;
  border: none;
  min-height: 252px;
  padding: clamp(28px, 3.2vw, 38px) clamp(22px, 2.5vw, 30px);
  border-radius: 20px;
  background: var(--bg-lift);
  box-shadow: 0 2px 18px rgba(45,32,64,0.06);
  overflow: visible;
  transition:
    transform 0.45s cubic-bezier(0.33, 1.15, 0.55, 1),
    box-shadow 0.45s var(--ease-out),
    background 0.35s var(--ease);
}
.team-cell-photo {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  flex-shrink: 0;
  border: 2.5px solid rgba(233,30,140,0.16);
  box-shadow: 0 6px 22px rgba(233,30,140,0.14);
  background: var(--bg-soft);
  transition: transform 0.45s cubic-bezier(0.33, 1.15, 0.55, 1), box-shadow 0.35s;
}
.team-cell-photo--teal {
  border-color: rgba(0,200,224,0.22);
  box-shadow: 0 6px 22px rgba(0,200,224,0.16);
}
.team-cell-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}
.about-team .team-cell:hover .team-cell-photo {
  transform: scale(1.04);
}
.about-team .team-cell:hover .team-cell-photo--teal {
  box-shadow: 0 8px 28px rgba(0,200,224,0.22);
}
.about-team .team-cell:hover .team-cell-photo:not(.team-cell-photo--teal) {
  box-shadow: 0 8px 28px rgba(233,30,140,0.2);
}
.about-team .team-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    125deg,
    rgba(233,30,140,0.45),
    var(--pink-bright),
    rgba(255,255,255,0.35),
    var(--cyan),
    rgba(0,200,224,0.55),
    var(--pink-mid),
    rgba(247,46,160,0.4)
  );
  background-size: 320% 320%;
  animation: aboutTeamBorderFlow 5.5s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}
.about-team .team-cell > * {
  position: relative;
  z-index: 1;
  transition:
    transform 0.4s cubic-bezier(0.33, 1.15, 0.55, 1),
    font-weight 0.2s ease,
    color 0.3s ease;
}
.about-team .team-cell h4 {
  font-family: var(--font-d);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.about-team .team-cell p {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}
.about-team .team-cell:hover {
  transform: translateY(-9px) scale(1.025);
  background: #fff;
  box-shadow:
    0 28px 64px rgba(233,30,140,0.15),
    0 12px 32px rgba(0,200,224,0.1),
    0 4px 12px rgba(45,32,64,0.06);
}
.about-team .team-cell:hover::before {
  opacity: 1;
  animation-duration: 2.1s;
  padding: 2px;
}
.about-team .team-cell:hover h4 {
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.about-team .team-cell:hover p {
  font-weight: 600;
  color: var(--body);
}
@keyframes aboutTeamBorderFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .about-team .team-cell::before {
    animation: none !important;
    opacity: 0.4;
    background-position: 40% 50%;
  }
  .about-team .team-cell:hover {
    transform: none;
  }
  .about-team .team-cell:hover::before {
    padding: 1px;
  }
  .about-team .team-cell:hover .team-cell-photo {
    transform: none;
  }
}

/* Legacy numbered strips (still available if reused elsewhere) */
.values-list { display: flex; flex-direction: column; }
.value-strip { display: flex; align-items: flex-start; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--divider); transition: padding-left 0.3s; }
.value-strip:last-child { border-bottom: none; }
.value-strip:hover { padding-left: 6px; }
.value-num { font-family: var(--font-d); font-size: 2.2rem; font-weight: 400; color: transparent; -webkit-text-stroke: 1px rgba(233,30,140,0.22); line-height: 1; min-width: 44px; }
.value-content h4 { font-family: var(--font-d); font-size: 1.1rem; font-weight: 500; color: var(--ink); margin-bottom: 5px; }
.value-content p { font-size: 0.77rem; color: var(--muted); line-height: 1.7; font-weight: 300; }
.affiliations-row { display: flex; gap: 18px; flex-wrap: wrap; }
.affiliation-strip { flex: 1; min-width: 240px; padding: 22px 24px; border: 1px solid var(--divider); border-radius: 16px; display: flex; align-items: flex-start; gap: 14px; transition: all 0.35s; background: var(--bg-lift); box-shadow: var(--shadow-sm); }
.affiliation-strip:hover { border-color: rgba(0,200,224,0.3); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.aff-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--pink-dim);
  border: 1px solid rgba(233,30,140,0.1);
}
.aff-icon--teal {
  background: var(--cyan-dim);
  border-color: rgba(0,200,224,0.14);
}
.aff-icon svg { width: 22px; height: 22px; stroke: var(--pink-mid); fill: none; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.aff-icon--teal svg { stroke: var(--cyan-mid); }
.aff-text h4 { font-family: var(--font-d); font-size: 0.98rem; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.aff-text p { font-size: 0.73rem; color: var(--muted); line-height: 1.55; font-weight: 300; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(175px,1fr)); gap: 14px; }
.team-cell { padding: 24px 20px; border: 1px solid var(--divider); border-radius: 16px; background: var(--bg-lift); transition: all 0.3s; box-shadow: var(--shadow-sm); }
.team-cell:hover { box-shadow: var(--shadow-md); border-color: rgba(233,30,140,0.14); transform: translateY(-3px); }
.team-cell-icon { width: 30px; height: 30px; margin-bottom: 10px; }
.team-cell-icon svg { width: 100%; height: 100%; stroke: var(--pink); fill: none; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.team-cell-icon--teal svg { stroke: var(--cyan-mid); }
.team-cell h4 { font-family: var(--font-d); font-size: 0.93rem; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.team-cell p { font-size: 0.71rem; color: var(--muted); line-height: 1.55; font-weight: 300; }

/* ══════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════ */
.page-hero { min-height: 50vh; display: flex; align-items: flex-end; padding: 150px 8% 72px; position: relative; overflow: hidden; }
.page-hero--split {
  align-items: center;
  padding: 130px 8% 72px;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, clamp(280px, 38vw, 440px));
  gap: clamp(28px, 4.5vw, 56px);
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.page-hero--split .page-hero-content { max-width: none; }
.page-hero-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(233,30,140,0.1),
    0 8px 24px rgba(20,14,34,0.06);
  border: 1px solid rgba(233,30,140,0.08);
}
.page-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(233,30,140,0.06) 0%, transparent 42%, rgba(0,200,224,0.05) 100%);
}
.page-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-content { position: relative; z-index: 2; max-width: 760px; }
.page-hero-eyebrow { font-size: 0.61rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--pink); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.page-hero-eyebrow::before { content: ''; width: 22px; height: 1.5px; background: var(--pink); }
.page-hero h1 { font-family: var(--font-d); font-size: clamp(2.8rem,5.5vw,4.8rem); font-weight: 400; color: var(--ink); line-height: 1.08; margin-bottom: 18px; letter-spacing: -0.015em; }
.page-hero h1 em { font-style: italic; color: var(--pink); }
.page-hero p { font-size: 0.95rem; color: var(--muted); max-width: 540px; line-height: 1.85; font-weight: 300; }
.page-hero--split p { max-width: none; }
@media (max-width: 960px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .page-hero-media { max-width: min(100%, 520px); margin: 0 auto; }
}
@media (max-width: 480px) {
  .page-hero--split h1 { font-size: clamp(2.2rem, 9vw, 2.8rem); }
  .page-hero-media { border-radius: 14px; }
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer { background: var(--ink); color: rgba(237,233,228,0.7); padding: 72px 8% 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo-link {
  display: inline-block;
  margin-bottom: 14px;
  line-height: 0;
  max-width: 100%;
  padding: 12px 20px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-lift) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 8px 28px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.85);
  transition: box-shadow 0.3s, transform 0.3s;
}
.footer-logo-link:hover {
  box-shadow:
    0 10px 32px rgba(0,0,0,0.26),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transform: translateY(-1px);
}
.footer-logo {
  height: 72px;
  width: auto;
  max-width: min(100%, 340px);
  object-fit: contain;
  display: block;
}
.footer-brand-name { font-family: var(--font-d); font-size: 1.8rem; font-weight: 400; color: white; margin-bottom: 4px; }
.footer-brand-tag { font-size: 0.58rem; color: var(--pink); letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 14px; font-weight: 600; }
.footer-brand p { font-size: 0.77rem; color: rgba(237,233,228,0.5); line-height: 1.8; max-width: 250px; margin-bottom: 20px; font-weight: 300; }
.footer-socials { display: flex; gap: 8px; }
.footer-social-link { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(237,233,228,0.12); display: flex; align-items: center; justify-content: center; font-size: 0.76rem; color: rgba(237,233,228,0.4); transition: all 0.3s; }
.footer-social-link:hover { border-color: var(--pink); color: var(--pink); }
.footer-col h5 { font-size: 0.57rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--pink); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.77rem; color: rgba(237,233,228,0.5); transition: color 0.3s; font-weight: 300; }
.footer-col ul li a:hover { color: white; }
.footer-contact-item { display: flex; gap: 8px; font-size: 0.77rem; color: rgba(237,233,228,0.5); margin-bottom: 10px; line-height: 1.55; font-weight: 300; }
.footer-contact-item a:hover { color: var(--pink); }
.footer-bottom { border-top: 1px solid rgba(237,233,228,0.08); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.69rem; color: rgba(237,233,228,0.3); font-weight: 300; }
.footer-bottom a { color: var(--pink); }

/* ══════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }
.reveal-d4 { transition-delay: 0.48s; }
[id] { scroll-margin-top: 50px; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; inset: 0; background: rgba(253,250,247,0.98); flex-direction: column; justify-content: center; align-items: center; gap: 28px; backdrop-filter: blur(20px); z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.9rem !important; color: var(--ink) !important; }
  .nav-dropdown { width: 100%; max-width: min(360px, 88vw); display: flex; flex-direction: column; align-items: center; }
  .nav-dropdown-panel {
    position: static; transform: none; left: auto; top: auto; margin-top: 10px; width: 100%; min-width: 0;
  }
  .nav-dropdown:hover > .nav-dropdown-panel,
  .nav-dropdown:focus-within > .nav-dropdown-panel { opacity: 0; visibility: hidden; }
  .nav-dropdown.open > .nav-dropdown-panel { opacity: 1; visibility: visible; }
  .nav-dropdown-btn { font-size: 0.9rem !important; letter-spacing: 0.08em !important; }
  .nav-dropdown-panel a { color: var(--ink) !important; }
  .nav-dropdown-panel a span { color: var(--muted) !important; }
  .nav-book { width: min(260px, 84vw); justify-content: center; padding: 12px 20px; }
  .nav-hamburger { display: flex; }
  .nav-logo img { height: 58px; }
  .social-rail { display: none; }
  .hero-stats { display: none; }
  .hero-stats.hero-stats--renal {
    display: flex !important;
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 18px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
  }
  .hero-stats.hero-stats--renal .hero-stat-pill { padding: 8px 12px; }
  .hero-stats.hero-stats--renal .hero-stat-pill .num { font-size: 1.05rem; }
  .hero-side-number { display: none; }
  body { padding-bottom: 68px; }
  .hero-body { max-width: 100%; line-height: 1.75; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { justify-content: center; width: 100%; }
  .chapter-inner { padding: 68px 6%; }
  .service-act-inner { padding: 68px 6%; }
  .hero-slide { padding: 88px 6% 80px; }
  .hero-slide--nephrology { padding-top: 92px; padding-bottom: 72px; }
  .hero-carousel-controls { bottom: 64px; gap: 10px; }
  .hero-carousel-arrow { width: 40px; height: 40px; }
  .hero-slide--nephrology .hero-stats--renal { margin-top: 14px; }
  .hero-right-image { position: static; transform: none; width: min(72vw, 320px); margin: 22px auto 0; }
  .hero-right-image--renal { width: min(68vw, 300px); max-height: none; margin-top: 18px; }
  .hero-right-image--renal img { max-height: min(52vh, 360px); }
  .hero-image-ecg { left: -8%; right: -8%; top: 50%; height: 74px; }
  .hero-bottom-flow { height: clamp(96px, 18vw, 150px); opacity: 0.65; }
  .gyno-orbit-image { width: clamp(150px, 52vw, 230px); }
  .page-hero { padding: 120px 6% 56px; }
  .page-hero--split { padding: 120px 6% 56px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .page-hero-media { max-width: min(100%, 480px); margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-strip { padding: 44px 5%; }
  .contact-form-card { padding: 36px 22px; }
  .newsletter-bar { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-input { width: 100%; }
  .doctors-editorial { padding: 0 6% 68px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: clamp(2.5rem,9vw,3.5rem); }
  .hero-headline .line2 { padding-left: 24px; }
  .cta-hours { flex-direction: column; gap: 12px; }
  .cta-hours--card { padding: 12px 14px; border-radius: 18px; }
  .cta-hours--card .cta-hour-item { padding: 3px 0; }
  .cta-hours-divider { display: none; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn-primary, .cta-buttons .btn-outline { justify-content: center; width: 100%; }
  .infra-grid { grid-template-columns: 1fr; }
  .hero-image-ecg { height: 64px; opacity: 0.62; }
}
/* ══════════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════════ */
.gal-page-hero .page-hero-content { max-width: 640px; }
.gal-cinema {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px) 0 clamp(20px, 3vw, 32px);
  background:
    radial-gradient(ellipse 90% 80% at 50% 0%, rgba(233,30,140,0.06), transparent 55%),
    radial-gradient(ellipse 70% 60% at 80% 100%, rgba(0,200,224,0.05), transparent 50%),
    var(--bg-soft);
  border-bottom: 1px solid var(--divider);
}
.gal-cinema::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(20,14,34,0.03) 0px,
    rgba(20,14,34,0.03) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: 0.35;
  z-index: 2;
}
.gal-cinema-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background:
    linear-gradient(90deg, var(--bg-soft) 0%, transparent 12%, transparent 88%, var(--bg-soft) 100%),
    linear-gradient(180deg, rgba(253,250,247,0.85) 0%, transparent 18%, transparent 82%, rgba(253,250,247,0.9) 100%);
}
.gal-cinema-label {
  position: relative;
  z-index: 4;
  text-align: center;
  margin-bottom: clamp(18px, 2.5vw, 26px);
  padding: 0 8%;
}
.gal-cinema-label span {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.gal-cinema-track {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 16px;
  height: 212px;
}
.gal-cinema-track:last-child { margin-bottom: 0; }
.gal-cinema-row {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  gap: 16px;
  animation: galMarqueeLeft 58s linear infinite;
  will-change: transform;
}
.gal-cinema-track--b .gal-cinema-row {
  animation-name: galMarqueeRight;
  animation-duration: 58s;
}
.gal-cinema.is-paused .gal-cinema-row { animation-play-state: paused; }
@keyframes galMarqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes galMarqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.gal-cinema-set {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  height: 100%;
}
.gal-cinema-frame {
  flex-shrink: 0;
  width: 272px;
  height: 204px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 36px rgba(20,14,34,0.12), 0 3px 10px rgba(233,30,140,0.06);
  border: 1px solid rgba(255,255,255,0.72);
  background: var(--bg-mid);
}
.gal-cinema-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(1.03) contrast(1.02);
}

.gal-section {
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5%, 72px) clamp(64px, 8vw, 100px);
  background: var(--bg);
}
.gal-section-head {
  max-width: 720px;
  margin: 0 auto clamp(32px, 4vw, 48px);
  text-align: center;
}
.gal-section-head .chp-tag { margin-bottom: 8px; display: block; }
.gal-section-head h2 {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
}
.gal-section-head h2 em { font-style: italic; color: var(--pink); }
.gal-section-head p {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.gal-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 3.5vw, 40px);
}
.gal-tab {
  appearance: none;
  border: 1px solid var(--divider);
  background: var(--bg-lift);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 999px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.gal-tab:hover { color: var(--ink); border-color: rgba(233,30,140,0.22); }
.gal-tab.is-active {
  color: var(--ink);
  border-color: rgba(233,30,140,0.35);
  background: linear-gradient(135deg, rgba(233,30,140,0.08), rgba(255,255,255,0.95));
  box-shadow: var(--shadow-sm);
}
.gal-tab[data-gal-tab="celebrations"].is-active {
  border-color: rgba(0,200,224,0.35);
  background: linear-gradient(135deg, rgba(0,200,224,0.08), rgba(255,255,255,0.95));
}

.gal-panel { display: none; animation: galPanelIn 0.45s var(--ease-out) both; }
.gal-panel.is-active { display: block; }
@keyframes galPanelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.gal-editorial {
  column-count: 3;
  column-gap: clamp(18px, 2.2vw, 26px);
  max-width: 1180px;
  margin: 0 auto;
}
.gal-cell {
  margin: 0 0 clamp(18px, 2.2vw, 26px);
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}
.gal-cell-btn {
  appearance: none;
  border: none;
  padding: 0;
  width: 100%;
  display: block;
  position: relative;
  cursor: zoom-in;
  border-radius: clamp(12px, 1.2vw, 16px);
  overflow: hidden;
  background: var(--bg-mid);
  box-shadow: 0 10px 32px rgba(20,14,34,0.08), 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.gal-cell--land .gal-cell-btn { aspect-ratio: 4 / 3; }
.gal-cell--port .gal-cell-btn { aspect-ratio: 3 / 4; }
.gal-cell--port-n .gal-cell-btn { aspect-ratio: 9 / 16; }
.gal-cell--hero .gal-cell-btn { aspect-ratio: 3 / 4.2; }
.gal-cell-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,14,34,0.28) 100%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.gal-cell-btn:hover,
.gal-cell-btn:focus-visible {
  transform: translateY(-4px) scale(1.012);
  box-shadow: 0 22px 50px rgba(20,14,34,0.14), 0 6px 18px rgba(233,30,140,0.1);
  outline: none;
}
.gal-cell-btn:hover::after,
.gal-cell-btn:focus-visible::after { opacity: 1; }
.gal-cell-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.gal-cell-zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--ink);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 4px 14px rgba(20,14,34,0.12);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gal-cell-btn:hover .gal-cell-zoom,
.gal-cell-btn:focus-visible .gal-cell-zoom {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.gal-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 32px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.gal-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.gal-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14,10,22,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.gal-lightbox-stage {
  position: relative;
  z-index: 1;
  width: min(96vw, 1200px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.92);
  transition: transform 0.4s var(--ease-out);
}
.gal-lightbox.is-open .gal-lightbox-stage { transform: scale(1); }
.gal-lightbox-img {
  max-width: 100%;
  max-height: calc(92vh - 80px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  animation: galZoomIn 0.45s var(--ease-out) both;
}
@keyframes galZoomIn {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}
.gal-lightbox-meta {
  margin-top: 16px;
  text-align: center;
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.gal-lightbox-caption { display: block; margin-bottom: 6px; }
.gal-lightbox-counter { opacity: 0.55; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; }
.gal-lightbox-close,
.gal-lightbox-nav {
  position: absolute;
  z-index: 2;
  appearance: none;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.gal-lightbox-close {
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  font-size: 1.5rem;
  line-height: 1;
}
.gal-lightbox-close:hover,
.gal-lightbox-nav:hover:not(:disabled) { background: rgba(255,255,255,0.2); }
.gal-lightbox-close:hover { transform: scale(1.05); }
.gal-lightbox-prev { left: clamp(12px, 2vw, 24px); top: 50%; transform: translateY(-50%); }
.gal-lightbox-next { right: clamp(12px, 2vw, 24px); top: 50%; transform: translateY(-50%); }
.gal-lightbox-prev:hover:not(:disabled) { transform: translateY(-50%) scale(1.05); }
.gal-lightbox-next:hover:not(:disabled) { transform: translateY(-50%) scale(1.05); }
.gal-lightbox-nav:disabled { opacity: 0.25; cursor: default; }
body.gal-lightbox-open { overflow: hidden; }

@media (max-width: 900px) {
  .gal-editorial { column-count: 2; }
  .gal-cinema-track { height: 168px; }
  .gal-cinema-frame { width: 224px; height: 168px; }
}
@media (max-width: 600px) {
  .gal-tabs { flex-direction: column; align-items: stretch; }
  .gal-tab { text-align: center; }
  .gal-editorial { column-count: 1; max-width: 480px; }
  .gal-cinema-track { height: 144px; }
  .gal-cinema-frame { width: 192px; height: 144px; }
  .gal-cinema-row, .gal-cinema-set { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

/* ══════════════════════════════════════════════════
   BLOG — INDEX & ARTICLE
══════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 32px);
}
.blog-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-lift);
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.35s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(233,30,140,0.14);
}
.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.blog-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.blog-card:hover .blog-card-media img { transform: scale(1.04); }
.blog-card-media .blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
}
.blog-card-body {
  padding: clamp(20px, 2.8vw, 28px);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.blog-card-meta {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.blog-card-body h2 {
  font-family: var(--font-d);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
  margin: 0;
}
.blog-card-body p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
  margin: 0;
}
.blog-tag {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--divider);
  color: var(--body);
}
.blog-tag--rose { color: var(--rose); border-color: rgba(233,30,140,0.2); background: var(--pink-dim); }
.blog-tag--gold { color: var(--gold); border-color: rgba(176,125,42,0.22); background: var(--gold-dim); }
.blog-read {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-top: 6px;
}

.blog-article-hero {
  position: relative;
  min-height: clamp(320px, 52vh, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.blog-article-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-article-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(32px, 6vw, 72px) clamp(24px, 8%, 10%);
  background: linear-gradient(to top, rgba(20,14,34,0.88) 0%, rgba(20,14,34,0.45) 55%, transparent 100%);
}
.blog-article-hero--rose .blog-article-hero-overlay {
  background: linear-gradient(to top, rgba(20,14,34,0.9) 0%, rgba(233,30,140,0.18) 45%, transparent 100%);
}
.blog-article-hero-inner { max-width: 780px; }
.blog-back {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 16px;
  transition: color 0.25s;
}
.blog-back:hover { color: #fff; }
.blog-article-hero h1 {
  font-family: var(--font-d);
  font-size: clamp(1.75rem, 4.2vw, 3rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 12px 0 14px;
}
.blog-article-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

.blog-article-layout {
  padding: clamp(48px, 7vw, 88px) clamp(20px, 8%, 10%);
  background: var(--bg-soft);
}
.blog-prose {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--body);
  font-weight: 300;
}
.blog-prose .blog-lead {
  font-family: var(--font-d);
  font-size: clamp(1.12rem, 2.2vw, 1.28rem);
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.25em;
}
.blog-prose h2 {
  font-family: var(--font-d);
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  font-weight: 500;
  color: var(--ink);
  margin: 2.2em 0 0.75em;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(233,30,140,0.12);
}
.blog-prose h3 {
  font-family: var(--font-d);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 500;
  color: var(--ink-mid);
  margin: 1.6em 0 0.5em;
}
.blog-prose h4 {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--rose);
  margin: 1.2em 0 0.4em;
}
.blog-prose p { margin: 0 0 1.1em; }
.blog-prose ul {
  margin: 0 0 1.25em;
  padding-left: 1.25em;
}
.blog-prose li {
  margin-bottom: 0.45em;
  padding-left: 0.25em;
}
.blog-prose li::marker { color: var(--rose); }
.blog-figure {
  margin: 2em 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-sm);
}
.blog-figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.blog-figure figcaption {
  padding: 12px 16px;
  font-size: 0.76rem;
  color: var(--muted);
  background: var(--bg-lift);
  line-height: 1.55;
}
.blog-cta-box {
  margin: 2.5em 0;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 20px;
  background: linear-gradient(135deg, var(--bg-lift) 0%, var(--pink-dim) 100%);
  border: 1px solid rgba(233,30,140,0.14);
  text-align: center;
}
.blog-cta-box h3 {
  font-family: var(--font-d);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 10px;
  border: none;
  padding: 0;
}
.blog-cta-box p {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 42ch;
  margin: 0 auto 18px;
  line-height: 1.75;
}
.blog-cta-box .btn-primary { text-decoration: none; }

.blog-more {
  padding: clamp(48px, 6vw, 72px) clamp(20px, 8%, 10%);
  background: var(--bg-mid);
}
.blog-more-inner { max-width: 720px; margin: 0 auto; }
.blog-more-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.blog-more-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: var(--bg-lift);
  border: 1px solid var(--divider);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.blog-more-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-more-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
}
.blog-more-card h3 {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
  margin: 8px 0 6px;
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-more-card { grid-template-columns: 1fr; }
  .blog-more-card img { height: 160px; }
  .blog-prose { font-size: 0.96rem; }
}
