/* ==============================================================
   SREE HARSHITHA HOSPITAL — Stylesheet
   Palette: Skyline Blue & White (General) + Sunrise Coral & Peach (Maternity)
   Typography: Open Sans (display) + Roboto (body)
   Direction: modern, professional, split-hero landing page.
   ============================================================== */

:root {
  /* Maternity — Sunrise Coral & Peach */
  --coral:        #FF6B5C;
  --coral-deep:   #E14F40;
  --coral-dark:   #B83828;
  --coral-ghost:  #FFF4EB;
  --peach:        #FFCBA4;
  --peach-soft:   #FFE3D4;
  --peach-glow:   #FFF0E4;

  /* General — Skyline Blue & White */
  --sky:          #1E7AC9;
  --sky-deep:     #0F5FB2;
  --sky-dark:     #083B73;
  --sky-soft:     #D9ECFB;
  --sky-ghost:    #F0F7FD;
  --white:        #FFFFFF;

  /* Shared neutrals */
  --ink:          #111827;
  --ink-soft:     #1F2937;
  --body:         #4A5563;
  --muted:        #8A94A3;
  --line:         #E6E8EC;
  --line-soft:    #F1F3F6;
  --paper:        #F8FAFC;
  --bg:           #FFFFFF;

  /* Effects */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-xs: 0 1px 2px rgba(15,23,42,0.05);
  --shadow-sm: 0 2px 6px rgba(15,23,42,0.06);
  --shadow:    0 10px 28px rgba(15,23,42,0.08);
  --shadow-md: 0 18px 40px rgba(15,23,42,0.12);
  --shadow-lg: 0 28px 60px rgba(15,23,42,0.16);

  /* Fonts */
  --font-display: "Open Sans", system-ui, sans-serif;
  --font-body:    "Roboto", system-ui, sans-serif;

  /* Grid */
  --maxw: 1260px;
  --maxw-narrow: 980px;
}

/* ================ Base ================ */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a {
  color: var(--sky-deep);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--coral); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
