/* =========================================================
   AASTHA PROFESSIONAL DESIGN SYSTEM v15
   A clinic-first, patient-friendly redesign for all pages.
   Loads after styles.css and polish.css.
   ========================================================= */

:root {
  --pro-plum: #6f1736;
  --pro-plum-2: #951f4b;
  --pro-rose: #d95d83;
  --pro-blush: #fff2f5;
  --pro-ivory: #fffaf7;
  --pro-sand: #f7eee8;
  --pro-gold: #c9a64a;
  --pro-ink: #251e22;
  --pro-muted: #675d62;
  --pro-line: #eadce2;
  --pro-white: #ffffff;
  --pro-success: #317a61;
  --pro-shadow-sm: 0 10px 28px rgba(62, 23, 38, .08);
  --pro-shadow-md: 0 24px 68px rgba(62, 23, 38, .14);
  --pro-radius-sm: 14px;
  --pro-radius-md: 22px;
  --pro-radius-lg: 34px;
  --pro-container: 1200px;
}

html { scroll-padding-top: 112px; }
body {
  color: var(--pro-ink);
  background: var(--pro-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4, .display-serif {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--pro-ink);
  letter-spacing: -.025em;
}

.container { width: min(calc(100% - 36px), var(--pro-container)); }
.narrow { width: min(calc(100% - 36px), 860px); }

/* ---------- Header and navigation ---------- */
.topbar {
  background: linear-gradient(90deg, #5e102d, var(--pro-plum), #86163f);
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.topbar-inner { min-height: 42px; }
.site-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(111,23,54,.10);
  box-shadow: 0 8px 30px rgba(56,24,37,.05);
}
.nav-shell { min-height: 86px; }
.brand-mark {
  background: radial-gradient(circle at 35% 30%, #9f2b57, var(--pro-plum));
  color: #f7d66f;
  border: 2px solid var(--pro-gold);
  box-shadow: 0 8px 24px rgba(111,23,54,.20);
}
.brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.13rem; }
.brand small { color: var(--pro-muted); }
.primary-nav > a,
.nav-item > button {
  color: #3d3237;
  font-weight: 700;
  border-radius: 12px;
}
.primary-nav > a:hover,
.primary-nav > a.is-current,
.nav-item > button:hover,
.nav-item > button[aria-expanded="true"] {
  color: var(--pro-plum);
  background: var(--pro-blush);
}
.dropdown {
  border: 1px solid var(--pro-line);
  border-radius: 20px;
  box-shadow: var(--pro-shadow-md);
  background: rgba(255,255,255,.99);
}
.dropdown a { border-radius: 10px; }
.dropdown a:hover { background: var(--pro-blush); color: var(--pro-plum); }
.mega-menu { max-height: min(74vh, 720px); overflow-y: auto; }
.mega-column h3 { font-family: Inter, ui-sans-serif, system-ui, sans-serif; letter-spacing: 0; }

/* Book button must remain readable in every theme */
.button,
a.button,
.primary-nav .button,
.sidebar-card .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 21px;
  border: 1px solid var(--pro-plum);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pro-plum-2), var(--pro-plum));
  color: #fff !important;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(111,23,54,.20);
}
.button:hover,
a.button:hover {
  background: linear-gradient(135deg, #a22655, #5f102e);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 15px 32px rgba(111,23,54,.26);
}
.button-secondary,
a.button-secondary,
.sidebar-card .button-secondary {
  background: transparent;
  color: var(--pro-plum) !important;
  border-color: rgba(111,23,54,.55);
  box-shadow: none;
}
.button-secondary:hover,
a.button-secondary:hover {
  background: var(--pro-blush);
  color: var(--pro-plum) !important;
}
.button-ghost {
  background: rgba(255,255,255,.72) !important;
  color: var(--pro-plum) !important;
  border-color: rgba(111,23,54,.18) !important;
  box-shadow: none !important;
}

/* ---------- Professional homepage ---------- */
.home-main { overflow: clip; }
.home-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(58px, 8vw, 108px) 0 42px;
  background:
    radial-gradient(circle at 88% 16%, rgba(226,105,145,.18), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(201,166,74,.13), transparent 24%),
    linear-gradient(135deg, #fffaf7 0%, #fff 48%, #fff1f5 100%);
  border-bottom: 1px solid var(--pro-line);
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .32;
  background-image: radial-gradient(rgba(111,23,54,.18) .7px, transparent .7px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, #000, transparent 48%);
}
.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, .96fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}
.home-hero-copy { max-width: 680px; }
.home-hero .eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--pro-plum);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.home-hero .eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--pro-gold);
}
.home-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.8rem, 5.1vw, 5.3rem);
  line-height: .98;
}
.home-hero h1 em { color: var(--pro-plum); font-style: normal; }
.home-hero .lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: #574c51;
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}
.hero-actions { margin-top: 30px; display: flex; gap: 13px; flex-wrap: wrap; }
.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--pro-muted);
  font-size: .92rem;
}
.hero-note::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--pro-success);
  background: #e7f6f0;
  font-weight: 900;
}
.home-hero-media {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.home-hero-media::before {
  content: "";
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 48% 52% 58% 42% / 52% 42% 58% 48%;
  background: linear-gradient(145deg, #fde6ed, #f8d8df 48%, #fbf2e8);
  transform: rotate(-7deg);
  box-shadow: inset 0 0 0 1px rgba(111,23,54,.08);
}
.home-hero-media img {
  position: relative;
  z-index: 1;
  width: min(100%, 570px);
  filter: drop-shadow(0 28px 38px rgba(78,30,48,.14));
}
.hero-booking-card {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 26px;
  width: min(290px, 76%);
  padding: 22px;
  border: 1px solid rgba(111,23,54,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  box-shadow: var(--pro-shadow-md);
}
.hero-booking-card strong { display: block; color: var(--pro-plum); font-size: 1.05rem; }
.hero-booking-card p { margin: 6px 0 15px; color: var(--pro-muted); font-size: .92rem; }
.hero-booking-card .button { width: 100%; min-height: 44px; padding: 9px 13px; }
.hero-booking-card .fee { margin: 0 0 12px; padding-top: 12px; border-top: 1px solid var(--pro-line); color: var(--pro-ink); }

.trust-ribbon {
  position: relative;
  z-index: 3;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--pro-line);
  border-radius: 20px;
  background: rgba(255,255,255,.93);
  box-shadow: var(--pro-shadow-sm);
  overflow: hidden;
}
.trust-item {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px;
  border-right: 1px solid var(--pro-line);
}
.trust-item:last-child { border-right: 0; }
.trust-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--pro-blush);
  color: var(--pro-plum);
  font-size: 1.18rem;
}
.trust-item strong { display: block; font-size: .93rem; line-height: 1.3; }
.trust-item span { display: block; margin-top: 3px; color: var(--pro-muted); font-size: .78rem; line-height: 1.35; }

