/* ================================================================
   Dr. Shruthi Neela — website-v2/styles.css
   Modern & human-centered redesign
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ── Design tokens ───────────────────────────────────────────── */
:root {
  /* Surfaces — warm cream family, never pure white */
  --cream:       oklch(97.5% 0.007 65);
  --cream-2:     oklch(94%   0.010 65);
  --cream-3:     oklch(91%   0.012 65);
  --sage-tint:   oklch(95.5% 0.018 155);
  --terra-tint:  oklch(96%   0.018 40);

  /* Ink — warm-tinted neutrals, never pure black */
  --ink:         oklch(18%   0.012 55);
  --ink-2:       oklch(40%   0.010 55);
  --ink-3:       oklch(62%   0.008 55);
  --ink-4:       oklch(78%   0.006 55);

  /* Accent — terracotta primary */
  --terra:       oklch(56%   0.115 36);
  --terra-dark:  oklch(46%   0.110 36);
  --terra-light: oklch(96%   0.018 40);

  /* Accent — sage secondary */
  --sage:        oklch(53%   0.075 155);
  --sage-dark:   oklch(43%   0.075 155);

  /* Utility */
  --border:      oklch(88%   0.010 65);
  --border-2:    oklch(82%   0.012 65);
  --white:       oklch(99%   0.004 65);

  /* Typography */
  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --nav-h:    72px;
  --max-w:    1200px;
  --r-sm:     8px;
  --r:        14px;
  --r-lg:     24px;
  --r-xl:     40px;

  /* Shadows — warm-tinted, never pure black */
  --s-sm:    0 1px 3px oklch(18% 0.012 55 / 0.07);
  --s:       0 4px 16px oklch(18% 0.012 55 / 0.08);
  --s-lg:    0 8px 40px oklch(18% 0.012 55 / 0.12);
  --s-terra: 0 8px 24px oklch(56% 0.115 36 / 0.32);

  /* Transitions — specify exact properties, never 'all' */
  --t-color: background-color 200ms ease-out, color 200ms ease-out, border-color 200ms ease-out;
  --t-move:  transform 200ms ease-out;
  --t-fade:  opacity 200ms ease-out;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1rem, 2vw, 1.2rem); letter-spacing: -0.008em; }
p  { color: var(--ink-2); line-height: 1.75; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}

.breadcrumbs {
  margin-bottom: 18px;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--ink-3);
}
.breadcrumbs li {
  display: flex;
  align-items: center;
}
.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin: 0 8px;
  color: var(--ink-4);
}
.breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: color 150ms ease-out;
}
.breadcrumbs a:hover {
  color: var(--terra);
}
.breadcrumbs li[aria-current="page"] {
  color: var(--ink-2);
  font-weight: 500;
}

/* ── Container ───────────────────────────────────────────────── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px)  { .wrap { padding: 0 24px; } }
@media (max-width: 480px)  { .wrap { padding: 0 16px; } }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: var(--r-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 200ms ease-out, color 200ms ease-out,
              border-color 200ms ease-out, transform 200ms ease-out,
              box-shadow 200ms ease-out;
}
.btn:active { transform: scale(0.97); }
.btn-lg { padding: 14px 30px; font-size: 0.93rem; }

.btn-terra {
  background: var(--terra);
  color: var(--white);
  border: 1.5px solid var(--terra);
}
.btn-terra:hover {
  background: var(--terra-dark);
  border-color: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: var(--s-terra);
}
.btn-terra:active { transform: scale(0.97); box-shadow: none; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-2);
}
.btn-outline:hover {
  border-color: var(--ink-3);
  transform: translateY(-1px);
}
.btn-outline:active { transform: scale(0.97); }

.btn-outline-terra {
  background: transparent;
  color: var(--terra);
  border: 1.5px solid var(--terra);
}
.btn-outline-terra:hover {
  background: var(--terra-light);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--terra);
  border: 1.5px solid transparent;
}
.btn-white:hover {
  background: var(--terra-light);
  transform: translateY(-2px);
  box-shadow: var(--s-lg);
}
.btn-white:active { transform: scale(0.97); box-shadow: none; }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid oklch(99% 0.004 65 / 0.45);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: oklch(99% 0.004 65 / 0.1);
  transform: translateY(-1px);
}

/* ── Scroll progress ─────────────────────────────────────────── */
#progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: var(--terra);
  z-index: 9999;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background-color 250ms ease-out, box-shadow 250ms ease-out;
}
.nav.scrolled {
  background: var(--cream);
  box-shadow: 0 1px 0 var(--border), 0 4px 28px oklch(18% 0.012 55 / 0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-brand { display: flex; align-items: center; flex-shrink: 0; }
.nav-brand img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--ink-2);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: background-color 150ms ease-out, color 150ms ease-out;
}
.nav-link:hover { color: var(--ink); background: var(--cream-2); }
.nav-link.active { color: var(--ink); font-weight: 500; }
.drop-btn { border: none; background: none; }

