/* =========================================================
   Elegance Cosmetic Gynec — Global Styles
   Brand olive: #636e48
   ========================================================= */

:root {
  --olive: #636e48;
  --olive-dark: #4a5337;
  --olive-deep: #353c25;
  --olive-light: #8a9168;
  --olive-tint: #e9ecd9;
  --cream: #f7f3ea;
  --cream-2: #fbf8f1;
  --blush: #f3e8e4;
  --ink: #232619;
  --ink-2: #4a4d3e;
  --muted: #7a7d6b;
  --line: #e6e2d1;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 14px rgba(35,38,25,.06);
  --shadow-md: 0 18px 40px -18px rgba(35,38,25,.18);
  --shadow-lg: 0 30px 70px -28px rgba(35,38,25,.35);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream-2);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--olive); text-decoration: none; }
a:hover { color: var(--olive-dark); }
button { cursor: pointer; font: inherit; }

.container { width: min(1240px, 92%); margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow-light { color: rgba(255,255,255,.78); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--ink); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(36px, 5vw, 64px); }
h2 { font-size: clamp(28px, 3.6vw, 46px); }
h3 { font-size: clamp(20px, 1.8vw, 24px); }
h2 em, h1 em { font-style: italic; color: var(--olive); font-weight: 500; }

p { margin: 0 0 1em; color: var(--ink-2); }
.lead { font-size: 18px; color: var(--ink-2); }
.muted { color: var(--muted); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--olive); color: #fff; }
.btn-primary:hover { background: var(--olive-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--olive); border-color: var(--olive); }
.btn-outline:hover { background: var(--olive); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { color: var(--olive); }
.btn-light { background: #fff; color: var(--olive); }
.btn-light:hover { background: var(--cream); }
.btn-block { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--olive);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  position: relative;
}
.link-arrow:hover { color: var(--olive-dark); }
.link-arrow::after { content: ""; position: absolute; left: 0; bottom: -3px; height: 1px; width: 0; background: currentColor; transition: width .25s ease; }
.link-arrow:hover::after { width: 100%; }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--olive-deep);
  color: rgba(255,255,255,.85);
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  gap: 18px;
}
.topbar-left, .topbar-right { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.topbar-left span, .topbar-right a { display: inline-flex; gap: 6px; align-items: center; color: rgba(255,255,255,.85); }
.topbar-right a:hover { color: #fff; }
.topbar .dot { opacity: .4; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px -16px rgba(35,38,25,.25); }
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}
.logo { display: flex; flex-direction: column; gap: 0; line-height: 1; }
.logo img { width: 200px; height: auto; }
.logo-tagline {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--olive);
  margin-top: 2px;
  letter-spacing: .06em;
  padding-left: 70px;
}
.primary-nav { flex: 1; }
.primary-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
}
.primary-nav a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.primary-nav a:hover, .primary-nav a.active {
  color: var(--olive);
  background: var(--olive-tint);
}
.has-mega { position: static; }
.mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  width: 320px;
  display: grid;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
/* invisible hover bridge: fills the gap between the nav and the dropdown so the
   menu doesn't close while the mouse travels down to the sub-items */
.has-mega .mega::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 28px;
}
.has-mega:hover .mega,
.has-mega:focus-within .mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--ink);
}
.mega a strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.mega a span { font-size: 12px; color: var(--muted); }
.mega a:hover { background: var(--olive-tint); }

.header-cta { padding: 10px 18px; font-size: 13px; }
.hamburger { display: none; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 10px; background: #fff; flex-direction: column; justify-content: center; align-items: center; gap: 4px; }
.hamburger span { width: 18px; height: 2px; background: var(--ink); transition: transform .2s; border-radius: 2px; }

.mobile-drawer {
  display: none;
  flex-direction: column;
  padding: 8px 5% 20px;
  border-top: 1px solid var(--line);
  background: #fff;
  max-height: calc(100dvh - 92px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.mobile-drawer a {
  padding: 13px 4px;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-drawer a:last-child { border-bottom: 0; }
/* indent the About sub-links so the hierarchy reads clearly on mobile */
.mobile-drawer a[href*="about/dr-ashutosh-shah"],
.mobile-drawer a[href*="about/clinic"],
.mobile-drawer a[href*="about/why-us"] {
  padding-left: 20px;
  font-weight: 400;
  font-size: .95rem;
  color: var(--muted);
}
.mobile-drawer.open { display: flex; }
/* while the drawer is open, hide the floating call/whatsapp buttons so they
   never overlap the menu, and lock body scroll behind it */
body.nav-open { overflow: hidden; }
body.nav-open .float-call,
body.nav-open .float-wa { display: none; }
/* animate the hamburger into a close (X) icon when open */
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ HERO — REF-SITE COMPOSITION ============ */
.hero-ref {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  min-height: 760px;
  display: flex;
  flex-direction: column;
}

.hero-ref-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
  opacity: 0.95;
}

/* Decorative light effects */
.hero-ref-fx {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(50px);
}
.hero-ref-fx-1 {
  width: 380px;
  height: 380px;
  background: rgba(99, 110, 72, 0.18);
  top: -120px;
  left: -100px;
}
.hero-ref-fx-2 {
  width: 460px;
  height: 460px;
  background: rgba(243, 232, 228, 0.55);
  bottom: -120px;
  right: 10%;
}

/* Decorative SVG vector top-left */
.hero-ref-vector {
  position: absolute;
  top: 48px;
  right: 12%;
  width: 120px;
  height: 120px;
  z-index: 2;
  opacity: 0.4;
  animation: spin-slow 28s linear infinite;
}
.hero-ref-vector svg { width: 100%; height: 100%; }
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* Subtle cream-to-transparent wash over the bg image so left text reads */
.hero-ref::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--cream) 0%, rgba(247,243,234,0.97) 32%, rgba(247,243,234,0.55) 52%, rgba(247,243,234,0) 70%);
}

.hero-ref-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 90px 0 60px;
  flex: 1;
}

/* LEFT COPY */
.hero-ref-copy { max-width: 640px; }
.hero-ref-welcome {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--olive);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.hero-ref-title {
  font-family: var(--serif);
  font-weight: 600;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.hr-line-1 {
  display: block;
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.hr-line-2 {
  display: block;
  font-size: clamp(48px, 6.8vw, 96px);
  margin-top: 4px;
  font-weight: 600;
  color: var(--ink);
}
.hr-line-2 em {
  font-style: italic;
  color: var(--olive);
  font-weight: 500;
}
.hero-ref-sub {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--ink-2);
  margin: 0 0 32px;
  max-width: 480px;
  line-height: 1.6;
}
.hero-ref-ctas {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-ref-ghost {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--olive);
  font-weight: 500;
  border-bottom: 1px solid var(--olive);
  padding-bottom: 4px;
  transition: gap .2s ease;
}
.hero-ref-ghost:hover { color: var(--olive-dark); }

/* RIGHT SIDE — floating cards */
.hero-ref-side {
  position: relative;
  min-height: 380px;
}

.hr-card {
  position: absolute;
  top: 30px;
  right: 0;
  width: 260px;
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 30px 70px -24px rgba(35,38,25,.35);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 4;
  animation: floaty 6s ease-in-out infinite;
}
.hr-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 12px;
  display: block;
}
.hr-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 8px 10px;
}
.hr-card-eyebrow {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
}
.hr-card strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  font-style: italic;
  line-height: 1.25;
}

/* Reposition video chip after dr card removal — moved to bottom-left */
.hr-video {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 999px 999px 999px 8px;
  padding: 12px 26px 12px 12px;
  box-shadow: 0 20px 50px -18px rgba(35,38,25,.3);
  z-index: 5;
  text-decoration: none;
  color: var(--ink);
  animation: floaty 6s ease-in-out infinite reverse;
}
.hr-video:hover { color: var(--olive); }
.hr-video-play {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.hr-video-play::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--olive);
  opacity: 0.4;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.hr-video-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
}
.hr-video-text small {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 2px;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* RIBBON — bottom strip with tagline + stats */
.hero-ref-ribbon {
  position: relative;
  z-index: 3;
  background: linear-gradient(90deg, rgba(99,110,72,0.96) 0%, rgba(74,83,55,0.96) 100%);
  color: #fff;
  padding: 28px 0;
}
.hero-ref-ribbon-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  align-items: center;
}
.hero-ref-tag {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  margin: 0;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
}
.hero-ref-tag em { font-style: italic; color: var(--cream); }
.hero-ref-stats {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.hero-ref-stats li {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  line-height: 1.2;
}
.hero-ref-stats span {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 2px;
}

.hero-ref .hero-marquee {
  position: relative;
  z-index: 3;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-ref { min-height: 0; }
  .hero-ref-bg { object-position: center 25%; }
  .hero-ref::before {
    background: linear-gradient(180deg, rgba(247,243,234,0.4) 0%, rgba(247,243,234,0.9) 60%, rgba(247,243,234,1) 100%);
  }
  .hero-ref-grid { grid-template-columns: 1fr; padding: 380px 0 48px; gap: 32px; }
  .hero-ref-side { min-height: 0; height: 240px; }
  .hr-card { top: 0; right: auto; left: 0; width: 230px; }
  .hr-video { bottom: 0; right: 0; }
  .hero-ref-vector { top: 18px; right: 18px; width: 80px; height: 80px; }
  .hero-ref-ribbon-inner { grid-template-columns: 1fr; gap: 18px; }
  .hero-ref-stats { justify-content: flex-start; gap: 24px; }
}
@media (max-width: 720px) {
  .hero-ref-grid { padding: 280px 0 32px; }
  .hr-line-1 { font-size: 28px; }
  .hr-line-2 { font-size: 44px; }
  .hero-ref-welcome { font-size: 15px; }
  .hero-ref-sub { font-size: 15px; }
  .hr-card { width: 200px; padding: 10px; }
  .hr-card img { height: 120px; }
  .hr-card strong { font-size: 15px; }
  .hr-video { padding: 8px 16px 8px 8px; }
  .hr-video-play { width: 36px; height: 36px; }
  .hr-video-text { font-size: 12px; }
  .hero-ref-tag { font-size: 18px; }
  .hero-ref-stats { gap: 18px; }
  .hero-ref-stats span { font-size: 22px; }
  .hero-ref-vector { display: none; }
}
@media (max-width: 480px) {
  .hero-ref-side { display: none; }
  .hero-ref-grid { padding: 280px 0 32px; }
}
.hero-banner {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--blush);
}
.hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      var(--cream) 0%,
      rgba(247,243,234,0.98) 28%,
      rgba(247,243,234,0.85) 45%,
      rgba(247,243,234,0.35) 60%,
      rgba(247,243,234,0) 72%);
}
.hero-banner-inner {
  position: relative;
  z-index: 2;
  padding: 100px 0 60px;
  max-width: 720px;
}
.hero-banner-inner h1 {
  margin: 6px 0 22px;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.1;
}
.hero-banner-inner .lead { max-width: 560px; }
.hero-banner-inner .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 36px; }
.hero-banner-inner .hero-trust {
  list-style: none;
  padding: 22px 0 0;
  margin: 0;
  border-top: 1px solid rgba(99,110,72,.2);
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-banner-inner .hero-trust li {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-banner-inner .hero-trust span {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--olive);
  margin-bottom: 2px;
  text-transform: none;
  letter-spacing: 0;
}
.hero-banner .hero-marquee {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .hero-banner { min-height: 0; }
  .hero-banner-img { position: relative; height: 380px; object-position: center 30%; }
  .hero-banner-overlay {
    background: linear-gradient(180deg, rgba(247,243,234,0) 0%, rgba(247,243,234,.4) 60%, rgba(247,243,234,1) 100%);
  }
  .hero-banner-inner { padding: 32px 0 48px; max-width: 100%; }
  .hero-banner-inner h1 br { display: none; }
}
@media (max-width: 720px) {
  .hero-banner-img { height: 260px; object-position: center 25%; }
  .hero-banner-inner h1 { font-size: 30px; }
  .hero-banner-inner .lead { font-size: 16px; }
  .hero-banner-inner .hero-trust { gap: 16px; }
  .hero-banner-inner .hero-trust span { font-size: 20px; }
  .hero-banner-inner .hero-trust li { font-size: 11px; }
}

.hero-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
}
.marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  padding: 16px 0;
  animation: marq 36s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--olive);
}
@keyframes marq {
  to { transform: translateX(-50%); }
}