.home-section { padding: clamp(66px, 8vw, 110px) 0; }
.home-section--soft { background: linear-gradient(180deg, #fff, var(--pro-ivory)); }
.home-section--blush { background: linear-gradient(135deg, #fff7f9, #fffaf7); }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}
.section-heading > div { max-width: 740px; }
.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.55rem);
  line-height: 1.08;
}
.section-heading p { margin: 12px 0 0; color: var(--pro-muted); font-size: 1.05rem; }

.concern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.concern-card,
.treatment-card,
.why-card,
.location-pro-card,
.blog-teaser {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--pro-line);
  border-radius: var(--pro-radius-md);
  background: var(--pro-white);
  box-shadow: 0 8px 28px rgba(72,28,45,.055);
}
.concern-card {
  min-height: 244px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  text-decoration: none;
  color: var(--pro-ink);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.concern-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--card-tint, #f9e7ed);
  opacity: .7;
}
.concern-card:hover {
  color: var(--pro-ink);
  transform: translateY(-6px);
  border-color: rgba(111,23,54,.28);
  box-shadow: var(--pro-shadow-md);
}
.concern-card .icon-bubble {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--card-tint, #f9e7ed);
  color: var(--card-accent, var(--pro-plum));
  font-size: 1.55rem;
}
.concern-card h3 { margin: 20px 0 8px; font-size: 1.36rem; line-height: 1.22; }
.concern-card p { margin: 0; color: var(--pro-muted); font-size: .94rem; line-height: 1.6; }
.concern-card .card-link { margin-top: auto; padding-top: 16px; color: var(--card-accent, var(--pro-plum)); font-weight: 800; }

.doctor-feature {
  display: grid;
  grid-template-columns: minmax(340px, .84fr) minmax(0, 1.16fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}
.doctor-visual {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: end center;
  border-radius: var(--pro-radius-lg);
  background: linear-gradient(145deg, #f8e1e8, #fff3ed 58%, #efe5dc);
  overflow: hidden;
}
.doctor-visual img { width: 92%; max-height: 510px; object-fit: contain; position: relative; z-index: 1; }
.doctor-visual::after {
  content: "Doctor-led care";
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--pro-plum);
  background: rgba(255,255,255,.92);
  font-size: .84rem;
  font-weight: 900;
  box-shadow: var(--pro-shadow-sm);
}
.doctor-copy h2 { margin: 0; font-size: clamp(2.25rem, 4vw, 4rem); line-height: 1.04; }
.doctor-copy .doctor-role { margin: 14px 0 0; color: var(--pro-plum); font-weight: 800; }
.doctor-copy > p { color: var(--pro-muted); }
.doctor-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}
.doctor-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 13px 14px;
  border-radius: 13px;
  background: #fff7f9;
  color: #4b4045;
  font-weight: 700;
}
.doctor-points li::before { content: "✓"; color: var(--pro-success); font-weight: 900; }