/* Dropdown */
.has-drop { position: relative; }
.has-drop::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -8px;
  right: -8px;
  height: 14px;
}
.drop-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--s-lg);
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease-out, transform 150ms ease-out;
}
.has-drop:hover .drop-panel,
.has-drop:focus-within .drop-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.drop-panel a, .drop-panel button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  font-size: 0.84rem;
  color: var(--ink-2);
  border-radius: var(--r-sm);
  transition: background-color 100ms ease-out, color 100ms ease-out;
}
.drop-panel a:hover, .drop-panel button:hover { background: var(--cream-2); color: var(--ink); }
.drop-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding: 8px 12px 3px;
}

.drop-wide {
  min-width: 560px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 4px;
  left: -80px;
  transform: translateX(0) translateY(-6px);
}
.has-drop:hover .drop-wide,
.has-drop:focus-within .drop-wide {
  transform: translateX(0) translateY(0);
}
.drop-view-all {
  grid-column: 1 / -1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-top: 1px solid var(--border);
  margin: 4px 0 0;
  padding: 9px 12px !important;
  font-size: 0.8rem !important;
  font-weight: 500;
  color: var(--terra) !important;
}
.drop-view-all:hover { background: oklch(71% .14 35 / .08) !important; color: var(--terra) !important; }

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink-2);
  border-radius: 2px;
  transition: transform 220ms ease-out, opacity 150ms ease-out;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-end { display: flex; align-items: center; gap: 10px; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .burger { display: flex; }
}
/* Hide nav CTA on small screens so burger always has room */
@media (max-width: 520px) {
  .nav-end .btn { display: none; }
}

/* ── Mobile drawer ───────────────────────────────────────────── */
.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(380px, 92vw);
  height: 100dvh;
  background: var(--cream);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 20px 24px 40px;
}
.drawer.open { transform: translateX(0); }
.drawer-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 28px;
}
.drawer-close-btn {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--ink-2);
  transition: background-color 150ms ease-out, color 150ms ease-out;
}
.drawer-close-btn:hover { background: var(--cream-3); color: var(--ink); }
.drawer nav { display: flex; flex-direction: column; gap: 2px; }
.d-link {
  display: block;
  padding: 11px 14px;
  font-size: 0.97rem;
  color: var(--ink);
  border-radius: var(--r-sm);
  transition: background-color 100ms ease-out;
}
.d-link:hover { background: var(--cream-2); }
.d-acc summary {
  padding: 11px 14px;
  font-size: 0.97rem;
  color: var(--ink);
  border-radius: var(--r-sm);
  cursor: pointer;
  list-style: none;
  transition: background-color 100ms ease-out;
}
.d-acc summary:hover { background: var(--cream-2); }
.d-sub {
  padding: 4px 0 4px 12px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.d-sub a {
  display: block;
  padding: 8px 14px;
  font-size: 0.88rem;
  color: var(--ink-2);
  border-radius: var(--r-sm);
  transition: background-color 100ms ease-out, color 100ms ease-out;
}
.d-sub a:hover { background: var(--cream-2); color: var(--ink); }
.drawer-cta { margin-top: 24px; }
.drawer-cta .btn { width: 100%; justify-content: center; }

.overlay {
  position: fixed;
  inset: 0;
  background: oklch(18% 0.012 55 / 0.35);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(2px);
  transition: opacity 320ms ease-out;
  -webkit-backdrop-filter: blur(2px);
}
.overlay.show { opacity: 1; pointer-events: auto; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--cream);
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
/* Organic warm shape behind photo — subtle, not a dark mesh */
.hero::after {
  content: '';
  position: absolute;
  right: -5%;
  top: 5%;
  width: 55%;
  height: 90%;
  border-radius: 42% 58% 65% 35% / 40% 45% 55% 60%;
  background: oklch(56% 0.115 36 / 0.06);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  padding: 64px 0 80px;
}
.hero-copy { max-width: 580px; }
.hero h1 { margin-bottom: 22px; }
.hero-desc {
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-creds {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--ink-3);
}
.hero-creds-dot { color: var(--border-2); }

.hero-visual { position: relative; flex-shrink: 0; }
.hero-photo {
  border-radius: 2rem 2rem 6rem 2rem;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-2);
  box-shadow: 0 24px 64px oklch(18% 0.012 55 / 0.12);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-badge {
  position: absolute;
  bottom: 36px;
  left: -28px;
  background: var(--white);
  border-radius: var(--r);
  padding: 14px 18px;
  box-shadow: var(--s-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
}
.badge-n {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--terra);
  line-height: 1;
}
.badge-t {
  font-size: 0.78rem;
  color: var(--ink-2);
  line-height: 1.35;
}

@media (max-width: 1000px) {
  .hero-layout { grid-template-columns: 1fr 360px; gap: 48px; }
}
@media (max-width: 820px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 0 64px;
  }
  .hero-copy { max-width: 100%; }
  .hero .eyebrow { justify-content: center; }
  .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-creds { justify-content: center; }
  .hero-visual { max-width: 300px; margin: 0 auto; }
  .hero-photo { border-radius: var(--r-xl); aspect-ratio: 1; }
  .hero-badge { bottom: 12px; left: -12px; }
  .hero::after { display: none; }
}

