/* ============================================================
   Venus OB-GYN — Global Design System
   ============================================================ */

/* 1. Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600&family=Figtree:wght@400;500;600&display=swap');

/* 2. Custom Properties */
:root {
  /* Palette */
  --rose-50:  #FDF3F4;
  --rose-200: #F4D3D8;
  --rose-400: #DE8E9C;
  --rose-600: #B85C72;
  --plum-900: #3D1F2B;
  --gold-400: #C9A86A;
  --white:    #FFFFFF;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Figtree', system-ui, sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1.0625rem;
  --text-lg:   1.328rem;
  --text-xl:   1.660rem;
  --text-2xl:  2.074rem;
  --text-3xl:  2.592rem;
  --text-4xl:  3.240rem;

  --leading-tight:  1.25;
  --leading-body:   1.65;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  /* Layout */
  --max-width: 1200px;
  --header-h: 72px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Shadow */
  --shadow-card: 0 2px 16px rgba(61, 31, 43, 0.07), 0 1px 4px rgba(61, 31, 43, 0.04);
  --shadow-header: 0 2px 24px rgba(61, 31, 43, 0.10);
}

/* 3. Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--plum-900);
  background-color: var(--rose-50);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: var(--rose-600); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 2.5px solid var(--rose-600);
  outline-offset: 3px;
  border-radius: 4px;
}

/* 4. Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--leading-tight);
  color: var(--plum-900);
}
h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }

p { margin-bottom: var(--space-4); }
p:last-child { margin-bottom: 0; }

/* 5. Eyebrow Label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--space-3);
}
.eyebrow--rose { color: var(--rose-600); }

/* 6. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  padding: 0.65em 1.6em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background-color: var(--rose-600);
  border-color: var(--rose-600);
  color: var(--white);
}
.btn-primary:hover {
  background-color: #a04f64;
  border-color: #a04f64;
  box-shadow: 0 4px 18px rgba(184, 92, 114, 0.35);
  color: var(--white);
}

.btn-ghost {
  background-color: transparent;
  border-color: var(--plum-900);
  color: var(--plum-900);
}
.btn-ghost:hover {
  background-color: var(--plum-900);
  color: var(--white);
}

.btn-ghost--rose {
  border-color: var(--rose-600);
  color: var(--rose-600);
}
.btn-ghost--rose:hover {
  background-color: var(--rose-600);
  color: var(--white);
}

/* 7. Card */
.card {
  background: var(--white);
  border: 1px solid var(--rose-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

/* 8. Arch Image Frame */
.arch {
  overflow: hidden;
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  display: block;
}
.arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arch--tall {
  aspect-ratio: 3 / 4;
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
}

.arch--square {
  aspect-ratio: 1 / 1;
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
}

/* 9. Section / Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.section { padding-block: var(--space-24); }
.section--tint { background-color: var(--rose-200); }

.section__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

/* Thin gold rule used under eyebrows */
.rule {
  display: block;
  width: 48px;
  height: 1.5px;
  background: var(--gold-400);
  margin: var(--space-3) auto var(--space-4);
}
.rule--left { margin-left: 0; }

/* 10. Scroll-Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   ANNOUNCEMENT STRIP
   ============================================================ */
.announce-strip {
  background-color: var(--plum-900);
  color: var(--rose-200);
  font-size: var(--text-sm);
  font-weight: 500;
  text-align: center;
  padding: 0.45rem var(--space-4);
  letter-spacing: 0.01em;
  position: relative;
  z-index: 200;
}
.announce-strip a {
  color: var(--rose-400);
  font-weight: 600;
  text-decoration: none;
}
.announce-strip a:hover { text-decoration: underline; }
.announce-strip .sep {
  margin-inline: 0.75em;
  opacity: 0.5;
  font-size: 0.65em;
  vertical-align: middle;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(253, 243, 244, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  align-items: center;
}
.site-header.scrolled {
  box-shadow: var(--shadow-header);
  border-bottom-color: var(--rose-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

/* Logo — transparent, larger */
.logo-chip {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
  flex-shrink: 0;
}
.logo-chip img {
  height: 64px;
  width: auto;
}

.main-nav { display: flex; align-items: center; gap: var(--space-1); }

.main-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--plum-900);
  padding: 0.35em 0.75em;
  border-radius: var(--radius-sm);
  transition: background-color 0.15s ease, color 0.15s ease;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background-color: var(--rose-200);
  color: var(--rose-600);
}

.header-cta { margin-left: var(--space-2); }

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: var(--space-4);
  border: 1px solid var(--rose-200);
  border-radius: var(--radius-pill);
  overflow: hidden;
  flex-shrink: 0;
}
.lang-switcher__btn {
  background: transparent;
  border: none;
  padding: 0.3em 0.75em;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--plum-900);
  cursor: pointer;
  transition: background .15s, color .15s;
  line-height: 1;
  letter-spacing: .02em;
}
.lang-switcher__btn:hover,
.lang-switcher__btn.active {
  background: var(--rose-200);
  color: var(--rose-600);
}
.lang-switcher__sep {
  width: 1px;
  height: 1.1em;
  background: var(--rose-200);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .lang-switcher { display: none; }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--plum-900);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--rose-50);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--plum-900);
  text-decoration: none;
}
.nav-overlay a:hover { color: var(--rose-600); }
.nav-overlay .btn { margin-top: var(--space-4); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--plum-900);
  color: var(--rose-200);
  padding-block: var(--space-16) var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(244,211,216,0.15);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-400);
  margin-bottom: var(--space-4);
}

