/* =====================================================
   North Perth NP & Co — Elayne Murray
   Design system: Warm & Premium
   Australian English throughout. No em-dashes.
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;600;700&display=swap');

/* ---- Design tokens ---- */
:root {
  --cream:           #FAF7F2;
  --warm-white:      #FDF9F4;
  --blush:           #F2D9C8;
  --peach:           #E8C4A8;
  --terracotta:      #C4816A;
  --terracotta-rgb:  196, 129, 106;
  --dusty-rose:      #D4A898;
  --deep-brown:      #3A2E26;
  --text-dark:       #3A2E26;
  --text-mid:        #6B5344;
  --text-light:      #9B8478;
  --on-dark-primary: #F2D9C8;
  --on-dark-body:    #C4A898;
  --on-dark-subtle:  #8A7060;
  --border:          #E8DDD4;
  --shadow:          rgba(92, 64, 51, 0.08);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Lato', 'Helvetica Neue', sans-serif;

  --max-width:   1100px;
  --section-pad: 80px;
  --nav-height:  70px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--text-dark); line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--deep-brown); }
ul { list-style: none; }

/* ---- Container ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ---- Section spacing ---- */
.section { padding: var(--section-pad) 0; }
.section--cream     { background: var(--cream); }
.section--warm      { background: var(--warm-white); }
.section--dark      { background: var(--deep-brown); }

/* ---- Section labels, headings, dividers ---- */
.section-label {
  display: block;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 10px;
}
.section-label--light { color: var(--dusty-rose); }

.section-title {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 10px; line-height: 1.2;
}
.section-title--light { color: var(--on-dark-primary); }

.section-subtitle {
  font-size: 0.95rem; color: var(--text-mid);
  line-height: 1.8; max-width: 600px;
}
.section-subtitle--light { color: var(--on-dark-body); }

.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--peach));
  border-radius: 2px; margin-bottom: 32px;
}
.divider--center { margin-left: auto; margin-right: auto; }
.divider--light  { background: linear-gradient(90deg, var(--dusty-rose), var(--peach)); }

.text-center { text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 50px;
  font-family: var(--font-sans); font-size: 0.88rem; font-weight: 600;
  cursor: pointer; border: none; transition: opacity 0.2s, transform 0.2s;
  text-align: center;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn--primary {
  background: var(--terracotta); color: white;
  animation: ctaPulse 2.8s ease-in-out infinite;
}
.btn--outline {
  background: transparent;
  border: 1.5px solid rgba(var(--terracotta-rgb),0.55);
  color: var(--on-dark-primary);
}
.btn--outline:hover { color: var(--on-dark-primary); border-color: var(--terracotta); }
.btn--light {
  background: var(--on-dark-primary); color: var(--deep-brown);
  animation: ctaPulse 2.8s ease-in-out infinite;
}

/* ---- Animations ---- */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--terracotta-rgb),0.4); }
  50%       { box-shadow: 0 0 0 10px rgba(var(--terracotta-rgb),0); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-reveal: elements start hidden, JS adds .is-visible */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Staggered children inside a reveal parent */
.reveal-stagger > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }
.reveal-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.4s; }
.reveal-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.5s; }
.reveal-stagger.is-visible > *:nth-child(7) { opacity: 1; transform: none; transition-delay: 0.6s; }
.reveal-stagger.is-visible > *:nth-child(8) { opacity: 1; transform: none; transition-delay: 0.7s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .btn--primary, .btn--light { animation: none; }
  .hero__float-card { animation: none; }
}

/* ---- NAV ---- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--deep-brown); height: var(--nav-height);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.25); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-height);
}
.nav__logo {
  display: flex; align-items: center; gap: 12px; color: inherit;
}
.nav__logo img { height: 42px; width: auto; }
.nav__logo-name {
  font-family: var(--font-serif); font-size: 0.95rem; font-weight: 600;
  color: var(--on-dark-primary); line-height: 1.2;
}
.nav__logo-tag {
  font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--on-dark-subtle);
}
.nav__links {
  display: flex; align-items: center; gap: 28px;
}
.nav__links a {
  font-size: 0.82rem; color: var(--on-dark-body);
  transition: color 0.2s; letter-spacing: 0.02em;
}
.nav__links a:hover, .nav__links a.active { color: var(--on-dark-primary); }
.nav__cta {
  background: var(--terracotta); color: white;
  padding: 9px 22px; border-radius: 50px; font-weight: 600;
  transition: opacity 0.2s;
}
.nav__cta:hover { opacity: 0.88; }
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--on-dark-body); border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ---- ANNOUNCEMENT BANNER ---- */
.announcement {
  background: var(--blush); text-align: center;
  padding: 10px 24px; font-size: 0.82rem; color: var(--text-mid);
}
.announcement a { color: var(--terracotta); font-weight: 600; }

