/* ============================================================
   THE VESEY PRIVATE HOSPITAL — MASTER STYLESHEET
   Luxury healthcare design system
   Cormorant Garamond (serif) + Jost (sans)
   Brand: Teal #253f4b | Gold #b8975a | Cream #f8f6f1
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --teal:       #253f4b;
  --teal-mid:   #2e5463;
  --teal-light: #3a6b7e;
  --teal-pale:  #e8f0f3;
  --gold:       #b8975a;
  --gold-light: #d4b483;
  --cream:      #f8f6f1;
  --off-white:  #fdfcfa;
  --charcoal:   #1a2428;
  --muted:      #5a7380;
  --border:     rgba(37,63,75,.12);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', 'Helvetica Neue', Arial, sans-serif;
  --ease:       cubic-bezier(.4,0,.2,1);
  --radius:     2px;
  --shadow:     0 4px 32px rgba(37,63,75,.08);
  --shadow-lg:  0 12px 48px rgba(37,63,75,.14);
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.7;
  font-size: 16px;
}

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; font-weight: 400; }

p { color: var(--muted); line-height: 1.85; font-weight: 300; }

.eyebrow {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: .7rem;
  opacity: .8;
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow { max-width: 860px; }
.container--wide   { max-width: 1400px; }

.section { padding: 6rem 0; }
.section--sm { padding: 4rem 0; }
.section--lg { padding: 8rem 0; }
.section--teal { background: var(--teal); }
.section--teal h1, .section--teal h2, .section--teal h3,
.section--teal p, .section--teal .eyebrow { color: rgba(255,255,255,.9); }
.section--teal .eyebrow::before { background: var(--gold-light); }
.section--cream { background: var(--cream); }

/* ── Grid ── */
.grid { display: grid; gap: 2rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .95em 2.4em;
  border-radius: var(--radius);
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--teal);
  color: #fff;
  border: 1px solid var(--teal);
}
.btn--primary:hover {
  background: transparent;
  color: var(--teal);
}
.btn--outline {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal);
}
.btn--outline:hover {
  background: var(--teal);
  color: #fff;
}
.btn--white {
  background: #fff;
  color: var(--teal);
  border: 1px solid #fff;
}
.btn--white:hover {
  background: transparent;
  color: #fff;
}
.btn--gold {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
}
.btn--gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn--lg { padding: 1.1em 2.8em; font-size: .78rem; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253,252,250,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav__logo img { height: 42px; width: auto; }
.nav__logo-text {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: .02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  transition: color .25s var(--ease);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__dropdown {
  position: relative;
}
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: .75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: all .25s var(--ease);
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-item {
  display: block;
  padding: .6rem 1.25rem;
  font-size: .78rem;
  color: var(--muted);
  transition: all .2s var(--ease);
}
.nav__dropdown-item:hover {
  color: var(--teal);
  background: var(--cream);
  padding-left: 1.5rem;
}

.nav__ctas { display: flex; gap: .75rem; align-items: center; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--teal);
  transition: all .3s var(--ease);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--off-white);
  padding: 2rem;
  overflow-y: auto;
  z-index: 999;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
}
.nav__mobile.open { transform: translateX(0); }
.nav__mobile-link {
  display: block;
  padding: 1rem 0;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  transition: color .2s var(--ease);
}
.nav__mobile-link:hover { color: var(--gold); }

/* ── Hero ── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: var(--teal);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://cdn.prod.website-files.com/62f69087ea037014c26307f0/68b9984919922fdd1738002d_pexels-martabranco-32417922.webp');
  background-size: cover;
  background-position: center;
  opacity: .22;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 740px;
}
.hero h1 { color: #fff; margin-bottom: 1.5rem; }
.hero .lead { color: rgba(255,255,255,.82); margin-bottom: 2.5rem; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__stats {
  position: relative;
  z-index: 2;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.15);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.hero__stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: .3rem;
}
.hero__stat-label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

/* ── Trust bar ── */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: .06em;
}
.trust-bar__item svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Cards ── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.card__img { aspect-ratio: 3/2; overflow: hidden; }
.card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.card:hover .card__img img { transform: scale(1.04); }
.card__body { padding: 1.75rem; }
.card__tag {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.card__title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: .75rem;
  line-height: 1.3;
}
.card__text { font-size: .9rem; color: var(--muted); line-height: 1.7; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.25rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  transition: gap .25s var(--ease);
}
.card__link:hover { gap: .7rem; color: var(--gold); }