/* ── Trust strip ─────────────────────────────────────────────── */
.trust-strip {
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 200px;
  padding: 0 28px;
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child  { padding-right: 0; }
.trust-item + .trust-item { border-left: 1px solid var(--border); }
.trust-icon {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  background: var(--terra-light);
  border-radius: 10px;
  color: var(--terra);
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.trust-item span {
  display: block;
  font-size: 0.76rem;
  color: var(--ink-3);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .trust-row { gap: 16px; }
  .trust-item { padding: 0; border-left: none !important; min-width: 160px; }
}

/* ── About ───────────────────────────────────────────────────── */
.about-sec {
  background: var(--sage-tint);
  padding: 96px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: start;
}
.about-photo-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 28px);
}
.about-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-2);
  box-shadow: var(--s-lg);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
.about-text h2 { margin-bottom: 20px; }
.about-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--sage);
  border-left: 3px solid var(--sage);
  padding: 8px 0 8px 22px;
  margin: 24px 0 28px;
  line-height: 1.65;
}
.about-text p { margin-bottom: 16px; }
.cred-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 32px;
}
.cred-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.cred-list li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrap { position: static; }
  .about-photo { aspect-ratio: 3/2; max-height: 320px; }
  .about-photo img { object-position: center 40%; }
}

/* ── Breast cancer awareness mark ────────────────────────────── */
.ribbon-mark { display: inline-flex; flex-shrink: 0; }

.about-sec { position: relative; overflow: hidden; }
.about-grid { position: relative; z-index: 1; }
.about-watermark {
  position: absolute;
  top: -6%;
  right: -4%;
  width: 340px;
  max-width: 36%;
  height: auto;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 900px) {
  .about-watermark { width: 220px; max-width: 52%; top: -3%; right: -8%; }
}

