:root {
  --cream: #FFF8FA;
  --panel: #FBE4ED;
  --card: #FFFFFF;
  --terracotta: #C2255C;
  --terracotta-deep: #A31D4C;
  --rose: #E0568C;
  --sage: #F06292;
  --ink: #341A26;
  --ink-soft: #6E4C58;
  --border: #F3D9E3;
  --shadow: 0 2px 4px rgba(194, 37, 92, 0.06), 0 16px 36px rgba(194, 37, 92, 0.10);
  --radius: 20px;
  --radius-btn: 14px;
  --maxw: 1140px;
  --footer-bg: #2A0E1F;
  --footer-ink: #FDF2F6;
  --footer-ink-soft: rgba(253, 242, 246, 0.72);
  --on-terracotta: #FFFFFF;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --cream: #170A11;
    --panel: #2E1424;
    --card: #23111C;
    --terracotta: #F48FB1;
    --terracotta-deep: #F6A8C0;
    --rose: #EC6FA0;
    --sage: #D9548C;
    --ink: #F7E9EF;
    --ink-soft: #C9A2B2;
    --border: #3C2130;
    --shadow: 0 3px 6px rgba(0, 0, 0, 0.3), 0 16px 36px rgba(0, 0, 0, 0.45);
    --footer-bg: #0C0509;
    --footer-ink: #F7E9EF;
    --footer-ink-soft: rgba(247, 233, 239, 0.72);
    --on-terracotta: #2B1620;
  }
}
:root[data-theme="dark"] {
  --cream: #170A11;
  --panel: #2E1424;
  --card: #23111C;
  --terracotta: #F48FB1;
  --terracotta-deep: #F6A8C0;
  --rose: #EC6FA0;
  --sage: #D9548C;
  --ink: #F7E9EF;
  --ink-soft: #C9A2B2;
  --border: #3C2130;
  --shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  --footer-bg: #0C0509;
  --footer-ink: #F7E9EF;
  --footer-ink-soft: rgba(247, 233, 239, 0.72);
  --on-terracotta: #2B1620;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Figtree', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
  text-wrap: balance;
}

p { margin: 0; color: var(--ink-soft); line-height: 1.7; max-width: 62ch; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--footer-bg);
  color: var(--footer-ink);
  padding: 10px 16px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Waveform mark used before every eyebrow label — ties every section back to "speech" */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 13px;
  flex-shrink: 0;
  background: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 13'%3E%3Crect x='0' y='4.5' width='2.6' height='4' rx='1.3'/%3E%3Crect x='4.6' y='1' width='2.6' height='11' rx='1.3'/%3E%3Crect x='9.2' y='3.2' width='2.6' height='6.6' rx='1.3'/%3E%3Crect x='13.8' y='0' width='2.6' height='13' rx='1.3'/%3E%3Crect x='17.4' y='2.8' width='2.6' height='7.4' rx='1.3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 13'%3E%3Crect x='0' y='4.5' width='2.6' height='4' rx='1.3'/%3E%3Crect x='4.6' y='1' width='2.6' height='11' rx='1.3'/%3E%3Crect x='9.2' y='3.2' width='2.6' height='6.6' rx='1.3'/%3E%3Crect x='13.8' y='0' width='2.6' height='13' rx='1.3'/%3E%3Crect x='17.4' y='2.8' width='2.6' height='7.4' rx='1.3'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 84px 24px;
}
section h2 { font-size: clamp(1.6rem, 3.2vw, 2.35rem); font-weight: 600; margin-bottom: 18px; max-width: 22ch; }

.band { background: var(--panel); border-radius: 28px; transition: background-color 0.3s ease; }

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

.blob {
  position: absolute;
  z-index: -1;
  border-radius: 62% 38% 55% 45% / 45% 55% 45% 55%;
  filter: blur(2px);
  pointer-events: none;
  background: var(--panel);
  opacity: 0.9;
}
[data-theme="dark"] .blob,
:root:not([data-theme="light"]) .blob { opacity: 0.5; }