/* ── Specialty grid ── */
.specialty-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .3s var(--ease);
  text-decoration: none;
}
.specialty-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.specialty-card__icon {
  width: 40px;
  height: 40px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.specialty-card__icon svg { width: 18px; height: 18px; stroke: var(--teal); }
.specialty-card__name {
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: .25rem;
}
.specialty-card__desc {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Trust signals ── */
.trust-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #fff;
  border: 1px solid var(--border);
}
.trust-card__num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
  margin-bottom: .5rem;
}
.trust-card__label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Booking CTA ── */
.booking-strip {
  background: var(--teal);
  padding: 3rem 0;
}
.booking-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.booking-strip h3 { color: #fff; font-weight: 300; }
.booking-strip p { color: rgba(255,255,255,.7); font-size: .9rem; }
.booking-strip__contact {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.contact-pill {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: .7em 1.4em;
  border-radius: 100px;
  font-size: .82rem;
  color: #fff;
  transition: all .25s var(--ease);
}
.contact-pill:hover { background: rgba(255,255,255,.22); }
.contact-pill svg { width: 15px; height: 15px; }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--teal);
  padding: 7rem 0 5rem;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(184,151,90,.15);
  border-radius: 50%;
}
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,.78); }
.breadcrumb {
  display: flex;
  gap: .5rem;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb__sep { opacity: .5; }

/* ── Insurers ── */
.insurers {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.insurers img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .65;
  transition: opacity .2s;
}
.insurers img:hover { opacity: 1; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  cursor: pointer;
  background: none;
  border: none;
  transition: color .2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question svg {
  width: 18px;
  height: 18px;
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: .95rem;
  line-height: 1.85;
}

/* ── Team card ── */
.team-card {
  text-align: center;
}
.team-card__img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--cream);
  box-shadow: var(--shadow);
}
.team-card__img img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: .25rem;
}
.team-card__role {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Review ── */
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
}
.review-card::before {
  content: '"';
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--teal-pale);
  position: absolute;
  top: .5rem;
  left: 1.25rem;
  line-height: 1;
}
.review-stars { color: var(--gold); margin-bottom: 1rem; font-size: .9rem; }
.review-text {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.review-author { font-size: .78rem; font-weight: 500; color: var(--muted); }
.review-source { font-size: .7rem; color: var(--gold); }

/* ── Feature list (like Spire) ── */
.feature-list { display: flex; flex-direction: column; gap: 1.25rem; }
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-icon svg { width: 16px; height: 16px; stroke: var(--teal); }
.feature-title { font-weight: 500; color: var(--charcoal); margin-bottom: .2rem; font-size: .95rem; }
.feature-desc { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── Pricing table ── */
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  transition: all .3s var(--ease);
}
.pricing-card--featured {
  border-color: var(--teal);
  border-width: 2px;
}
.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .35em 1.2em;
}
.pricing-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: .5rem;
}
.pricing-price {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
  margin: 1.5rem 0;
}
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.pricing-features { margin: 1.5rem 0; display: flex; flex-direction: column; gap: .75rem; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--muted);
}
.pricing-feature svg { width: 15px; height: 15px; stroke: var(--teal); flex-shrink: 0; }

/* ── Form ── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .5rem;
}
.form-control {
  width: 100%;
  padding: .85em 1em;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 300;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s var(--ease);
  outline: none;
}
.form-control:focus { border-color: var(--teal); }
.form-control::placeholder { color: rgba(90,115,128,.5); }
select.form-control { appearance: none; cursor: pointer; }
textarea.form-control { min-height: 120px; resize: vertical; }

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer__brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  margin-top: 1.25rem;
  line-height: 1.8;
}
.footer__logo-text {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: .02em;
}
.footer__title {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: .6rem; }
.footer__link {
  font-size: .84rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer__link:hover { color: var(--gold-light); }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .84rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .6rem;
}
.footer__contact-item svg { width: 14px; height: 14px; opacity: .7; flex-shrink: 0; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.footer__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__legal a { color: rgba(255,255,255,.35); transition: color .2s; }
.footer__legal a:hover { color: rgba(255,255,255,.7); }
.footer__social { display: flex; gap: .75rem; }
.footer__social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s var(--ease);
}
.footer__social-link:hover {
  border-color: var(--gold);
  background: rgba(184,151,90,.1);
}
.footer__social-link svg { width: 15px; height: 15px; stroke: rgba(255,255,255,.55); }

/* ── Floating book button ── */
.book-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: flex-end;
}
.book-float__btn {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--teal);
  color: #fff;
  padding: .8em 1.4em;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-lg);
  transition: all .3s var(--ease);
}
.book-float__btn:hover { background: var(--teal-mid); transform: translateY(-2px); }
.book-float__btn--wa { background: #25d366; }
.book-float__btn--wa:hover { background: #1ebe5d; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.hidden { display: none; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
  animation: fadeUp .7s var(--ease) both;
}
.animate-fade-up:nth-child(2) { animation-delay: .1s; }
.animate-fade-up:nth-child(3) { animation-delay: .2s; }
.animate-fade-up:nth-child(4) { animation-delay: .3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nav__links { gap: 1.25rem; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .section--lg { padding: 5rem 0; }
  .container { padding: 0 1.25rem; }
  .nav__links, .nav__ctas { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: block; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .hero { min-height: 100svh; padding-bottom: 3rem; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .booking-strip__inner { flex-direction: column; text-align: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .trust-bar__inner { justify-content: center; }
  .insurers { justify-content: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .book-float { bottom: 1rem; right: 1rem; }
}

/* ── Doctify widgets ── */
.doctify-widget {
  min-height: 80px;
  transition: height .3s ease;
  display: block;
}
iframe.doctify-widget {
  border: none !important;
  overflow: hidden;
}

/* ── Hero split panel — Option A ── */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr !important;
  }
}