.awareness-strip {
  background: var(--terra-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.awareness-row {
  display: flex;
  align-items: center;
  gap: 22px;
}
.awareness-icon {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--terra);
  flex-shrink: 0;
  box-shadow: var(--s-sm);
}
.awareness-text {
  font-size: 0.93rem;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0;
}
.awareness-text strong { color: var(--ink); font-weight: 600; }
.awareness-text a {
  color: var(--terra);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.awareness-text a:hover { color: var(--terra-dark); }

@media (max-width: 640px) {
  .awareness-row { flex-direction: column; text-align: center; gap: 14px; }
}

/* ── Section head ────────────────────────────────────────────── */
.sec-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.sec-head h2 { margin-bottom: 14px; }
.sec-sub {
  font-size: 0.97rem;
  color: var(--ink-3);
  line-height: 1.7;
}

/* ── Procedures ──────────────────────────────────────────────── */
.proc-sec {
  padding: 96px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.proc-sec .wrap { position: relative; z-index: 1; }
.proc-watermark {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 300px;
  max-width: 34%;
  height: auto;
  opacity: 0.06;
  transform: rotate(-18deg);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 900px) {
  .proc-watermark { width: 200px; max-width: 50%; bottom: -4%; left: -10%; }
}
.proc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  align-items: start;
}
.proc-col-b { padding-top: 48px; } /* stagger offset — not 3 equal cards */
.proc-item {
  display: grid;
  grid-template-columns: 36px 1fr 20px;
  gap: 0 14px;
  align-items: start;
  padding: 24px 20px;
  border-top: 1px solid var(--border);
  border-radius: var(--r);
  margin: 0 -20px;
  color: inherit;
  transition: background-color 150ms ease-out;
}
.proc-item:hover { background: var(--cream-2); }
.proc-item:last-child { border-bottom: 1px solid var(--border); }
.proc-item:hover .proc-arr {
  transform: translateX(4px);
  color: var(--terra);
}
.proc-n {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-4);
  letter-spacing: 0.04em;
  padding-top: 3px;
}
.proc-item h3 { font-size: 1rem; margin-bottom: 5px; }
.proc-item p {
  font-size: 0.85rem;
  color: var(--ink-3);
  line-height: 1.5;
}
.proc-arr {
  color: var(--ink-4);
  padding-top: 2px;
  transition: transform 200ms ease-out, color 200ms ease-out;
  font-size: 1rem;
}
.proc-more {
  text-align: center;
  margin-top: 52px;
}

@media (max-width: 720px) {
  .proc-cols { grid-template-columns: 1fr; }
  .proc-col-b { padding-top: 0; }
}

/* ── Language band ───────────────────────────────────────────── */
.lang-band {
  background: var(--terra-light);
  border-top: 1px solid oklch(56% 0.115 36 / 0.18);
  border-bottom: 1px solid oklch(56% 0.115 36 / 0.18);
  padding: 26px 0;
}
.lang-inner { text-align: center; }
.lang-inner p {
  font-size: 1rem;
  color: var(--ink-2);
}
.lang-inner strong { color: var(--terra-dark); }

/* ── Second opinion ──────────────────────────────────────────── */
.opinion-sec {
  padding: 96px 0;
  background: var(--cream-2);
}
.opinion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.opinion-text h2 { margin-bottom: 16px; }
.opinion-text p { margin-bottom: 20px; }
.opinion-text .btn { margin-top: 8px; }
.opinion-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--s);
}
.opinion-card h3 { font-size: 1.1rem; margin-bottom: 16px; }
.opinion-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.opinion-step {
  display: flex;
  gap: 14px;
}
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--terra-light);
  color: var(--terra);
  font-size: 0.78rem;
  font-weight: 500;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-txt { font-size: 0.88rem; color: var(--ink-2); }

@media (max-width: 820px) {
  .opinion-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── CTA band ────────────────────────────────────────────────── */
.cta-band {
  background: var(--terra);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 90% 50%, oklch(46% 0.110 36 / 0.4) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 18px;
}
.cta-inner > p {
  color: oklch(99% 0.004 65 / 0.75);
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid oklch(99% 0.004 65 / 0.08);
}
.foot-brand img { height: 34px; width: auto; margin-bottom: 16px; }
.foot-brand p {
  font-size: 0.86rem;
  color: oklch(99% 0.004 65 / 0.45);
  line-height: 1.65;
}
.foot-col { display: flex; flex-direction: column; gap: 0; }
.foot-col-h {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: oklch(99% 0.004 65 / 0.3);
  margin-bottom: 16px;
}
.foot-col a {
  padding: 5px 0;
  font-size: 0.86rem;
  color: oklch(99% 0.004 65 / 0.55);
  transition: color 150ms ease-out;
}
.foot-col a:hover { color: var(--white); }
.foot-col p {
  font-size: 0.86rem;
  color: oklch(99% 0.004 65 / 0.5);
  margin-bottom: 10px;
}
.foot-bottom {
  padding: 22px 0;
  text-align: center;
}
.foot-bottom p {
  font-size: 0.78rem;
  color: oklch(99% 0.004 65 / 0.25);
}

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ── Scroll reveal ───────────────────────────────────────────── */
[data-r] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
[data-r].in {
  opacity: 1;
  transform: translateY(0);
}
[data-r][data-d="1"] { transition-delay: 80ms; }
[data-r][data-d="2"] { transition-delay: 160ms; }
[data-r][data-d="3"] { transition-delay: 240ms; }
[data-r][data-d="4"] { transition-delay: 320ms; }
[data-r][data-d="5"] { transition-delay: 400ms; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  [data-r] { opacity: 1; transform: none; transition: none; }
  .btn { transition: background-color 200ms ease-out, color 200ms ease-out,
                     border-color 200ms ease-out; }
}

/* ── Inline brand logo ───────────────────────────────────────── */
.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.brand-emblem { flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; gap: 1px; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  white-space: nowrap;
}
.brand-dr { font-style: normal; color: var(--terra); }
.brand-role {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
}

/* ── Nav phone (desktop) ─────────────────────────────────────── */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 150ms ease-out;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--terra); }
.nav-phone svg { color: var(--terra); flex-shrink: 0; }
@media (max-width: 1100px) { .nav-phone { display: none; } }

