/* ============================================================
   ANUVANSH CLINIC — Components
   ============================================================ */

/* ---------- Navbar ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  background: rgba(251, 246, 248, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--c-line);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav__brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c-primary-soft);
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.nav__brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: 0.04em;
  color: var(--c-ink);
}

.nav__brand-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-rose-deep);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
}

.nav__link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-ink);
  padding-block: 6px;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--c-rose);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease-out);
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav__link[aria-current="page"] { color: var(--c-primary); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}

.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  position: relative;
  z-index: 120;
}

.nav__burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform var(--t-med) var(--ease-out), opacity var(--t-med) var(--ease-out), top var(--t-med) var(--ease-out);
}

.nav__burger span:nth-child(1) { top: 15px; }
.nav__burger span:nth-child(2) { top: 21px; }
.nav__burger span:nth-child(3) { top: 27px; }

.nav__burger[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }

.nav__burger[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: linear-gradient(160deg, var(--c-primary-deep) 0%, var(--c-primary) 100%);
  color: var(--c-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 24px) var(--gutter) 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med) var(--ease-out), visibility var(--t-med);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 7vw, 2.4rem);
  color: var(--c-bg);
  padding: 10px 0;
  border-bottom: 1px solid rgba(250, 248, 242, 0.14);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-out);
}

.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 80ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 130ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 180ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 230ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 280ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(6) { transition-delay: 330ms; }

.mobile-menu__link:hover { color: var(--c-rose); }

.mobile-menu__foot {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transition: opacity var(--t-med) var(--ease-out) 380ms;
}

.mobile-menu.is-open .mobile-menu__foot { opacity: 1; }

@media (max-width: 960px) {
  .nav__menu { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }
}

/* ---------- Section header ---------- */

.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .kicker { justify-content: center; }

.section-head h2 {
  margin: 18px 0 16px;
}

/* ---------- Program / service cards ---------- */

.card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out), border-color var(--t-med) var(--ease-out);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 88, 134, 0.35);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--c-primary-soft);
  color: var(--c-primary);
  display: grid;
  place-items: center;
}

.card__icon svg { width: 26px; height: 26px; }

.card h3 {
  margin-top: 6px;
}

.card__tag {
  align-self: flex-start;
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-rose-deep);
  background: var(--c-rose-soft);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}

.card p { color: var(--c-muted); font-size: 0.98rem; }

.card__link {
  margin-top: auto;
  padding-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
}

.card__link svg { transition: transform var(--t-fast) var(--ease-out); }
.card:hover .card__link svg { transform: translateX(4px); }

/* ---------- Feature / tick list ---------- */

.tick-list {
  display: grid;
  gap: 12px;
}

.tick-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.tick-list svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--c-primary);
}

.tick-list--rose svg { color: var(--c-rose-deep); }

/* ---------- Stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--r-md);
  background: rgba(250, 248, 242, 0.06);
  border: 1px solid rgba(250, 248, 242, 0.12);
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--c-rose);
  line-height: 1;
}

.stat__label {
  margin-top: 10px;
  font-size: 0.86rem;
  color: rgba(250, 248, 242, 0.75);
}

@media (max-width: 640px) {
  .stats { grid-template-columns: 1fr; gap: 14px; }
}

/* ---------- Timeline / steps ---------- */

.steps {
  position: relative;
  display: grid;
  gap: 0;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding-bottom: 40px;
}

.step:last-child { padding-bottom: 0; }

.step::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 56px;
  bottom: 0;
  width: 1px;
  background: var(--c-line);
}

.step:last-child::before { display: none; }

.step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--c-rose-deep);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.step h3 { margin-bottom: 8px; }
.step p { color: var(--c-muted); max-width: 52ch; }

/* ---------- Testimonials ---------- */

.testimonial {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

.testimonial__stars {
  display: flex;
  gap: 4px;
  color: var(--c-rose);
  margin-bottom: 20px;
}

.testimonial__stars svg { width: 18px; height: 18px; }

.testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.55;
  font-weight: 480;
}

.testimonial__src {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial__name { font-weight: 700; font-size: 0.95rem; }

.testimonial__meta {
  font-size: var(--fs-small);
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.testimonial__badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--c-primary-soft);
  color: var(--c-primary);
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

/* ---------- Forms ---------- */

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-weight: 700;
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  background: var(--c-surface);
  transition: border-color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(200, 88, 134, 0.14);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--c-danger);
}