/* ---- HERO ---- */
.hero { background: var(--deep-brown); padding: 80px 0 72px; }
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(var(--terracotta-rgb),0.15);
  border: 1px solid rgba(var(--terracotta-rgb),0.35);
  color: var(--peach); font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 22px;
}
.hero__badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); }
.hero__title {
  font-family: var(--font-serif); font-size: 3.4rem; font-weight: 700;
  color: var(--cream); line-height: 1.1; margin-bottom: 8px;
}
.hero__title span { color: var(--on-dark-primary); }
.hero__credentials {
  font-size: 0.75rem; color: var(--on-dark-subtle);
  letter-spacing: 0.14em; margin-bottom: 16px;
}
.hero__tagline {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.05rem; color: var(--dusty-rose); margin-bottom: 18px;
}
.hero__desc {
  font-size: 0.9rem; color: var(--on-dark-body);
  line-height: 1.8; margin-bottom: 32px; max-width: 420px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__image-wrap {
  position: relative; display: flex;
  align-items: center; justify-content: center;
}
.hero__photo-frame {
  width: 320px; height: 380px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
  border: 3px solid rgba(var(--terracotta-rgb),0.25);
  background: linear-gradient(135deg, #5C4033, #3A2E26);
}
.hero__photo { width: 100%; height: 100%; object-fit: cover; }
.hero__float-card {
  position: absolute; padding: 14px 20px; border-radius: 16px; text-align: center;
  background: rgba(250,247,242,0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero__float-card--left  { left: -16px; top: 48px;    animation: floatCard 4s ease-in-out infinite; }
.hero__float-card--right { right: -16px; bottom: 72px; animation: floatCard 4s ease-in-out 1.8s infinite; }
.hero__float-val {
  font-family: var(--font-serif); font-size: 1.6rem;
  font-weight: 700; color: var(--on-dark-primary);
}
.hero__float-lbl { font-size: 0.62rem; color: var(--text-light); margin-top: 2px; letter-spacing: 0.06em; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--blush); padding: 18px 0;
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.trust-bar__item { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; color: var(--text-mid); font-weight: 600; }
.trust-bar__icon {
  width: 32px; height: 32px; border-radius: 50%; background: var(--terracotta);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-bar__icon svg { width: 15px; height: 15px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trust-bar__sep { color: var(--dusty-rose); }

/* ---- SPECIALTY / SERVICE CARDS ---- */
.specialties__grid,
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.specialty-card,
.service-card {
  background: white; border-radius: 18px;
  padding: 28px 24px; border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.specialty-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
}
.svc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; flex-shrink: 0;
}
.svc-icon svg { width: 24px; height: 24px; fill: var(--terracotta); }
.svc-icon--inline { margin-bottom: 0; }

.specialty-card__title,
.service-card__title {
  font-family: var(--font-serif); font-size: 1.05rem;
  font-weight: 600; color: var(--text-dark); margin-bottom: 10px;
}
.specialty-card__desc,
.service-card__desc { font-size: 0.86rem; color: var(--text-mid); line-height: 1.75; }

.service-card__list { margin-top: 14px; }
.service-card__list li {
  font-size: 0.82rem; color: var(--text-mid);
  padding: 5px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 8px;
}
.service-card__list li::before { content: '→'; color: var(--terracotta); font-weight: 700; min-width: 14px; }
.service-card__list li:last-child { border-bottom: none; }

/* ---- ABOUT SNIPPET ---- */
.about-snippet__inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 64px; align-items: center;
}
.about-snippet__img-wrap { position: relative; }
.about-snippet__img-bg {
  position: absolute; inset: -16px; border-radius: 20px;
  background: var(--blush); z-index: 0;
}
.about-snippet__img {
  position: relative; z-index: 1; border-radius: 16px;
  width: 100%; object-fit: cover;
}
.about-snippet__quote {
  border-left: 3px solid var(--terracotta); padding-left: 18px;
  font-family: var(--font-serif); font-style: italic;
  font-size: 1rem; color: var(--text-mid); margin: 20px 0; line-height: 1.7;
}

/* ---- TESTIMONIALS ---- */
.testimonials__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; padding: 28px 24px;
}
.testimonial-card__quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: 0.95rem; color: var(--on-dark-body);
  line-height: 1.8; margin-bottom: 20px;
}
.testimonial-card__quote::before { content: '\201C'; font-size: 1.4rem; color: var(--terracotta); line-height: 0; vertical-align: -0.3em; margin-right: 2px; }
.testimonial-card__author { font-size: 0.8rem; font-weight: 600; color: var(--terracotta); }

/* ---- FEES ---- */
.fees__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.fee-card {
  background: white; border-radius: 18px;
  padding: 28px 24px; border: 1px solid var(--border);
}
.fee-card__icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.fee-card__icon svg { width: 20px; height: 20px; stroke: var(--terracotta); fill: none; stroke-width: 2; stroke-linecap: round; }
.fee-card__title { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; }
.fee-card__desc { font-size: 0.86rem; color: var(--text-mid); line-height: 1.8; }
.fees__note { margin-top: 32px; text-align: center; font-size: 0.82rem; color: var(--text-light); font-style: italic; }

/* ---- FAQ ---- */
.faq__list { margin-top: 48px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 600;
  color: var(--text-dark); gap: 16px;
}
.faq__question:hover { color: var(--terracotta); }
.faq__chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  stroke: var(--terracotta); fill: none; stroke-width: 2; stroke-linecap: round;
  transition: transform 0.3s;
}
.faq__item.open .faq__chevron { transform: rotate(180deg); }
.faq__answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.88rem; color: var(--text-mid); line-height: 1.8;
}
.faq__item.open .faq__answer { max-height: 400px; padding-bottom: 20px; }