.qual, .service, .step, .timeline-item, .clinic-card, .profile-card, .connect__card, .chip {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.3s ease;
}
.qual:hover, .service:hover, .step:hover, .timeline-item:hover,
.clinic-card:hover, .profile-card:hover, .connect__card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.chip:hover { border-color: var(--terracotta); color: var(--terracotta); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Figtree', sans-serif;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--terracotta); color: var(--on-terracotta); box-shadow: 0 10px 22px rgba(194, 37, 92, 0.3); }
.btn--primary:hover { background: var(--terracotta-deep); transform: translateY(-3px); box-shadow: 0 16px 30px rgba(194, 37, 92, 0.4); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--terracotta); color: var(--terracotta); }
.btn--block { width: 100%; }

/* THEME TOGGLE */
.theme-toggle { display: inline-flex; align-items: center; gap: 3px; background: rgba(59,42,32,0.06); border: 1px solid var(--border); border-radius: 999px; padding: 3px; cursor: pointer; flex-shrink: 0; }
.theme-toggle__opt { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; color: var(--ink-soft); transition: background 0.2s ease, color 0.2s ease; }
.theme-toggle__opt svg { width: 14px; height: 14px; }
.theme-toggle__opt[aria-pressed="true"] { background: var(--terracotta); color: var(--on-terracotta); }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 32px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.nav__mark { display: flex; align-items: center; gap: 10px; font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.nav__mark span { color: var(--terracotta); }
.nav__logo { width: 32px; height: 32px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 1.5px solid var(--border); }
.nav__logo img { width: 100%; height: 100%; object-fit: cover; }
.nav__links { display: flex; align-items: center; gap: 20px; }
.nav__links a:not(.nav__cta) { font-size: 0.87rem; font-weight: 500; color: var(--ink-soft); transition: color 0.2s ease; white-space: nowrap; }
.nav__links a:not(.nav__cta):hover { color: var(--terracotta); }
.nav__cta { background: var(--terracotta); color: var(--on-terracotta); padding: 10px 20px; border-radius: var(--radius-btn); font-size: 0.87rem; font-weight: 600; }
.nav__cta:hover { background: var(--terracotta-deep); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* HERO */
.hero { position: relative; max-width: none; padding: 76px 24px 0; overflow: hidden; }
.hero__grid {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  padding-bottom: 56px;
}
@media (min-width: 1000px) {
  .hero__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
}

.hero__eyebrow-line { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--sage); font-weight: 600; font-size: 0.85rem; }
.hero__eyebrow-line svg { width: 20px; height: 13px; color: var(--sage); }

.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: var(--ink);
}
.hero__title em { font-style: italic; color: var(--terracotta); font-weight: 500; }

.hero__lede { font-size: 1.1rem; max-width: 46ch; margin-bottom: 26px; }

.hero__specialty { font-size: 1.02rem; font-weight: 600; color: var(--rose); margin-bottom: 4px; font-family: 'Figtree', sans-serif; }
.hero__specialty-ur { display: block; font-family: 'Noto Nastaliq Urdu', serif; font-size: 1rem; font-weight: 500; color: var(--ink-soft); margin-top: 4px; margin-bottom: 20px; }

.hero__details { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-bottom: 30px; }
.hero__detail { display: flex; align-items: center; gap: 9px; font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.hero__detail svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--terracotta); }

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__visual { position: relative; justify-self: center; width: 100%; max-width: 360px; perspective: 1200px; }
.hero__portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 62% 38% 55% 45% / 55% 45% 58% 42%;
  overflow: hidden;
  border: 3px solid var(--card);
  box-shadow: var(--shadow);
  background: var(--panel);
  transform: perspective(1200px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; }
.hero__ribbon {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.hero__ribbon strong { color: var(--terracotta); }

.hero__wave { color: var(--terracotta); opacity: 0.5; width: 100%; height: 46px; }
.hero__wave-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.hero__wave rect { transform-box: fill-box; transform-origin: center; animation: waveBreathe 2.4s ease-in-out infinite; }
.hero__wave rect:nth-child(odd) { animation-duration: 2.1s; }
.hero__wave rect:nth-child(3n) { animation-delay: -0.6s; }
.hero__wave rect:nth-child(4n) { animation-delay: -1.2s; }
.hero__wave rect:nth-child(5n) { animation-delay: -0.3s; }
@keyframes waveBreathe { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.55); } }

