/* ==========================================================================
   Dr. Saurodip Maity — The Baby Doc | Premium design system
   Palette: Deep Teal / Antique Gold / Ivory
   Fonts:   Fraunces (display) + Manrope (body)
   ========================================================================== */

:root {
  --teal-950: #0A2340;
  --teal-900: #102E52;
  --teal-800: #163B66;
  --teal-700: #1D4A7F;
  --teal-600: #245A98;
  --teal-500: #2C6BB1;
  --teal-100: #C2E0F4;
  --teal-50:  #E9F2FA;

  --gold-500: #F27EA0;
  --gold-400: #F59BB4;
  --gold-300: #F9BECE;
  --gold-200: #FCD8E1;
  --gold-100: #FEEDF1;

  --ivory-50:  #FBFDFF;
  --ivory-100: #F2F7FC;
  --ivory-200: #E6EEF6;

  --ink:      #13293F;
  --ink-soft: #40566B;
  --ink-mute: #66798C;
  --line:     #D9E4F0;

  --wa: #25D366;
  --wa-dark: #128C4A;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  --shadow-sm: 0 2px 10px rgba(10, 35, 64, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 35, 64, 0.10);
  --shadow-lg: 0 24px 64px rgba(10, 35, 64, 0.16);
  --shadow-gold: 0 14px 34px rgba(242, 126, 160, 0.35);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --container: 1180px;
  --header-h: 76px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory-50);
  line-height: 1.7;
  font-size: 1.0625rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

::selection { background: var(--gold-300); color: var(--teal-900); }

:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--teal-900); letter-spacing: -0.01em; }

.container { width: min(var(--container), 92%); margin-inline: auto; }

