/* ---------- Tokens ---------- */
    :root {
      --coral: #e36a7a;
      --coral-strong: #d24a5d;
      --coral-soft: #fce6ea;
      --blush: #fff5f5;
      --cream: #fdfaf7;
      --sage: #6bb78a;
      --ink: #2a2326;
      --ink-soft: #5a5258;
      --muted: #8a8186;
      --line: #f0e3e3;
      --white: #fff;
      --shadow-sm: 0 2px 12px rgba(226, 106, 122, 0.06);
      --shadow-md: 0 12px 40px rgba(226, 106, 122, 0.1);
      --shadow-lg: 0 24px 60px rgba(226, 106, 122, 0.14);
      --font-display: "Cormorant Garamond", "Times New Roman", serif;
      --font-body: "Manrope", system-ui, sans-serif;
    }

    /* ---------- Reset ---------- */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.65;
      color: var(--ink);
      background: var(--cream);
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; transition: color .2s; }
    a:hover { color: var(--coral); }
    ul { margin: 0; padding: 0; list-style: none; }
    button { font: inherit; cursor: pointer; border: none; background: none; }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ---------- Typography ---------- */
    .display {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: clamp(2.4rem, 5.5vw, 4.3rem);
      line-height: 1.08;
      letter-spacing: -0.01em;
      margin: 0 0 1rem;
    }
    .display em { font-style: italic; color: var(--coral); font-weight: 500; }
    .display--md { font-size: clamp(2rem, 3.8vw, 3.2rem); }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 1.1rem;
    }

    /* ---------- Buttons ---------- */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: transform .2s, box-shadow .2s, background .2s, color .2s;
      cursor: pointer;
    }
    .btn--primary {
      background: var(--coral);
      color: var(--white);
      box-shadow: 0 8px 24px rgba(226, 106, 122, 0.3);
    }
    .btn--primary:hover {
      background: var(--coral-strong);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(226, 106, 122, 0.4);
    }
    .btn--ghost {
      background: transparent;
      color: var(--coral);
      border: 1.5px solid var(--coral);
    }
    .btn--ghost:hover { background: var(--coral-soft); color: var(--coral-strong); transform: translateY(-2px); }
    .btn--lg { padding: 16px 36px; font-size: 1rem; }

    /* ---------- Topbar ---------- */
    .topbar {
      background: var(--blush);
      color: var(--ink-soft);
      font-size: 0.85rem;
      border-bottom: 1px solid var(--line);
    }
    .topbar__inner {
      display: flex; flex-wrap: wrap;
      align-items: center; justify-content: center;
      gap: 14px; padding: 10px 24px;
    }
    .topbar__sep { color: var(--line); }

    /* ---------- Header ---------- */
    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(253, 250, 247, 0.92);
      backdrop-filter: saturate(180%) blur(14px);
      -webkit-backdrop-filter: saturate(180%) blur(14px);
      border-bottom: 1px solid var(--line);
      transition: box-shadow .2s;
    }
    .header.is-scrolled { box-shadow: var(--shadow-sm); }
    .header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 16px 24px;
    }
    .brand { display: inline-flex; align-items: center; gap: 12px; }
    .brand__mark {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--coral-soft), var(--white));
      border: 1.5px solid var(--coral);
      display: grid; place-items: center;
      font-family: var(--font-display);
      font-size: 1.4rem;
      color: var(--coral);
    }
    .brand__text { display: flex; flex-direction: column; line-height: 1.15; }
    .brand__name {
      font-family: var(--font-display);
      font-size: 1.4rem;
      color: var(--coral);
      font-weight: 500;
    }
    .brand__sub {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .nav { display: flex; gap: 28px; }
    .nav a {
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--ink-soft);
      position: relative;
    }
    .nav a::after {
      content: "";
      position: absolute; left: 0; bottom: -6px;
      width: 0; height: 2px;
      background: var(--coral);
      transition: width .25s;
    }
    .nav a:hover { color: var(--coral); }
    .nav a:hover::after { width: 100%; }

    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 4px;
      width: 32px; height: 32px;
      align-items: center; justify-content: center;
    }
    .menu-toggle span {
      width: 22px; height: 2px;
      background: var(--ink);
      transition: transform .25s, opacity .25s;
    }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    .mobile-nav {
      display: none;
      flex-direction: column;
      gap: 16px;
      padding: 20px 24px 26px;
      border-top: 1px solid var(--line);
      background: var(--white);
    }
    .mobile-nav.is-open { display: flex; }
    .mobile-nav a { font-size: 1rem; font-weight: 500; }

    /* ---------- Hero ---------- */
    .hero {
      position: relative;
      overflow: hidden;
      padding: 80px 0 100px;
      background:
        radial-gradient(800px 500px at 90% 0%, rgba(226, 106, 122, 0.08), transparent 60%),
        radial-gradient(700px 400px at 0% 100%, rgba(107, 183, 138, 0.06), transparent 60%),
        var(--cream);
    }
    .hero__decor {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.5;
      pointer-events: none;
    }
    .hero__decor--1 {
      width: 380px; height: 380px;
      background: var(--coral-soft);
      top: -120px; right: -80px;
      animation: floaty 18s ease-in-out infinite;
    }
    .hero__decor--2 {
      width: 280px; height: 280px;
      background: #e6f3eb;
      bottom: -80px; left: 5%;
      animation: floaty 22s ease-in-out infinite reverse;
    }
    @keyframes floaty {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(20px, -20px); }
    }
    .hero__grid {
      position: relative;
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .hero__copy { animation: fadeUp 0.9s ease both; }
    .hero__lede { font-size: 1.1rem; margin: 0 0 1rem; }
    .hero__lede strong { color: var(--coral); }
    .hero__desc { font-size: 1.05rem; color: var(--ink-soft); margin: 0 0 2rem; max-width: 520px; }
    .hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2rem; }
    .hero__trust {
      display: flex; flex-wrap: wrap; gap: 18px;
      font-size: 0.88rem; color: var(--ink-soft);
    }
    .hero__trust li { display: inline-flex; gap: 6px; align-items: center; }
    .hero__trust span { color: var(--sage); font-weight: 700; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Doctor card */
    .doctor-card { animation: fadeUp 0.9s ease 0.15s both; }
    .doctor-card__inner {
      background: var(--white);
      border-radius: 28px;
      border: 1px solid var(--line);
      padding: 40px 32px;
      text-align: center;
      box-shadow: var(--shadow-md);
    }
    .avatar {
      width: 130px; height: 130px;
      margin: 0 auto 24px;
      border-radius: 50%;
      display: grid; place-items: center;
      background: linear-gradient(135deg, var(--coral-soft), var(--white));
      border: 2px solid var(--coral-soft);
      font-family: var(--font-display);
      font-size: 3rem;
      color: var(--coral);
    }
    .doctor-card__name {
      font-family: var(--font-display);
      font-size: 1.7rem;
      margin: 0 0 6px;
      font-weight: 500;
    }
    .doctor-card__creds { font-size: 0.92rem; color: var(--ink-soft); margin: 0 0 4px; }
    .doctor-card__exp {
      font-size: 0.82rem;
      color: var(--sage);
      font-weight: 600;
      letter-spacing: 0.05em;
      margin: 0 0 28px;
    }
    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      padding: 22px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      margin-bottom: 22px;
    }
    .stat__num {
      display: block;
      font-family: var(--font-display);
      font-size: 1.85rem;
      color: var(--coral);
      line-height: 1;
    }
    .stat__num small { font-size: 1.2rem; }
    .stat__label {
      display: block;
      font-size: 0.78rem;
      color: var(--muted);
      margin-top: 4px;
    }
    .chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
    .chip {
      padding: 6px 14px;
      border-radius: 999px;
      background: #f3faf5;
      color: var(--sage);
      font-size: 0.78rem;
      font-weight: 600;
    }

    /* ---------- Sections ---------- */
    .section { padding: 100px 0; position: relative; }
    .section--soft { background: var(--blush); }
    .section--cta {
      background:
        radial-gradient(600px 300px at 50% 0%, rgba(226, 106, 122, 0.08), transparent 70%),
        var(--cream);
    }
    .section__head {
      max-width: 720px;
      margin: 0 auto 60px;
      text-align: center;
    }
    .section__sub { font-size: 1.05rem; color: var(--ink-soft); margin: 0; }

    /* ---------- Highlights (compact why-us) ---------- */
    .highlights {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .highlight {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 28px 22px;
      text-align: center;
      transition: transform .3s, box-shadow .3s, border-color .3s;
    }
    .highlight:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--coral-soft);
    }
    .highlight__icon {
      font-size: 1.6rem;
      width: 56px; height: 56px;
      margin: 0 auto 14px;
      border-radius: 14px;
      background: var(--blush);
      display: grid; place-items: center;
    }
    .highlight h3 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 500;
      margin: 0 0 6px;
    }
    .highlight p { margin: 0; font-size: 0.88rem; color: var(--ink-soft); }

    /* ---------- Services (compact pills) ---------- */
    .service-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .service {
      background: var(--white);
      border-radius: 14px;
      padding: 22px 20px;
      border: 1px solid var(--line);
      border-left: 3px solid var(--coral);
      transition: transform .3s, box-shadow .3s;
    }
    .service:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }
    .service__icon { font-size: 1.3rem; margin-bottom: 10px; display: block; }
    .service h3 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 500;
      margin: 0 0 4px;
    }
    .service p { margin: 0; color: var(--ink-soft); font-size: 0.85rem; }

    /* ---------- Doctor / About strip ---------- */
    .about {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 70px;
      align-items: center;
    }
    .about__visual {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    .doctor-portrait {
      width: 280px;
      height: 340px;
      border-radius: 180px 180px 24px 24px;
      background: linear-gradient(160deg, var(--coral-soft) 0%, var(--white) 100%);
      border: 1px solid var(--line);
      position: relative;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }
    .doctor-portrait img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
      display: block;
    }
    .doctor-portrait::after {
      content: "";
      position: absolute;
      inset: 12px;
      border-radius: 168px 168px 12px 12px;
      border: 1px solid rgba(255, 255, 255, 0.6);
      pointer-events: none;
      z-index: 1;
    }
    .doctor-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
    .pill {
      padding: 7px 18px;
      border-radius: 999px;
      border: 1px solid var(--coral);
      color: var(--coral);
      font-size: 0.82rem;
      font-weight: 600;
    }
    .about__copy p { color: var(--ink-soft); font-size: 1rem; margin: 0 0 1rem; }
    .expertise {
      margin-top: 1.2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px 24px;
    }
    .expertise li {
      display: flex; gap: 8px; align-items: flex-start;
      font-size: 0.92rem;
    }
    .expertise span { color: var(--coral); }

    /* ---------- Contact / CTA ---------- */
    .cta-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 40px;
    }
    .contact-card {
      background: var(--white);
      border-radius: 18px;
      padding: 22px 24px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
      text-align: center;
    }
    .contact-card__label {
      display: block;
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px;
    }
    .contact-card p { margin: 0; font-size: 0.95rem; }

    .book-form {
      max-width: 720px;
      margin: 0 auto;
      background: var(--white);
      border-radius: 28px;
      padding: 36px 32px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-md);
    }
    .book-form__title {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 500;
      margin: 0 0 22px;
      text-align: center;
    }
    .book-form__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 20px;
    }
    .book-form__grid .full { grid-column: 1 / -1; }
    .book-form label { display: flex; flex-direction: column; gap: 6px; }
    .book-form label span {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--ink-soft);
    }
    .book-form input,
    .book-form textarea {
      font: inherit;
      padding: 12px 14px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: var(--cream);
      color: var(--ink);
      transition: border .2s, background .2s, box-shadow .2s;
    }
    .book-form input:focus,
    .book-form textarea:focus {
      outline: none;
      border-color: var(--coral);
      background: var(--white);
      box-shadow: 0 0 0 4px var(--coral-soft);
    }
    .book-form .btn { width: 100%; }
    .book-form__note { margin-top: 14px; text-align: center; font-size: 0.92rem; color: var(--sage); min-height: 1.2em; }
    .book-form__note.is-error { color: var(--coral-strong); }

    /* ---------- Footer ---------- */
    .footer {
      background: #1f1a1c;
      color: #cdc4c8;
      padding: 50px 0 0;
    }
    .footer__grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 40px;
    }
    .brand--footer .brand__mark {
      background: linear-gradient(135deg, rgba(226,106,122,0.2), rgba(255,255,255,0.05));
      color: #ffd9df;
    }
    .brand--footer .brand__name { color: #ffd9df; }
    .footer__about { margin-top: 14px; font-size: 0.9rem; color: #a89ea2; }
    .footer h4 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 500;
      color: var(--white);
      margin: 0 0 14px;
    }
    .footer ul li { margin-bottom: 8px; font-size: 0.9rem; color: #a89ea2; }
    .footer ul li a { color: #a89ea2; }
    .footer ul li a:hover { color: #ffd9df; }
    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 20px 0;
      font-size: 0.82rem;
      color: #8a8186;
      text-align: center;
    }
    .footer__bottom p { margin: 0; }

    /* ---------- Floating WhatsApp ---------- */
    .float-wa {
      position: fixed;
      right: 22px; bottom: 22px;
      width: 54px; height: 54px;
      border-radius: 50%;
      background: #25d366;
      color: var(--white);
      display: grid; place-items: center;
      font-size: 1.5rem;
      box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
      z-index: 40;
      transition: transform .25s;
      animation: pulse 2.4s ease-in-out infinite;
    }
    .float-wa:hover { transform: scale(1.08); color: var(--white); }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4); }
      50% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.7); }
    }

    /* ---------- Reveal on scroll ---------- */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .8s ease, transform .8s ease;
    }
    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 1024px) {
      .hero__grid { grid-template-columns: 1fr; gap: 50px; }
      .about { grid-template-columns: 1fr; gap: 40px; }
      .about__visual { order: -1; }
      .highlights, .service-grid { grid-template-columns: repeat(2, 1fr); }
      .footer__grid { grid-template-columns: 1fr 1fr; }
      .nav { display: none; }
      .menu-toggle { display: flex; }
      .header__cta { display: none; }
    }
    @media (max-width: 640px) {
      .section { padding: 70px 0; }
      .hero { padding: 50px 0 70px; }
      .highlights, .service-grid, .contact-grid, .expertise { grid-template-columns: 1fr; }
      .book-form__grid { grid-template-columns: 1fr; }
      .footer__grid { grid-template-columns: 1fr; }
      .topbar__sep { display: none; }
      .topbar__inner { gap: 8px; font-size: 0.78rem; }
      .doctor-portrait { width: 240px; height: 290px; font-size: 4rem; }
    }