.footer-col p, .footer-col address {
  font-size: var(--text-sm);
  line-height: 1.75;
  font-style: normal;
  color: var(--rose-200);
}

.footer-col a {
  color: var(--rose-400);
  text-decoration: none;
}
.footer-col a:hover { color: var(--white); text-decoration: underline; }

.footer-logo-chip {
  display: inline-flex;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 6px 12px;
  margin-bottom: var(--space-4);
}
.footer-logo-chip img { height: 36px; width: auto; }

.footer-mission {
  font-size: var(--text-sm);
  color: rgba(244, 211, 216, 0.75);
  margin-bottom: var(--space-4);
}

.social-links { display: flex; gap: var(--space-3); margin-top: var(--space-2); }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(244,211,216,0.3);
  color: var(--rose-200);
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.social-links a:hover {
  background: var(--rose-600);
  border-color: var(--rose-600);
  color: var(--white);
  text-decoration: none;
}
.social-links svg { width: 18px; height: 18px; }

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-nav-list a {
  font-size: var(--text-sm);
  color: var(--rose-200);
}
.footer-nav-list a:hover { color: var(--white); }

.footer-bottom {
  text-align: center;
  padding-top: var(--space-6);
  font-size: var(--text-xs);
  color: rgba(244,211,216,0.5);
}

/* ============================================================
   MOBILE STICKY CALL BAR
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--white);
  border-top: 1px solid var(--rose-200);
  box-shadow: 0 -4px 20px rgba(61,31,43,0.10);
  padding: 10px var(--space-4) calc(10px + env(safe-area-inset-bottom));
  gap: var(--space-3);
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  font-size: var(--text-sm);
}

@media (max-width: 700px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --text-4xl: 2.4rem;
    --text-3xl: 2rem;
    --text-2xl: 1.65rem;
    --space-24: 4rem;
    --space-16: 3rem;
    --space-12: 2.5rem;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding-inline: var(--space-4); }
}

/* ============================================================
   HERO SECTION (shared baseline)
   ============================================================ */
.hero {
  padding-block: var(--space-16) var(--space-24);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.hero__content { padding-right: var(--space-8); }
.hero__content h1 { margin-bottom: var(--space-6); }
.hero__content .lead {
  font-size: var(--text-lg);
  color: rgba(61,31,43,0.75);
  margin-bottom: var(--space-8);
}
.hero__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

.hero__image {
  display: flex;
  justify-content: center;
}
.hero__image .arch {
  width: min(360px, 100%);
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__content { padding-right: 0; }
  .hero__actions { justify-content: center; }
  .hero__image { order: -1; }
  .hero__image .arch { width: min(260px, 80%); }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ============================================================
   HOME PAGE — HERO
   ============================================================ */
.home-hero {
  padding-block: clamp(3rem, 8vw, 7rem) clamp(4rem, 10vw, 8rem);
  background: linear-gradient(160deg, var(--rose-50) 60%, var(--rose-200) 100%);
  overflow: hidden;
}

.home-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

/* Staggered load-in */
.home-hero__content > * {
  opacity: 0;
  transform: translateY(12px);
  animation: heroRise 0.65s ease forwards;
}
.home-hero__content .eyebrow      { animation-delay: 0.05s; }
.home-hero__content h1            { animation-delay: 0.18s; }
.home-hero__content .hero-lead    { animation-delay: 0.30s; }
.home-hero__content .hero-actions { animation-delay: 0.42s; }
.home-hero__content .trust-row    { animation-delay: 0.54s; }

@keyframes heroRise {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .home-hero__content > * { animation: none; opacity: 1; transform: none; }
}

.home-hero__content h1 {
  font-size: clamp(2.2rem, 5vw, var(--text-4xl));
  margin-bottom: var(--space-4);
  line-height: 1.15;
}

.hero-lead {
  font-size: var(--text-lg);
  color: rgba(61,31,43,0.72);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(61,31,43,0.55);
}
.trust-row span::before {
  content: '·';
  margin-right: 0.5em;
  color: var(--gold-400);
}
.trust-row span:first-child::before { display: none; }

/* Hero visual side */
.home-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: heroRise 0.75s 0.1s ease both;
}
@media (prefers-reduced-motion: reduce) {
  .home-hero__visual { animation: none; opacity: 1; }
}

.hero-arch-wrap {
  position: relative;
  width: min(340px, 100%);
}

.hero-arch-wrap .arch {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
}
.hero-arch-wrap .arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-corner-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px;
  background: var(--white);
  border: 1px solid var(--rose-200);
  border-radius: var(--radius-md);
  box-shadow: 0 6px 24px rgba(61,31,43,0.12);
  overflow: hidden;
}
.hero-corner-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.hero-corner-card__label {
  padding: 6px 8px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--rose-600);
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .home-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .home-hero__visual { order: -1; }
  .hero-lead { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .trust-row { justify-content: center; }
  .hero-corner-card { right: -0.5rem; bottom: -0.5rem; width: 96px; }
}