.section { padding: clamp(4rem, 8vw, 6.5rem) 0; position: relative; }
.section--tint { background: var(--ivory-100); }
.section--teal { background: linear-gradient(160deg, var(--teal-900), var(--teal-700)); }
.section--teal h2, .section--teal h3 { color: #EEF5FB; }
.section--teal .kicker { color: var(--gold-300); }

/* ---------- Typography helpers ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-500);
}
.kicker::before { content: ""; width: 34px; height: 2px; background: var(--gold-500); border-radius: 2px; }
.kicker--center::after { content: ""; width: 34px; height: 2px; background: var(--gold-500); border-radius: 2px; }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .kicker { justify-content: center; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 2.9rem); margin: 0.9rem 0 1rem; }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; }

.lead { font-size: 1.12rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.9rem; border-radius: 999px;
  font-weight: 700; font-size: 0.98rem; letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.3s, color 0.3s;
  will-change: transform;
  line-height: 1.2;
}
.btn svg { width: 1.05rem; height: 1.05rem; flex: none; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--teal-950);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(242, 126, 160, 0.45); }
.btn--outline {
  border: 1.5px solid rgba(242, 126, 160, 0.55); color: var(--gold-300);
  background: rgba(242, 126, 160, 0.06);
}
.btn--outline:hover { background: var(--gold-500); color: var(--teal-950); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn--outline-dark { border: 1.5px solid var(--gold-500); color: var(--teal-900); }
.btn--outline-dark:hover { background: var(--gold-500); color: var(--teal-950); transform: translateY(-3px); }
.btn--wa { background: var(--wa); color: #06391F; box-shadow: 0 14px 34px rgba(37, 211, 102, 0.35); }
.btn--wa:hover { background: #2FE27A; transform: translateY(-3px); }
.btn--ghost { border: 1.5px solid rgba(255, 255, 255, 0.3); color: #EEF5FB; }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-3px); }
.btn--sm { padding: 0.7rem 1.3rem; font-size: 0.9rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--teal-950);
  color: rgba(238, 245, 251, 0.85);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 42px;
}
.topbar a { display: inline-flex; align-items: center; gap: 0.45rem; transition: color 0.25s; }
.topbar a:hover { color: var(--gold-300); }
.topbar svg { width: 0.95rem; height: 0.95rem; color: var(--gold-400); }
.topbar__group { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.topbar__reg {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: var(--gold-200);
}
@media (max-width: 860px) {
  .topbar__reg, .topbar__mail { display: none; }
  .topbar__inner { justify-content: center; }
}

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 243, 0.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10, 35, 64, 0.08);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 0.85rem; }
.brand__logo {
  width: 48px; height: 48px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--teal-700), var(--teal-950));
  border: 1.5px solid var(--gold-500);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
}
.brand__logo img { width: 30px; height: 30px; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; color: var(--teal-900); line-height: 1.1; }
.brand__name span { color: var(--gold-500); }
.brand__sub { font-size: 0.66rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 2.1rem; }
.nav__link {
  font-size: 0.95rem; font-weight: 700; color: var(--ink-soft);
  position: relative; padding: 0.35rem 0;
  transition: color 0.25s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; border-radius: 2px;
  background: var(--gold-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav__link:hover, .nav__link.is-active { color: var(--teal-900); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.header__cta { display: flex; align-items: center; gap: 0.9rem; }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  border: 1.5px solid var(--line); border-radius: 12px;
  place-items: center;
}
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--teal-900); }
.nav-toggle .close-icon { display: none; }
.nav-toggle[aria-expanded="true"] .open-icon { display: none; }
.nav-toggle[aria-expanded="true"] .close-icon { display: block; }

@media (max-width: 1020px) {
  .header__cta .btn { display: none; }
  .nav-toggle { display: grid; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ivory-50);
    border-bottom: 1px solid var(--line);
    padding: 1rem 5%; max-height: 0; overflow: hidden;
    transition: max-height 0.45s var(--ease-out), padding 0.3s;
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open { max-height: 480px; padding: 1.2rem 5% 1.8rem; }
  .nav__link { padding: 0.85rem 0; font-size: 1.05rem; border-bottom: 1px dashed var(--line); }
  .nav__link::after { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(242, 126, 160, 0.16), transparent 60%),
    radial-gradient(700px 520px at -10% 110%, rgba(44, 107, 177, 0.14), transparent 60%),
    linear-gradient(170deg, #EAF3FB 0%, var(--ivory-50) 55%, #E2EDF8 100%);
  overflow: hidden;
}
.hero__pattern {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(rgba(10, 35, 64, 0.07) 1px, transparent 1.5px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero__greet {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(242, 126, 160, 0.12);
  border: 1px solid rgba(242, 126, 160, 0.4);
  color: var(--teal-700);
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.5rem 1.1rem; border-radius: 999px;
}
.hero__greet svg { width: 1rem; height: 1rem; color: var(--gold-500); }
.hero h1 { font-size: clamp(2.5rem, 5.4vw, 4rem); margin: 1.3rem 0 0.2rem; letter-spacing: -0.02em; }
.hero h1 .accent { color: var(--gold-500); font-style: italic; font-weight: 500; }
.hero__deg {
  font-size: clamp(0.95rem, 1.6vw, 1.08rem); color: var(--teal-700);
  font-weight: 600; line-height: 1.9; max-width: 34ch;
}
.hero__deg span { display: block; }
.hero__bio { color: var(--ink-soft); margin: 1.4rem 0 2rem; max-width: 56ch; font-size: 1.02rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: 2.6rem; padding-top: 2.2rem;
  border-top: 1px dashed var(--line);
  max-width: 520px;
}
.stat__num { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; color: var(--teal-900); }
.stat__num .plus { color: var(--gold-500); }
.stat__label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); margin-top: 0.15rem; }

.hero__media { position: relative; }
.hero__frame {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; isolation: isolate;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255, 255, 255, 0.75);
  aspect-ratio: 4 / 5;
}
.hero__frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(200deg, rgba(10, 35, 64, 0.22) 0%, transparent 40%, rgba(10, 35, 64, 0.08) 100%);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero__badge {
  position: absolute; right: -1.4rem; bottom: 2.2rem; z-index: 2;
  background: var(--teal-950);
  color: var(--gold-200);
  padding: 1.1rem 1.4rem; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(242, 126, 160, 0.45);
  display: flex; align-items: center; gap: 0.9rem;
  animation: float 5.5s ease-in-out infinite;
}
.hero__badge-icon {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  background: linear-gradient(140deg, var(--gold-300), var(--gold-500));
  display: grid; place-items: center; color: var(--teal-950);
}
.hero__badge-icon svg { width: 24px; height: 24px; }
.hero__badge strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: #EEF5FB; line-height: 1.2; }
.hero__badge span { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-300); }
.hero__ring {
  position: absolute; inset: -1.6rem; z-index: -1; border-radius: calc(var(--radius-xl) + 1.6rem);
  border: 1.5px dashed rgba(242, 126, 160, 0.5);
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; padding-top: 3rem; }
  .hero__media { max-width: 460px; margin-inline: auto; width: 100%; }
  .hero__badge { right: 0.6rem; }
}
@media (max-width: 480px) {
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
  .hero__badge { position: static; margin-top: 1rem; justify-content: center; }
  .hero__actions .btn { width: 100%; }
}

/* ---------- Marquee strip ---------- */
.marquee {
  background: var(--teal-950); color: var(--gold-200);
  overflow: hidden; padding: 1.05rem 0;
  border-block: 1px solid rgba(242, 126, 160, 0.35);
}
.marquee__track {
  display: flex; width: max-content;
  animation: marquee 38s linear infinite;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  align-items: center;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 3.5rem; white-space: nowrap; padding-right: 3.5rem; }
.marquee__track i { font-style: normal; color: var(--gold-500); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Cards ---------- */
.card {
  background: #FFFFFF;
  border: 1px solid rgba(10, 35, 64, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.3s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(242, 126, 160, 0.5);
}

/* Service grid */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.service-card { padding: 2rem 1.7rem; position: relative; overflow: hidden; }
.service-card::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 4px;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  transform: scaleY(0); transform-origin: top; transition: transform 0.45s var(--ease-out);
}
.service-card:hover::before { transform: scaleY(1); }
.service-card__icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--teal-50), var(--teal-100));
  color: var(--teal-700);
  margin-bottom: 1.3rem;
  transition: background 0.35s, color 0.35s, transform 0.45s var(--ease-out);
}
.service-card:hover .service-card__icon {
  background: linear-gradient(140deg, var(--teal-700), var(--teal-900));
  color: var(--gold-300); transform: rotate(-6deg) scale(1.05);
}
.service-card__icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 1.18rem; margin-bottom: 0.55rem; }
.service-card p { font-size: 0.93rem; color: var(--ink-soft); }
.service-card__link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  margin-top: 1.1rem; font-size: 0.85rem; font-weight: 800;
  color: var(--gold-500); text-transform: uppercase; letter-spacing: 0.08em;
}
.service-card__link svg { width: 0.9rem; height: 0.9rem; transition: transform 0.3s; }
.service-card:hover .service-card__link svg { transform: translateX(4px); }
@media (max-width: 1020px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- About preview ---------- */
.split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.split__media { position: relative; }
.split__media .photo {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid rgba(255, 255, 255, 0.8);
  aspect-ratio: 4 / 4.6;
}
.split__media .photo img { width: 100%; height: 100%; object-fit: cover; }
.split__media::before {
  content: ""; position: absolute; inset: -1.4rem auto auto -1.4rem;
  width: 55%; height: 55%; border-radius: var(--radius-xl);
  border: 1.5px dashed var(--gold-500); opacity: 0.55; z-index: -1;
}
.photo-chip {
  position: absolute; left: -1.2rem; bottom: 2rem;
  background: var(--ivory-50); border: 1px solid var(--line);
  box-shadow: var(--shadow-md); border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem; display: flex; align-items: center; gap: 0.8rem;
}
.photo-chip svg { width: 26px; height: 26px; color: var(--gold-500); }
.photo-chip strong { display: block; font-size: 0.95rem; color: var(--teal-900); line-height: 1.2; }
.photo-chip span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split__media { max-width: 460px; }
  .photo-chip { left: 0.6rem; }
}