/* ---- CTA SECTION ---- */
.cta-section { background: var(--deep-brown); padding: var(--section-pad) 0; text-align: center; }

/* ---- CONTACT FORM ---- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; margin-top: 48px; align-items: start;
}
.contact-info__item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.contact-info__icon {
  width: 36px; height: 36px; background: var(--blush);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 0.9rem;
}
.contact-info__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 2px; }
.contact-info__value { font-size: 0.88rem; color: var(--text-mid); }
.contact-info__value a { color: var(--terracotta); }

.contact-form { background: white; border-radius: 20px; padding: 36px 32px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: var(--font-sans); font-size: 0.88rem;
  color: var(--text-dark); background: var(--cream);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--terracotta); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.74rem; color: var(--text-light); margin-top: 12px; text-align: center; line-height: 1.6; }
.form-note a { color: var(--terracotta); }
.form-success {
  text-align: center; padding: 40px 20px; display: none;
  font-family: var(--font-serif); font-size: 1.1rem; color: var(--text-dark);
}

/* ---- PAGE HERO (interior pages) ---- */
.page-hero {
  background: var(--deep-brown);
  padding: 60px 0 52px; text-align: center;
}

/* ---- HOW IT WORKS ---- */
.how-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 48px;
}
.how-step { text-align: center; padding: 24px 16px; }
.how-step__num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--terracotta), var(--dusty-rose));
  color: white; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700;
}
.how-step__title { font-family: var(--font-serif); font-size: 1rem; color: var(--text-dark); margin-bottom: 10px; }
.how-step__desc { font-size: 0.84rem; color: var(--text-mid); line-height: 1.7; }

/* ---- TELEHEALTH BAND ---- */
.telehealth-band { background: linear-gradient(135deg, var(--blush), var(--peach)); padding: 64px 0; }
.telehealth-band__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.telehealth-band__title { font-family: var(--font-serif); font-size: 1.8rem; color: var(--deep-brown); margin-bottom: 16px; font-weight: 700; }
.telehealth-band__desc { color: var(--text-mid); margin-bottom: 24px; line-height: 1.8; font-size: 0.9rem; }
.telehealth-checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--text-mid); padding: 5px 0;
}
.telehealth-checklist li::before { content: '✓'; color: var(--terracotta); font-weight: 700; min-width: 16px; }