.field .field-error {
  display: none;
  font-size: var(--fs-small);
  color: var(--c-danger);
  font-weight: 600;
}

.field input[aria-invalid="true"] ~ .field-error { display: block; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-grid .field--full { grid-column: 1 / -1; }

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}

.form-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.is-shown { display: block; }

.form-success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--c-primary-soft);
  color: var(--c-primary);
  display: grid;
  place-items: center;
}

/* ---------- Accordion ---------- */

.accordion {
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: var(--c-surface);
  overflow: hidden;
}

.accordion + .accordion { margin-top: 14px; }

.accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  text-align: left;
  font-weight: 700;
  font-size: 1.02rem;
  font-family: var(--font-ui);
}

.accordion__icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--c-line);
  display: grid;
  place-items: center;
  transition: transform var(--t-med) var(--ease-out), background var(--t-med) var(--ease-out), color var(--t-med) var(--ease-out), border-color var(--t-med) var(--ease-out);
}

.accordion__btn[aria-expanded="true"] .accordion__icon {
  transform: rotate(45deg);
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-med) var(--ease-out);
}

.accordion__panel[data-open="true"] { grid-template-rows: 1fr; }

.accordion__panel-inner {
  overflow: hidden;
  padding-inline: 26px;
}

.accordion__panel[data-open="true"] .accordion__panel-inner {
  padding-bottom: 24px;
}

.accordion__panel p {
  color: var(--c-muted);
  max-width: 62ch;
}

/* ---------- Breadcrumb ---------- */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-small);
  color: var(--c-muted);
}

.breadcrumb a { color: var(--c-muted); font-weight: 600; }
.breadcrumb a:hover { color: var(--c-primary); }

.breadcrumb svg { width: 14px; height: 14px; }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  padding-top: calc(var(--nav-h) + clamp(56px, 9vw, 110px));
  padding-bottom: clamp(40px, 6vw, 80px);
  background:
    radial-gradient(60% 120% at 85% -10%, rgba(241, 146, 152, 0.14), transparent 60%),
    radial-gradient(50% 100% at 0% 110%, rgba(200, 88, 134, 0.12), transparent 55%),
    var(--c-bg);
  border-bottom: 1px solid var(--c-line);
}

.page-hero h1 {
  font-size: var(--fs-display);
  max-width: 16ch;
  margin-top: 18px;
}

.page-hero .lede { margin-top: 18px; }

/* ---------- CTA banner ---------- */

.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-primary-deep) 0%, var(--c-primary) 62%, var(--c-rose) 100%);
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 80px);
  color: var(--c-bg);
  display: grid;
  gap: 28px;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 90% at 90% 10%, rgba(241, 146, 152, 0.35), transparent 60%),
    radial-gradient(40% 80% at 5% 100%, rgba(250, 248, 242, 0.12), transparent 55%);
  pointer-events: none;
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 20ch;
}

.cta-banner p {
  color: rgba(250, 248, 242, 0.85);
  max-width: 56ch;
}

.cta-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--c-primary-deep);
  color: rgba(250, 248, 242, 0.85);
  padding: clamp(56px, 8vw, 96px) 0 40px;
  margin-top: var(--space-section);
}

.footer a { color: rgba(250, 248, 242, 0.85); }
.footer a:hover { color: var(--c-rose); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--c-bg);
}

.footer h4 {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-rose);
  margin-bottom: 18px;
}

.footer ul { display: grid; gap: 10px; }

.footer ul li { font-size: 0.94rem; }

.footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 248, 242, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(250, 248, 242, 0.6);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(250, 248, 242, 0.25);
  display: grid;
  place-items: center;
  transition: background var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}

.socials a:hover {
  background: var(--c-rose);
  border-color: var(--c-rose);
  color: var(--c-primary-deep);
}

.socials svg { width: 17px; height: 17px; }

/* ---------- Location cards ---------- */

.loc-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.loc-card__body {
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  gap: 16px;
  flex: 1;
}

.loc-card h3 { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }

.loc-card__flag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--c-rose-soft);
  color: var(--c-rose-deep);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

