/* ======================================================
   DR JOYS CDC — STYLESHEET
   Colors: Yellow #FFD600 | Maroon #F4392B | Teal #1B6B5A
           Cream #FFFBF0 | Orange #E87722 | White #FFFFFF
   ====================================================== */

/* ─── RESET & BASE ───────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --yellow: #FFD600;
  --yellow-lt: #FFF9DB;
  --yellow-md: #FFE84D;
  --maroon: #F4392B;
  --maroon-lt: #F9EEF1;
  --teal: #1B6B5A;
  --teal-lt: #E6F4F1;
  --teal-md: #2A8C73;
  --orange: #E87722;
  --orange-lt: #FEF3E8;
  --cream: #FFFBF0;
  --white: #FFFFFF;
  --grey-50: #F8F9FA;
  --grey-100: #F1F3F5;
  --grey-200: #E9ECEF;
  --grey-400: #ADB5BD;
  --grey-700: #495057;
  --grey-900: #1A1A2E;
  --text: #2C2C3A;
  --text-muted: #5A5A7A;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: 0.25s ease;
  --header-h: 100px;
  --font-body: 'Nunito', sans-serif;
  --font-head: 'Outfit', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ─── CONTAINER ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── ANIMATIONS ─────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.30s;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--grey-900);
  line-height: 1.25;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-lt);
  padding: 4px 14px;
  border-radius: 50px;
}

.section-label--light {
  color: var(--yellow-md);
  background: rgba(255, 232, 77, 0.18);
}

.highlight {
  color: var(--maroon);
}

.highlight--yellow {
  color: var(--yellow-md);
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 11px 26px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--sm {
  font-size: 0.875rem;
  padding: 8px 18px;
}

.btn--lg {
  font-size: 1rem;
  padding: 14px 32px;
}

.btn--primary {
  background: var(--yellow);
  color: var(--maroon);
  border-color: var(--yellow);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--yellow-md);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 214, 0, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--maroon);
  border-color: var(--maroon);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--maroon);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--maroon {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}

.btn--maroon:hover,
.btn--maroon:focus-visible {
  background: #95213A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 28, 46, 0.35);
}

.btn--outline-dark {
  background: transparent;
  color: var(--maroon);
  border-color: var(--maroon);
}

.btn--outline-dark:hover,
.btn--outline-dark:focus-visible {
  background: var(--maroon);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── HEADER ─────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.logo:hover {
  opacity: 0.88;
}

.logo__img {
  height: 85px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

/* Desktop nav */
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  padding: 6px 12px;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--maroon);
  background: var(--maroon-lt);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  transition: background var(--transition);
}

.hamburger:hover {
  background: var(--grey-100);
}

.hamburger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--maroon);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 16px;
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding var(--transition);
}

.mobile-nav.open {
  display: flex;
  max-height: 400px;
}

.mobile-nav__link {
  font-weight: 600;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 10px;
  transition: all var(--transition);
}

.mobile-nav__link:hover {
  color: var(--maroon);
  background: var(--maroon-lt);
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 60px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__blob--1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 214, 0, 0.25);
  top: -100px;
  right: -100px;
}

.hero__blob--2 {
  width: 350px;
  height: 350px;
  background: rgba(27, 107, 90, 0.12);
  bottom: 50px;
  left: -80px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 540px;
}

.hero__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-lt);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.hero__heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--grey-900);
  margin-bottom: 1.1rem;
}

.hero__sub {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.hero__illustration {
  position: relative;
}

.hero__ill-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero__ill-blob {
  position: absolute;
  width: 90%;
  height: 90%;
  background: var(--yellow);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  top: 5%;
  left: 5%;
  opacity: 0.35;
  animation: morph 6s ease-in-out infinite;
  z-index: 0;
}

@keyframes morph {

  0%,
  100% {
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  }

  33% {
    border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
  }

  66% {
    border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%;
  }
}

.hero__img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--grey-700);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  z-index: 2;
}

/* ─── FOCUS AREAS ────────────────────────────────────── */
.focus {
  padding: 80px 0;
  background: var(--white);
}

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

.focus-card {
  background: var(--yellow-lt);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1.5px solid #FFE84D;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.focus-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 214, 0, 0.3);
}

.focus-card--teal {
  background: var(--teal-lt);
  border-color: #9DD6CA;
}

.focus-card--teal::before {
  background: rgba(27, 107, 90, 0.12);
}

.focus-card--maroon {
  background: var(--maroon-lt);
  border-color: #E8B4C0;
}

.focus-card--maroon::before {
  background: rgba(123, 28, 46, 0.08);
}

.focus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.focus-card__icon {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.focus-card__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 0.5rem;
}

.focus-card__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── SERVICES ───────────────────────────────────────── */
.services {
  padding: 80px 0;
  position: relative;
  background: var(--grey-50);
}

.services__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--grey-50) 0%, var(--cream) 100%);
}

.services .container {
  position: relative;
  z-index: 1;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 2.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1.5px solid var(--grey-200);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}

.service-card__icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--ibg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform var(--transition);
}

.service-card:hover .service-card__icon {
  transform: scale(1.08);
}

.service-card__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 0.4rem;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.services__cta {
  text-align: center;
}