/* ---- BIO (about page) ---- */
.bio-grid { display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: start; }
.bio-sidebar {
  background: white; border-radius: 20px;
  padding: 32px 24px; border: 1px solid var(--border); text-align: center;
}
.bio-photo { width: 100%; border-radius: 14px; margin-bottom: 20px; }
.bio-name { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--text-dark); }
.bio-credentials { font-size: 0.72rem; letter-spacing: 0.12em; color: var(--text-light); margin: 6px 0 14px; }
.bio-contact-links li { margin-bottom: 10px; }
.bio-contact-links a { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--text-mid); }
.bio-content h2 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }
.bio-content p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.bio-content blockquote {
  border-left: 3px solid var(--terracotta); padding-left: 18px;
  font-family: var(--font-serif); font-style: italic;
  color: var(--text-mid); margin: 24px 0; line-height: 1.7;
}
.timeline { margin-top: 28px; }
.timeline__item { display: flex; gap: 20px; margin-bottom: 24px; }
.timeline__dot {
  width: 12px; height: 12px; border-radius: 50%; background: var(--terracotta);
  margin-top: 6px; flex-shrink: 0;
}
.timeline__year { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; color: var(--terracotta); margin-bottom: 4px; }
.timeline__desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* ---- FOOTER ---- */
.footer { background: var(--deep-brown); padding: 52px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px; }
.footer__logo { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer__logo img { height: 48px; width: auto; }
.footer__logo-name { font-family: var(--font-serif); color: var(--on-dark-primary); font-size: 1rem; font-weight: 600; }
.footer__logo-tag { color: var(--on-dark-subtle); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
.footer__desc { font-size: 0.82rem; color: var(--on-dark-body); line-height: 1.8; }
.footer__heading { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 16px; font-weight: 600; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { color: var(--on-dark-body); font-size: 0.84rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--on-dark-primary); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.74rem; color: var(--on-dark-subtle); flex-wrap: wrap; gap: 8px; }
.footer__bottom a { color: var(--on-dark-subtle); }
.footer__bottom a:hover { color: var(--on-dark-body); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .nav { height: auto; }
  .nav__inner { flex-wrap: wrap; height: auto; min-height: var(--nav-height); }
  .nav__logo { order: 1; flex: 1; }
  .nav__hamburger { order: 2; display: flex; }
  .nav__menu { order: 3; flex-basis: 100%; }
  .nav__links { display: none; flex-direction: column; padding: 4px 0 20px; gap: 0; border-top: 1px solid rgba(255,255,255,0.06); }
  .nav__menu.open .nav__links { display: flex; }
  .nav__links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav__links a { display: block; padding: 14px 0; font-size: 0.95rem; }
  .nav__links .nav__cta { margin-top: 12px; display: inline-block; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__text { order: 2; }
  .hero__image-wrap { order: 1; margin-bottom: 24px; }
  .hero__photo-frame { width: 220px; height: 260px; margin: 0 auto; }
  .hero__float-card--left  { left: 0; top: 10px; }
  .hero__float-card--right { right: 0; bottom: 10px; }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 300px; }
  .hero__title { font-size: 2.4rem; }
  .hero__float-card { animation: none; }

  .hero-stats-row { display: flex; gap: 10px; background: var(--deep-brown); padding: 0 24px 24px; justify-content: center; }
  .hero-stats-row .hero__float-card { position: static; }

  .trust-bar { padding: 14px 24px; gap: 14px; }

  .specialties__grid,
  .services__grid { grid-template-columns: 1fr; gap: 14px; }
  .specialty-card, .service-card { display: flex; gap: 16px; align-items: flex-start; }
  .svc-icon { flex-shrink: 0; }

  .about-snippet__inner { grid-template-columns: 1fr; }
  .about-snippet__img-wrap { max-width: 320px; margin: 0 auto; }

  .testimonials__grid { grid-template-columns: 1fr; }
  .fees__grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }

  .how-steps { grid-template-columns: 1fr 1fr; }
  .telehealth-band__inner { grid-template-columns: 1fr; }

  .bio-grid { grid-template-columns: 1fr; }
  .bio-sidebar { max-width: 320px; margin: 0 auto; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