/* Check list */
.check-list { display: grid; gap: 0.85rem; margin: 1.6rem 0 2rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.8rem; color: var(--ink-soft); font-size: 0.99rem; }
.check-list svg { width: 1.25rem; height: 1.25rem; flex: none; color: var(--gold-500); margin-top: 2px; }

/* ---------- Credentials ribbon ---------- */
.ribbon { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.ribbon__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(242, 126, 160, 0.28);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.3rem; text-align: center;
  transition: background 0.35s, transform 0.4s var(--ease-out);
}
.ribbon__item:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-5px); }
.ribbon__icon { color: var(--gold-400); display: grid; place-items: center; margin-bottom: 0.8rem; }
.ribbon__icon svg { width: 30px; height: 30px; }
.ribbon__item h3 { color: #EEF5FB; font-size: 1.02rem; margin-bottom: 0.3rem; }
.ribbon__item p { color: rgba(238, 245, 251, 0.72); font-size: 0.8rem; line-height: 1.55; }
@media (max-width: 900px) { .ribbon { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .ribbon { grid-template-columns: 1fr; } }

/* ---------- Clinics ---------- */
.clinics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.clinic-card { overflow: hidden; display: flex; flex-direction: column; }
.clinic-card__top {
  padding: 1.8rem 1.7rem 1.4rem; border-bottom: 1px dashed var(--line);
  display: flex; align-items: flex-start; gap: 1rem;
}
.clinic-card__icon {
  width: 50px; height: 50px; flex: none; border-radius: 14px;
  background: linear-gradient(140deg, var(--teal-50), var(--teal-100));
  color: var(--teal-700); display: grid; place-items: center;
}
.clinic-card__icon svg { width: 26px; height: 26px; }
.clinic-card__top h3 { font-size: 1.16rem; margin-bottom: 0.2rem; }
.clinic-card__top .clinic-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal-700);
  background: var(--teal-50); padding: 0.22rem 0.6rem; border-radius: 999px;
}
.clinic-card__body { padding: 1.4rem 1.7rem; flex: 1; }
.clinic-row { display: flex; align-items: flex-start; gap: 0.7rem; padding: 0.42rem 0; font-size: 0.92rem; color: var(--ink-soft); }
.clinic-row svg { width: 1.05rem; height: 1.05rem; flex: none; color: var(--gold-500); margin-top: 3px; }
.clinic-row strong { color: var(--teal-900); }
.clinic-card__foot {
  padding: 1.3rem 1.7rem; border-top: 1px dashed var(--line);
  display: flex; gap: 0.7rem; flex-wrap: wrap;
}
.clinic-card__foot .btn { flex: 1; min-width: 120px; }
@media (max-width: 1020px) { .clinics-grid { grid-template-columns: 1fr; max-width: 560px; } }
.clinics-note {
  margin-top: 2rem; display: flex; gap: 0.9rem; align-items: flex-start;
  background: rgba(242, 126, 160, 0.1); border: 1px solid rgba(242, 126, 160, 0.35);
  border-radius: var(--radius-md); padding: 1.1rem 1.4rem; color: var(--ink-soft); font-size: 0.95rem;
}
.clinics-note svg { width: 1.3rem; height: 1.3rem; flex: none; color: var(--gold-500); margin-top: 2px; }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 780px; margin-inline: auto; padding-left: 1rem; }
.timeline::before {
  content: ""; position: absolute; left: 13px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--gold-400), rgba(242, 126, 160, 0.15));
}
.timeline__item { position: relative; padding: 0 0 2.6rem 3.4rem; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute; left: 5px; top: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--teal-900);
  border: 4px solid var(--gold-400);
  box-shadow: 0 0 0 5px var(--ivory-100);
}
.timeline__year {
  display: inline-block; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-500);
  background: var(--gold-100); border: 1px solid var(--gold-200);
  padding: 0.25rem 0.8rem; border-radius: 999px; margin-bottom: 0.55rem;
}
.timeline__item h3 { font-size: 1.22rem; margin-bottom: 0.2rem; }
.timeline__item .where { font-weight: 800; color: var(--teal-600); font-size: 0.95rem; }
.timeline__item p { color: var(--ink-soft); font-size: 0.95rem; margin-top: 0.4rem; }