h1 em, h2 em, h3 em { font-style: normal; color: var(--coral-deep); }
p { margin: 0 0 1em; }
strong { font-weight: 700; color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ================ Kicker label ================ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 18px;
}
.kicker__bar {
  width: 26px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.kicker--light { color: rgba(255,255,255,0.75); }
.kicker--light .kicker__bar { background: var(--peach); }

/* ================ Buttons ================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--lg { padding: 15px 28px; font-size: 15px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--sky-deep);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(15,95,178,0.3);
}
.btn--primary:hover {
  background: var(--sky-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(8,59,115,0.35);
}

.btn--primary-sm {
  background: var(--sky-deep);
  color: var(--white);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
}
.btn--primary-sm:hover { background: var(--sky-dark); color: var(--white); }

.btn--ghost-sm {
  background: transparent;
  color: var(--ink);
  border: 1.4px solid var(--line);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
}
.btn--ghost-sm:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.btn--whatsapp {
  background: #128C7E;
  color: #fff;
}
.btn--whatsapp:hover {
  background: #0E6E63;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(18,140,126,0.35);
}

/* ================ Ribbon ================ */
.ribbon {
  background: var(--ink);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  font-size: 12.5px;
  padding: 9px 0;
  font-weight: 500;
}
.ribbon__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.ribbon__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 10px;
  background: rgba(255,107,92,0.18);
  border-radius: 999px;
  color: #FFB4A8;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.ribbon__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255,107,92,0.25);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: .7; }
}
.ribbon__sep { color: rgba(255,255,255,0.25); }
.ribbon__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.ribbon__chip svg { color: #7FB6E9; }
.ribbon__cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.ribbon__cta:hover { background: var(--peach); color: var(--ink); }

/* ================ Header ================ */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand__mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: block;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand__sub {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width .25s ease;
  border-radius: 2px;
}
.nav a:hover { color: var(--coral-deep); }
.nav a:hover::after { width: 100%; }

.header__ctas { display: flex; gap: 8px; align-items: center; }

.hamburger {
  display: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  padding: 12px 10px;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger span {
  display: block;
  height: 1.8px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  padding: 18px 28px 24px;
  gap: 2px;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.mobile-menu > a {
  color: var(--ink);
  font-weight: 500;
  font-size: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
}
.mobile-menu > a.btn {
  margin-top: 10px;
  border: none;
  padding: 14px 22px;
  justify-content: center;
}

/* ==============================================================
   HERO — SPLIT LANDING PAGE
   ============================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  background: var(--white);
  overflow: hidden;
}

.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
  position: relative;
  min-height: calc(100vh - 260px);
}

.hero__half {
  position: relative;
  padding: 80px 56px 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__half-inner {
  position: relative;
  z-index: 2;
  max-width: 500px;
  width: 100%;
}

/* Maternity half */
.hero__half--mat {
  background: linear-gradient(135deg, #FFF4EB 0%, #FFE3D4 55%, #FFCBA4 100%);
}
.hero__half--mat::before {
  content: "";
  position: absolute;
  top: 0; right: -1px; bottom: 0;
  width: 60%;
  background: radial-gradient(ellipse at 100% 50%, rgba(255,107,92,0.15), transparent 70%);
  z-index: 1;
}

/* General half */
.hero__half--gen {
  background: linear-gradient(135deg, #F0F7FD 0%, #D9ECFB 55%, #B8DAF3 100%);
}
.hero__half--gen::before {
  content: "";
  position: absolute;
  top: 0; left: -1px; bottom: 0;
  width: 60%;
  background: radial-gradient(ellipse at 0% 50%, rgba(15,95,178,0.12), transparent 70%);
  z-index: 1;
}

.hero__motif {
  position: absolute;
  width: 500px;
  height: 500px;
  z-index: 0;
  opacity: 0.6;
}
.hero__motif--mat { top: -120px; right: -120px; }
.hero__motif--gen { bottom: -120px; left: -120px; }

/* Center seam — subtle brand ribbon */
.hero__seam {
  position: absolute;
  top: 0;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.hero__seam-inner {
  background: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.hero__seam-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}
.hero__seam-est {
  color: var(--muted);
  font-weight: 500;
}

/* Hero content */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-xs);
  margin-bottom: 28px;
}
.hero__half--mat .hero__eyebrow { color: var(--coral-dark); }
.hero__half--gen .hero__eyebrow { color: var(--sky-dark); }
.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.hero__half--mat .hero__eyebrow-dot { background: var(--coral); }
.hero__half--gen .hero__eyebrow-dot { background: var(--sky-deep); }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 60px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero__half--mat .hero__title em { color: var(--coral-deep); font-style: normal; }
.hero__half--gen .hero__title em { color: var(--sky-deep); font-style: normal; }

.hero__sub {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 420px;
}

/* Doctor chip */
.doc-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 14px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.doc-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.doc-chip__avatar {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.doc-chip--mat .doc-chip__avatar { background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%); }
.doc-chip--gen .doc-chip__avatar { background: linear-gradient(135deg, var(--sky) 0%, var(--sky-deep) 100%); }
.doc-chip__body { display: flex; flex-direction: column; gap: 2px; line-height: 1.35; }
.doc-chip__body strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.doc-chip__degs {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.doc-chip__note {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 2px;
}

/* Hero CTA */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  color: var(--white);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.hero__cta--mat {
  background: var(--coral-deep);
  box-shadow: 0 8px 20px rgba(225,79,64,0.35);
}
.hero__cta--mat:hover {
  background: var(--coral-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(184,56,40,0.4);
}
.hero__cta--gen {
  background: var(--sky-deep);
  box-shadow: 0 8px 20px rgba(15,95,178,0.35);
}
.hero__cta--gen:hover {
  background: var(--sky-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(8,59,115,0.4);
}

/* Hero bottom strip */
.hero__strip {
  background: var(--ink);
  color: var(--white);
  padding: 22px 0;
  position: relative;
  z-index: 6;
}
.hero__strip-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.hero__strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__strip-item svg { color: var(--peach); flex-shrink: 0; }
.hero__strip-item div { display: flex; flex-direction: column; line-height: 1.2; }
.hero__strip-item strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.hero__strip-item span {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

/* ================ Sections ================ */
.section { padding: 110px 0; }
.section--white { background: var(--white); }
.section--paper { background: var(--paper); }
.section--ink {
  background: linear-gradient(180deg, #0B1020 0%, #121A2E 100%);
  color: rgba(255,255,255,0.85);
}
.section__head {
  max-width: 760px;
  margin-bottom: 64px;
}
.section__head--center {
  margin: 0 auto 64px;
  text-align: center;
}
.section__title {
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section__title em { font-style: normal; color: var(--coral-deep); }
.section__title--light { color: var(--white); }
.section__title--light em { color: var(--peach); }
.section__lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  max-width: 640px;
}
.section__head--center .section__lede { margin-left: auto; margin-right: auto; }
.section__lede--light { color: rgba(255,255,255,0.7); }

/* ================ About Us ================ */
.about__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 64px;
  align-items: start;
}
.about__lede {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.about__copy p {
  font-size: 15.5px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about__copy p strong { color: var(--ink); }

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about__value {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  padding-left: 34px;
}
.about__value-ico {
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--peach-glow);
  color: var(--coral-deep);
}
.about__value:nth-child(2n) .about__value-ico {
  background: var(--sky-ghost);
  color: var(--sky-deep);
}
.about__value strong {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.about__value span {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.55;
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  padding: 36px 32px;
  background: linear-gradient(135deg, var(--sky-ghost) 0%, #FFFFFF 50%, var(--peach-glow) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: sticky;
  top: 100px;
}
.about__stat { display: flex; flex-direction: column; gap: 6px; }
.about__stat-n {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--sky-deep);
  letter-spacing: -0.025em;
  line-height: 1;
}
.about__stat:nth-child(2) .about__stat-n { color: var(--coral-deep); }
.about__stat:nth-child(3) .about__stat-n { color: var(--sky-deep); }
.about__stat:nth-child(4) .about__stat-n { color: var(--coral-deep); }
.about__stat-unit {
  font-size: 0.58em;
  margin-left: 2px;
  font-weight: 700;
}
.about__stat span {
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.about__cashless {
  grid-column: span 2;
  margin-top: 6px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-xs);
}
.about__cashless svg {
  color: var(--sky-deep);
  flex-shrink: 0;
  padding: 8px;
  width: 40px;
  height: 40px;
  background: var(--sky-ghost);
  border-radius: 10px;
}
.about__cashless strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}
.about__cashless span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ================ Doctors full-profile cards ================ */
.doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.doc-full {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.doc-full:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.doc-full--mat:hover { border-color: var(--peach); }
.doc-full--gen:hover { border-color: var(--sky-soft); }

.doc-full__visual {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  position: relative;
}
.doc-full--mat .doc-full__visual {
  background: linear-gradient(135deg, #FFF4EB 0%, #FFE3D4 60%, #FFCBA4 100%);
}
.doc-full--gen .doc-full__visual {
  background: linear-gradient(135deg, #F0F7FD 0%, #D9ECFB 60%, #B8DAF3 100%);
}
.doc-full__mono {
  width: 110px;
  height: 110px;
  border-radius: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--white);
  box-shadow: var(--shadow);
}
.doc-full--mat .doc-full__mono { background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%); }
.doc-full--gen .doc-full__mono { background: linear-gradient(135deg, var(--sky) 0%, var(--sky-deep) 100%); }
.doc-full__badge {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow-xs);
}
.doc-full--mat .doc-full__badge { color: var(--coral-dark); }
.doc-full--gen .doc-full__badge { color: var(--sky-dark); }

.doc-full__body { padding: 32px 30px; }
.doc-full__body h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.doc-full__role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 20px;
}
.doc-full--gen .doc-full__role { color: var(--sky-deep); }

.doc-full__creds {
  list-style: none;
  padding: 0 0 18px;
  margin: 0 0 18px;
  border-bottom: 1px solid var(--line);
}
.doc-full__creds li {
  position: relative;
  padding: 4px 0 4px 22px;
  font-size: 13.5px;
  color: var(--body);
}
.doc-full__creds li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.doc-full--gen .doc-full__creds li::before { background: var(--sky-deep); }
.doc-full__bio {
  font-size: 14.5px;
  color: var(--body);
  margin-bottom: 18px;
  line-height: 1.6;
}
.doc-full__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.doc-full__tags span {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 5px 11px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
}

/* ================ Services grid ================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.svc {
  padding: 30px 28px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.svc:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.svc::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--coral);
  opacity: 0;
  transition: opacity .25s ease;
}
.svc:hover::before { opacity: 1; }
.svc--gen::before { background: var(--sky-deep); }
.svc--ink::before { background: var(--ink); }

.svc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.svc__num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--coral-deep);
  letter-spacing: -0.02em;
}
.svc--gen .svc__num { color: var(--sky-deep); }
.svc--ink .svc__num { color: var(--ink); }
.svc__tag {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.svc--mat .svc__tag { color: var(--coral-dark); border-color: var(--peach); background: var(--peach-glow); }
.svc--gen .svc__tag { color: var(--sky-dark); border-color: var(--sky-soft); background: var(--sky-ghost); }

.svc h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
}
.svc p {
  font-size: 14.5px;
  color: var(--body);
  margin: 0;
  line-height: 1.6;
}

/* ================ Care Hub ================ */
.carehub { max-width: 1080px; margin: 0 auto; }
.carehub__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 36px;
  padding: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.carehub__tab {
  padding: 13px 22px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}
.carehub__tab:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.carehub__tab.is-active {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.carehub__tab-hint {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}
.carehub__tab.is-active .carehub__tab-hint { color: var(--muted); }

.carehub__sub {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.carehub__sub-btn {
  padding: 8px 18px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
}
.carehub__sub-btn:hover {
  border-color: var(--peach);
  color: var(--white);
}
.carehub__sub-btn.is-active {
  background: var(--peach);
  color: var(--ink);
  border-color: var(--peach);
}
.sup { font-size: 0.7em; vertical-align: super; }

.carehub__panel { display: none; }
.carehub__panel.is-active { display: block; }

.tips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.tip {
  padding: 26px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  position: relative;
}
.tip:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,203,164,0.4);
  transform: translateY(-2px);
}
.tip__n {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--peach);
  margin-bottom: 10px;
}
.tip h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
  line-height: 1.25;
}
.tip p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
}

.carehub__note {
  text-align: center;
  margin-top: 40px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
}
.carehub__note a {
  color: var(--peach);
  font-weight: 700;
}

/* ================ Why / Facilities ================ */
.why {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.why li {
  padding: 30px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .25s ease, box-shadow .25s ease;
}
.why li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.why__n {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--coral);
  margin-bottom: 14px;
}
.why li:nth-child(2n) .why__n { color: var(--sky-deep); }
.why li h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.why li p {
  font-size: 14.5px;
  color: var(--body);
  margin: 0;
  line-height: 1.6;
}

/* ================ Reviews ================ */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  margin: 0;
  padding: 32px 28px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.review:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.review__stars {
  color: #F5A623;
  font-size: 15px;
  letter-spacing: 3px;
}
.review blockquote {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
}
.review figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.review__who {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
}
.review__where {
  font-size: 12.5px;
  color: var(--muted);
}
.reviews__note {
  text-align: center;
  margin-top: 28px;
  font-size: 12.5px;
  color: var(--muted);
  font-style: italic;
}

/* ================ Book ================ */
.book__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.book__lede {
  font-size: 16px;
  color: var(--body);
  margin-bottom: 24px;
}
.book__cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  margin-bottom: 36px;
}
.book__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.book__meta dt {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 8px;
}
.book__meta dd {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
.book__meta em {
  font-style: normal;
  color: var(--coral-deep);
  font-weight: 600;
}

.book__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.book__form h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}
.book__form-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.book__form label {
  display: block;
  margin-bottom: 16px;
}
.book__form label > span {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.book__form input,
.book__form select,
.book__form textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.4px solid var(--line);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.book__form input:focus,
.book__form select:focus,
.book__form textarea:focus {
  outline: none;
  border-color: var(--sky-deep);
  box-shadow: 0 0 0 3px rgba(15,95,178,0.12);
}
.book__form textarea { resize: vertical; }
.book__form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.book__form-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}
.book__form-success {
  margin-top: 14px;
  padding: 12px;
  background: #E6F7EE;
  color: #0A6B3A;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
  font-size: 14px;
}

/* ================ Map ================ */
.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* ================ FAQ ================ */
.faq__list { max-width: var(--maxw-narrow); }
.faq details {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.faq details[open] { padding-bottom: 28px; }
.faq summary {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
  transition: color .2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--sky-deep); }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--coral);
  font-weight: 300;
  line-height: 1;
  transition: transform .25s ease, color .2s ease;
}
.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--sky-deep);
}
.faq details p {
  margin: 14px 0 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 720px;
}