.loc-card__addr {
  display: flex;
  gap: 12px;
  color: var(--c-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.loc-card__addr svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--c-primary);
}

.loc-card__hours {
  background: var(--c-primary-soft);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-size: 0.9rem;
  display: grid;
  gap: 4px;
}

.loc-card__hours strong { color: var(--c-primary-deep); }

.loc-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* ---------- Map embed ---------- */

.map-frame {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: var(--r-md);
  filter: saturate(0.92);
}

/* ---------- Chip ---------- */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--c-primary);
  background: var(--c-primary-soft);
  padding: 8px 16px;
  border-radius: var(--r-pill);
}

/* ---------- Divider ornament ---------- */

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--c-rose);
  margin: 0 auto;
}

.ornament::before,
.ornament::after {
  content: "";
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor);
}

.ornament::after {
  background: linear-gradient(90deg, currentColor, transparent);
}

/* ---------- Table ---------- */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: var(--c-surface);
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.table-wrap th {
  text-align: left;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-rose-deep);
  padding: 16px 20px;
  border-bottom: 1px solid var(--c-line);
  background: var(--c-rose-soft);
}

.table-wrap td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--c-line);
  font-size: 0.95rem;
  vertical-align: top;
}

.table-wrap tr:last-child td { border-bottom: 0; }

/* ---------- Image treatments ---------- */

.img-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.img-frame:hover img { transform: scale(1.03); }

.img-caption {
  margin-top: 10px;
  font-size: var(--fs-small);
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.img-caption svg { width: 14px; height: 14px; color: var(--c-rose-deep); }

/* ---------- Note / disclaimer ---------- */

.note {
  font-size: var(--fs-small);
  color: var(--c-muted);
  background: var(--c-rose-soft);
  border-left: 3px solid var(--c-rose);
  padding: 14px 18px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  max-width: 72ch;
}

.note strong { color: var(--c-ink); }

/* ---------- Review summary ---------- */

.review-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 22px 28px;
  box-shadow: var(--shadow-sm);
  max-width: 640px;
}

.review-summary__score {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--c-ink);
  margin-right: 10px;
}

.review-summary__stars {
  display: inline-flex;
  gap: 3px;
  color: var(--c-rose);
}

.review-summary__stars svg { width: 18px; height: 18px; }

.review-summary__note {
  flex: 1 1 260px;
  font-size: 0.92rem;
  color: var(--c-muted);
  min-width: 240px;
}

/* ---------- At-a-glance entity block ---------- */

.glance {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}

.glance__head { margin-bottom: 26px; }

.glance__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.glance__grid > div {
  padding: 16px 8px;
  border-top: 1px solid var(--c-line);
}

.glance__grid dt {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-rose-deep);
  margin-bottom: 6px;
}

.glance__grid dd {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-ink);
}

@media (min-width: 900px) {
  .glance__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .glance__grid { grid-template-columns: 1fr; }
}

/* ---------- Contact rows ---------- */

.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-block: 20px;
  border-bottom: 1px solid var(--c-line);
}

.contact-row:first-of-type { border-top: 1px solid var(--c-line); }

.contact-row__icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--c-primary-soft);
  color: var(--c-primary);
  display: grid;
  place-items: center;
}

.contact-row__icon svg { width: 21px; height: 21px; }

.contact-row h3 { margin-bottom: 4px; font-size: 1.05rem; }
.contact-row p { color: var(--c-muted); font-size: 0.96rem; }

/* ---------- Appointment success ---------- */

.appt-success {
  text-align: center;
  padding: 28px 12px;
  border: 1.5px dashed var(--c-primary);
  border-radius: var(--r-md);
  background: var(--c-primary-soft);
}

.appt-success .form-success__icon { background: var(--c-surface); }

/* ---------- Marquee (logo/trust strip) ---------- */

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

/* ---------- Doctor profile ---------- */

.doctor-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--c-primary-soft);
  box-shadow: var(--shadow-lg);
}

.doctor-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder avatar for doctor portrait */
.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(70% 70% at 50% 20%, rgba(200, 88, 134, 0.14), transparent 65%),
    var(--c-primary-soft);
  color: var(--c-primary);
}

.avatar-placeholder svg { width: 40%; height: 40%; }