/* ---------- Chips / tags ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: #FFFFFF; border: 1px solid var(--line);
  border-radius: 999px; padding: 0.6rem 1.15rem;
  font-size: 0.88rem; font-weight: 700; color: var(--teal-800);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.chip:hover { transform: translateY(-3px); border-color: var(--gold-500); box-shadow: var(--shadow-md); }
.chip svg { width: 1.05rem; height: 1.05rem; color: var(--gold-500); }
.chip--teal {
  background: linear-gradient(140deg, var(--teal-700), var(--teal-900));
  color: var(--gold-200); border-color: rgba(242, 126, 160, 0.4);
}
.chip--teal svg { color: var(--gold-300); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq__item {
  background: #FFFFFF; border: 1px solid rgba(10, 35, 64, 0.08);
  border-radius: var(--radius-md); margin-bottom: 1rem;
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq__item.is-open { box-shadow: var(--shadow-md); border-color: rgba(242, 126, 160, 0.5); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.6rem; text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--teal-900);
}
.faq__q-icon {
  width: 30px; height: 30px; flex: none; border-radius: 50%;
  border: 1.5px solid var(--gold-500); color: var(--gold-500);
  display: grid; place-items: center; transition: transform 0.4s var(--ease-out), background 0.3s, color 0.3s;
}
.faq__q-icon svg { width: 14px; height: 14px; }
.faq__item.is-open .faq__q-icon { transform: rotate(45deg); background: var(--gold-500); color: var(--teal-950); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease-out); }
.faq__a-inner { padding: 0 1.6rem 1.4rem; color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(640px 300px at 88% 0%, rgba(242, 126, 160, 0.22), transparent 60%),
    linear-gradient(150deg, var(--teal-800), var(--teal-950));
  padding: clamp(2.8rem, 6vw, 4.5rem);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; align-items: center;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(238, 245, 251, 0.08) 1px, transparent 1.5px);
  background-size: 24px 24px;
}
.cta-band h2 { color: #EEF5FB; font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 0.7rem; }
.cta-band p { color: rgba(238, 245, 251, 0.78); max-width: 52ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; position: relative; z-index: 1; }
.cta-band__left { position: relative; z-index: 1; }
@media (max-width: 860px) {
  .cta-band { grid-template-columns: 1fr; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(760px 420px at 90% -20%, rgba(242, 126, 160, 0.18), transparent 60%),
    linear-gradient(160deg, var(--teal-900), var(--teal-700) 75%, var(--teal-800));
  color: rgba(238, 245, 251, 0.85);
  padding: clamp(3.2rem, 7vw, 5rem) 0;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(238, 245, 251, 0.06) 1px, transparent 1.5px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, black, transparent 85%);
  -webkit-mask-image: linear-gradient(180deg, black, transparent 85%);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 780px; }
.page-hero h1 { color: #EEF5FB; font-size: clamp(2.2rem, 4.6vw, 3.3rem); margin: 1.1rem 0 1rem; }
.page-hero .kicker { color: var(--gold-300); }
.page-hero p { font-size: 1.06rem; max-width: 62ch; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; color: rgba(238, 245, 251, 0.6); margin-top: 1.4rem; }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb svg { width: 0.8rem; height: 0.8rem; }
.breadcrumb .sep { color: var(--gold-400); }

/* ---------- Service detail rows ---------- */
.service-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center; padding: 2.6rem 0;
  border-bottom: 1px dashed var(--line);
}
.service-row:first-child { border-top: 1px dashed var(--line); }
.service-row:nth-child(even) .service-row__text { order: 2; }
.service-row__media {
  background:
    radial-gradient(400px 260px at 50% 0%, rgba(242, 126, 160, 0.16), transparent 70%),
    linear-gradient(150deg, var(--teal-50), var(--ivory-100));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.6rem);
  display: grid; place-items: center;
  min-height: 280px;
}
.service-row__media svg { width: clamp(90px, 12vw, 130px); height: auto; color: var(--teal-700); }
.service-row h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0.7rem 0 0.8rem; }
.service-row p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.service-row ul { display: grid; gap: 0.55rem; }
.service-row ul li { display: flex; gap: 0.65rem; align-items: flex-start; color: var(--ink-soft); font-size: 0.95rem; }
.service-row ul svg { width: 1.1rem; height: 1.1rem; flex: none; color: var(--gold-500); margin-top: 3px; }
@media (max-width: 900px) {
  .service-row, .service-row:nth-child(even) { grid-template-columns: 1fr; }
  .service-row:nth-child(even) .service-row__text { order: 0; }
  .service-row__media { min-height: 200px; }
}