/* ============================================================
   HOME — ABOUT / WELCOME STRIP
   ============================================================ */
.about-strip {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--white);
}

.about-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-arch-wrap {
  position: relative;
}
.about-arch-wrap .arch {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 50% 50% 0 0 / 32% 32% 0 0;
}
.about-arch-wrap .arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-strip__text h2 {
  font-size: clamp(1.8rem, 3.5vw, var(--text-3xl));
  margin-bottom: var(--space-4);
}
.about-strip__text p {
  color: rgba(61,31,43,0.75);
  margin-bottom: var(--space-4);
}
.about-strip__text .link-arrow {
  font-weight: 600;
  color: var(--rose-600);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  margin-top: var(--space-2);
}
.about-strip__text .link-arrow:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .about-strip__grid {
    grid-template-columns: 1fr;
  }
  .about-arch-wrap .arch {
    aspect-ratio: 3/2;
    border-radius: 50% 50% 0 0 / 22% 22% 0 0;
  }
}

/* ============================================================
   HOME — SERVICES GRID
   ============================================================ */
.services-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--rose-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--rose-200);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(61,31,43,0.12);
  transform: translateY(-3px);
  border-color: var(--rose-400);
  text-decoration: none;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: var(--space-4);
  color: var(--rose-600);
  flex-shrink: 0;
}

.service-card__tag {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-pill);
  padding: 2px 8px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-family: var(--font-display);
  margin-bottom: var(--space-2);
}
.service-card p {
  font-size: var(--text-sm);
  color: rgba(61,31,43,0.65);
  flex: 1;
  margin-bottom: var(--space-4);
}
.service-card .learn-more {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--rose-600);
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}

@media (max-width: 860px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HOME — ROBOTIC SURGERY FEATURE BAND
   ============================================================ */
.robotic-band {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: #F7E8EC;
}

.robotic-band__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.robotic-arch-wrap .arch {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
  max-width: 340px;
  margin-inline: auto;
}
.robotic-arch-wrap .arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.robotic-band__text h2 {
  font-size: clamp(1.8rem, 3.5vw, var(--text-3xl));
  margin-bottom: var(--space-4);
}
.robotic-band__text p {
  color: rgba(61,31,43,0.75);
  margin-bottom: var(--space-6);
  max-width: 52ch;
}
.robotic-stat {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--rose-600);
  line-height: 1;
  margin-bottom: 0.25em;
}
.robotic-stat-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(61,31,43,0.55);
  margin-bottom: var(--space-6);
}

@media (max-width: 768px) {
  .robotic-band__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .robotic-arch-wrap .arch { max-width: 220px; aspect-ratio: 3/2; border-radius: 50% 50% 0 0 / 22% 22% 0 0; }
  .robotic-band__text p { max-width: 100%; }
  .robotic-band__grid .btn { margin-inline: auto; }
}

/* ============================================================
   HOME — TEAM TEASER
   ============================================================ */
.team-teaser {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--white);
}

.team-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  justify-content: center;
  margin-top: var(--space-8);
}

.team-member-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--plum-900);
  width: 120px;
  text-align: center;
  transition: transform 0.2s ease;
}
.team-member-link:hover { transform: translateY(-4px); text-decoration: none; }

.team-member-link .arch {
  width: 100px;
  height: 120px;
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  flex-shrink: 0;
}
.team-member-link .arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-member__name {
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1.3;
}
.team-member__cred {
  font-size: 0.72rem;
  color: var(--rose-600);
  margin-top: -0.25rem;
}

.team-teaser__cta {
  text-align: center;
  margin-top: var(--space-10);
}

@media (max-width: 480px) {
  .team-member-link { width: 90px; }
  .team-member-link .arch { width: 76px; height: 92px; }
}

/* ============================================================
   HOME — REVIEWS
   ============================================================ */
.reviews-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--rose-50);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.review-card {
  background: var(--white);
  border: 1px solid var(--rose-200);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--gold-400);
}
.review-stars svg { width: 16px; height: 16px; }

.review-text {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(61,31,43,0.80);
  flex: 1;
}

.review-attribution {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(61,31,43,0.45);
  margin-top: auto;
}

.reviews-google-link {
  text-align: center;
  margin-top: var(--space-8);
}
.reviews-google-link a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--rose-600);
}

@media (max-width: 860px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}

/* ============================================================
   HOME — INSTAGRAM / CULTURE
   ============================================================ */
.instagram-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--white);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}

.instagram-embed-wrap {
  max-width: 340px;
  margin-inline: auto;
  width: 100%;
}

/* Override Instagram's default iframe min-width on narrow screens */
.instagram-embed-wrap .instagram-media {
  min-width: 0 !important;
  width: 100% !important;
}