/* ABOUT */
.about {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  align-items: start;
}
.about__text p { margin-bottom: 16px; }
.about__quals { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 18px; margin-top: 28px; }
.qual { display: flex; gap: 13px; align-items: flex-start; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 16px; }
.qual__icon { flex-shrink: 0; width: 38px; height: 38px; display: grid; place-items: center; background: var(--panel); color: var(--terracotta); border-radius: 10px; }
.qual:nth-child(3n+2) .qual__icon { color: var(--sage); }
.qual:nth-child(3n+3) .qual__icon { color: var(--rose); }
.qual__icon svg { width: 19px; height: 19px; }
.qual h3 { font-size: 0.96rem; font-weight: 600; margin-bottom: 3px; font-family: 'Figtree', sans-serif; }
.qual p { font-size: 0.85rem; }

.about__visual { display: flex; justify-content: center; }
.profile-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  width: 100%;
  max-width: 300px;
  box-shadow: var(--shadow);
  text-align: center;
}
.profile-card__avatar { width: 88px; height: 88px; margin: 0 auto 16px; border-radius: 50%; object-fit: cover; border: 3px solid var(--panel); }
.profile-card__name { font-family: 'Fraunces', serif; font-weight: 600; color: var(--ink); font-size: 1.15rem; margin-bottom: 3px; }
.profile-card__role { color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 20px; }
.profile-card__divider { height: 1px; background: var(--border); margin: 0 0 20px; }
.profile-card__facts { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; text-align: left; }
.profile-card__facts li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--ink-soft); }
.profile-card__facts svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--terracotta); }
.profile-card__facts strong { color: var(--ink); font-weight: 600; }

/* CONDITIONS — tag style, not pills */
.conditions__intro { margin-bottom: 28px; }
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 0.87rem;
  font-weight: 500;
  padding: 9px 16px 9px 12px;
  border-radius: 10px;
}
.chip::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); flex-shrink: 0; }
.chip:nth-child(3n+2)::before { background: var(--sage); }
.chip:nth-child(3n+3)::before { background: var(--rose); }

/* SERVICES */
.services__intro { margin-bottom: 30px; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.service { display: flex; align-items: center; gap: 12px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px; font-weight: 500; font-size: 0.92rem; color: var(--ink); }
.service__icon { font-size: 1.1rem; }
.service--more { color: var(--terracotta); font-weight: 600; }

/* CAREER TIMELINE */
.career__intro { max-width: 62ch; margin-bottom: 34px; }
.timeline { position: relative; display: flex; flex-direction: column; gap: 4px; max-width: 820px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 10px; bottom: 10px; width: 2px; background: repeating-linear-gradient(var(--border) 0 6px, transparent 6px 12px); }
.timeline-item { position: relative; display: grid; grid-template-columns: 30px 90px 1fr; gap: 4px 18px; padding: 16px 0; }
.timeline-item::before { content: ''; position: absolute; left: 3px; top: 22px; width: 10px; height: 10px; border-radius: 50%; background: var(--terracotta); border: 2px solid var(--cream); }
.timeline-item:nth-child(3n+2)::before { background: var(--sage); }
.timeline-item:nth-child(3n+3)::before { background: var(--rose); }
.timeline-item__years { grid-column: 2; font-weight: 700; font-size: 0.82rem; color: var(--terracotta); padding-top: 2px; }
.timeline-item__body { grid-column: 3; }
.timeline-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 2px; font-family: 'Figtree', sans-serif; }
.timeline-item__place { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; display: block; }
.timeline-item p { font-size: 0.87rem; }
@media (max-width: 560px) {
  .timeline-item { grid-template-columns: 20px 1fr; }
  .timeline-item__years { grid-column: 2; }
  .timeline-item__body { grid-column: 2; }
}