/* ---------- Clinic detail cards (clinics page) ---------- */
.clinic-feature {
  background: #FFFFFF; border: 1px solid rgba(10, 35, 64, 0.07);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: 1fr 1fr;
  transition: box-shadow 0.4s;
}
.clinic-feature:hover { box-shadow: var(--shadow-lg); }
.clinic-feature__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: saturate(0.92); }
.clinic-feature__body { padding: clamp(1.8rem, 4vw, 2.8rem); }
.clinic-feature__body h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 0.8rem 0 0.4rem; }
.clinic-feature__badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-700); background: var(--teal-50); padding: 0.3rem 0.8rem; border-radius: 999px; }
.clinic-feature__badge svg { width: 0.85rem; height: 0.85rem; }
.clinic-meta { display: grid; gap: 1rem; margin: 1.4rem 0 1.8rem; }
.clinic-meta__item { display: flex; gap: 0.9rem; align-items: flex-start; }
.clinic-meta__icon {
  width: 42px; height: 42px; flex: none; border-radius: 12px;
  background: linear-gradient(140deg, var(--teal-50), var(--teal-100));
  color: var(--teal-700); display: grid; place-items: center;
}
.clinic-meta__icon svg { width: 20px; height: 20px; }
.clinic-meta__item h3 { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); font-weight: 800; }
.clinic-meta__item p, .clinic-meta__item a { color: var(--ink); font-size: 0.98rem; font-weight: 600; }
.clinic-meta__item a:hover { color: var(--gold-500); }
.clinic-feature__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
@media (max-width: 900px) {
  .clinic-feature { grid-template-columns: 1fr; }
  .clinic-feature__map iframe { min-height: 280px; }
}

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 3.5rem); }
.contact-tile {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: #FFFFFF; border: 1px solid rgba(10, 35, 64, 0.08);
  border-radius: var(--radius-lg); padding: 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.3s;
}
.contact-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(242, 126, 160, 0.5); }
.contact-tile__icon {
  width: 54px; height: 54px; flex: none; border-radius: 15px;
  display: grid; place-items: center;
}
.contact-tile__icon svg { width: 26px; height: 26px; }
.contact-tile__icon--wa { background: rgba(37, 211, 102, 0.14); color: var(--wa-dark); }
.contact-tile__icon--gold { background: linear-gradient(140deg, var(--gold-100), var(--gold-200)); color: var(--gold-500); }
.contact-tile__icon--teal { background: linear-gradient(140deg, var(--teal-50), var(--teal-100)); color: var(--teal-700); }
.contact-tile h3 { font-size: 1.12rem; margin-bottom: 0.3rem; }
.contact-tile p { color: var(--ink-soft); font-size: 0.95rem; }
.contact-tile a.contact-link { font-weight: 800; color: var(--teal-800); display: block; margin-top: 0.4rem; font-size: 1.05rem; }
.contact-tile a.contact-link:hover { color: var(--gold-500); }
.contact-stack { display: grid; gap: 1.2rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer { background: var(--teal-950); color: rgba(238, 245, 251, 0.72); position: relative; }
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--gold-500));
}
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem;
  padding: 4rem 0 3rem;
}
.footer h3 {
  font-size: 1.02rem; color: #EEF5FB; margin-bottom: 1.2rem;
  font-family: var(--font-body); font-weight: 800; letter-spacing: 0.04em;
}
.footer__brand p { font-size: 0.92rem; margin-top: 1.1rem; }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 12px;
  border: 1px solid rgba(238, 245, 251, 0.16);
  display: grid; place-items: center; color: rgba(238, 245, 251, 0.75);
  transition: background 0.3s, color 0.3s, transform 0.3s, border-color 0.3s;
}
.footer__social a:hover { background: var(--gold-500); color: var(--teal-950); transform: translateY(-3px); border-color: var(--gold-500); }
.footer__social svg { width: 17px; height: 17px; }
.footer__links li { margin-bottom: 0.6rem; }
.footer__links a { font-size: 0.92rem; transition: color 0.25s, padding-left 0.25s; }
.footer__links a:hover { color: var(--gold-300); padding-left: 4px; }
.footer__contact li { display: flex; gap: 0.7rem; margin-bottom: 0.85rem; font-size: 0.92rem; align-items: flex-start; }
.footer__contact svg { width: 1.05rem; height: 1.05rem; flex: none; color: var(--gold-400); margin-top: 4px; }
.footer__contact a:hover { color: var(--gold-300); }
.footer__disclaimer {
  border-top: 1px solid rgba(238, 245, 251, 0.1);
  padding: 1.4rem 0;
  font-size: 0.8rem; color: rgba(238, 245, 251, 0.5);
  display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; justify-content: space-between;
}
.footer__disclaimer strong { color: var(--gold-300); }
.footer__bottom {
  border-top: 1px solid rgba(238, 245, 251, 0.08);
  padding: 1.2rem 0 1.6rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(238, 245, 251, 0.55);
}
.footer__bottom a:hover { color: var(--gold-300); }
@media (max-width: 960px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Floating actions ---------- */
.fab {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--wa); color: #FFF;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.45);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.fab:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 20px 44px rgba(37, 211, 102, 0.55); }
.fab svg { width: 28px; height: 28px; }
.fab::before {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: pulse-ring 2.4s ease-out infinite;
}
@keyframes pulse-ring { 0% { transform: scale(0.85); opacity: 1; } 100% { transform: scale(1.35); opacity: 0; } }

.back-top {
  position: fixed; right: 1.5rem; bottom: 5.6rem; z-index: 90;
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--teal-900); color: var(--gold-300);
  border: 1px solid rgba(242, 126, 160, 0.5);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity 0.35s, transform 0.35s var(--ease-out), background 0.3s;
}
.back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top:hover { background: var(--teal-700); }
.back-top svg { width: 20px; height: 20px; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Misc ---------- */
.tagline-clinic { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 800; color: var(--teal-700); }
.tagline-clinic svg { width: 1.05rem; height: 1.05rem; color: var(--gold-500); }

.avatar-monogram {
  width: 92px; height: 92px; border-radius: 26px;
  background: linear-gradient(140deg, var(--teal-700), var(--teal-950));
  border: 2px solid var(--gold-500);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; color: var(--gold-300);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.4rem;
}

.notice {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--teal-50); border: 1px solid var(--teal-100);
  color: var(--teal-700); border-radius: var(--radius-md);
  padding: 1rem 1.3rem; font-size: 0.92rem; font-weight: 600;
}
.notice svg { width: 1.25rem; height: 1.25rem; flex: none; }