/* ============ ABOUT ============ */
.about {
  padding: 100px 0;
  background:
    radial-gradient(600px 360px at 100% 0%, rgba(99,110,72,.06), transparent 60%),
    var(--cream-2);
}
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; }
.doctor-frame {
  aspect-ratio: 4/5;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.doctor-frame svg { width: 100%; height: 100%; display: block; }

.about-stamp {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--olive);
  color: #fff;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--cream-2);
}
.about-stamp .stamp-num { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; opacity: .8; }
.about-stamp .stamp-year { font-family: var(--serif); font-size: 38px; font-weight: 600; line-height: 1; margin: 4px 0; }
.about-stamp .stamp-label { font-size: 11px; letter-spacing: .12em; opacity: .9; }

.credentials {
  list-style: none;
  padding: 0;
  margin: 18px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
}
.credentials li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: var(--ink-2);
}
.credentials li svg { color: var(--olive); flex-shrink: 0; }

/* ============ NUMBERS ============ */
.numbers {
  padding: 56px 0;
  background: var(--olive);
  color: #fff;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.num-card {
  text-align: center;
  position: relative;
}
.num-card + .num-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255,255,255,.18);
}
.num-card .num,
.num-card .num-suffix {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
}
.num-card .num { display: inline-block; }
.num-card .num-suffix { display: inline-block; color: rgba(255,255,255,.6); }
.num-card .num-label {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .8;
  margin-top: 10px;
}

/* ============ AESTHETIC GENITAL — EDITORIAL SHOWCASE ============ */
.ag-showcase {
  padding: 100px 0;
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(99,110,72,.10), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(243,232,228,.55), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.ag-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.ag-head h2 { margin-top: 6px; }
.ag-intro {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 460px;
  margin: 0;
  padding-bottom: 6px;
}

.ag-stage {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* LEFT: Featured display */
.ag-feature {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.ag-feature-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--blush);
}
.ag-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .3s ease;
}
.ag-feature-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  color: var(--olive);
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.ag-feature-body {
  padding: 36px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.ag-feature-body h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 500;
  margin: 0;
  color: var(--ink);
  line-height: 1.1;
  font-style: italic;
}
.ag-feature-body p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  flex: 1;
}
.ag-feature-body .btn { align-self: flex-start; margin-top: 6px; }

/* RIGHT: Treatment list */
.ag-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.ag-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 4px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: var(--ink);
  position: relative;
  transition: padding-left .25s ease, background .25s ease;
}
.ag-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--olive);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.ag-item:hover,
.ag-item.active {
  padding-left: 18px;
}
.ag-item:hover::before,
.ag-item.active::before {
  transform: scaleY(1);
}
.ag-item.active { background: rgba(99,110,72,.04); }

.ag-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--olive);
  width: 38px;
  font-weight: 500;
  transition: color .25s ease;
}
.ag-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ag-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -.01em;
  transition: color .25s ease;
}
.ag-item:hover .ag-title,
.ag-item.active .ag-title { color: var(--olive); }
.ag-sub {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.ag-arrow {
  font-size: 18px;
  color: var(--olive);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s ease, transform .25s ease;
  padding-right: 6px;
}
.ag-item:hover .ag-arrow,
.ag-item.active .ag-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1024px) {
  .ag-head { grid-template-columns: 1fr; gap: 14px; }
  .ag-stage { grid-template-columns: 1fr; gap: 28px; }
  .ag-feature-body { padding: 28px 24px 32px; }
  .ag-feature-body h3 { font-size: 26px; }
}
@media (max-width: 720px) {
  .ag-showcase { padding: 64px 0; }
  .ag-feature-media { aspect-ratio: 4/3; }
  .ag-feature-tag { font-size: 10px; padding: 6px 12px; top: 14px; left: 14px; }
  .ag-feature-body { padding: 24px 20px 28px; }
  .ag-feature-body h3 { font-size: 24px; }
  .ag-feature-body p { font-size: 14.5px; }
  .ag-item { padding: 14px 4px; gap: 14px; }
  .ag-num { font-size: 18px; width: 32px; }
  .ag-title { font-size: 18px; }
  .ag-sub { font-size: 10px; }
}
.services-intro {
  padding: 100px 0 32px;
}
.section-head {
  max-width: 720px;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.service-slider-sec {
  padding: 80px 0 100px;
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(99,110,72,.10), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(243,232,228,.55), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.slider-head {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 40px;
}
.slider-head > div:first-child { max-width: 640px; }
.slider-head h2 { margin-top: 6px; }
.slider-nav { display: flex; gap: 10px; }
.sl-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--olive);
  background: #fff;
  color: var(--olive);
  font-size: 20px;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sl-btn:hover { background: var(--olive); color: #fff; }

.slider {
  overflow: hidden;
  position: relative;
}
.slider-track {
  display: flex;
  gap: 20px;
  transition: transform .5s cubic-bezier(.4,.6,.2,1);
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 0 26px;
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 0;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--olive), var(--olive-light));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--olive-light);
}
.service-card:hover::before { transform: scaleX(1); }
.sc-media {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--olive-tint), var(--cream));
}
.sc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .sc-media img { transform: scale(1.04); }
.sc-num {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--serif);
  font-size: 20px;
  color: #fff;
  background: rgba(99,110,72,.85);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
  line-height: 1;
  backdrop-filter: blur(4px);
}
.service-card h3 { padding: 22px 24px 8px; margin: 0 0 6px; }
.service-card p { padding: 0 24px; font-size: 14.5px; }
.service-card .link-arrow { margin: 0 24px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}
.slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  padding: 0;
  transition: all .2s ease;
}
.slider-dots button.active {
  width: 28px;
  border-radius: 4px;
  background: var(--olive);
}

/* ============ SERVICES ============ */
/* ============ BREAST SLIDER (3-per-row tile design) ============ */
.breast-sec {
  padding: 100px 0;
  background:
    radial-gradient(800px 500px at 100% 0%, rgba(99,110,72,.10), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(243,232,228,.6), transparent 60%),
    var(--cream);
}

.breast-tile {
  position: relative;
  display: block;
  flex: 0 0 calc((100% - 40px) / 3);
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  text-decoration: none;
  color: inherit;
}
.breast-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.6,.2,1);
  display: block;
}
.breast-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35,38,25,0) 30%, rgba(35,38,25,0.65) 75%, rgba(35,38,25,0.88) 100%);
  z-index: 1;
}
.bt-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px 26px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  color: #fff;
}
.bt-overlay h3 {
  color: #fff;
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.bt-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  font-size: 18px;
  backdrop-filter: blur(6px);
  flex-shrink: 0;
  transition: background .25s ease, transform .25s ease;
}
.breast-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); color: inherit; }
.breast-tile:hover img { transform: scale(1.06); }
.breast-tile:hover .bt-arrow { background: var(--olive); border-color: var(--olive); transform: translateX(4px); }

@media (max-width: 1024px) {
  .breast-tile { flex: 0 0 calc((100% - 20px) / 2); }
  .bt-overlay h3 { font-size: 20px; }
}
@media (max-width: 720px) {
  .breast-tile { flex: 0 0 100%; aspect-ratio: 4/3; }
  .bt-overlay { padding: 22px 20px; }
  .bt-overlay h3 { font-size: 22px; }
}