.instagram-follow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-8);
}

@media (max-width: 860px) {
  .instagram-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

/* ============================================================
   HOME — INSURANCE STRIP
   ============================================================ */
.insurance-section {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--plum-900);
}

.insurance-section h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, var(--text-2xl));
  text-align: center;
  margin-bottom: var(--space-8);
}

.insurance-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  max-width: 900px;
  margin-inline: auto;
}

.insurance-pill {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(244,211,216,0.55);
  border-radius: var(--radius-pill);
  padding: 0.4em 1.1em;
  font-size: var(--text-sm);
  color: var(--rose-50);
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.18s, border-color 0.18s;
}
.insurance-pill:hover {
  background: rgba(222,142,156,0.25);
  border-color: var(--rose-200);
}
/* Pills on light background (new-patients page) */
.np-section .insurance-pill {
  background: var(--white);
  border: 1.5px solid var(--rose-400);
  color: var(--rose-600);
}
.np-section .insurance-pill:hover {
  background: var(--rose-50);
  border-color: var(--rose-600);
}

.insurance-note {
  text-align: center;
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: rgba(244,211,216,0.55);
}
.insurance-note a { color: var(--rose-400); }
.insurance-note a:hover { color: var(--white); }

/* ============================================================
   HOME — VISIT US / MAP BAND
   ============================================================ */
.visit-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--rose-50);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.visit-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: block;
}

.visit-info-card {
  background: var(--white);
  border: 1px solid var(--rose-200);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
}

.visit-info-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
}

.visit-detail {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  align-items: flex-start;
}
.visit-detail__icon {
  width: 20px;
  height: 20px;
  color: var(--rose-600);
  flex-shrink: 0;
  margin-top: 2px;
}
.visit-detail__text {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: rgba(61,31,43,0.75);
}
.visit-detail__text strong {
  display: block;
  color: var(--plum-900);
  font-weight: 600;
  margin-bottom: 2px;
}
.visit-detail__text a {
  color: var(--plum-900);
  font-weight: 600;
}
.visit-detail__text a:hover { color: var(--rose-600); }

.visit-info-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-6);
}

@media (max-width: 768px) {
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map iframe { height: 280px; }
}

/* ============================================================
   SERVICES PAGE — STICKY SUB-NAV
   ============================================================ */

.services-subnav {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--rose-200);
  box-shadow: 0 2px 12px rgba(61,31,43,0.06);
}
.services-subnav__inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
.services-subnav__inner::-webkit-scrollbar { display: none; }

.services-subnav a {
  flex-shrink: 0;
  display: block;
  padding: 0.85rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(61,31,43,0.55);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}
.services-subnav a:hover { color: var(--plum-900); }
.services-subnav a.active {
  color: var(--rose-600);
  border-bottom-color: var(--rose-600);
}

/* ── Service section layout ── */
.service-section {
  padding-block: clamp(4rem, 8vw, 6.5rem);
  scroll-margin-top: calc(var(--header-h) + 52px); /* header + subnav */
}
.service-section:nth-child(odd)  { background: var(--rose-50); }
.service-section:nth-child(even) { background: var(--white); }

.service-section__header {
  margin-bottom: var(--space-10);
}
.service-section__header h2 {
  font-size: clamp(1.75rem, 3.5vw, var(--text-3xl));
  margin-bottom: var(--space-3);
}
.service-section__header .intro {
  font-size: var(--text-lg);
  color: rgba(61,31,43,0.70);
  max-width: 62ch;
  line-height: 1.65;
}

/* Two-col layout: image arch + text */
.service-split {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.service-split--reverse { grid-template-columns: 1fr 320px; }
.service-split--reverse .service-split__image { order: 2; }
.service-split--reverse .service-split__body  { order: 1; }

.service-split__image .arch {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
}
.service-split__image .arch img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}

@media (max-width: 768px) {
  .service-split,
  .service-split--reverse { grid-template-columns: 1fr; }
  .service-split--reverse .service-split__image,
  .service-split--reverse .service-split__body { order: unset; }
  .service-split__image {
    display: flex; justify-content: center;
  }
  .service-split__image .arch { max-width: 220px; aspect-ratio: 3/4; }
}

/* Condition card grid (gynecology) */
.condition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.condition-card {
  background: var(--white);
  border: 1px solid var(--rose-200);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--plum-900);
  box-shadow: var(--shadow-card);
}
.condition-card__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose-400);
  flex-shrink: 0;
}
@media (max-width: 800px) { .condition-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .condition-grid { grid-template-columns: 1fr; } }

/* Subsection within a service section */
.service-subsection {
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--rose-200);
}
.service-subsection h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}
.service-subsection p {
  color: rgba(61,31,43,0.72);
  max-width: 65ch;
  margin-bottom: var(--space-3);
}