/* ---------- 404 ---------- */
.error { min-height: 62vh; display: grid; place-items: center; text-align: center; padding: 5rem 0; }
.error__code { font-family: var(--font-display); font-size: clamp(5rem, 14vw, 9rem); font-weight: 700; line-height: 1; background: linear-gradient(135deg, var(--gold-500), var(--teal-600)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.error h1 { margin: 1rem 0 0.6rem; }
.error p { color: var(--ink-soft); margin-bottom: 1.8rem; }

/* ---------- Patient stories ---------- */
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.tcard {
  background: #FFFFFF; border: 1px solid rgba(10, 35, 64, 0.07);
  border-radius: var(--radius-lg); padding: 1.9rem 1.8rem;
  box-shadow: var(--shadow-sm); position: relative;
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.3s;
}
.tcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(242, 126, 160, 0.5); }
.tcard::before {
  content: ""; position: absolute; top: -1px; left: 2rem; right: 2rem; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  border-radius: 0 0 3px 3px; opacity: 0; transition: opacity 0.35s;
}
.tcard:hover::before { opacity: 1; }
.tcard__quote {
  font-family: var(--font-display); font-size: 2.6rem; line-height: 0.4;
  color: var(--gold-500); margin-bottom: 1.2rem; display: block;
}
.stars { display: flex; gap: 0.18rem; color: var(--gold-500); margin-bottom: 0.95rem; }
.stars svg { width: 16px; height: 16px; flex: none; }
.tcard p { color: var(--ink-soft); font-size: 0.94rem; flex: 1; }
.tcard__foot {
  display: flex; align-items: center; gap: 0.9rem; margin-top: 1.5rem; padding-top: 1.2rem;
  border-top: 1px dashed var(--line);
}
.tcard__avatar {
  width: 46px; height: 46px; flex: none; border-radius: 50%;
  background: linear-gradient(140deg, var(--teal-700), var(--teal-950));
  border: 2px solid var(--gold-400);
  color: var(--gold-200); display: grid; place-items: center;
  font-weight: 800; font-size: 0.95rem; font-family: var(--font-display);
}
.tcard__name { font-weight: 800; color: var(--teal-900); font-size: 0.99rem; line-height: 1.3; }
.tcard__who { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }

.videos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; max-width: 860px; margin-inline: auto; }
.video-card {
  background: #FFFFFF; border: 1px solid rgba(10, 35, 64, 0.07);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.video-card__frame { position: relative; aspect-ratio: 9 / 16; max-height: 560px; background: var(--teal-950); }
.video-card__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
  padding: 1rem 1.3rem; border-top: 1px dashed var(--line);
}
.video-card__foot span { font-size: 0.88rem; font-weight: 800; color: var(--teal-900); }
.video-card__foot a {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.8rem; font-weight: 800; color: var(--teal-700); white-space: nowrap;
}
.video-card__foot a svg { width: 0.9rem; height: 0.9rem; color: var(--gold-500); }
.video-card__foot a:hover { color: var(--gold-500); }
@media (max-width: 1020px) { .stories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .videos-grid { grid-template-columns: 1fr; max-width: 440px; } }
@media (max-width: 620px) { .stories-grid { grid-template-columns: 1fr; } }