/* ============ WORRIED ============ */
.worried-sec {
  padding: 100px 0;
  background: var(--cream-2);
}
.worried-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.worried-card {
  background: var(--olive);
  color: #fff;
  padding: 56px 48px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.worried-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.worried-card::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.worried-card h2 { color: #fff; position: relative; }
.worried-card h2 em { color: var(--cream); font-style: italic; }
.worried-card > p { color: rgba(255,255,255,.85); position: relative; max-width: 460px; }
.worried-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
}
.worried-list li {
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(255,255,255,.92);
  font-size: 14.5px;
}
.worried-list li::before {
  content: "✓";
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  font-size: 12px;
  flex-shrink: 0;
}
.worried-tagline {
  font-family: var(--serif);
  font-size: 26px;
  color: #fff;
  margin: 0 0 24px;
  position: relative;
}
.worried-tagline em { font-style: italic; color: var(--cream); }

.worried-card--alt {
  background: var(--olive-deep);
}

/* ============ RESULTS / BEFORE-AFTER ============ */
.results-sec {
  padding: 100px 0;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.ba-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ba-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  aspect-ratio: 16/10;
}
.ba-half {
  position: relative;
  background: linear-gradient(135deg, #efe9d8, #e2dcc6);
}
.ba-after {
  background: linear-gradient(135deg, var(--olive-tint), #d8e0bf);
}
.ba-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}
.ba-tag--after { background: var(--olive); color: #fff; }
.ba-card figcaption {
  padding: 18px 22px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

/* ============ VIDEOS ============ */
.videos-sec {
  padding: 100px 0;
  background: var(--cream);
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.video-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9/16;
  background: #000;
  box-shadow: var(--shadow-md);
  transition: transform .3s ease, box-shadow .3s ease;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vc-open {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background .2s ease;
}
.vc-open:hover { background: var(--olive); color: #fff; }

/* ============ REVIEWS ============ */
.reviews-sec {
  padding: 100px 0;
}
.trust-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-rate { color: #e7a83b; letter-spacing: .12em; font-size: 18px; }
.g-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.g-badge svg { display: block; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
/* Reviews — uniform compact card heights, scrollable carousel */
.r-stars { color: #e7a83b; letter-spacing: .1em; font-size: 14px; }
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
  max-height: 320px;
}
.review-card p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.55;
}
.review-card footer {
  display: flex;
  flex-direction: column;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}
.review-card footer strong { color: var(--ink); font-size: 14px; }
.review-card footer span { font-size: 11.5px; color: var(--muted); }

/* ============ CTA / FORM ============ */
.cta-sec {
  padding: 100px 0;
  background:
    radial-gradient(800px 400px at 0% 0%, rgba(99,110,72,.18), transparent 60%),
    radial-gradient(800px 500px at 100% 100%, rgba(99,110,72,.25), transparent 70%),
    var(--olive-deep);
  color: #fff;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-copy h2 { color: #fff; }
.cta-copy h2 em { color: var(--cream); }
.cta-copy > p { color: rgba(255,255,255,.8); max-width: 480px; }
.cta-feats {
  list-style: none;
  padding: 16px 0 0;
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.cta-feats li { color: rgba(255,255,255,.9); font-size: 14.5px; }

.cta-form {
  background: #fff;
  color: var(--ink);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.cta-form h3 { margin: 0 0 18px; }
.cta-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream-2);
  color: var(--ink);
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  resize: vertical;
  font-family: inherit;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--olive);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(99,110,72,.12);
}
.form-note { font-size: 12px; color: var(--muted); margin: 12px 0 0; text-align: center; }
.form-thanks {
  background: var(--olive-tint);
  color: var(--olive-dark);
  padding: 14px;
  border-radius: 10px;
  margin-top: 14px;
  text-align: center;
  font-weight: 600;
}

/* ============ COSMETIC GYNECOLOGY SPOTLIGHT (replaces worried) ============ */
.cg-spotlight {
  padding: 100px 0;
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(99,110,72,.10), transparent 60%),
    radial-gradient(600px 360px at 0% 100%, rgba(243,232,228,.55), transparent 60%),
    var(--cream-2);
}
.cg-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 540px;
}
.cg-media {
  position: relative;
  background: linear-gradient(135deg, var(--olive-tint), var(--blush));
  padding: 36px;
  overflow: hidden;
}
.cg-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(99,110,72,.06) 1.5px, transparent 2px);
  background-size: 22px 22px;
  pointer-events: none;
}
.cg-img {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--blush);
}
.cg-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cg-img-main {
  width: 62%;
  height: 64%;
  top: 36px;
  left: 36px;
  z-index: 2;
}
.cg-img-tile {
  width: 48%;
  height: 48%;
  bottom: 36px;
  right: 36px;
  z-index: 3;
  border: 6px solid #fff;
}
.cg-badge {
  position: absolute;
  top: 36px;
  right: 36px;
  background: var(--olive);
  color: #fff;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 4;
  border: 6px solid #fff;
  box-shadow: var(--shadow-md);
  animation: floaty 6s ease-in-out infinite;
}
.cg-badge-num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}
.cg-badge-num small {
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
}
.cg-badge-label {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 6px;
  line-height: 1.3;
  opacity: .9;
}

.cg-body {
  padding: 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.cg-body h2 { margin: 4px 0 8px; }
.cg-lede { font-size: 16px; color: var(--ink-2); margin: 0 0 14px; }
.cg-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.cg-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
}
.cg-tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--olive-tint);
  color: var(--olive);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.cg-tagline {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--olive);
  font-weight: 500;
  margin: 8px 0 18px;
}
.cg-tagline em { font-style: italic; color: var(--olive-deep); }
.cg-ctas {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.cg-ctas .btn { background: var(--olive); color: #fff; }
.cg-ctas .btn:hover { background: var(--olive-dark); }
.cg-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--olive);
  font-weight: 500;
}
.cg-call:hover { color: var(--olive-dark); }

@media (max-width: 1024px) {
  .cg-card { grid-template-columns: 1fr; min-height: 0; }
  .cg-media { min-height: 380px; padding: 28px; }
  .cg-img-main { top: 28px; left: 28px; }
  .cg-img-tile { bottom: 28px; right: 28px; }
  .cg-badge { top: 28px; right: 28px; width: 100px; height: 100px; }
  .cg-badge-num { font-size: 30px; }
  .cg-body { padding: 40px 32px; }
}
@media (max-width: 720px) {
  .cg-spotlight { padding: 64px 0; }
  .cg-media { min-height: 280px; padding: 20px; }
  .cg-img-main { width: 70%; height: 70%; top: 20px; left: 20px; }
  .cg-img-tile { width: 50%; height: 48%; bottom: 20px; right: 20px; border-width: 4px; }
  .cg-badge { width: 80px; height: 80px; top: 20px; right: 20px; border-width: 4px; }
  .cg-badge-num { font-size: 22px; }
  .cg-badge-label { font-size: 9px; }
  .cg-body { padding: 32px 24px; }
  .cg-list { grid-template-columns: 1fr; gap: 10px; }
  .cg-tagline { font-size: 20px; }
}

/* ============ REVIEWS — HORIZONTAL SCROLLER ============ */
.reviews-scroller {
  overflow: hidden;
  margin-top: 48px;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.reviews-track {
  display: flex;
  gap: 22px;
  transition: transform .6s cubic-bezier(.4,.6,.2,1);
  will-change: transform;
}
.reviews-track .review-card {
  flex: 0 0 calc((100% - 66px) / 4);
  min-width: 280px;
}
.reviews-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}
.write-review-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--olive);
  font-weight: 600;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--olive);
  transition: all .2s ease;
  margin-left: 6px;
}
.write-review-link:hover {
  background: var(--olive);
  color: #fff;
}
@media (max-width: 1024px) {
  .reviews-track .review-card { flex: 0 0 calc((100% - 44px) / 3); }
}
@media (max-width: 720px) {
  .reviews-track .review-card { flex: 0 0 calc(100% - 28px); min-width: 0; }
}

/* ============ SCHEDULE STRIP ============ */
.schedule-strip {
  padding: 90px 0 80px;
  background: linear-gradient(180deg, var(--blush) 0%, #efe7e1 100%);
  position: relative;
  overflow: hidden;
}
.schedule-eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--olive-deep);
  font-size: 15px;
  margin-bottom: 18px;
  width: 100%;
  justify-content: center;
  text-align: center;
}
.schedule-eyebrow svg { color: var(--olive); flex-shrink: 0; }
.schedule-eyebrow span { font-family: var(--sans); }
.schedule-title {
  font-family: var(--serif);
  text-align: center;
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 500;
  color: var(--olive-deep);
  margin: 0 0 44px;
  letter-spacing: .02em;
  line-height: 1.05;
}
.schedule-bar {
  background: #fff;
  border-radius: 999px;
  padding: 18px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: 0 30px 70px -30px rgba(35,38,25,.25);
}
.sch-item {
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  padding: 6px 0;
  min-width: 0;
  transition: opacity .2s ease;
}
.sch-item:hover { opacity: 0.78; color: var(--ink); }
.sch-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sch-text { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.sch-text small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 2px;
}
.sch-text strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sch-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid var(--olive-deep);
  color: var(--olive-deep);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.sch-cta:hover { background: var(--olive); color: #fff; border-color: var(--olive); }

@media (max-width: 1024px) {
  .schedule-bar { grid-template-columns: 1fr 1fr; border-radius: 28px; padding: 22px; }
  .sch-cta { grid-column: 1 / -1; padding: 14px; }
}
@media (max-width: 720px) {
  .schedule-strip { padding: 64px 0 56px; }
  .schedule-bar { grid-template-columns: 1fr; gap: 16px; padding: 20px; }
  .sch-text strong { font-size: 15px; white-space: normal; }
  .sch-cta { grid-column: 1; }
}
/* ============ FAQ ============ */
.faq-sec {
  padding: 100px 0;
  background: var(--cream-2);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.faq-head { position: sticky; top: 120px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--olive-light); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 26px;
  color: var(--olive);
  font-weight: 300;
  line-height: 1;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--olive); }