/* Pregnancy subsection grid */
.pregnancy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-top: var(--space-6);
}
.pregnancy-card {
  background: var(--white);
  border: 1px solid var(--rose-200);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
}
.pregnancy-card h3 {
  font-size: var(--text-base);
  font-family: var(--font-display);
  margin-bottom: var(--space-2);
}
.pregnancy-card p {
  font-size: var(--text-sm);
  color: rgba(61,31,43,0.68);
  margin: 0;
}
@media (max-width: 640px) { .pregnancy-grid { grid-template-columns: 1fr; } }

/* Nitronox callout card */
.nitronox-callout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-6);
  background: var(--plum-900);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  align-items: center;
  margin-bottom: var(--space-10);
}
.nitronox-callout img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: contain;
}
.nitronox-callout__text h3 {
  color: var(--white);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}
.nitronox-callout__text p {
  color: var(--rose-200);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 600px) {
  .nitronox-callout {
    grid-template-columns: 1fr;
  }
  .nitronox-callout img { max-width: 120px; margin-inline: auto; }
}

/* Procedure grid */
.procedure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-6);
  align-items: start;
}
/* Narrower context (inside service-split body ~50% width) */
.service-split__body .procedure-grid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.procedure-card {
  background: var(--white);
  border: 1px solid var(--rose-200);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-7);
  box-shadow: var(--shadow-card);
}
.procedure-card h3 {
  font-size: 0.95rem;
  font-family: var(--font-display);
  margin-bottom: var(--space-2);
}
.procedure-card p {
  font-size: var(--text-sm);
  color: rgba(61,31,43,0.65);
  margin: 0;
}

/* Expandable procedure cards */
.procedure-card--expandable {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.procedure-card__media {
  height: 170px;
  overflow: hidden;
  flex-shrink: 0;
}
.procedure-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.procedure-card--expandable:hover .procedure-card__media img {
  transform: scale(1.04);
}
.procedure-card__content {
  padding: var(--space-5) var(--space-6);
  flex: 1;
}
.procedure-card__content h3 {
  font-size: 0.95rem;
  font-family: var(--font-display);
  margin-bottom: var(--space-2);
}
.procedure-card__content p {
  font-size: var(--text-sm);
  color: rgba(61,31,43,0.65);
  margin: 0;
}
.proc-detail { margin-top: var(--space-3); }
.proc-detail summary {
  cursor: pointer;
  list-style: none;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--rose-600);
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  user-select: none;
}
.proc-detail summary::-webkit-details-marker { display: none; }
.proc-detail[open] summary span { transform: rotate(180deg); }
.proc-detail summary span { display: inline-block; transition: transform 0.2s; }
.proc-detail__body {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--rose-200);
  font-size: var(--text-sm);
  color: rgba(61,31,43,0.7);
  line-height: 1.75;
}
.proc-detail__body p { margin-bottom: var(--space-2); }
.proc-detail__body p:last-child { margin-bottom: 0; }

/* Injection gallery */
.injection-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-8);
}
.injection-gallery__item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--rose-200);
}
.injection-gallery__item img {
  width: 100%; height: 200px;
  object-fit: cover;
  display: block;
}
.injection-gallery__item figcaption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: rgba(61,31,43,0.65);
  background: var(--white);
}
@media (max-width: 600px) { .injection-gallery { grid-template-columns: 1fr; } }

@media (max-width: 800px) { .procedure-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .procedure-grid { grid-template-columns: 1fr; } }

/* Surgery list */
.surgery-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3) var(--space-8);
  margin-top: var(--space-4);
}
.surgery-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(61,31,43,0.78);
  line-height: 1.55;
}
.surgery-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose-400);
  flex-shrink: 0;
  margin-top: 6px;
}
@media (max-width: 600px) { .surgery-list { grid-template-columns: 1fr; } }

/* Robotic CTA promo card */
.robotic-promo-card {
  background: linear-gradient(135deg, var(--plum-900) 0%, #5a2d3e 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  margin-top: var(--space-10);
  flex-wrap: wrap;
}
.robotic-promo-card__text h3 {
  color: var(--white);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}
.robotic-promo-card__text p {
  color: var(--rose-200);
  font-size: var(--text-sm);
  margin: 0;
}
.robotic-promo-card .btn-ghost {
  border-color: rgba(244,211,216,0.5);
  color: var(--rose-200);
  white-space: nowrap;
}
.robotic-promo-card .btn-ghost:hover {
  background: rgba(244,211,216,0.12);
  border-color: var(--rose-200);
  color: var(--white);
}

/* Aesthetics tag cloud */
.aesthetics-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-6);
}
.aesthetics-group h3 {
  font-size: var(--text-base);
  font-family: var(--font-display);
  margin-bottom: var(--space-4);
  color: var(--plum-900);
}
.aesthetics-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.aesthetics-group li {
  font-size: var(--text-sm);
  color: rgba(61,31,43,0.72);
  padding-left: var(--space-4);
  position: relative;
}
.aesthetics-group li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--rose-400);
  font-weight: 700;
}
@media (max-width: 720px) { .aesthetics-groups { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .aesthetics-groups { grid-template-columns: 1fr; } }

/* Family planning pill list */
.fp-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.fp-pill {
  background: var(--rose-50);
  border: 1px solid var(--rose-200);
  border-radius: var(--radius-pill);
  padding: 0.35em 1em;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--plum-900);
}
.service-section:nth-child(even) .fp-pill { background: var(--rose-50); }