/* ========================================================
   Subpage / Article Styles
   ======================================================== */

/* Breadcrumbs */
.breadcrumb {
  padding: 20px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb__sep { margin: 0 8px; color: var(--line); }
.breadcrumb__current { color: var(--ink); }

/* Page hero - more compact than homepage hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 50px 0 60px;
  background:
    radial-gradient(700px 400px at 90% 0%, rgba(226, 106, 122, 0.08), transparent 60%),
    var(--cream);
}
.page-hero__inner {
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}
.page-hero h1.display {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}
.page-hero__lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.65;
}

/* Article body content */
.article {
  padding: 60px 0 80px;
  background: var(--white);
}
.article__body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
}
.article__body p {
  margin: 0 0 1.3rem;
  color: var(--ink-soft);
}
.article__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 500;
  color: var(--ink);
  margin: 2.8rem 0 1rem;
  letter-spacing: -0.01em;
}
.article__body h2:first-child { margin-top: 0; }
.article__body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--coral);
  margin: 2rem 0 0.6rem;
}
.article__body ul {
  margin: 0 0 1.5rem;
  padding: 0;
}
.article__body ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--ink-soft);
}
.article__body ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--coral);
}
.article__body strong { color: var(--ink); font-weight: 600; }

/* FAQ styling */
.faq {
  margin-top: 1.5rem;
}
.faq__item {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.faq__item:hover { border-color: var(--coral-soft); }
.faq__item[open] {
  border-color: var(--coral-soft);
  box-shadow: var(--shadow-sm);
}
.faq__q {
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  position: relative;
  padding-right: 50px;
  user-select: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--coral);
  font-weight: 300;
  transition: transform .2s;
}
.faq__item[open] .faq__q::after {
  content: "−";
}
.faq__a {
  padding: 0 22px 18px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Inline page CTA */
.page-cta {
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(226, 106, 122, 0.08), transparent 70%),
    var(--blush);
  padding: 70px 0;
  text-align: center;
}
.page-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
  margin: 0 0 12px;
}
.page-cta p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 28px;
}
.page-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Related services */
.related {
  padding: 70px 0;
  background: var(--cream);
}
.related__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  margin: 0 0 36px;
}
.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.related__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--coral);
  border-radius: 14px;
  padding: 20px 22px;
  transition: transform .25s, box-shadow .25s;
  display: block;
}
.related__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--ink);
}
.related__card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 4px;
  color: var(--coral);
}
.related__card p { margin: 0; font-size: 0.85rem; color: var(--ink-soft); }