.faq-body { padding: 0 24px 22px; }
.faq-body p { margin: 0; font-size: 15px; color: var(--ink-2); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--olive);
  color: rgba(255,255,255,.85);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
}
.f-col h4 {
  color: #fff;
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: 0;
  text-transform: none;
  margin: 0 0 24px;
  font-weight: 500;
}
.f-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.f-col a {
  color: rgba(255,255,255,.82);
  font-size: 15.5px;
  font-weight: 400;
  transition: color .2s ease, padding-left .2s ease;
}
.f-col a:hover { color: #fff; padding-left: 4px; }

/* Brand column */
.f-brand img {
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 28px;
  width: 220px;
  max-width: 100%;
  filter: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.f-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.f-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.f-contact-list li svg {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,.6);
  flex-shrink: 0;
}
.f-contact-list li a {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  font-style: italic;
}
.f-contact-list li a:hover { color: var(--cream); padding-left: 0; }
.f-contact-list li:nth-child(3) a {
  font-size: 16px;
  font-style: normal;
  font-family: var(--sans);
  word-break: break-all;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 2px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 0;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  padding: 0;
}
.socials a:hover {
  background: #fff;
  color: var(--olive);
  padding-left: 0;
}

/* Clinics column */
.f-clinics .f-clinic {
  margin-bottom: 24px;
}
.f-clinics .f-clinic:last-child { margin-bottom: 0; }
.f-clinic strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}
.f-clinic p {
  font-size: 15px;
  color: rgba(255,255,255,.78);
  margin: 0 0 8px;
  line-height: 1.6;
  max-width: 380px;
}
.f-loc {
  display: inline-block;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 2px;
}
.f-loc:hover { color: #fff; border-bottom-color: #fff; padding-left: 0; }

/* Base bar */
.f-base {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 22px 0;
  font-size: 13.5px;
  color: #fff;
}
.f-base-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.f-base p { margin: 0; color: #fff; }
.f-base strong { color: #fff; font-weight: 600; }
.f-base a { color: #fff; text-decoration: underline; }
.f-base a:hover { color: var(--cream); }

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    padding-bottom: 48px;
  }
  .f-col h4 { font-size: 26px; }
  .f-contact-list li a { font-size: 18px; }
}
@media (max-width: 720px) {
  .site-footer { padding-top: 56px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
  }
  .f-brand img { width: 170px; margin-bottom: 22px; }
  .f-col h4 { font-size: 24px; margin-bottom: 18px; }
  .f-base-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* ============ FLOATING BUTTONS ============ */
.float-call, .float-wa {
  position: fixed;
  left: 22px;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform .2s ease;
}
.float-call { bottom: 260px; background: var(--olive); }
.float-wa { bottom: 200px; background: #25D366; }
.float-call:hover, .float-wa:hover { transform: scale(1.06); color: #fff; }

/* ============ CONTACT PAGE ============ */
.contact-hero {
  padding: 80px 0 40px;
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
  text-align: center;
}
.contact-hero h1 { margin: 12px 0 14px; }
.contact-hero .lead { max-width: 640px; margin-inline: auto; }

.contact-info-sec { padding: 60px 0 80px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-cards {
  display: grid;
  gap: 16px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color .2s, box-shadow .2s;
}
.contact-card:hover { border-color: var(--olive-light); box-shadow: var(--shadow-sm); }
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--olive-tint);
  color: var(--olive);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card h3 { font-size: 18px; margin: 0 0 6px; }
.contact-card p { margin: 0; font-size: 14.5px; color: var(--ink-2); }
.contact-card a { color: var(--olive); font-weight: 500; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 320px;
  background: var(--cream);
  margin-top: 18px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.opd-sec { padding: 80px 0; background: var(--cream); }
.opd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.opd-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.opd-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--olive);
  margin: 0 0 4px;
  font-weight: 600;
}
.opd-card p { margin: 0; font-size: 13.5px; color: var(--muted); }

/* Primary nav single-line */
.primary-nav ul { flex-wrap: nowrap; white-space: nowrap; }
.primary-nav a { padding: 10px 11px; font-size: 13.5px; }

/* doctor image - object fit, head-anchored to avoid face crop */
.doctor-frame { aspect-ratio: 4/5; }
.doctor-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

/* breast card image */
.bc-media {
  display: block;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--olive-tint), var(--cream));
}
.bc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.breast-card:hover .bc-media img { transform: scale(1.04); }
.breast-card { padding: 20px; }
.breast-card h3 { margin-top: 4px; }

/* before/after image */
.ba-half {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #efe9d8, #e2dcc6);
}
.ba-half img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding: 56px 0 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-stamp { right: 0; bottom: 0; width: 130px; height: 130px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .num-card + .num-card::before { display: none; }
  .breast-grid { grid-template-columns: repeat(2, 1fr); }
  .worried-grid { grid-template-columns: 1fr; }
  .worried-card { padding: 40px 32px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-head { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .opd-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .service-card { flex: 0 0 calc((100% - 40px) / 3); }
  .slider-head { grid-template-columns: 1fr; }
  .slider-nav { justify-content: flex-end; }
}

@media (max-width: 720px) {
  body { font-size: 15.5px; }
  .topbar-inner { font-size: 11.5px; gap: 8px; padding: 7px 0; }
  .topbar-left span:nth-child(2) { display: none; }
  .topbar-right .dot:nth-of-type(1), .topbar-right a:nth-child(3) { display: none; }
  .primary-nav, .header-cta { display: none; }
  .hamburger { display: inline-flex; margin-left: auto; }
  .header-inner { padding: 10px 0; gap: 12px; }
  .logo img { width: 150px; }
  .logo-tagline { padding-left: 52px; font-size: 10.5px; }

  /* Sections */
  .about, .services-intro, .service-slider-sec, .breast-sec,
  .worried-sec, .results-sec, .videos-sec, .reviews-sec, .cta-sec,
  .faq-sec, .contact-info-sec, .opd-sec { padding: 64px 0; }

  .section-head { max-width: 100%; }
  h1 { font-size: 32px; line-height: 1.15; }
  h2 { font-size: 28px; }
  .lead { font-size: 16px; }

  /* Hero stats */
  .hero-trust { gap: 18px; }

  /* Numbers */
  .numbers { padding: 44px 0; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .num-card .num, .num-card .num-suffix { font-size: 38px; }
  .num-card .num-label { font-size: 11px; }

  /* Grids → single column */
  .breast-grid, .results-grid, .videos-grid, .reviews-grid { grid-template-columns: 1fr; }
  .service-card { flex: 0 0 100%; }
  .credentials { grid-template-columns: 1fr; }
  .worried-list { grid-template-columns: 1fr; }
  .worried-card { padding: 32px 24px; }
  .worried-card h2 { font-size: 24px; }
  .worried-tagline { font-size: 22px; }
  .cta-feats { grid-template-columns: 1fr; }
  .cta-form { padding: 28px 22px; }
  .cta-form .row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 36px; }
  .f-base-inner { flex-direction: column; text-align: center; }
  .opd-grid { grid-template-columns: 1fr; }
  .marquee-track span { font-size: 16px; }
  .about-stamp { width: 100px; height: 100px; right: 8px; bottom: 8px; border-width: 4px; }
  .about-stamp .stamp-year { font-size: 30px; }

  /* Slider */
  .slider-head { gap: 18px; margin-bottom: 28px; }
  .slider-nav { justify-content: flex-start; }

  /* FAQ */
  .faq-item summary { font-size: 17px; padding: 18px 20px; }
  .faq-body { padding: 0 20px 18px; }
  .faq-body p { font-size: 14px; }

  /* Reviews trust row */
  .trust-row { gap: 10px; font-size: 13px; }
  .g-badge { padding: 5px 12px 5px 6px; font-size: 12px; }

  /* Form sizing */
  .field input, .field select, .field textarea { font-size: 16px; } /* prevent iOS zoom */

  /* Floating buttons positioned left on mobile too */
  .float-call { left: 16px; bottom: 230px; width: 46px; height: 46px; }
  .float-wa { left: 16px; bottom: 180px; width: 46px; height: 46px; }

  /* Contact page hero */
  .contact-hero { padding: 56px 0 24px; }
  .contact-card { padding: 18px 16px; gap: 12px; }
  .contact-icon { width: 42px; height: 42px; }
  .contact-card h3 { font-size: 16px; }
  .map-frame { height: 240px; }

  /* Service card body padding */
  .service-card h3 { padding: 18px 20px 6px; font-size: 19px; }
  .service-card p { padding: 0 20px; }
  .service-card .link-arrow { margin: 0 20px; }
  .sc-media { height: 200px; }
}

@media (max-width: 420px) {
  .container { width: 94%; }
  .topbar-right a:nth-child(1) { display: none; }
  .topbar-right .dot:nth-of-type(2) { display: none; }
  .btn { padding: 12px 18px; font-size: 13px; }
  .hero-banner-inner h1 { font-size: 26px; }
  .hero-trust { gap: 14px; }
  .hero-trust li { font-size: 10px; }
  .hero-banner-inner .hero-trust span { font-size: 18px; }
}


/* ============ PAGE HEADER / BREADCRUMB ============ */
.page-hero {
  padding: 100px 0 80px;
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(99,110,72,.10), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(243,232,228,.55), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  text-align: center;
}
.page-hero h1 {
  margin: 14px auto 18px;
  max-width: 900px;
  font-size: clamp(36px, 5vw, 64px);
}
.page-hero .lead {
  max-width: 740px;
  margin: 0 auto;
  font-size: 17px;
}
.breadcrumb {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--olive);
  font-weight: 500;
}
.breadcrumb a:hover { color: var(--olive-dark); }
.breadcrumb span { color: var(--muted); }

/* ============ TREATMENT GRID (3 per row) ============ */
.treatment-grid-sec {
  padding: 80px 0 100px;
  background:
    radial-gradient(800px 500px at 100% 0%, rgba(99,110,72,.06), transparent 60%),
    var(--cream-2);
}
.breast-grid-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.breast-grid-tiles > .breast-tile {
  flex: none !important;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  aspect-ratio: 4/5;
}

@media (max-width: 1024px) {
  .page-hero { padding: 72px 0 56px; }
  .breast-grid-tiles { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 720px) {
  .page-hero { padding: 56px 0 40px; }
  .page-hero h1 { font-size: 30px; }
  .treatment-grid-sec { padding: 56px 0 72px; }
  .breast-grid-tiles { grid-template-columns: 1fr; gap: 16px; }
  .breast-grid-tiles > .breast-tile { aspect-ratio: 4/3; }
}


/* ============ CONTACT PAGE — INFO + 2 MAPS ============ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-info-grid .contact-card { padding: 22px; }

.clinic-maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.clinic-map-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.clinic-map-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--olive-light);
}
.clinic-map-frame {
  height: 320px;
  background: var(--cream);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.clinic-map-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(8%); }
.clinic-map-body {
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.clinic-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 4px;
}
.clinic-map-body h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.clinic-map-body p {
  font-size: 14.5px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.65;
  flex: 1;
}
.clinic-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.clinic-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  color: var(--olive);
  text-decoration: none;
}
.clinic-call:hover { color: var(--olive-dark); }

@media (max-width: 1024px) {
  .contact-info-grid { grid-template-columns: 1fr; gap: 14px; }
  .clinic-maps-grid { grid-template-columns: 1fr; gap: 22px; }
  .clinic-map-frame { height: 260px; }
}
@media (max-width: 720px) {
  .clinic-map-body { padding: 22px; }
  .clinic-map-body h3 { font-size: 22px; }
}


/* ============ OPD CARDS (clickable) ============ */
a.opd-card {
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
a.opd-card:hover {
  transform: translateY(-3px);
  border-color: var(--olive-light);
  box-shadow: var(--shadow-sm);
}
a.opd-card h4 { transition: color .2s ease; }
a.opd-card:hover h4 { color: var(--olive-dark); }
.opd-arrow {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 18px;
  color: var(--olive);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .25s ease, transform .25s ease;
}
a.opd-card:hover .opd-arrow {
  opacity: 1;
  transform: translateX(0);
}


/* ============ ABOUT PAGE — PILLARS ============ */
.about-profile {
  padding: 90px 0 100px;
  background: var(--cream-2);
}
.about-profile .doctor-frame { box-shadow: var(--shadow-lg); }
.about-profile .about-copy h2 em { color: var(--olive); }

.pillars-sec {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pillar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--olive-light);
}
.pillar-num {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--olive);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.pillar-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
  font-style: italic;
}
.pillar-card p {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.7;
}

/* ============ CONTENT BLOCKS ============ */
.content-block {
  padding: 90px 0;
  background: var(--cream-2);
}
.content-block--alt {
  background: var(--cream);
}
.content-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.content-grid--reverse {
  grid-template-columns: 1fr 1.4fr;
}
.content-grid--reverse .content-text { order: 2; }
.content-grid--reverse .content-aside { order: 1; }
.content-text h2 { margin: 8px 0 18px; }
.content-text p {
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 16px;
  color: var(--ink-2);
}
.content-list {
  margin: 0 0 18px;
  padding-left: 20px;
}
.content-list li {
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.65;
}

.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 120px;
}
.quote-card p {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
  margin: 14px 0 0;
}

.cert-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 120px;
}
.cert-card h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--olive-deep);
  margin: 0 0 18px;
}
.cert-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cert-card li {
  font-size: 14.5px;
  color: var(--ink-2);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.cert-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--olive);
  font-weight: 700;
}