/* ============================================================
   TEAM PAGE
   ============================================================ */

/* Compact page hero (used on inner pages) */
.page-hero {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(160deg, var(--rose-50) 55%, var(--rose-200) 100%);
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: var(--space-3); }
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, var(--text-3xl));
  margin-bottom: var(--space-4);
}
.page-hero .lead {
  font-size: var(--text-lg);
  color: rgba(61,31,43,0.70);
  max-width: 58ch;
  margin-inline: auto;
  line-height: 1.6;
}

/* Alternating bio rows */
.team-section {
  padding-block: clamp(4rem, 8vw, 6rem);
}
.team-section:nth-child(even) { background: var(--white); }
.team-section:nth-child(odd)  { background: var(--rose-50); }

.team-bio {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

/* Odd-numbered members: portrait left, text right */
/* Even-numbered: portrait right, text left */
.team-bio--reverse {
  grid-template-columns: 1fr 360px;
}
.team-bio--reverse .team-bio__portrait {
  order: 2;
}
.team-bio--reverse .team-bio__text {
  order: 1;
}

.team-bio__portrait {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.team-bio__arch {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3/4;
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
  overflow: hidden;
}
.team-bio__arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-bio__text { padding-top: var(--space-4); }

.team-bio__name {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, var(--text-3xl));
  font-weight: 600;
  line-height: 1.15;
  color: var(--plum-900);
  margin-bottom: var(--space-2);
}

.team-bio__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--rose-600);
  margin-bottom: var(--space-4);
}

.team-bio__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}
.team-bio__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold-400);
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
}

.team-bio__body {
  font-size: var(--text-base);
  line-height: 1.75;
  color: rgba(61,31,43,0.78);
}
.team-bio__body p { margin-bottom: var(--space-4); }
.team-bio__body p:last-child { margin-bottom: 0; }

.team-bio__affiliations {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--rose-200);
  font-size: var(--text-sm);
  color: rgba(61,31,43,0.55);
}
.team-bio__affiliations strong {
  color: var(--plum-900);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* Divider between bio sections */
.team-divider {
  width: 64px;
  height: 2px;
  background: var(--rose-200);
  margin: 0 auto;
}

/* Team CTA band */
.team-cta-band {
  background: var(--plum-900);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  text-align: center;
}
.team-cta-band h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, var(--text-2xl));
  margin-bottom: var(--space-6);
}
.team-cta-band .cta-row {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}
.team-cta-band .btn-ghost {
  border-color: rgba(244,211,216,0.5);
  color: var(--rose-200);
}
.team-cta-band .btn-ghost:hover {
  background: rgba(244,211,216,0.12);
  border-color: var(--rose-200);
  color: var(--white);
}

/* Mobile: stack portrait above text, full width, un-sticky */
@media (max-width: 860px) {
  .team-bio,
  .team-bio--reverse {
    grid-template-columns: 1fr;
  }
  .team-bio--reverse .team-bio__portrait,
  .team-bio--reverse .team-bio__text {
    order: unset;
  }
  .team-bio__portrait {
    position: static;
    display: flex;
    justify-content: center;
  }
  .team-bio__arch {
    max-width: 240px;
    aspect-ratio: 3/4;
  }
  .team-bio__text { padding-top: 0; text-align: center; }
  .team-bio__tags { justify-content: center; }
}

/* ============================================================
   ROBOTIC SURGERY PAGE
   ============================================================ */

/* ── Hero ── */
.robotic-hero {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: linear-gradient(160deg, var(--plum-900) 0%, #5a2d42 100%);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.robotic-hero__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-12);
  align-items: center;
}
.robotic-hero__text .eyebrow {
  color: var(--gold-400);
  border-color: var(--gold-400);
}
.robotic-hero__text h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-block: var(--space-5) var(--space-6);
  line-height: 1.1;
}
.robotic-hero__text .lead {
  color: rgba(255,255,255,.8);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}
/* Stat row */
.robotic-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}
.robotic-stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.robotic-stat__number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.robotic-stat__label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.7);
  max-width: 14ch;
  line-height: 1.3;
}
.robotic-hero__image {
  position: relative;
}
.robotic-hero__image .arch {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  overflow: hidden;
}
.robotic-hero__image .arch img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
}
@media (max-width: 860px) {
  .robotic-hero__grid {
    grid-template-columns: 1fr;
  }
  .robotic-hero__image {
    display: flex;
    justify-content: center;
    order: -1;
  }
  .robotic-hero__image .arch {
    max-width: 240px;
    aspect-ratio: 3/4;
  }
  .robotic-stats { justify-content: center; }
  .robotic-hero__text { text-align: center; }
}