/* JOURNEY */
.journey__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 36px; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px 20px; }
.step__num { font-family: 'Fraunces', serif; font-weight: 600; font-size: 2.1rem; color: var(--panel); line-height: 1; display: block; margin-bottom: -6px; }
.step__icon { width: 32px; height: 32px; display: grid; place-items: center; color: var(--terracotta); margin-bottom: 12px; }
.step:nth-child(3n+2) .step__icon { color: var(--sage); }
.step:nth-child(3n+3) .step__icon { color: var(--rose); }
.step__icon svg { width: 22px; height: 22px; }
.step h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 6px; }
.step p { font-size: 0.86rem; }
@media (max-width: 860px) { .journey__steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .journey__steps { grid-template-columns: 1fr; } }

/* FLOATING CTA */
.float-cta { position: fixed; right: 24px; bottom: 24px; z-index: 200; opacity: 0; transform: translateY(14px) scale(0.96); pointer-events: none; transition: opacity 0.35s ease, transform 0.35s ease; }
.float-cta.is-shown { opacity: 1; transform: none; pointer-events: auto; }
.float-cta__btn { box-shadow: 0 14px 30px rgba(194, 37, 92, 0.4); }
@media (max-width: 720px) {
  .float-cta { right: 16px; bottom: 16px; }
  .float-cta__btn { padding: 12px 20px; font-size: 0.88rem; }
}

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float svg { width: 27px; height: 27px; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 30px rgba(37, 211, 102, 0.55); }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.5;
  z-index: -1;
  animation: waPulse 2.4s ease-out infinite;
}
.reduce-motion .whatsapp-float::before { display: none; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.7); opacity: 0; } }
@media (max-width: 720px) {
  .whatsapp-float { left: 16px; bottom: 16px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 23px; height: 23px; }
}

/* CLINIC */
.clinic__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px; margin-top: 30px; }
.clinic-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.clinic-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.clinic-card__area { margin-bottom: 18px; font-size: 0.92rem; }
.clinic-card__fee { font-family: 'Fraunces', serif; font-weight: 600; color: var(--terracotta); font-size: 1.3rem; margin-bottom: 16px; }
.clinic-card__fee span { display: block; font-family: 'Figtree', sans-serif; font-weight: 500; color: var(--ink-soft); font-size: 0.82rem; margin-top: 2px; }
.clinic-card__timing-note { background: var(--panel); border: 1px dashed var(--border); border-radius: 12px; padding: 14px 16px; font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 22px; }
.clinic-card__timing-note strong { color: var(--terracotta); }
.clinic-card__actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.clinic-card__note { font-size: 0.8rem; color: var(--ink-soft); text-align: center; }
.clinic-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 320px; border: 1px solid var(--border); }
.clinic-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* FAQ */
.faq__list { display: flex; flex-direction: column; gap: 10px; max-width: 780px; }
.faq__item { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 4px 22px; transition: box-shadow 0.25s ease, transform 0.25s ease; }
.faq__item[open] { box-shadow: 0 3px 6px rgba(194, 37, 92, 0.08), 0 20px 40px rgba(194, 37, 92, 0.14); transform: translateY(-2px); }
.faq__item summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; font-weight: 600; font-family: 'Figtree', sans-serif; color: var(--ink); cursor: pointer; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; flex-shrink: 0; font-family: 'Fraunces', serif; font-size: 1.4rem; color: var(--terracotta); line-height: 1; transition: transform 0.25s ease; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding-bottom: 18px; }

/* BOOK */
.book { background: var(--panel); border-radius: 28px; max-width: calc(var(--maxw) - 48px); }
.book__sub { max-width: 56ch; margin-bottom: 32px; }
.book__sub a { color: var(--terracotta); font-weight: 600; text-decoration: underline; }
.book-form { display: flex; flex-direction: column; gap: 18px; max-width: 640px; }
.book-form[hidden] { display: none; }
.book-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.book-form label, .book-form__full { display: flex; flex-direction: column; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.book-form input, .book-form select, .book-form textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.92rem;
  resize: vertical;
}
.book-form input::placeholder, .book-form textarea::placeholder { color: var(--ink-soft); opacity: 0.7; }
.book-form button { margin-top: 6px; max-width: 260px; }
.book-confirm { margin-top: 20px; background: var(--card); border: 1px solid var(--border); color: var(--ink); padding: 14px 18px; border-radius: 12px; font-size: 0.9rem; max-width: 640px; }
.book-confirm a { color: var(--terracotta); font-weight: 600; text-decoration: underline; }
.book-confirm--error { border-color: var(--terracotta); }