/* ============ HOW TO CHOOSE GRID ============ */
.how-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
}
.how-grid li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.65;
}
.how-grid strong {
  color: var(--ink);
  display: inline;
  margin-right: 4px;
}
.how-tick {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--olive-tint);
  color: var(--olive);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============ MEMBERSHIPS ============ */
.memberships-sec {
  padding: 90px 0;
  background: var(--cream-2);
}
.memberships-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}
.mem-pill {
  background: #fff;
  border: 1px solid var(--olive-light);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--olive-deep);
  font-weight: 500;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.mem-pill:hover {
  background: var(--olive);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .content-grid, .content-grid--reverse { grid-template-columns: 1fr; gap: 36px; }
  .content-grid--reverse .content-text { order: 1; }
  .content-grid--reverse .content-aside { order: 2; }
  .quote-card, .cert-card { position: static; }
  .how-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 720px) {
  .about-profile, .pillars-sec, .content-block, .memberships-sec { padding: 64px 0; }
  .pillar-card h3 { font-size: 24px; }
  .mem-pill { font-size: 13px; padding: 10px 16px; }
}


/* ============ ABOUT — CLINIC TOUR (TABS) ============ */
.tour-sec {
  padding: 100px 0;
  background:
    radial-gradient(800px 500px at 0% 0%, rgba(99,110,72,.08), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(243,232,228,.55), transparent 60%),
    var(--cream-2);
}
.tour-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.tour-head h2 { margin: 8px 0 14px; }

.tour-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.tour-tab {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 2px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: var(--ink);
  transition: all .25s ease;
  position: relative;
}
.tour-tab:hover { border-color: var(--olive-light); }
.tour-tab.active {
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
  color: #fff;
  border-color: var(--olive);
  box-shadow: var(--shadow-md);
}
.tt-num {
  grid-row: 1 / -1;
  align-self: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  font-weight: 600;
  color: var(--olive);
  line-height: 1;
}
.tour-tab.active .tt-num { color: rgba(255,255,255,.5); }
.tt-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
}
.tt-sub {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.tour-tab.active .tt-sub { color: rgba(255,255,255,.75); }

.tour-stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  aspect-ratio: 16/9;
}
.tour-panel {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}
.tour-panel.active {
  opacity: 1;
  pointer-events: auto;
}
.tour-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tour-panel figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 60px 36px 32px;
  background: linear-gradient(180deg, transparent 0%, rgba(35,38,25,0.85) 60%, rgba(35,38,25,0.96) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tour-panel figcaption strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
}
.tour-panel figcaption span {
  font-size: 14.5px;
  color: rgba(255,255,255,.85);
  max-width: 720px;
  line-height: 1.65;
}
.tour-panel figcaption em {
  font-style: italic;
  color: var(--cream);
}

/* Feature gradient cards */
.tour-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.tf-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 32px 28px 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease;
}
.tf-card:hover { transform: translateY(-3px); }
.tf-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(255,255,255,.12) 1px, transparent 2px);
  background-size: 24px 24px;
  pointer-events: none;
}
.tf-card--1 { background: linear-gradient(135deg, #636e48 0%, #4a5337 100%); }
.tf-card--2 { background: linear-gradient(135deg, #6f7a55 0%, #353c25 100%); }
.tf-card--3 { background: linear-gradient(135deg, #7b8366 0%, #4a5337 100%); }
.tf-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,.18);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 6px;
}
.tf-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  font-style: italic;
}
.tf-card p {
  font-size: 14.5px;
  color: rgba(255,255,255,.85);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .tour-tabs { grid-template-columns: 1fr; }
  .tour-stage { aspect-ratio: 4/3; }
  .tour-panel figcaption { padding: 40px 24px 24px; }
  .tour-panel figcaption strong { font-size: 22px; }
  .tour-features { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 720px) {
  .tour-sec { padding: 64px 0; }
  .tour-panel figcaption strong { font-size: 18px; }
  .tour-panel figcaption span { font-size: 13px; }
}


/* ============ ABOUT PROFILE — TIGHTER SPACING ============ */
.about-profile { padding: 80px 0 60px; }
.about-profile .about-grid { gap: 48px; align-items: center; }

/* ============ CREDENTIALS STRIP ============ */
.creds-strip {
  padding: 70px 0 80px;
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
}
.creds-head { text-align: center; margin-bottom: 48px; }
.creds-head h2 { margin-top: 6px; }
.creds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cred-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.cred-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--olive), var(--olive-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.cred-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--olive-light);
}
.cred-card:hover::before { transform: scaleX(1); }
.cred-num {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--olive);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.cred-card h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}
.cred-card p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

/* ============ SAFE & PAINLESS — FULL WIDTH ============ */
.safe-sec {
  padding: 100px 0;
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(99,110,72,.18), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(243,232,228,.4), transparent 60%),
    linear-gradient(180deg, var(--olive-deep) 0%, var(--olive-dark) 100%);
  color: #fff;
}
.safe-head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.safe-head h2 { color: #fff; }
.safe-head h2 em { color: var(--cream); }
.safe-lede {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  margin: 14px 0 0;
}

.safe-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.safe-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.safe-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.28);
}
.safe-card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--cream);
  letter-spacing: 0.06em;
  font-weight: 600;
}
.safe-card h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  font-style: italic;
  margin: 0 0 4px;
}
.safe-card p {
  font-size: 15.5px;
  color: rgba(255,255,255,.85);
  margin: 0 0 12px;
  line-height: 1.65;
}
.safe-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 18px;
}
.safe-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14.5px;
  color: rgba(255,255,255,.92);
}
.safe-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--cream);
  flex-shrink: 0;
}

.safe-banner {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.safe-banner svg { color: var(--olive) !important; flex-shrink: 0; opacity: 1 !important; }
.safe-banner p {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  font-style: italic;
  color: var(--ink-2);
}
.safe-banner strong {
  color: var(--olive-deep);
  font-weight: 600;
}

/* ============ BOARD CERTIFIED ============ */
.board-sec {
  padding: 100px 0;
  background: var(--cream-2);
}
.board-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.board-stamp {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.bs-ring {
  width: 260px;
  height: 260px;
  color: var(--olive);
  animation: spin-slow 28s linear infinite;
}
.bs-ring svg { width: 100%; height: 100%; }
.bs-meta {
  text-align: center;
}
.bs-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  font-style: italic;
}
.bs-meta span {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.6;
}
.board-text h2 { margin: 8px 0 18px; }
.board-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0 0 16px;
}

/* ============ CHOOSE — 8 CARDS ============ */
.choose-sec {
  padding: 100px 0;
  background:
    radial-gradient(800px 500px at 0% 0%, rgba(99,110,72,.08), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(243,232,228,.5), transparent 60%),
    var(--cream);
}
.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.choose-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.choose-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--olive-light);
}
.cg-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 600;
  color: var(--olive);
  letter-spacing: 0.04em;
}
.choose-card h4 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}
.choose-card p {
  font-size: 13.5px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}
.choose-cta {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--olive-deep), var(--olive));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1.6fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.choose-cta p {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}
.choose-cta p strong { font-weight: 600; color: #fff; font-style: normal; }
.choose-cta p em { font-style: italic; color: var(--cream); font-weight: 500; }
.choose-cta .btn {
  background: #fff;
  color: var(--olive-deep);
  white-space: nowrap;
}
.choose-cta .btn:hover { background: var(--cream); color: var(--olive-deep); }

/* ============ MEMBERSHIPS — DARK ============ */
.mem-sec {
  padding: 100px 0;
  background:
    radial-gradient(800px 500px at 100% 0%, rgba(99,110,72,.25), transparent 60%),
    linear-gradient(180deg, #2c3322 0%, var(--olive-deep) 100%);
  color: #fff;
}
.mem-sec h2 { color: #fff; }
.mem-sec h2 em { color: var(--cream); }
.mem-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.mem-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform .2s ease, background .2s ease;
}
.mem-card:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.12);
}
.mem-card strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  font-style: italic;
}
.mem-card span {
  font-size: 12.5px;
  color: rgba(255,255,255,.75);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .creds-grid { grid-template-columns: 1fr 1fr; }
  .safe-split { grid-template-columns: 1fr; }
  .safe-banner { flex-direction: column; text-align: center; padding: 28px; }
  .board-grid { grid-template-columns: 1fr; gap: 36px; }
  .bs-ring { width: 220px; height: 220px; }
  .choose-grid { grid-template-columns: 1fr 1fr; }
  .choose-cta { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .choose-cta .btn { justify-self: center; }
  .mem-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .creds-strip, .safe-sec, .board-sec, .choose-sec, .mem-sec { padding: 64px 0; }
  .creds-grid { grid-template-columns: 1fr; }
  .choose-grid { grid-template-columns: 1fr; }
  .safe-card { padding: 28px 24px; }
  .safe-card h3 { font-size: 24px; }
  .safe-banner p { font-size: 18px; }
  .choose-cta p { font-size: 18px; }
  .mem-cards { grid-template-columns: 1fr; }
}


/* ============ CLINIC PHOTO BACKGROUNDS ============ */
.page-hero--clinic-bg {
  position: relative;
  overflow: hidden;
}
.page-hero-bg,
.safe-bg,
.mem-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.page-hero-bg img,
.safe-bg img,
.mem-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(99,110,72,.4), transparent 60%),
    linear-gradient(180deg, rgba(35,38,25,0.92) 0%, rgba(53,60,37,0.94) 60%, rgba(74,83,55,0.96) 100%);
}
.page-hero--clinic-bg .container { position: relative; z-index: 1; }
.page-hero--clinic-bg h1,
.page-hero--clinic-bg .breadcrumb,
.page-hero--clinic-bg .breadcrumb span,
.page-hero--clinic-bg .eyebrow {
  color: #fff;
}
.page-hero--clinic-bg h1 em { color: var(--cream); }
.page-hero--clinic-bg .lead {
  color: rgba(255,255,255,.88);
}
.page-hero--clinic-bg .lead strong { color: #fff; }
.page-hero--clinic-bg .breadcrumb a {
  color: var(--cream);
}
.page-hero--clinic-bg .breadcrumb a:hover { color: #fff; }
.page-hero--clinic-bg .eyebrow { color: var(--cream); }

.safe-sec { position: relative; }
.safe-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(99,110,72,.55), transparent 60%),
    linear-gradient(180deg, rgba(53,60,37,0.92) 0%, rgba(74,83,55,0.95) 100%);
}
.safe-sec .container { position: relative; z-index: 1; }

.mem-sec { position: relative; }
.mem-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 100% 0%, rgba(99,110,72,.5), transparent 60%),
    linear-gradient(180deg, rgba(44,51,34,0.94) 0%, rgba(53,60,37,0.96) 100%);
}
.mem-sec .container { position: relative; z-index: 1; }