/* ── OPD timing strip ────────────────────────────────────────── */
.opd-strip {
  background: var(--ink);
  padding: 10px 0;
}
.opd-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 24px;
}
.opd-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: oklch(99% 0.004 65 / 0.6);
}
.opd-item svg { color: var(--terra); flex-shrink: 0; }
.opd-item strong { color: oklch(99% 0.004 65 / 0.9); font-weight: 500; }
.opd-item a { color: inherit; transition: color 150ms ease-out; }
.opd-item a:hover { color: var(--white); }
.opd-sep { color: oklch(99% 0.004 65 / 0.2); font-size: 0.8rem; }

/* ── Stats ───────────────────────────────────────────────────── */
.stats-sec {
  background: var(--terra);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
.stats-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 100% 50%, oklch(46% 0.110 36 / 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}
.stat-card {
  text-align: center;
  padding: 0 24px;
}
.stat-card + .stat-card {
  border-left: 1px solid oklch(99% 0.004 65 / 0.15);
}
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.stat-lbl {
  display: block;
  font-size: 0.8rem;
  color: oklch(99% 0.004 65 / 0.72);
  line-height: 1.35;
  font-weight: 400;
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .stat-card { padding: 0 16px; }
  .stat-card:nth-child(1), .stat-card:nth-child(2) { padding-bottom: 24px; border-bottom: 1px solid oklch(99% 0.004 65 / 0.15); }
  .stat-card:nth-child(odd) { border-left: none; }
  .stat-card:nth-child(even) { border-left: 1px solid oklch(99% 0.004 65 / 0.15); }
}

/* ── Associations ────────────────────────────────────────────── */
.assoc-sec {
  background: var(--cream-2);
  padding: 80px 0;
}
.assoc-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.assoc-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.84rem;
  color: var(--ink-2);
  font-weight: 400;
  line-height: 1.3;
  transition: border-color 150ms ease-out, color 150ms ease-out;
}
.assoc-badge:hover { border-color: var(--terra); color: var(--ink); }
.assoc-badge svg { color: var(--terra); flex-shrink: 0; }

/* ── Testimonials ────────────────────────────────────────────── */
.test-sec {
  padding: 96px 0;
  background: var(--cream);
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
.test-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--s-sm);
  transition: box-shadow 200ms ease-out, transform 200ms ease-out;
}
.test-card:hover {
  box-shadow: var(--s);
  transform: translateY(-3px);
}
.test-stars {
  color: oklch(72% 0.16 65);
  font-size: 0.88rem;
  letter-spacing: 3px;
  line-height: 1;
}
.test-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.7;
  flex: 1;
}
.test-quote::before { content: '\201C'; }
.test-quote::after  { content: '\201D'; }
.test-meta { border-top: 1px solid var(--border); padding-top: 14px; }
.test-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.test-proc {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-3);
}
.test-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.78rem;
  color: var(--ink-4);
  font-style: italic;
}

@media (max-width: 900px) { .test-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
@media (min-width: 600px) and (max-width: 900px) { .test-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; } }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-sec {
  padding: 96px 0;
  background: var(--sage-tint);
}
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.faq-list {
  margin-top: 48px;
}
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 150ms ease-out;
}
.faq-btn:hover { color: var(--terra); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: border-color 200ms ease-out,
              background-color 200ms ease-out,
              transform 200ms ease-out;
}
.faq-item[open] .faq-icon,
.faq-item.open   .faq-icon {
  border-color: var(--terra);
  background: var(--terra-light);
  transform: rotate(45deg);
}
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-body { grid-template-rows: 1fr; }
.faq-body-inner {
  overflow: hidden;
  padding-bottom: 0;
  transition: padding-bottom 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-body-inner { padding-bottom: 22px; }
.faq-body-inner p {
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.75;
}
.faq-body-inner p + p { margin-top: 10px; }

/* ── Appointment form ────────────────────────────────────────── */
.apt-sec {
  padding: 96px 0;
  background: var(--cream-2);
}
.apt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.apt-info h2 { margin-bottom: 18px; }
.apt-info p  { margin-bottom: 14px; }
.apt-opd {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 24px;
  margin-top: 24px;
}
.apt-opd h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--sans);
}
.opd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.86rem;
  border-bottom: 1px solid var(--border);
}
.opd-row:last-child { border-bottom: none; }
.opd-row-label { color: var(--ink-2); }
.opd-row-val { font-weight: 500; color: var(--ink); }