.treatment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.treatment-card { min-height: 340px; display: flex; flex-direction: column; }
.treatment-card img { width: 100%; height: 155px; object-fit: cover; background: var(--pro-blush); }
.treatment-card-body { display: flex; flex-direction: column; flex: 1; padding: 22px; }
.treatment-card h3 { margin: 0 0 9px; font-size: 1.3rem; }
.treatment-card p { margin: 0; color: var(--pro-muted); font-size: .92rem; }
.treatment-card .text-link { margin-top: auto; padding-top: 17px; font-weight: 900; }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.why-card { padding: 24px; }
.why-card .why-number { color: var(--pro-gold); font-family: Georgia, serif; font-size: 2.4rem; line-height: 1; }
.why-card h3 { margin: 13px 0 8px; font-size: 1.24rem; }
.why-card p { margin: 0; color: var(--pro-muted); font-size: .92rem; }

.location-pro-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.location-pro-card { display: grid; grid-template-columns: 170px 1fr; min-height: 320px; }
.location-pro-card .location-art { display: grid; place-items: center; background: linear-gradient(145deg, #f8e1e8, #fff4ed); }
.location-pro-card .location-art img { width: 130px; }
.location-pro-card .location-copy { padding: 27px; }
.location-pro-card h3 { margin: 0; font-size: 1.65rem; }
.location-pro-card address { margin: 10px 0 14px; color: var(--pro-muted); font-style: normal; }
.location-pro-card .location-hours { margin: 0 0 20px; padding: 13px 15px; border-radius: 12px; background: var(--pro-ivory); font-size: .9rem; }
.location-actions { display: flex; gap: 9px; flex-wrap: wrap; }
.location-actions .button { min-height: 42px; padding: 9px 13px; font-size: .88rem; }

.faq-pro-list { max-width: 920px; margin: 0 auto; display: grid; gap: 12px; }
.faq-pro-list details {
  border: 1px solid var(--pro-line);
  border-radius: 16px;
  background: var(--pro-white);
  box-shadow: 0 8px 24px rgba(72,28,45,.04);
}
.faq-pro-list summary {
  padding: 19px 52px 19px 21px;
  list-style: none;
  cursor: pointer;
  color: var(--pro-ink);
  font-family: Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  position: relative;
}
.faq-pro-list summary::-webkit-details-marker { display: none; }
.faq-pro-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  translate: 0 -50%;
  color: var(--pro-plum);
  font: 700 1.5rem/1 Inter, sans-serif;
}
.faq-pro-list details[open] summary::after { content: "−"; }
.faq-pro-list details p { margin: 0; padding: 0 21px 21px; color: var(--pro-muted); }

.home-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 8vw, 96px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(255,255,255,.13), transparent 24%),
    linear-gradient(135deg, #501027, var(--pro-plum) 48%, #8e1e48);
}
.home-cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 38px; align-items: center; }
.home-cta h2 { margin: 0; max-width: 760px; color: #fff; font-size: clamp(2.15rem, 4vw, 4rem); line-height: 1.06; }
.home-cta p { margin: 14px 0 0; max-width: 720px; color: rgba(255,255,255,.78); }
.home-cta .button { background: #fff; color: var(--pro-plum) !important; border-color: #fff; box-shadow: none; }
.home-cta .button:hover { background: #fff7da; color: var(--pro-plum) !important; }
.home-cta .button-secondary { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.52); }
.home-cta .button-secondary:hover { background: rgba(255,255,255,.1); color: #fff !important; }

/* ---------- Professional inner pages ---------- */
.page-hero.page-hero--professional {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 88px) 0;
  background:
    radial-gradient(circle at 86% 14%, rgba(213,74,120,.13), transparent 27%),
    linear-gradient(135deg, #fffaf7, #fff 48%, #fff2f6);
  border-bottom: 1px solid var(--pro-line);
}
.page-hero--professional .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 400px);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}
.page-hero-copy h1 { margin: 12px 0 0; font-size: clamp(2.45rem, 4.5vw, 4.65rem); line-height: 1.02; }
.page-hero-copy .lead { margin-top: 20px; max-width: 720px; color: var(--pro-muted); }
.page-hero-art {
  min-height: 300px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(111,23,54,.08);
  border-radius: var(--pro-radius-lg);
  background: linear-gradient(145deg, #f9e3ea, #fff3ec);
  overflow: hidden;
  box-shadow: var(--pro-shadow-sm);
}
.page-hero-art img { width: 88%; max-height: 310px; object-fit: contain; filter: drop-shadow(0 18px 24px rgba(76,27,45,.12)); }
.breadcrumbs { color: #7b6f74; font-size: .88rem; }
.breadcrumbs a { color: var(--pro-plum); }

.section { padding-block: clamp(54px, 7vw, 86px); }
.content-layout { grid-template-columns: minmax(0, 1fr) minmax(250px, 330px); gap: clamp(28px, 5vw, 56px); }
.prose {
  max-width: 820px;
  color: #463b40;
}
.prose > h2 {
  margin-top: 2.3em;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  border-bottom: 0;
}
.prose > h2::after { width: 54px; height: 3px; background: var(--pro-gold); }
.prose > h3 { color: var(--pro-plum); font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 1.14rem; letter-spacing: 0; }
.prose p { color: #554a4f; }
.prose > p:first-of-type,
.prose .page-intro { font-size: 1.08rem; color: #44383e; }
.prose ul,
.prose ol,
.feature-list {
  margin: 1.1rem 0 1.6rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}
.prose li,
.feature-list li {
  position: relative;
  padding: 11px 13px 11px 40px;
  border: 1px solid var(--pro-line);
  border-radius: 12px;
  background: #fffafc;
  color: #4c4046;
  line-height: 1.45;
}
.prose li::before,
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 10px;
  color: var(--pro-success);
  font-weight: 900;
}
.prose blockquote {
  margin: 1.7rem 0;
  padding: 20px 22px;
  border-left: 4px solid var(--pro-gold);
  border-radius: 0 14px 14px 0;
  background: var(--pro-ivory);
  color: #4c4146;
}
.section-actions { display: flex; gap: 11px; flex-wrap: wrap; margin: 20px 0 30px; }
.inline-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin: 2.3rem 0;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff1f5, #fff9f3);
  border: 1px solid var(--pro-line);
}
.inline-cta p { margin: 0; color: var(--pro-muted); }
.sidebar-card {
  top: 112px;
  border: 1px solid var(--pro-line);
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #fff8fa);
  box-shadow: var(--pro-shadow-sm);
}
.sidebar-card h2 { font-size: 1.5rem; }
.sidebar-card .button { width: 100%; margin-top: 9px; }
.notice,
.medical-disclaimer {
  border: 1px solid #ead9a8;
  border-left: 5px solid var(--pro-gold);
  background: #fffbec;
  color: #5a4a27;
}
.article-toc {
  border: 1px solid var(--pro-line);
  border-radius: 16px;
  background: linear-gradient(135deg, #fff8fa, #fffaf5);
}
.article-toc a { font-weight: 650; }

/* Directories, cards and forms */
.directory-grid,
.card-grid,
.category-grid { gap: 18px; }
.directory-link,
.card,
.location-card {
  border: 1px solid var(--pro-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(72,28,45,.05);
}
.directory-link:hover,
.card:hover,
.location-card:hover {
  border-color: rgba(111,23,54,.26);
  box-shadow: var(--pro-shadow-md);
}
.form-card,
.appointment-form {
  border: 1px solid var(--pro-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--pro-shadow-sm);
}
label { color: #3d3237; font-weight: 750; }
input,
select,
textarea {
  border: 1px solid #d9c9d0;
  border-radius: 11px;
  background: #fff;
  color: var(--pro-ink);
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--pro-plum);
  box-shadow: 0 0 0 4px rgba(111,23,54,.10);
}

/* Footer */
.site-footer {
  background:
    radial-gradient(circle at 16% 10%, rgba(201,166,74,.08), transparent 28%),
    #21171c;
  color: rgba(255,255,255,.78);
}
.site-footer h2 { color: #f0cc65; font-family: Inter, ui-sans-serif, system-ui, sans-serif; letter-spacing: .08em; }
.site-footer a { color: rgba(255,255,255,.88); }
.site-footer a:hover { color: #f4d474; }

/* Dark mode remains elegant and readable */
html[data-theme="dark"] body { background: #100d0f; color: #f7f1f4; }
html[data-theme="dark"] .site-header { background: rgba(20,15,18,.96); border-bottom-color: rgba(255,255,255,.08); }
html[data-theme="dark"] .primary-nav > a,
html[data-theme="dark"] .nav-item > button,
html[data-theme="dark"] .brand { color: #f8f1f4; }
html[data-theme="dark"] .home-hero,
html[data-theme="dark"] .page-hero.page-hero--professional {
  background: radial-gradient(circle at 84% 15%, rgba(157,35,78,.18), transparent 28%), linear-gradient(135deg,#171116,#100d0f 55%,#1b1116);
}
html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] h4 { color: #fff8fb; }
html[data-theme="dark"] .home-hero .lead,
html[data-theme="dark"] .section-heading p,
html[data-theme="dark"] .doctor-copy > p,
html[data-theme="dark"] .prose p,
html[data-theme="dark"] .prose { color: #cfc2c8; }
html[data-theme="dark"] .trust-ribbon,
html[data-theme="dark"] .concern-card,
html[data-theme="dark"] .treatment-card,
html[data-theme="dark"] .why-card,
html[data-theme="dark"] .location-pro-card,
html[data-theme="dark"] .faq-pro-list details,
html[data-theme="dark"] .sidebar-card,
html[data-theme="dark"] .directory-link,
html[data-theme="dark"] .card,
html[data-theme="dark"] .location-card,
html[data-theme="dark"] .form-card,
html[data-theme="dark"] .appointment-form {
  background: #1b1519;
  border-color: #3a2a32;
}
html[data-theme="dark"] .concern-card,
html[data-theme="dark"] .concern-card:hover { color: #fff8fb; }
html[data-theme="dark"] .concern-card p,
html[data-theme="dark"] .treatment-card p,
html[data-theme="dark"] .why-card p,
html[data-theme="dark"] .location-pro-card address { color: #bfaeb6; }
html[data-theme="dark"] .page-hero-art,
html[data-theme="dark"] .doctor-visual,
html[data-theme="dark"] .location-pro-card .location-art { background: linear-gradient(145deg,#2a1b22,#1d171a); }
html[data-theme="dark"] .prose li,
html[data-theme="dark"] .feature-list li,
html[data-theme="dark"] .doctor-points li { background: #20171c; border-color: #3b2a32; color: #e7dce1; }
html[data-theme="dark"] .button-secondary,
html[data-theme="dark"] a.button-secondary { color: #f1b4ca !important; border-color: #a64c6d; }
html[data-theme="dark"] .button-secondary:hover,
html[data-theme="dark"] a.button-secondary:hover { color: #fff !important; background: #411a2b; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .home-hero-grid { grid-template-columns: 1fr 420px; gap: 30px; }
  .trust-ribbon { grid-template-columns: repeat(3, 1fr); }
  .trust-item:nth-child(3) { border-right: 0; }
  .trust-item:nth-child(-n+3) { border-bottom: 1px solid var(--pro-line); }
  .treatment-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero--professional .container { grid-template-columns: minmax(0,1fr) 300px; }
}

@media (max-width: 850px) {
  .home-hero-grid,
  .doctor-feature,
  .home-cta-grid,
  .page-hero--professional .container { grid-template-columns: 1fr; }
  .home-hero-copy { max-width: 100%; }
  .home-hero-media { min-height: 420px; max-width: 610px; margin-inline: auto; }
  .trust-ribbon { grid-template-columns: repeat(2, 1fr); }
  .trust-item,
  .trust-item:nth-child(3) { border-right: 1px solid var(--pro-line); border-bottom: 1px solid var(--pro-line); }
  .trust-item:nth-child(even) { border-right: 0; }
  .trust-item:last-child { grid-column: 1 / -1; border-right: 0; border-bottom: 0; }
  .concern-grid { grid-template-columns: repeat(2, 1fr); }
  .location-pro-grid { grid-template-columns: 1fr; }
  .page-hero-art { min-height: 250px; }
  .page-hero-art img { max-height: 240px; }
  .section-heading { align-items: start; flex-direction: column; }
}

@media (max-width: 650px) {
  .container, .narrow { width: min(calc(100% - 24px), var(--pro-container)); }
  .topbar-contact { display: none; }
  .home-hero { padding-top: 42px; }
  .home-hero h1 { font-size: clamp(2.55rem, 13vw, 3.75rem); }
  .home-hero-media { min-height: 340px; }
  .hero-booking-card { position: relative; right: auto; bottom: auto; margin: -14px auto 0; width: calc(100% - 24px); }
  .trust-ribbon { grid-template-columns: 1fr; border-radius: 16px; }
  .trust-item,
  .trust-item:nth-child(3),
  .trust-item:nth-child(even),
  .trust-item:last-child { grid-column: auto; border-right: 0; border-bottom: 1px solid var(--pro-line); }
  .trust-item:last-child { border-bottom: 0; }
  .concern-grid,
  .treatment-grid,
  .why-grid,
  .doctor-points,
  .prose ul,
  .prose ol,
  .feature-list { grid-template-columns: 1fr; }
  .location-pro-card { grid-template-columns: 1fr; }
  .location-pro-card .location-art { min-height: 150px; }
  .location-pro-card .location-art img { width: 105px; }
  .home-cta .hero-actions { width: 100%; }
  .hero-actions .button,
  .home-cta .button { width: 100%; }
  .page-hero--professional .container { gap: 24px; }
  .page-hero-copy h1 { font-size: clamp(2.25rem, 11vw, 3.25rem); }
  .page-hero-art { min-height: 210px; }
  .content-layout { display: block; }
  .sidebar-card { margin-top: 28px; }
  .inline-cta { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