/* ============ CREDENTIALS RIBBON ============ */
.creds-ribbon {
  position: relative;
  padding: 90px 0;
  background: var(--cream-2);
  overflow: hidden;
}
.creds-ribbon-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(700px 400px at 0% 0%, rgba(99,110,72,.08), transparent 60%),
    radial-gradient(900px 500px at 100% 100%, rgba(243,232,228,.55), transparent 60%);
  pointer-events: none;
}
.creds-ribbon-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.cr-intro h2 { margin: 8px 0 16px; }
.cr-intro p {
  font-size: 16px;
  color: var(--ink-2);
  margin: 0 0 24px;
  line-height: 1.7;
  max-width: 480px;
}
.cr-intro .btn { background: var(--olive); color: #fff; }
.cr-intro .btn:hover { background: var(--olive-dark); color: #fff; }

.cr-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cr-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.cr-stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--olive), var(--olive-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.cr-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--olive-light);
}
.cr-stat:hover::before { transform: scaleX(1); }
.cr-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--olive-tint);
  color: var(--olive);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.cr-stat strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  font-style: italic;
  line-height: 1.15;
}
.cr-stat span {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .creds-ribbon-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 720px) {
  .creds-ribbon { padding: 64px 0; }
  .cr-stats { grid-template-columns: 1fr; }
}


/* ============ PILLAR MEGA MENU ============ */
.mega--pillars {
  width: 760px;
  max-width: calc(100vw - 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 18px;
}
.mega--pillars a strong { font-size: 16px; }
.mega--pillars a span { font-size: 11.5px; line-height: 1.45; white-space: normal; }
.mega--pillars a.active { background: var(--olive-tint); }

/* ============ 5-COLUMN FOOTER ============ */
.footer-grid--5 {
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.1fr;
}
.footer-grid--5 .f-col h4 {
  font-size: 17px;
  font-family: var(--serif);
  font-style: italic;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .footer-grid--5 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .footer-grid--5 { grid-template-columns: 1fr; }
  .mega--pillars { width: 100%; grid-template-columns: 1fr; }
}

/* ============ MEDICALLY-REVIEWED BYLINE ============ */
.reviewed-byline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 18px auto 0;
  font-size: 13px;
  color: var(--olive-dark);
  background: var(--olive-tint);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 500;
}
.reviewed-byline strong { color: var(--olive-deep); }

/* ============ TREATMENT NOTE ============ */
.treatment-note {
  max-width: 820px;
  margin: 36px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
}


/* ============ PRIVACY PAGE ============ */
.page-hero--privacy {
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(99,110,72,.12), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(243,232,228,.6), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.privacy-sec { padding: 80px 0 100px; background: var(--cream-2); }
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.privacy-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.privacy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--olive-light); }
.pc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--olive-tint);
  color: var(--olive);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.privacy-card h3 { font-family: var(--serif); font-size: 23px; font-weight: 500; font-style: italic; margin: 0; color: var(--ink); }
.privacy-card p { font-size: 14.5px; color: var(--ink-2); margin: 0; line-height: 1.65; }

.privacy-promise {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--olive-deep), var(--olive));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  display: flex;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.privacy-promise svg { color: var(--cream); flex-shrink: 0; }
.privacy-promise p { margin: 0; font-family: var(--serif); font-size: 24px; font-style: italic; font-weight: 500; line-height: 1.4; color: #fff; }
.privacy-promise strong { color: var(--cream); font-weight: 600; }

@media (max-width: 1024px) {
  .privacy-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .privacy-sec { padding: 56px 0 72px; }
  .privacy-grid { grid-template-columns: 1fr; }
  .privacy-promise { flex-direction: column; text-align: center; padding: 32px 24px; }
  .privacy-promise p { font-size: 20px; }
}


/* ============ 7-PILLAR OVERVIEW (HOME) ============ */
.pillars-overview {
  padding: 100px 0;
  background:
    radial-gradient(800px 500px at 0% 0%, rgba(99,110,72,.08), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(243,232,228,.5), transparent 60%),
    var(--cream-2);
}
.po-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.po-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.po-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--olive), var(--olive-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.po-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--olive-light); color: var(--ink); }
.po-card:hover::before { transform: scaleX(1); }
.po-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  font-weight: 600;
  color: var(--olive);
  line-height: 1;
}
.po-card h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
  line-height: 1.2;
}
.po-card p { font-size: 13.5px; color: var(--ink-2); margin: 0; flex: 1; line-height: 1.6; }
.po-arrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--olive);
  letter-spacing: .02em;
}
.po-card--cta {
  background: linear-gradient(135deg, var(--olive-deep), var(--olive));
  border-color: var(--olive);
  justify-content: center;
}
.po-card--cta h3, .po-card--cta p { color: #fff; }
.po-card--cta p { color: rgba(255,255,255,.85); }
.po-card--cta .po-arrow { color: var(--cream); }
.po-card--cta::before { display: none; }

@media (max-width: 1024px) {
  .po-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .pillars-overview { padding: 64px 0; }
  .po-grid { grid-template-columns: 1fr; }
}


/* ============ NAV — fit 10 top-level items ============ */
@media (min-width: 1025px) {
  .primary-nav ul { gap: 1px; }
  .primary-nav a { padding: 10px 9px; font-size: 13px; letter-spacing: -0.01em; }
  .header-inner { gap: 16px; }
  .header-cta { padding: 10px 14px; font-size: 12.5px; }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .primary-nav a { padding: 10px 7px; font-size: 12.5px; }
  .logo img { width: 180px; }
}


/* ============ FIX: switch to hamburger nav below 1100px (10-item nav needs ~1150px) ============ */
@media (max-width: 1100px) {
  .primary-nav, .header-cta { display: none !important; }
  .hamburger { display: inline-flex !important; margin-left: auto; }
}


/* ============ CONDITIONS WE TREAT (icon grid) ============ */
.conditions-sec { padding: 100px 0; background: var(--cream); }
.cond-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.cond-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cond-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--olive-light); color: var(--ink); }
.cond-ic {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--olive-tint);
  color: var(--olive);
  display: inline-flex; align-items: center; justify-content: center;
}
.cond-card h3 { font-family: var(--serif); font-size: 17px; font-weight: 500; margin: 0; line-height: 1.3; }

/* ============ WHY WOMEN TRUST US ============ */
.trust-sec { padding: 100px 0; background: var(--cream-2); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.trust-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--olive-light); }
.tc-ic {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--olive-tint);
  color: var(--olive);
  display: inline-flex; align-items: center; justify-content: center;
}
.trust-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; font-style: italic; margin: 0; color: var(--ink); }
.trust-card p { font-size: 14.5px; color: var(--ink-2); margin: 0; line-height: 1.65; }

@media (max-width: 1024px) {
  .cond-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .conditions-sec, .trust-sec { padding: 64px 0; }
  .cond-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cond-card h3 { font-size: 15px; }
  .trust-grid { grid-template-columns: 1fr; }
}


/* ============ 7-PILLAR CARDS WITH IMAGES (override) ============ */
.po-card { padding: 0; overflow: hidden; }
.po-card::before { z-index: 3; }
.po-media {
  position: relative;
  display: block;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--olive-tint);
}
.po-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.po-card:hover .po-media img { transform: scale(1.05); }
.po-media .po-num {
  position: absolute;
  top: 12px; left: 12px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(99,110,72,.92);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600;
  backdrop-filter: blur(4px);
}
.po-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.po-card--cta { justify-content: center; }
.po-card--cta .po-body { padding: 32px 26px; }

/* ============ CONDITIONS CARDS WITH IMAGES (override) ============ */
.cond-card { padding: 0; overflow: hidden; gap: 0; }
.cond-media {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--olive-tint);
}
.cond-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cond-card:hover .cond-media img { transform: scale(1.05); }
.cond-card h3 { padding: 18px 16px; font-size: 16px; }


/* ============ HUB PAGES: info cards (Programs, Patient Education) ============ */
.info-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.info-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:30px 26px; display:flex; flex-direction:column; gap:10px; transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease; position:relative; overflow:hidden; }
.info-card::before { content:""; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg,var(--olive),var(--olive-light)); transform:scaleX(0); transform-origin:left; transition:transform .35s ease; }
.info-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--olive-light); }
.info-card:hover::before { transform:scaleX(1); }
.ic-num { font-family:var(--serif); font-style:italic; font-size:18px; font-weight:600; color:var(--olive); }
.info-card h3 { font-family:var(--serif); font-size:23px; font-weight:500; font-style:italic; margin:0; color:var(--ink); line-height:1.2; }
.info-card p { font-size:14.5px; color:var(--ink-2); margin:0; line-height:1.65; flex:1; }
.ic-arrow { font-size:13.5px; font-weight:600; color:var(--olive); margin-top:4px; }
.ic-arrow:hover { color:var(--olive-dark); }

/* cond group title */
.cond-group-title { font-family:var(--serif); font-size:26px; font-weight:500; color:var(--olive-deep); margin:36px 0 18px; font-style:italic; }
.cond-group-title:first-child { margin-top:0; }

/* ============ BLOG ============ */
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.blog-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:28px 26px; display:flex; flex-direction:column; gap:12px; text-decoration:none; color:var(--ink); min-height:200px; transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.blog-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--olive-light); color:var(--ink); }
.blog-cat { align-self:flex-start; font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--olive); background:var(--olive-tint); padding:4px 12px; border-radius:999px; font-weight:600; }
.blog-card h3 { font-family:var(--serif); font-size:21px; font-weight:500; margin:0; color:var(--ink); line-height:1.25; flex:1; }
.blog-soon { font-size:12px; color:var(--muted); font-style:italic; }

@media (max-width:1024px){ .info-grid,.blog-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:720px){ .info-grid,.blog-grid{ grid-template-columns:1fr; } .cond-group-title{ font-size:22px; } }


/* ============ TREATMENT DETAIL PAGE ============ */
.tx-hero {
  padding: 60px 0 70px;
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(99,110,72,.10), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(243,232,228,.55), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.tx-hero-grid { display:grid; grid-template-columns:1.15fr 1fr; gap:52px; align-items:center; }
.tx-hero-copy h1 { margin:6px 0 6px; }
.tx-sub { font-family:var(--serif); font-style:italic; font-size:21px; color:var(--olive); margin:0 0 16px; }
.tx-hero-copy .lead { max-width:540px; }
.tx-hero-ctas { display:flex; gap:14px; flex-wrap:wrap; margin:24px 0 18px; }
.tx-hero-media { position:relative; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); background:var(--blush); }
.tx-hero-media img { width:100%; height:100%; object-fit:cover; aspect-ratio:6/5; display:block; }
.tx-badge { position:absolute; top:16px; left:16px; display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.92); backdrop-filter:blur(8px); color:var(--olive); font-weight:600; font-size:12px; letter-spacing:.04em; text-transform:uppercase; padding:8px 14px; border-radius:999px; box-shadow:var(--shadow-sm); }