.apt-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--s);
}
.apt-form h3 { font-size: 1.1rem; margin-bottom: 24px; color: var(--ink); }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color 150ms ease-out, background-color 150ms ease-out, box-shadow 150ms ease-out;
}
.form-input:hover,
.form-select:hover {
  border-color: var(--border-2);
  background: var(--white);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--terra);
  background: var(--white);
  box-shadow: 0 0 0 3px oklch(56% .115 36 / .12);
}
.form-textarea { resize: vertical; min-height: 88px; }

/* Custom select — remove OS arrow, inject chevron */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23A0877A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23C4714F' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Muted placeholder state */
.form-select.placeholder { color: var(--ink-3); }
.form-select option { color: var(--ink); }

/* ── Custom select (csel) ────────────────────────────────────── */
.csel { position: relative; }
.csel-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: border-color 150ms ease-out, background-color 150ms ease-out, box-shadow 150ms ease-out;
}
.csel-btn:hover { border-color: var(--border-2); background: var(--white); }
.csel-btn:focus, .csel.open .csel-btn {
  border-color: var(--terra);
  background: var(--white);
  box-shadow: 0 0 0 3px oklch(56% .115 36 / .12);
}
.csel-val { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.csel-val.placeholder { color: var(--ink-3); }
.csel-arrow {
  flex-shrink: 0;
  color: var(--ink-3);
  transition: transform 200ms ease-out, color 150ms ease-out;
}
.csel.open .csel-arrow { transform: rotate(180deg); color: var(--terra); }

/* Dropdown list */
.csel-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  box-shadow: 0 8px 32px oklch(18% .012 55 / .12);
  z-index: 200;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 150ms ease-out, transform 150ms ease-out;
  max-height: 280px;
  overflow-y: auto;
}
.csel.open .csel-list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.csel-list li {
  padding: 10px 16px;
  font-size: 0.88rem;
  color: var(--ink-2);
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background 100ms ease-out, color 100ms ease-out;
  display: flex;
  align-items: center;
  gap: 10px;
}
.csel-list li:last-child { border-bottom: none; }
.csel-list li:hover { background: var(--cream-2); color: var(--ink); }
.csel-list li:focus { background: var(--cream-2); color: var(--ink); outline: none; }
.csel-list li.selected {
  background: var(--terra-tint);
  color: var(--terra);
  font-weight: 500;
}
.csel-list li.selected::after {
  content: '';
  display: block;
  width: 7px; height: 7px;
  border-right: 1.8px solid var(--terra);
  border-bottom: 1.8px solid var(--terra);
  transform: rotate(45deg) translateY(-2px);
  margin-left: auto;
  flex-shrink: 0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-note {
  margin-top: 12px;
  font-size: 0.76rem;
  color: var(--ink-3);
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 820px) { .apt-grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

/* ── WhatsApp FAB ────────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 200ms ease-out, box-shadow 200ms ease-out;
  color: #fff;
}
.wa-fab:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}
.wa-fab:active { transform: scale(0.95); }
.wa-tooltip {
  position: absolute;
  right: 60px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  padding: 5px 11px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease-out;
}
.wa-fab:hover .wa-tooltip { opacity: 1; }

/* ── Back to top ─────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 92px;
  right: 32px;
  width: 44px; height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 998;
  color: var(--terra);
  box-shadow: var(--s-sm);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 200ms ease-out, transform 200ms ease-out, box-shadow 200ms ease-out, background 200ms ease-out, color 200ms ease-out;
}
.back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--terra); border-color: var(--terra); color: var(--white); box-shadow: var(--s); }
.back-to-top:active { transform: scale(0.93); }

/* ── Enhanced footer ─────────────────────────────────────────── */
.foot-opd { margin-top: 14px; }
.foot-opd-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: oklch(99% 0.004 65 / 0.45);
  padding: 4px 0;
}
.foot-opd-row svg { color: var(--terra); flex-shrink: 0; }
.foot-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: oklch(99% 0.004 65 / 0.5);
  padding: 4px 0;
  transition: color 150ms ease-out;
}
.foot-contact-item svg { color: var(--terra); flex-shrink: 0; margin-top: 2px; }
.foot-contact-item:hover { color: var(--white); }