/* Doctor page specific - portrait + bio layout */
.doctor-bio {
  padding: 50px 0 80px;
  background: var(--white);
}
.doctor-bio__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.doctor-bio__photo {
  position: sticky;
  top: 100px;
}
.doctor-bio__photo img {
  width: 100%;
  max-width: 360px;
  border-radius: 200px 200px 28px 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  display: block;
  margin: 0 auto;
  object-fit: cover;
  object-position: center 20%;
  aspect-ratio: 4 / 5;
}
.doctor-bio__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .doctor-bio__grid { grid-template-columns: 1fr; gap: 40px; }
  .doctor-bio__photo { position: static; }
  .related__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .article__body { font-size: 1rem; }
  .related__grid { grid-template-columns: 1fr; }
  .page-hero { padding: 30px 0 40px; }
  .article { padding: 40px 0 60px; }
}

/* ---------- Google Maps Embed ---------- */
.map-wrap {
  margin: 28px 0 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.map-wrap iframe {
  width: 100%;
  display: block;
  filter: saturate(1.05);
}
.map-wrap__cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  background: var(--white);
  color: var(--coral);
  font-weight: 600;
  font-size: 0.95rem;
  border-top: 1px solid var(--line);
  transition: background .2s, color .2s;
}
.map-wrap__cta:hover {
  background: var(--coral-soft);
  color: var(--coral-strong);
}
@media (max-width: 640px) {
  .map-wrap iframe { height: 300px; }
}