.tx-body { padding:80px 0; background:var(--cream-2); }
.tx-body-grid { display:grid; grid-template-columns:1fr 340px; gap:56px; align-items:start; }
.tx-content h2 { font-size:clamp(26px,2.6vw,34px); margin:0 0 14px; }
.tx-content h2:not(:first-child) { margin-top:40px; }
.tx-content h3 { font-size:22px; margin:28px 0 12px; color:var(--olive-deep); }
.tx-content p { font-size:16px; line-height:1.8; color:var(--ink-2); margin:0 0 16px; }
.tx-list { list-style:none; padding:0; margin:0 0 16px; display:flex; flex-direction:column; gap:11px; }
.tx-list li { position:relative; padding-left:30px; font-size:15.5px; color:var(--ink-2); line-height:1.6; }
.tx-list li::before { content:"✓"; position:absolute; left:0; top:1px; width:20px; height:20px; border-radius:50%; background:var(--olive-tint); color:var(--olive); display:inline-flex; align-items:center; justify-content:center; font-size:11px; font-weight:700; }

.tx-cta-band { margin-top:40px; background:linear-gradient(135deg,var(--olive-deep),var(--olive)); color:#fff; border-radius:var(--radius-lg); padding:32px 36px; display:flex; gap:28px; align-items:center; justify-content:space-between; flex-wrap:wrap; box-shadow:var(--shadow-lg); }
.tx-cta-band h3 { color:#fff; margin:0 0 6px; font-style:italic; }
.tx-cta-band p { color:rgba(255,255,255,.85); margin:0; font-size:15px; max-width:440px; }
.tx-cta-band .btn-light { white-space:nowrap; }

/* Sidebar */
.tx-aside { position:sticky; top:110px; display:flex; flex-direction:column; gap:18px; }
.tx-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:24px 24px; }
.tx-card h4 { font-family:var(--serif); font-size:21px; font-weight:500; font-style:italic; margin:0 0 16px; color:var(--ink); }
.tx-quick ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; }
.tx-quick li { display:flex; justify-content:space-between; align-items:center; gap:12px; padding:10px 0; border-bottom:1px solid var(--line); font-size:14px; }
.tx-quick li:last-child { border-bottom:0; }
.tx-quick li span { color:var(--muted); }
.tx-quick li strong { color:var(--ink); font-weight:600; }
.tx-help p { font-size:14px; color:var(--ink-2); margin:0 0 14px; line-height:1.6; }
.tx-help-row { display:flex; align-items:center; gap:10px; padding:11px 14px; border-radius:10px; background:var(--olive-tint); color:var(--olive-deep); font-weight:600; font-size:14px; margin-bottom:10px; text-decoration:none; transition:background .2s ease; }
.tx-help-row:hover { background:#dfe4cb; color:var(--olive-deep); }
.tx-help-wa { background:#e3f5e9; color:#138a44; }
.tx-help-wa:hover { background:#d2efdc; color:#138a44; }
.tx-related ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:2px; }
.tx-related a { display:block; padding:11px 0; border-bottom:1px solid var(--line); color:var(--ink); font-size:14.5px; transition:color .2s ease, padding-left .2s ease; }
.tx-related li:last-child a { border-bottom:0; }
.tx-related a:hover { color:var(--olive); padding-left:5px; }

@media (max-width:1024px) {
  .tx-hero-grid { grid-template-columns:1fr; gap:32px; }
  .tx-body-grid { grid-template-columns:1fr; gap:36px; }
  .tx-aside { position:static; }
}
@media (max-width:720px) {
  .tx-hero { padding:40px 0 48px; }
  .tx-body { padding:56px 0; }
  .tx-cta-band { padding:26px 22px; }
}


/* ============ TREATMENT DETAIL — ADDRESS BOX ============ */
.tx-address .tx-addr { padding:14px 0; border-bottom:1px solid var(--line); }
.tx-address .tx-addr:last-child { border-bottom:0; padding-bottom:0; }
.tx-address .tx-addr:first-of-type { padding-top:0; }
.tx-address strong { display:block; color:var(--ink); font-weight:600; font-size:15px; margin-bottom:6px; }
.tx-address p { font-size:13.5px; color:var(--ink-2); margin:0 0 8px; line-height:1.6; }
.tx-loc { display:inline-block; color:var(--olive); font-size:13.5px; font-weight:600; border-bottom:1px solid var(--olive); padding-bottom:1px; transition:color .2s ease; }
.tx-loc:hover { color:var(--olive-dark); }

/* ============ CONDITIONS TABS ============ */
.cond-tabs-sec { padding: 44px 0 84px; }
.cond-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.cond-tab {
  font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: .01em;
  padding: 11px 28px; border-radius: 40px; border: 1px solid var(--line);
  background: #fff; color: var(--ink); cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.cond-tab:hover { border-color: var(--olive); color: var(--olive); }
.cond-tab.active { background: var(--olive); border-color: var(--olive); color: #fff; }
.cond-panel { display: none; }
.cond-panel.active { display: block; animation: condFade .35s ease; }
@keyframes condFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ===================== RESULTS / VIDEOS / FAQ (added) ===================== */
.results-sec, .videos-sec { padding: 40px 0 70px; }
.results-consent { display:flex; gap:14px; align-items:flex-start; background:var(--olive-tint); border:1px solid var(--line); border-radius:var(--radius); padding:18px 22px; margin-bottom:28px; color:var(--olive-deep); }
.results-consent svg { flex:0 0 auto; color:var(--olive); margin-top:2px; }
.results-consent p { margin:0; font-size:.95rem; line-height:1.6; }
.results-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:24px; margin-top:28px; }
.result-card { background:var(--white); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); }
.result-ba { display:grid; grid-template-columns:1fr 1fr; gap:2px; background:var(--line); }
.result-ba .ba-col { position:relative; background:var(--cream); }
.result-ba .ba-col img { width:100%; height:auto; display:block; aspect-ratio:1/1; object-fit:cover; }
.result-ba .ba-col b { position:absolute; top:10px; left:10px; background:rgba(35,38,25,.78); color:#fff; font-size:.7rem; letter-spacing:.06em; text-transform:uppercase; padding:3px 9px; border-radius:20px; font-weight:600; }
.result-card figcaption { padding:16px 18px 20px; }
.result-card figcaption h3 { font-family:var(--serif); font-size:1.4rem; color:var(--olive-deep); margin:0 0 6px; }
.result-card figcaption p { margin:0; font-size:.9rem; color:var(--muted); line-height:1.55; }
.results-cta { margin-top:40px; }

.videos-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(210px,1fr)); gap:24px; margin-top:28px; }
.video-card { display:block; color:inherit; background:var(--white); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); transition:transform .2s, box-shadow .2s; }
.video-card:hover { box-shadow:var(--shadow-md); }
.video-thumb { position:relative; display:block; aspect-ratio:9/16; overflow:hidden; background:#000; }
.video-thumb iframe { position:absolute; inset:0; width:100%; height:100%; border:0; display:block; }
.video-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.video-card h3 { font-family:var(--serif); font-size:1.2rem; color:var(--olive-deep); margin:0; padding:14px 18px 18px; line-height:1.35; }
.video-card h3 a { color:inherit; text-decoration:none; }
.video-card h3 a:hover { color:var(--olive); text-decoration:underline; }
.videos-empty { grid-column:1/-1; text-align:center; padding:50px 20px; color:var(--muted); }
.videos-empty svg { color:var(--olive-light); margin-bottom:12px; }
.videos-empty h3 { font-family:var(--serif); font-size:1.8rem; color:var(--olive-deep); margin:0 0 8px; }
.videos-empty p { margin:0 auto; max-width:520px; line-height:1.6; }

.faq-filtered .faq-item[data-cat] { } /* visibility toggled via JS */
@media (max-width:560px){ .result-ba { grid-template-columns:1fr 1fr; } }

/* ===================== HEADER SUB-NAV DROPDOWN (Results) ===================== */
.primary-nav .has-sub { position: relative; }
.primary-nav .has-sub > a svg { vertical-align: middle; margin-left: 2px; transition: transform .2s; }
.primary-nav .has-sub:hover > a svg { transform: rotate(180deg); }
.primary-nav .has-sub .subnav { position: absolute; top: 100%; left: 0; margin: 0; padding: 6px; list-style: none; min-width: 170px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .18s, transform .18s, visibility .18s; z-index: 120; }
.primary-nav .has-sub:hover .subnav, .primary-nav .has-sub:focus-within .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-nav .has-sub .subnav li { display: block; }
.primary-nav .has-sub .subnav a { display: block; padding: 9px 14px; border-radius: 8px; white-space: nowrap; font-size: .95rem; color: var(--ink); }
.primary-nav .has-sub .subnav a:hover { background: var(--olive-tint); color: var(--olive-deep); }

/* ===================== PAGINATION (Results / Videos) ===================== */
.pagination { display:flex; justify-content:center; align-items:center; gap:8px; flex-wrap:wrap; margin-top:38px; }
.pagination:empty { display:none; }
.pagination .page-btn { min-width:42px; height:42px; padding:0 13px; border:1px solid var(--line); background:var(--white); color:var(--ink); border-radius:10px; font-family:var(--sans); font-size:.95rem; font-weight:500; cursor:pointer; transition:background .18s, border-color .18s, color .18s; }
.pagination .page-btn:hover:not(:disabled) { background:var(--olive-tint); border-color:var(--olive-light); color:var(--olive-deep); }
.pagination .page-btn.active { background:var(--olive); border-color:var(--olive); color:#fff; }
.pagination .page-btn:disabled { opacity:.4; cursor:not-allowed; }
.pagination .page-nav { font-size:1.3rem; line-height:1; padding:0 14px; }

/* ===================== CONTACT PAGE ===================== */
.contact-sec { padding:40px 0 70px; }
.contact-grid { display:grid; grid-template-columns:1.3fr 1fr; gap:36px; align-items:start; }
@media (max-width:880px){ .contact-grid { grid-template-columns:1fr; } }
.contact-form-wrap { background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); padding:28px; box-shadow:var(--shadow-sm); }
.cf-privacy { display:flex; gap:12px; align-items:flex-start; background:var(--olive-tint); border-radius:var(--radius); padding:14px 16px; margin-bottom:22px; color:var(--olive-deep); }
.cf-privacy svg { flex:0 0 auto; color:var(--olive); margin-top:2px; }
.cf-privacy p { margin:0; font-size:.9rem; line-height:1.55; }
.cf-form .cf-row { margin-bottom:16px; }
.cf-form .cf-2col { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:520px){ .cf-form .cf-2col { grid-template-columns:1fr; } }
.cf-form label { display:block; font-family:var(--sans); font-size:.85rem; font-weight:600; color:var(--olive-deep); letter-spacing:.01em; }
.cf-form label span { color:#b54a3a; margin-left:2px; }
.cf-form input, .cf-form select, .cf-form textarea { width:100%; margin-top:6px; padding:11px 13px; border:1px solid var(--line); border-radius:10px; font-family:var(--sans); font-size:.95rem; color:var(--ink); background:var(--cream); transition:border-color .18s, box-shadow .18s; }
.cf-form input:focus, .cf-form select:focus, .cf-form textarea:focus { outline:none; border-color:var(--olive-light); box-shadow:0 0 0 3px rgba(99,110,72,.12); background:var(--white); }
.cf-form textarea { min-height:110px; resize:vertical; }
.cf-submit { width:100%; margin-top:6px; border:0; cursor:pointer; font-size:1rem; }
.cf-fineprint { margin:12px 0 0; font-size:.78rem; color:var(--muted); text-align:center; line-height:1.5; }
.cf-ok { text-align:center; padding:30px 16px; color:var(--olive-deep); }
.cf-ok svg { color:var(--olive); margin-bottom:10px; }
.cf-ok h3 { font-family:var(--serif); font-size:1.8rem; margin:0 0 8px; }
.cf-ok p { margin:0; line-height:1.6; color:var(--muted); }
.cf-err { background:#fbeae6; color:#9a3b2b; border:1px solid #eccabf; border-radius:10px; padding:12px 14px; margin-bottom:16px; font-size:.9rem; line-height:1.5; }
.contact-aside { display:flex; flex-direction:column; gap:20px; }
.ca-card { background:var(--white); border:1px solid var(--line); border-radius:var(--radius); padding:22px 22px 24px; box-shadow:var(--shadow-sm); }
.ca-card h3 { font-family:var(--serif); font-size:1.5rem; color:var(--olive-deep); margin:0 0 16px; }
.ca-btn { display:flex; align-items:center; gap:10px; justify-content:center; width:100%; padding:13px 16px; border-radius:10px; font-weight:600; font-size:.98rem; margin-bottom:12px; text-decoration:none; transition:transform .15s, box-shadow .15s; }
.ca-btn:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); }
.ca-wa { background:#25d366; color:#fff; }
.ca-call { background:var(--olive); color:#fff; }
.ca-hours { margin:6px 0 0; font-size:.85rem; color:var(--muted); text-align:center; }
.ca-loc { padding:14px 0; border-top:1px solid var(--line); }
.ca-loc:first-of-type { border-top:0; padding-top:0; }
.ca-loc strong { font-family:var(--sans); color:var(--olive-deep); font-size:1rem; }
.ca-loc p { margin:4px 0 8px; font-size:.9rem; color:var(--muted); line-height:1.55; }
.ca-maplink { font-size:.85rem; font-weight:600; color:var(--olive); text-decoration:none; }
.ca-maplink:hover { text-decoration:underline; }
.ca-map { margin-top:12px; border-radius:10px; overflow:hidden; border:1px solid var(--line); }
.ca-map iframe { width:100%; height:180px; border:0; display:block; }

/* ===================== LEGAL PAGES ===================== */
.legal-prose { max-width:860px; margin:0 auto; }
.legal-prose h2 { font-family:var(--serif); font-size:1.6rem; color:var(--olive-deep); margin:30px 0 10px; }
.legal-prose h2:first-child { margin-top:0; }
.legal-prose p { line-height:1.75; color:var(--ink); margin:0 0 14px; }
.legal-prose a { color:var(--olive); }
.legal-updated { margin-top:26px; padding-top:16px; border-top:1px solid var(--line); color:var(--muted); font-size:.88rem; }

/* footer legal links */
.f-legal { display:flex; gap:8px 16px; flex-wrap:wrap; align-items:center; }
.f-legal a { color:inherit; opacity:.85; font-size:.86rem; text-decoration:none; }
.f-legal a:hover { opacity:1; text-decoration:underline; }

/* ===================== BLOG ===================== */
.blog-sec { padding: 44px 0 70px; }
.blog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:28px; }
.blog-card { background:var(--white); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; transition:transform .2s, box-shadow .2s; }
.blog-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.bc-media { display:block; aspect-ratio:5/3; overflow:hidden; background:var(--olive-tint); }
.bc-media img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .35s; }
.blog-card:hover .bc-media img { transform:scale(1.04); }
.bc-body { padding:18px 20px 22px; display:flex; flex-direction:column; flex:1; }
.bc-cat { display:inline-block; align-self:flex-start; font-size:.72rem; letter-spacing:.05em; text-transform:uppercase; font-weight:600; color:var(--olive); background:var(--olive-tint); padding:4px 10px; border-radius:20px; margin-bottom:10px; }
.bc-body h2 { font-family:var(--serif); font-size:1.4rem; line-height:1.25; margin:0 0 10px; }
.bc-body h2 a { color:var(--olive-deep); text-decoration:none; }
.bc-body h2 a:hover { color:var(--olive); }
.bc-body p { margin:0 0 14px; font-size:.92rem; color:var(--muted); line-height:1.6; }
.bc-link { margin-top:auto; align-self:flex-start; font-weight:600; font-size:.9rem; color:var(--olive); text-decoration:none; }
.bc-link:hover { text-decoration:underline; }

.post-hero { padding:30px 0 8px; }
.post-hero h1 { font-family:var(--serif); font-size:clamp(2rem,4vw,3rem); line-height:1.12; color:var(--olive-deep); margin:10px 0 0; max-width:900px; }
.post-meta { display:flex; flex-wrap:wrap; align-items:center; gap:10px 18px; margin-top:14px; }
.post-meta .reviewed-byline { margin:0; }
.post-updated { font-size:.82rem; color:var(--muted); }
.post-featured { margin:22px auto 0; }
.post-featured img { width:100%; height:auto; max-height:480px; object-fit:cover; border-radius:var(--radius-lg); display:block; }
.post-body-grid { display:grid; grid-template-columns:minmax(0,1fr) 300px; gap:44px; align-items:start; padding:40px 0 60px; }
@media (max-width:920px){ .post-body-grid { grid-template-columns:1fr; } }
.post-content { max-width:760px; }
.post-lead { font-size:1.18rem; line-height:1.7; color:var(--ink); font-weight:400; }
.post-takeaways { background:var(--olive-tint); border:1px solid var(--line); border-radius:var(--radius); padding:20px 24px; margin:24px 0 30px; }
.post-takeaways h2 { font-family:var(--serif); font-size:1.5rem; color:var(--olive-deep); margin:0 0 12px; }
.post-takeaways ul { margin:0; padding-left:20px; }
.post-takeaways li { margin:0 0 8px; line-height:1.6; color:var(--olive-dark); }
.post-author { display:flex; gap:16px; align-items:flex-start; margin-top:34px; padding:22px; background:var(--cream); border:1px solid var(--line); border-radius:var(--radius); }
.post-author .pa-avatar { flex:0 0 84px; width:84px; height:84px; border-radius:50%; overflow:hidden; border:2px solid var(--white); box-shadow:0 2px 10px rgba(35,38,25,.12); }
.post-author .pa-avatar img { width:100%; height:100%; border-radius:50%; object-fit:cover; object-position:center top; display:block; }
.post-author h4 { font-family:var(--serif); font-size:1.3rem; color:var(--olive-deep); margin:0 0 6px; }
.post-author p { margin:0; line-height:1.65; color:var(--muted); font-size:.95rem; }
.post-aside { display:flex; flex-direction:column; gap:20px; position:sticky; top:100px; }
@media (max-width:920px){ .post-aside { position:static; } }

/* ===================== ABOUT TEAM CARDS ===================== */
.team-cards { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:18px; margin:18px 0 8px; }
.team-card { background:var(--cream); border:1px solid var(--line); border-radius:var(--radius); padding:20px; text-align:center; }
.team-card .tc-ava { width:64px; height:64px; margin:0 auto 12px; border-radius:50%; background:var(--olive); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--serif); font-size:1.5rem; font-weight:600; }
.team-card h3 { font-family:var(--serif); font-size:1.25rem; color:var(--olive-deep); margin:0 0 4px; }
.team-card .tc-role { display:block; font-size:.82rem; color:var(--olive); font-weight:600; letter-spacing:.02em; margin-bottom:6px; }
.team-card .tc-qual { margin:0; font-size:.85rem; color:var(--muted); line-height:1.5; }