/* ── Google reviews strip ────────────────────────────────────── */
.reviews-strip {
  background: var(--cream-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.reviews-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.reviews-inner .g-stars { color: oklch(72% 0.16 65); font-size: 1rem; letter-spacing: 2px; }
.reviews-inner p { font-size: 0.88rem; color: var(--ink-2); }
.reviews-inner strong { color: var(--ink); font-weight: 500; }
.reviews-inner a { color: var(--terra); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; font-size: 0.85rem; }

/* ── Maps section ────────────────────────────────────────────── */
.maps-sec {
  background: var(--cream-2);
  border-top: 1px solid var(--border);
}
.maps-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: 460px;
}
.maps-info {
  padding: 64px 48px 64px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.maps-info h2 { margin-bottom: 24px; }
.maps-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.maps-addr-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.6;
}
.maps-addr-row svg { color: var(--terra); flex-shrink: 0; margin-top: 2px; }
.maps-addr-row a { color: var(--terra); font-weight: 500; }
.maps-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.maps-embed {
  position: relative;
  overflow: hidden;
}
.maps-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 900px) {
  .maps-grid { grid-template-columns: 1fr; }
  .maps-info { padding: 48px 24px 40px; }
  .maps-embed { height: 320px; position: relative; }
  .maps-embed iframe { position: absolute; }
}

/* ── OPD strip: fixed above nav ──────────────────────────────── */
:root { --opd-h: 40px; }

.opd-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  padding: 9px 0;
}

/* Nav drops below OPD strip */
.nav { top: var(--opd-h); }

/* Hero accounts for nav + strip */
.hero { padding-top: calc(var(--nav-h) + var(--opd-h)); }

/* Sticky about photo needs the same offset */
.about-photo-wrap { top: calc(var(--nav-h) + var(--opd-h) + 28px); }

/* On small screens: hide OPD strip, reset to normal */
@media (max-width: 768px) {
  :root { --opd-h: 0px; }
  .opd-strip { display: none; }
}

/* ── Form success state ──────────────────────────────────────────── */
.form-success {
  text-align: center;
  padding: 40px 20px 32px;
}
.form-success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}
.form-success-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.form-success-body {
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 380px;
  margin: 0 auto;
}

/* ── Form error state ────────────────────────────────────────────── */
.form-error {
  background: oklch(95.5% 0.025 25);
  border: 1px solid oklch(78% 0.09 25);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 0.86rem;
  color: oklch(42% 0.14 25);
  line-height: 1.5;
  margin-bottom: 8px;
}

/* ── Footer logo (light text on dark bg) ─────────────────────── */
.foot-logo { gap: 10px; }
.foot-logo .brand-text { gap: 2px; }
.foot-logo .brand-name { color: oklch(99% 0.004 65 / 0.88); }
.foot-logo .brand-dr   { color: var(--terra); }
.foot-logo .brand-role { color: oklch(99% 0.004 65 / 0.40); }


/* ── Procedure page banner illustrations ─────────────────────────────────── */
.banner-split{display:grid;grid-template-columns:1fr 300px;gap:48px;align-items:center}
.banner-illu{display:flex;justify-content:center;align-items:center}
.illu-svg{width:100%;max-width:300px;height:auto;animation:illu-float 4s ease-in-out infinite alternate;filter:drop-shadow(0 6px 20px oklch(35% .08 35 / .14))}
.illu-pulse{animation:illu-pulse 2.8s ease-in-out infinite}
.illu-dash{stroke-dasharray:5 3;animation:illu-dash-move 1.8s linear infinite}
@keyframes illu-float{from{transform:translateY(0)}to{transform:translateY(-9px)}}
@keyframes illu-pulse{0%,100%{opacity:.35}50%{opacity:.9}}
@keyframes illu-dash-move{from{stroke-dashoffset:0}to{stroke-dashoffset:-24}}
@media(max-width:900px){.banner-split{grid-template-columns:1fr;gap:24px}.banner-illu{justify-content:flex-start}.illu-svg{max-width:220px}}
@media(max-width:600px){.banner-illu{display:none}}

/* ── Lean PPC landing pages: no OPD strip, minimal nav/footer ────────────── */
body.lp-page { --opd-h: 0px; }