/* ── Content sections alternating ── */
.robotic-section {
  padding-block: clamp(3rem, 6vw, 5rem);
  scroll-margin-top: var(--header-h);
}
.robotic-section:nth-child(odd) { background: var(--rose-50); }
.robotic-section:nth-child(even) { background: var(--white); }
.robotic-section__header {
  margin-bottom: var(--space-10);
}
.robotic-section__header .eyebrow { margin-bottom: var(--space-3); }
.robotic-section__header h2 {
  font-size: clamp(1.6rem, 3vw, var(--text-3xl));
  color: var(--plum-900);
  margin-bottom: var(--space-4);
}
.robotic-section__header p {
  color: #5c3d4a;
  font-size: var(--text-lg);
  max-width: 64ch;
  line-height: 1.7;
}

/* ── Advantage checklist ── */
.advantage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
.advantage-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background: var(--white);
  border: 1px solid var(--rose-200);
  border-radius: 12px;
  padding: var(--space-5) var(--space-6);
}
.advantage-list__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose-50);
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantage-list__icon svg {
  width: 20px; height: 20px;
  stroke: var(--rose-600);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.advantage-list__text strong {
  display: block;
  font-weight: 600;
  color: var(--plum-900);
  margin-bottom: var(--space-1);
}
.advantage-list__text span {
  font-size: var(--text-sm);
  color: #6b4455;
  line-height: 1.5;
}
@media (max-width: 700px) { .advantage-list { grid-template-columns: 1fr; } }

/* Sources detail */
.sources-detail {
  margin-top: var(--space-8);
  font-size: var(--text-sm);
  color: #888;
}
.sources-detail summary {
  cursor: pointer;
  color: var(--rose-600);
  font-weight: 500;
  user-select: none;
}
.sources-detail ol {
  margin-top: var(--space-3);
  padding-left: var(--space-6);
  line-height: 1.8;
}
.sources-detail a { color: var(--rose-600); }

/* ── FAQ Accordion ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--rose-200);
  border-radius: 14px;
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--rose-200);
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--plum-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  background: var(--white);
  transition: background .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--rose-600);
  flex-shrink: 0;
  margin-left: var(--space-4);
  transition: transform .2s;
}
.faq-item[open] summary { background: var(--rose-50); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
  padding: 0 var(--space-6) var(--space-6);
  background: var(--white);
  color: #5c3d4a;
  font-size: var(--text-base);
  line-height: 1.75;
}
.faq-item[open] .faq-item__body { background: var(--rose-50); }


/* ============================================================
   NEW PATIENTS PAGE
   ============================================================ */

/* ── Content sections ── */
.np-section {
  padding-block: clamp(3rem, 6vw, 5rem);
  scroll-margin-top: var(--header-h);
}
.np-section:nth-child(odd)  { background: var(--rose-50); }
.np-section:nth-child(even) { background: var(--white); }
.np-section__header {
  margin-bottom: var(--space-10);
}
.np-section__header .eyebrow { margin-bottom: var(--space-3); }
.np-section__header h2 {
  font-size: clamp(1.6rem, 3vw, var(--text-3xl));
  color: var(--plum-900);
  margin-bottom: var(--space-4);
}
.np-section__header p {
  color: #5c3d4a;
  font-size: var(--text-lg);
  max-width: 64ch;
  line-height: 1.7;
}

/* ── Check-in info card ── */
.checkin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}
.checkin-card {
  background: var(--white);
  border: 1px solid var(--rose-200);
  border-radius: 16px;
  padding: var(--space-8);
}
.np-section:nth-child(odd) .checkin-card { background: var(--white); }
.checkin-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--rose-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}
.checkin-card__icon svg {
  width: 24px; height: 24px;
  stroke: var(--rose-600);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.checkin-card h3 {
  font-size: var(--text-lg);
  color: var(--plum-900);
  margin-bottom: var(--space-3);
}
.checkin-card p {
  color: #5c3d4a;
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}
.checkin-card .btn { width: 100%; text-align: center; justify-content: center; }

/* What to bring checklist */
.bring-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.bring-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--rose-50);
  border-radius: 10px;
  font-size: var(--text-base);
  color: var(--plum-900);
  line-height: 1.4;
}
.bring-list li svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  stroke: var(--rose-600);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
}
.bring-note {
  margin-top: var(--space-5);
  padding: var(--space-4) var(--space-5);
  background: #fff3f0;
  border-left: 3px solid var(--rose-400);
  border-radius: 0 8px 8px 0;
  font-size: var(--text-sm);
  color: #7a3d4e;
  line-height: 1.6;
}
@media (max-width: 780px) {
  .checkin-grid { grid-template-columns: 1fr; }
}