/* ─── ADOLESCENT CARE ────────────────────────────────── */
.adolescent {
  padding: 80px 0;
  background: linear-gradient(135deg, #1B3D35 0%, #0F2920 100%);
  position: relative;
  overflow: hidden;
}

.adolescent::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 214, 0, 0.08);
}

.adolescent::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 214, 0, 0.05);
}

.adolescent__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.adolescent__title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin: 0.75rem 0 1rem;
}

.adolescent__text {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.adolescent__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}

.adolescent__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.adolescent__illustration {
  position: relative;
}

.adolescent__img {
  border-radius: var(--radius-xl);
  width: 100%;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ─── ABOUT / DOCTOR ─────────────────────────────────── */
.about {
  padding: 80px 0;
  background: var(--cream);
}

.about__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: center;
  gap: 60px;
}

.about__photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.about__photo-placeholder {
  position: relative;
  width: 340px;
  height: 340px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background: linear-gradient(135deg, #F5E6D3 0%, #E8C99A 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 0 0 4px var(--yellow), var(--shadow-lg);
}

.about__photo-placeholder svg {
  width: 170px;
  height: 170px;
  margin-bottom: -10px;
}

.about__photo-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--white);
  border: 1.5px solid var(--yellow);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--maroon);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  z-index: 2;
}

.about__doctor-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--maroon);
  margin-bottom: 2px;
}

.about__doctor-quals {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 2px;
}

.about__doctor-cert {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1rem;
}

.about__doctor-bio {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about__doctor {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  border-left: 4px solid var(--yellow);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

/* ─── TEAM ───────────────────────────────────────────── */
.team {
  padding: 64px 0;
  background: var(--white);
}

.team__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 2rem;
}

.team-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--grey-900);
  transition: all var(--transition);
  cursor: default;
}

.team-pill:hover {
  background: var(--yellow-lt);
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.team-pill__icon {
  font-size: 1.1rem;
}

.team__cta {
  text-align: center;
}

/* ─── CTA SECTION ────────────────────────────────────── */
.cta-section {
  padding: 72px 0;
  background: var(--yellow);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  top: -120px;
  left: -80px;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(123, 28, 46, 0.08);
  bottom: -100px;
  right: -60px;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
}

.cta-section__title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--maroon);
  margin-bottom: 0.6rem;
}

.cta-section__text {
  font-size: 1.05rem;
  color: rgba(123, 28, 46, 0.75);
  margin-bottom: 2rem;
}

.cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── CONTACT ────────────────────────────────────────── */
.contact {
  padding: 80px 0;
  background: var(--grey-50);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact__brand {
  margin-bottom: 2rem;
}

.contact__logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 0.25rem;
}

.contact__brand-tag {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__item strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 2px;
}

.contact__item p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact__item small {
  font-size: 0.82rem;
  color: var(--grey-400);
}

.contact__hours-note {
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 600;
  margin-top: 4px;
}

.contact__phone-link {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--maroon);
  letter-spacing: 0.02em;
}

.contact__phone-link:hover {
  text-decoration: underline;
}

.contact__map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact__map-placeholder {
  background: linear-gradient(135deg, #F5EEE6 0%, #EEE4D9 100%);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1.5px dashed #C9B9A8;
}

.contact__map-placeholder p {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--grey-900);
  color: rgba(255, 255, 255, 0.75);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  /* invert to white for dark footer background */
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity var(--transition);
}

.footer__logo-img:hover {
  opacity: 1;
}

.footer__nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  padding: 5px 10px;
  border-radius: 6px;
  transition: all var(--transition);
}

.footer__link:hover {
  color: var(--yellow);
  background: rgba(255, 214, 0, 0.08);
}

.footer__phone a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.02em;
}

.footer__phone a:hover {
  text-decoration: underline;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 16px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ─── MOBILE STICKY BAR ──────────────────────────────── */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  gap: 10px;
}

.mobile-sticky__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 12px;
  padding: 13px 10px;
  transition: all var(--transition);
}

.mobile-sticky__btn--call {
  background: var(--teal-lt);
  color: var(--teal);
}

.mobile-sticky__btn--call:hover {
  background: var(--teal);
  color: var(--white);
}

.mobile-sticky__btn--book {
  background: var(--yellow);
  color: var(--maroon);
}

.mobile-sticky__btn--book:hover {
  background: var(--yellow-md);
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  /* Header */
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo__img {
    height: 42px;
    max-width: 160px;
  }


  /* Hero */
  .hero {
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 80px;
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__illustration {
    order: -1;
  }

  .hero__img {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero__badge {
    display: none;
  }

  /* Focus */
  .focus__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Adolescent */
  .adolescent__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .adolescent__list {
    align-items: center;
  }

  /* About */
  .about__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .about__photo-wrap {
    justify-content: center;
  }

  /* Contact */
  .contact__inner {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer__nav {
    justify-content: center;
  }

  /* Mobile sticky */
  .mobile-sticky {
    display: flex;
  }

  body {
    padding-bottom: 70px;
  }
}

@media (max-width: 480px) {
  .hero__heading {
    font-size: 2rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .cta-section__actions {
    flex-direction: column;
    align-items: center;
  }

  .team__grid {
    justify-content: flex-start;
  }

  .section-title {
    font-size: 1.5rem;
  }
}