.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 28px oklch(18% 0.012 55 / 0.06);
}
.lp-nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-nav-end { display: flex; align-items: center; gap: 14px; }
@media (max-width: 640px) {
  .lp-nav-end { display: none; }
}

/* Mobile sticky call / WhatsApp bar */
.lp-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px oklch(18% 0.012 55 / 0.08);
}
.lp-mobile-cta-inner { display: flex; }
.lp-mobile-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--t-fade);
}
.lp-mobile-btn:active { opacity: 0.8; }
.lp-mobile-btn svg { flex-shrink: 0; }
.lp-mobile-call { background: var(--terra); color: var(--white); }
.lp-mobile-wa   { background: #25D366; color: var(--white); }

@media (max-width: 640px) {
  .lp-mobile-cta { display: block; }
  body.lp-page { padding-bottom: 58px; }
}

/* Lean footer */
.lp-footer { background: var(--ink); padding: 44px 0 0; }
.lp-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid oklch(99% 0.004 65 / 0.08);
}
.lp-footer-contact { display: flex; flex-direction: column; gap: 6px; }
.lp-footer-links { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.lp-footer-links a {
  font-size: 0.86rem;
  color: oklch(99% 0.004 65 / 0.55);
  transition: var(--t-color);
}
.lp-footer-links a:hover { color: var(--white); }
.lp-footer-bottom { padding: 18px 0; text-align: center; }
.lp-footer-bottom p { font-size: 0.78rem; color: oklch(99% 0.004 65 / 0.25); }

@media (max-width: 600px) {
  .lp-footer-inner { flex-direction: column; gap: 24px; }
}

/* Lean PPC: hero doctor photo (reuses .hero-visual/.hero-photo/.hero-badge) */
.banner-illu.lp-hero-visual { display: flex; min-width: 0; }
.lp-hero-visual .hero-visual { width: 100%; max-width: 300px; }
@media (max-width: 600px) {
  .banner-illu.lp-hero-visual { display: flex; max-width: 190px; margin: 0 auto; }
  .lp-hero-visual .hero-photo { aspect-ratio: 1; border-radius: var(--r-xl); }
  .lp-hero-visual .hero-badge { display: none; }
}

/* Lean PPC: plain styled text replacing internal page links */
.lp-term { color: var(--terra); font-weight: 500; }

/* Lean PPC: ribbon watermark on page banners */
.lp-ribbon-decor { position: absolute; right: -60px; top: -40px; width: 280px; height: 280px; opacity: 0.05; pointer-events: none; z-index: 0; }
@media (max-width: 700px) { .lp-ribbon-decor { width: 180px; height: 180px; right: -40px; top: -20px; } }

/* Lean PPC: credentials & trust section */
.lp-credential-sec { position: relative; padding: 56px 0; background: var(--cream-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.lp-credential-grid { display: grid; grid-template-columns: 160px 1fr 280px; gap: 40px; align-items: center; }
.lp-credential-photo img { display: block; width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center; border-radius: 1.5rem 1.5rem 4rem 1.5rem; box-shadow: var(--s-lg); }
.lp-credential-text h2 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); margin: 8px 0 12px; color: var(--ink); }
.lp-credential-text p { color: var(--ink-2); line-height: 1.75; margin: 0; font-size: 0.93rem; }
.lp-credential-cert { display: flex; flex-direction: column; gap: 10px; }
.lp-credential-cert img { display: block; width: 100%; height: auto; border-radius: var(--r-lg); border: 1px solid var(--border); box-shadow: var(--s-lg); }
.lp-cert-caption { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 0.78rem; color: var(--ink-3); text-align: center; }
.lp-cert-caption svg { flex-shrink: 0; color: var(--terra); }
.lp-trust-row { display: flex; gap: 28px; margin-top: 22px; flex-wrap: wrap; }
.lp-trust-item { display: flex; align-items: center; gap: 12px; }
.lp-trust-item span { font-size: 0.84rem; color: var(--ink-2); font-weight: 500; max-width: 120px; line-height: 1.35; }
@media (max-width: 980px) {
  .lp-credential-grid { grid-template-columns: 160px 1fr; gap: 32px; }
  .lp-credential-cert { grid-column: 1 / 3; max-width: 420px; }
}
@media (max-width: 700px) {
  .lp-credential-grid { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .lp-credential-photo img { max-width: 190px; margin: 0 auto; }
  .lp-credential-cert { grid-column: auto; max-width: 360px; margin: 0 auto; }
  .lp-trust-row { justify-content: center; }
}