/* ── Form download cards ── */
.forms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-5);
}
.form-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  background: var(--white);
  border: 1px solid var(--rose-200);
  border-radius: 14px;
  padding: var(--space-6);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, border-color .2s, transform .15s;
}
.form-card:hover {
  box-shadow: 0 6px 24px rgba(61,31,43,.1);
  border-color: var(--rose-400);
  transform: translateY(-2px);
}
.form-card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--rose-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.form-card__icon svg {
  width: 22px; height: 22px;
  stroke: var(--rose-600);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-card__name {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--plum-900);
  line-height: 1.3;
  flex: 1;
}
.form-card__dl {
  font-size: var(--text-sm);
  color: var(--rose-600);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

/* ── np-insurance (reuses .insurance-pills but on white bg) ── */
.np-insurance-note {
  margin-top: var(--space-8);
  max-width: 72ch;
  font-size: var(--text-base);
  color: #5c3d4a;
  line-height: 1.75;
  background: var(--rose-50);
  border-radius: 12px;
  padding: var(--space-6) var(--space-8);
  border: 1px solid var(--rose-200);
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ── Two-col contact layout ── */
.contact-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(61,31,43,.12);
  min-height: 560px;
}
.contact-card {
  background: var(--plum-900);
  color: var(--white);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.contact-card__section {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.contact-card__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.contact-card__phone {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
}
.contact-card__phone:hover { color: var(--gold-400); }
.contact-card address {
  font-style: normal;
  font-size: var(--text-base);
  line-height: 1.7;
  color: rgba(255,255,255,.85);
}
.contact-card address a {
  color: rgba(255,255,255,.85);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.3);
}
.contact-card address a:hover { color: var(--gold-400); }
.contact-card__hours {
  font-size: var(--text-base);
  line-height: 1.7;
  color: rgba(255,255,255,.85);
}
.contact-card__parking {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.contact-card__parking svg {
  width: 14px; height: 14px;
  stroke: var(--gold-400);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.contact-card__btns {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.contact-card__btns .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.contact-card .btn-ghost {
  border-color: rgba(255,255,255,.35);
  color: var(--white);
}
.contact-card .btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.contact-card__social {
  display: flex;
  gap: var(--space-4);
}
.contact-card__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: border-color .2s, color .2s;
}
.contact-card__social a:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
}
.contact-card__social svg {
  width: 16px; height: 16px;
}
.contact-card__languages {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.55);
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: var(--space-4);
}
.contact-map {
  position: relative;
  min-height: 420px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  display: block;
}
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-map { min-height: 320px; }
  .contact-map iframe { min-height: 320px; }
}

/* ── When to call vs message helper ── */
.contact-helper {
  padding-block: clamp(3rem, 6vw, 4.5rem);
  background: var(--rose-50);
}
.contact-helper__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.helper-card {
  background: var(--white);
  border: 1px solid var(--rose-200);
  border-radius: 16px;
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.helper-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.helper-card__icon svg {
  width: 24px; height: 24px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.helper-card--urgent .helper-card__icon  { background: #fff0f0; }
.helper-card--urgent .helper-card__icon svg { stroke: #c0392b; }
.helper-card--call    .helper-card__icon  { background: #fff8ec; }
.helper-card--call    .helper-card__icon svg { stroke: var(--gold-400); }
.helper-card--message .helper-card__icon  { background: var(--rose-50); }
.helper-card--message .helper-card__icon svg { stroke: var(--rose-600); }
.helper-card h3 {
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--plum-900);
}
.helper-card p {
  font-size: var(--text-sm);
  color: #5c3d4a;
  line-height: 1.7;
  flex: 1;
}
.helper-card a { color: var(--rose-600); }
@media (max-width: 780px) {
  .contact-helper__grid { grid-template-columns: 1fr; }
}

/* ── Office gallery ── */
.office-gallery {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--white);
}
.office-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: end;
  margin-top: var(--space-10);
}
.office-gallery__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.office-gallery__arch {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
  overflow: hidden;
}
.office-gallery__arch img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.office-gallery__caption {
  font-size: var(--text-sm);
  color: #7a5565;
  text-align: center;
}
@media (max-width: 640px) {
  .office-gallery__grid { grid-template-columns: 1fr; }
}


/* ── Contact form ── */
.contact-form {
  max-width: 680px;
  margin: var(--space-10) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.contact-form__field label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--plum-900);
}
.contact-form__field input,
.contact-form__field textarea {
  border: 1.5px solid var(--rose-200);
  border-radius: var(--radius-sm);
  padding: 0.65em 1em;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--plum-900);
  background: var(--white);
  transition: border-color 0.15s;
  resize: vertical;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--rose-600);
  box-shadow: 0 0 0 3px rgba(184,92,114,0.15);
}
@media (max-width: 600px) { .contact-form__row { grid-template-columns: 1fr; } }

/* ── Reviews multi-link row ── */
.reviews-google-link {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-6);
}
.reviews-google-link a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--rose-600);
  text-decoration: none;
  padding: 0.4em 1em;
  border: 1.5px solid var(--rose-200);
  border-radius: var(--radius-pill);
  transition: background 0.15s, border-color 0.15s;
}
.reviews-google-link a:hover {
  background: var(--rose-50);
  border-color: var(--rose-400);
}

/* ── Ultrasound gallery (pregnancy section) ── */
.ultrasound-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-top: var(--space-4);
  position: relative;
}
.ultrasound-gallery__item {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ultrasound-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ultrasound-gallery__caption {
  grid-column: 1 / -1;
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--rose-600);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: var(--space-1);
}