/* ================ Footer ================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.brand--footer .brand__name { color: var(--white); }
.brand--footer .brand__sub { color: rgba(255,255,255,0.5); }
.footer__brand p {
  margin-top: 20px;
  max-width: 360px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.footer h4 {
  font-family: var(--font-body);
  color: var(--peach);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: rgba(255,255,255,0.7);
}
.footer a { color: rgba(255,255,255,0.85); transition: color .2s ease; }
.footer a:hover { color: var(--peach); }
.footer__col span { display: inline-block; color: rgba(255,255,255,0.45); font-size: 12.5px; margin-top: 4px; }

.footer__bottom { padding: 22px 0; font-size: 12px; color: rgba(255,255,255,0.5); border-top: 1px solid rgba(255,255,255,0.04); }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer__bottom em { font-style: italic; }
.footer__credit { letter-spacing: 0.02em; }
.footer__credit a {
  color: var(--peach);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,203,164,0.4);
  transition: color .2s ease, border-color .2s ease;
}
.footer__credit a:hover { color: var(--white); border-bottom-color: var(--white); }

/* ================ Mobile sticky bar ================ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 10px;
  gap: 8px;
  box-shadow: 0 -6px 24px rgba(15,23,42,0.14);
  z-index: 80;
  border-top: 1px solid var(--line);
}
.mobile-bar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
}
.mobile-bar__btn--call { background: var(--coral-deep); color: var(--white); }
.mobile-bar__btn--wa { background: #128C7E; color: #fff; }
.mobile-bar__btn--book { background: var(--sky-deep); color: var(--white); }

/* ================ CHATBOT ================ */
.chat-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 14px;
  background: var(--sky-deep);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(15,95,178,0.35);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.chat-launcher:hover {
  background: var(--sky-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(8,59,115,0.4);
}
.chat-launcher__ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-launcher__ico svg { width: 16px; height: 16px; }
.chat-launcher__label { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.chat-launcher__label em {
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.chat-panel {
  position: fixed;
  right: 24px;
  bottom: 88px;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 540px;
  max-height: calc(100vh - 120px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(15,23,42,0.25);
  border: 1px solid var(--line);
  z-index: 119;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  animation: chatPop .22s ease-out;
}
@keyframes chatPop {
  from { opacity: 0; transform: translateY(10px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.chat-header {
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--sky-deep) 0%, var(--sky-dark) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-header__avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.chat-header__avatar::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 12px;
  height: 12px;
  background: #4ADE80;
  border: 2px solid var(--sky-dark);
  border-radius: 50%;
}
.chat-header__title { flex: 1; }
.chat-header__title strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}
.chat-header__title span {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}
.chat-close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background .2s ease, color .2s ease;
}
.chat-close:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.chat-close svg { width: 18px; height: 18px; }

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 18px 12px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}
.chat-msg {
  max-width: 86%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}
.chat-msg--bot {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-top-left-radius: 4px;
  align-self: flex-start;
}
.chat-msg--me {
  background: var(--sky-deep);
  color: var(--white);
  border-top-right-radius: 4px;
  align-self: flex-end;
}
.chat-msg a { color: var(--coral-deep); font-weight: 700; }
.chat-msg--me a { color: var(--peach); }
.chat-msg strong { color: inherit; font-weight: 700; }
.chat-msg--typing {
  background: var(--white);
  border: 1px solid var(--line);
  align-self: flex-start;
  border-top-left-radius: 4px;
  padding: 12px 14px;
}
.chat-msg--typing span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--muted);
  border-radius: 50%;
  margin: 0 1.5px;
  animation: blink 1.2s infinite;
}
.chat-msg--typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-msg--typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink {
  0%, 80%, 100% { opacity: 0.3; }
  40% { opacity: 1; }
}

.chat-quicks {
  padding: 8px 14px 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.chat-quick {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.chat-quick:hover {
  background: var(--sky-deep);
  color: var(--white);
  border-color: var(--sky-deep);
}

.chat-input {
  display: flex;
  gap: 8px;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.chat-input input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1.4px solid var(--line);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.chat-input input:focus { border-color: var(--sky-deep); background: var(--white); }
.chat-send {
  background: var(--sky-deep);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease;
  flex-shrink: 0;
}
.chat-send:hover { background: var(--coral-deep); }
.chat-send svg { width: 16px; height: 16px; }

/* ==============================================================
   RESPONSIVE
   ============================================================== */
@media (max-width: 1100px) {
  .hero__half { padding: 70px 40px 90px; }
  .hero__title { font-size: clamp(32px, 4vw, 46px); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: repeat(2, 1fr); }
  .doc-full { grid-template-columns: 180px 1fr; }
  .reviews { grid-template-columns: 1fr 1fr; }
  .reviews .review:nth-child(3) { grid-column: span 2; }
}

@media (max-width: 1100px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__stats { position: static; }
}

@media (max-width: 900px) {
  .hero__split { grid-template-columns: 1fr; min-height: auto; }
  .hero__half { padding: 70px 32px 80px; min-height: 580px; }
  /* On mobile the two halves stack, so the centered seam pill no
     longer sits between them — it floats in the middle of one and
     overlaps the headline. Hide it; the header already shows the
     brand. */
  .hero__seam { display: none; }
  .doc-grid { grid-template-columns: 1fr; gap: 24px; }
  .book__grid { grid-template-columns: 1fr; gap: 40px; }
  .book__meta { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero__strip-row { grid-template-columns: 1fr 1fr; gap: 18px; }
  .nav, .header__ctas { display: none; }
  .hamburger { display: flex; }
  .reviews { grid-template-columns: 1fr; }
  .reviews .review:nth-child(3) { grid-column: span 1; }
}

@media (max-width: 680px) {
  .ribbon__cta { margin-left: 0; }
  .about__values { grid-template-columns: 1fr; gap: 18px; }
  .about__stats { padding: 28px 22px; }
  .about__stat-n { font-size: 36px; }
  .about__lede { font-size: 19px; }
  .ribbon__sep { display: none; }
  .section { padding: 70px 0; }
  .section__head { margin-bottom: 44px; }
  .hero__half { padding: 56px 22px 72px; min-height: 560px; }
  .hero__motif { width: 360px; height: 360px; }
  .hero__seam { top: calc(50% + 0px); }
  .svc-grid { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; }
  .tips { grid-template-columns: 1fr; }
  .book__meta { grid-template-columns: 1fr; gap: 20px; }
  .book__form { padding: 26px 22px; }
  .book__form .row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 30px; }
  .doc-full { grid-template-columns: 1fr; }
  .doc-full__visual { padding: 28px; }
  .doc-full__mono { width: 90px; height: 90px; font-size: 52px; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }
  .chat-launcher { bottom: 80px; right: 16px; padding: 10px 14px 10px 12px; font-size: 13px; }
  .chat-launcher__label em { display: none; }
  .chat-panel { right: 12px; bottom: 140px; width: calc(100vw - 24px); height: 70vh; }
  .carehub__tabs { grid-template-columns: 1fr; border-radius: 24px; }
  .hero__strip-row { grid-template-columns: 1fr; gap: 14px; }
  /* Keep the hospital subtitle visible on mobile — the brand needs
     to read "Sree Harshitha / Hospital · Kadapa" even at small sizes. */
  .brand__name { font-size: 17px; }
  .brand__sub { font-size: 9.5px; letter-spacing: 0.12em; }
}

@media (max-width: 380px) {
  /* Only at the very smallest widths, drop the subtitle to keep the
     header from wrapping or overflowing. */
  .brand__sub { display: none; }
}

@media (max-width: 420px) {
  .ribbon__inner { font-size: 11.5px; gap: 10px; }
  .hero__title { font-size: 32px; }
  .doc-chip { padding: 12px; }
  .doc-chip__avatar { width: 44px; height: 44px; font-size: 22px; }
  .doc-chip__body strong { font-size: 13.5px; }
}