/* ---------- Glimpses gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.gallery__item {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 3 / 4; box-shadow: var(--shadow-sm);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 35, 64, 0.55));
  opacity: 0; transition: opacity 0.35s;
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after { opacity: 1; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Profile badges (footer) ---------- */
.profiles-label {
  display: block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(238, 245, 251, 0.45);
  margin: 1.6rem 0 0.7rem;
}
.profile-badges { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.profile-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.76rem; font-weight: 700; text-decoration: none;
  color: rgba(238, 245, 251, 0.8);
  border: 1px solid rgba(238, 245, 251, 0.18);
  border-radius: 999px; padding: 0.34rem 0.8rem;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.profile-badge svg { width: 0.72rem; height: 0.72rem; color: var(--gold-400); flex: none; }
.profile-badge:hover { border-color: var(--gold-400); color: #EEF5FB; background: rgba(242, 126, 160, 0.12); }

/* ---------- Mobile booking bar ---------- */
section[id] { scroll-margin-top: calc(var(--header-h) + 8px); }

.mobile-book { display: none; }

@media (max-width: 760px) {
  body { padding-bottom: 76px; }

  .mobile-book {
    display: grid; grid-template-columns: 1fr; gap: 0.6rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    padding: 0.6rem 0.8rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
    background: rgba(4, 24, 31, 0.97);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(242, 126, 160, 0.35);
    box-shadow: 0 -10px 30px rgba(10, 35, 64, 0.3);
  }
  .mobile-book a {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    min-height: 50px; border-radius: 999px;
    font-weight: 800; font-size: 1rem;
  }
  .mobile-book svg { width: 20px; height: 20px; flex: none; }
  .mobile-book .mb--wa {
    background: var(--wa); color: #06391F;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  }

  .fab { display: none; }
  .back-top { right: 1.1rem; bottom: 6.1rem; }

  .cta-band__actions .btn { width: 100%; }
  .video-card__frame { max-height: 62vh; }
}

@media (max-width: 480px) {
  .brand__logo { width: 42px; height: 42px; border-radius: 11px; }
  .brand__name { font-size: 1.06rem; }
  .section-head h2 { font-size: 1.85rem; }
  .hero h1 { font-size: 2.2rem; }
  .profile-badge { padding: 0.45rem 0.9rem; font-size: 0.78rem; }
}

@media (max-width: 400px) {
  .brand__name span { display: none; }
}