/* CONNECT */
.connect__intro { max-width: 56ch; margin-bottom: 30px; }
.connect__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 180px)); justify-content: center; gap: 14px; }
.connect__card { display: flex; flex-direction: column; align-items: center; gap: 9px; background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 22px 16px; font-size: 0.85rem; font-weight: 600; color: var(--ink); text-align: center; }
.connect__card small { font-weight: 500; color: var(--ink-soft); font-size: 0.76rem; }
.connect__icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--panel); color: var(--terracotta); }
.connect__icon svg { width: 19px; height: 19px; }
.connect__card--placeholder { cursor: default; border-style: dashed; opacity: 0.6; }
.connect__card--placeholder:hover { transform: none; box-shadow: none; }

/* FOOTER */
.footer { background: var(--footer-bg); color: var(--footer-ink-soft); padding: 56px 24px 24px; margin-top: 20px; }
.footer__top { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 34px; border-bottom: 1px solid rgba(243,230,216,0.14); }
.footer__mark { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.1rem; color: var(--footer-ink); }
.footer__mark span { color: var(--terracotta); }
.footer__cols { display: flex; gap: 54px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 9px; }
.footer__col h3 { color: var(--footer-ink); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; font-family: 'Figtree', sans-serif; font-weight: 700; }
.footer__col a { font-size: 0.88rem; color: var(--footer-ink-soft); }
.footer__col a:hover { color: var(--footer-ink); }
.footer__bottom { max-width: var(--maxw); margin: 0 auto; padding-top: 20px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 0.8rem; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .about, .clinic__grid, .about__quals { grid-template-columns: 1fr; }
  .about__visual { order: -1; }
  .book-form__row { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: flex-start; padding: 20px 24px 28px;
    display: none; gap: 16px;
  }
  .nav__links.is-open { display: flex; }
  .nav__toggle { display: flex; }
  section { padding: 60px 20px; }
}

/* CURSOR */
/* !important needed: overrides the pointer/text cursors several
   elements (buttons, inputs, links) already set explicitly. The SVG
   bakes a soft blurred pink halo behind the flower glyph, since a
   native cursor image can't take a CSS filter/drop-shadow. */
* {
  cursor: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0NCIgaGVpZ2h0PSI0NCI+PGRlZnM+PGZpbHRlciBpZD0iZzEiIHg9Ii0xMDAlIiB5PSItMTAwJSIgd2lkdGg9IjMwMCUiIGhlaWdodD0iMzAwJSI+PGZlR2F1c3NpYW5CbHVyIHN0ZERldmlhdGlvbj0iNiIvPjwvZmlsdGVyPjxmaWx0ZXIgaWQ9ImcyIiB4PSItMTAwJSIgeT0iLTEwMCUiIHdpZHRoPSIzMDAlIiBoZWlnaHQ9IjMwMCUiPjxmZUdhdXNzaWFuQmx1ciBzdGREZXZpYXRpb249IjMiLz48L2ZpbHRlcj48L2RlZnM+PGNpcmNsZSBjeD0iMTkiIGN5PSIxOCIgcj0iMTYiIGZpbGw9IiNGNDhGQjEiIG9wYWNpdHk9IjAuMzIiIGZpbHRlcj0idXJsKCNnMSkiLz48Y2lyY2xlIGN4PSIxOSIgY3k9IjE4IiByPSI5IiBmaWxsPSIjRUM2RkEwIiBvcGFjaXR5PSIwLjU1IiBmaWx0ZXI9InVybCgjZzIpIi8+PHRleHQgeD0iMiIgeT0iMzUiIGZvbnQtc2l6ZT0iMzQiPvCfjLg8L3RleHQ+PC9zdmc+') 16 16, auto !important;
}