/* ===================== HOME YOUTUBE SHORTS STRIP (full width, no right gap) ===================== */
/* #videos is home-only; restores the intended 4 even portrait cards over the /videos page rules */
#videos .container { max-width: min(1360px, 95vw); }
#videos .videos-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
#videos .video-card { position: relative; display: block; aspect-ratio: 9/16; background: #000; border: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
#videos .video-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 900px){ #videos .videos-grid { grid-template-columns: repeat(2, 1fr); } #videos .container { max-width: 95vw; } }
@media (max-width: 560px){ #videos .videos-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; } }

/* hover bridge for the small About / Results dropdowns too */
.primary-nav .has-sub .subnav::before { content:''; position:absolute; left:0; right:0; bottom:100%; height:14px; }

/* ===================== TREATMENT GALLERY (sub-procedure images) ===================== */
.tx-gallery-sec { padding: 10px 0 56px; }
.tx-gallery-head { text-align: center; max-width: 760px; margin: 0 auto 30px; }
.tx-gallery-head h2 { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--olive-deep); margin: 6px 0 0; }
.tx-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.tg-card { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.tg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tg-card img { width: 100%; height: auto; aspect-ratio: 840/705; object-fit: cover; display: block; background: var(--olive-tint); }
.tg-card figcaption { padding: 14px 16px; font-family: var(--serif); font-size: 1.12rem; color: var(--olive-deep); text-align: center; line-height: 1.3; }
@media (max-width: 560px){ .tx-gallery { grid-template-columns: 1fr 1fr; gap: 12px; } .tg-card figcaption { font-size: .95rem; padding: 10px; } }

/* ===================== INFO-CARD with image (Programs / Patient Care listing) ===================== */
.info-card.has-media { padding-top: 0; }
.info-card.has-media .ic-media { display:block; position:relative; margin:0 -26px 16px; aspect-ratio:3/2; overflow:hidden; background:var(--olive-tint); }
.info-card.has-media .ic-media img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .35s ease; }
.info-card.has-media:hover .ic-media img { transform:scale(1.05); }
.info-card.has-media .ic-media .ic-num { position:absolute; top:12px; left:12px; background:var(--olive); color:#fff; width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-style:normal; font-size:15px; box-shadow:0 4px 12px rgba(0,0,0,.18); }
