/* ═══════════════════════════════════════════════════
   DR ABHA GULATI — v2  |  Premium Harley Street
   ═══════════════════════════════════════════════════ */

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

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --gold:       #c4909a;
  --gold-lt:    #dbb8bc;
  --gold-faint: rgba(196,144,154,0.13);
  --navy:       #2a1828;
  --charcoal:   #3a2838;
  --text:       #3d2d38;
  --text-lt:    #8a7880;
  --bg:         #fdf8f9;
  --surface:    #ffffff;
  --border:     rgba(0,0,0,0.08);
  --sh-sm:      0 2px 12px rgba(0,0,0,0.06);
  --sh:         0 4px 28px rgba(0,0,0,0.09);
  --sh-lg:      0 12px 48px rgba(0,0,0,0.15);
  --radius:     3px;
  --ease:       all 0.25s ease;
}

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { max-width: 100%; display: block; }
a    { color: inherit; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
  color: var(--navy);
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── TOP BAR ────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem 2rem;
}
.top-bar strong { color: var(--gold-lt); font-weight: 400; }

/* ── HEADER ─────────────────────────────────────── */
.site-header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0 3.5rem;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

/* ── BRANDING ───────────────────────────────────── */
.site-branding {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.9rem 0;
  text-decoration: none;
}
.site-branding h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--navy);
  line-height: 1;
}
.site-description {
  font-size: 0.57rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.28rem;
  font-weight: 500;
}

/* ── NAVIGATION ─────────────────────────────────── */
.main-navigation { display: flex; align-items: stretch; }
.main-navigation ul {
  list-style: none;
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
}
.main-navigation li { display: flex; align-items: stretch; }
.main-navigation a {
  display: flex;
  align-items: center;
  font-size: 0.59rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text-lt);
  text-decoration: none;
  padding: 0 0.75rem;
  position: relative;
  transition: color 0.2s;
}
.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.75rem; right: 0.75rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-navigation a:hover { color: var(--navy); }
.main-navigation a:hover::after { transform: scaleX(1); }
.main-navigation .current-menu-item a { color: var(--navy); font-weight: 600; }
.main-navigation .current-menu-item a::after { transform: scaleX(1); }

/* ── HERO ───────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 52fr 48fr;
  min-height: 90vh;
}
.hero-content {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4.5rem 5rem 5.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}
.hero-content::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(184,150,106,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(100,80,180,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.63rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s ease both;
}
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  font-weight: 300;
  color: white;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s 0.08s ease both;
}
.hero-credentials {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.9s 0.16s ease both;
}
.hero-rule {
  width: 3.5rem; height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
  animation: expandW 0.9s 0.24s ease both;
}
.hero-consulting {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
  animation: fadeUp 0.9s 0.32s ease both;
}
.hero-clinics {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 3rem;
  animation: fadeUp 0.9s 0.4s ease both;
}
.hero-clinic {
  display: block;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
}
.hero-clinic strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}
.hero-clinic small {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.38);
  margin-top: 0.1rem;
  display: block;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  transition: var(--ease);
  align-self: flex-start;
  animation: fadeUp 0.9s 0.5s ease both;
}
.hero-cta:hover {
  background: var(--gold-lt);
  box-shadow: 0 6px 24px rgba(184,150,106,0.38);
  transform: translateY(-2px);
}
.hero-photo {
  overflow: hidden;
  position: relative;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: scaleIn 1.4s ease both;
}

/* ── PAGE BANNER ────────────────────────────────── */
.page-banner {
  background: var(--navy);
  padding: 4.5rem 5.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 5.5rem;
  width: 3.5rem; height: 2px;
  background: var(--gold);
  z-index: 2;
}
.page-banner-bg {
  display: none;
}
.banner-label {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.page-banner h1 { position: relative; z-index: 1; }
.page-banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 300;
  color: white;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

/* ── SPLIT PAGE BANNER ──────────────────────────── */
.page-banner-split {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 320px;
  height: 240px;
  position: relative;
  overflow: hidden;
}
.page-banner-split::after {
  content: '';
  position: absolute;
  bottom: 0; left: 5.5rem;
  width: 3.5rem; height: 2px;
  background: var(--gold);
  z-index: 2;
}
.page-banner-split .banner-text {
  padding: 0 4rem 0 5.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.page-banner-split .banner-text .banner-label { color: var(--gold); }
.page-banner-split .banner-text h1 {
  color: white;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
}
.page-banner-split .banner-photo {
  overflow: hidden;
  position: relative;
}
.page-banner-split .banner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.82;
}

/* ── CONTENT WRAPPERS ───────────────────────────── */
.content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 5rem 3.5rem;
}
.content-md {
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 3.5rem;
}

/* ── SECTION LABELS ─────────────────────────────── */
.sec-label {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.sec-rule {
  width: 3rem; height: 1px;
  background: var(--gold);
  margin-bottom: 2.5rem;
}

/* ── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: var(--ease);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-lt);
  box-shadow: 0 6px 24px rgba(184,150,106,0.35);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold-faint);
}

/* ── HOME: ABOUT STRIP ──────────────────────────── */
.about-strip {
  background: var(--surface);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.about-strip-text {
  padding: 5.5rem 4.5rem 5.5rem 5.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-strip-text h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.about-strip-text p {
  font-size: 0.9rem;
  color: var(--text-lt);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.about-strip-img {
  overflow: hidden;
}
.about-strip-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.8s ease;
}
.about-strip-img:hover img { transform: scale(1.03); }

/* ── HOME: STATS ────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 3.5rem 5.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}
.stat-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── HOME: SERVICES STRIP ───────────────────────── */
.services-strip {
  background: var(--bg);
  padding: 6rem 5.5rem;
}
.services-strip-hd { margin-bottom: 3rem; }
.services-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2rem 1.75rem;
  position: relative;
  transition: var(--ease);
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.svc-card:hover { box-shadow: var(--sh); transform: translateY(-3px); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.svc-card p {
  font-size: 0.84rem;
  color: var(--text-lt);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ── HOME: TESTIMONIAL STRIP ────────────────────── */
.testimonial-strip {
  background: var(--surface);
  padding: 6rem 5.5rem;
}
.testimonial-strip-hd { margin-bottom: 3rem; }
.testimonial-quote {
  max-width: 740px;
  position: relative;
  padding-left: 3rem;
}
.testimonial-quote::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: -1.5rem; left: 0;
}
.testimonial-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.testimonial-meta {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── CLINIC CARDS ───────────────────────────────── */
.clinic-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.clinic-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  transition: var(--ease);
}
.clinic-card:hover { box-shadow: var(--sh); }
.clinic-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.clinic-card p {
  font-size: 0.82rem;
  color: var(--text-lt);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.clinic-card a.clinic-link {
  font-size: 0.7rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.06em;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
}
.clinic-card a.clinic-link:hover { text-decoration: underline; }

/* ── ABOUT PAGE ─────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  align-items: start;
}
.about-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--sh-lg);
}
.about-body h2 {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.about-creds {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.about-body p {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.about-body a:not(.btn) { color: var(--gold); }

/* ── SERVICES FULL PAGE ─────────────────────────── */
.services-intro {
  font-size: 1rem;
  color: var(--text-lt);
  margin-bottom: 2.5rem;
  max-width: 600px;
}
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.service-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid transparent;
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  transition: var(--ease);
}
.service-item:hover {
  border-top-color: var(--gold);
  box-shadow: var(--sh);
  transform: translateY(-2px);
}
.service-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.service-item p {
  font-size: 0.83rem;
  color: var(--text-lt);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ── PUBLICATIONS ───────────────────────────────── */
.pub-section { margin-bottom: 3.5rem; }
.pub-section h2 {
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.pub-list { list-style: none; }
.pub-list li {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text);
  padding: 1rem 1rem 1rem 1.25rem;
  border-left: 2px solid var(--gold-faint);
  border-bottom: 1px solid var(--border);
  transition: border-left-color 0.2s;
}
.pub-list li:last-child { border-bottom: none; }
.pub-list li:hover { border-left-color: var(--gold); }
.pub-list li em { font-style: italic; }
.pub-list li .pub-src {
  display: block;
  font-size: 0.78rem;
  color: var(--text-lt);
  margin-top: 0.25rem;
}
.pub-list li a {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--gold);
  text-decoration: none;
  margin-top: 0.2rem;
}
.pub-list li a:hover { text-decoration: underline; }

/* ── MEMBERSHIPS ────────────────────────────────── */
.memberships-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.membership-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--ease);
}
.membership-item:hover { box-shadow: var(--sh-sm); }

/* ── PATIENT INFO ───────────────────────────────── */
.patient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.patient-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  transition: var(--ease);
}
.patient-card:hover { box-shadow: var(--sh); }
.patient-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}
.patient-card p { font-size: 0.875rem; color: var(--text-lt); line-height: 1.8; }
.patient-card a { color: var(--gold); text-decoration: none; }
.patient-card a:hover { text-decoration: underline; }

/* ── REVIEWS ────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2rem 1.75rem;
  position: relative;
  transition: var(--ease);
  overflow: hidden;
}
.review-card:hover { box-shadow: var(--sh); transform: translateY(-2px); }
.review-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  line-height: 0.85;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 0.75rem; left: 1.25rem;
  pointer-events: none;
}
.review-card p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.25rem;
  position: relative;
}
.review-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.12em; margin-bottom: 0.35rem; }
.review-meta  { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-lt); }
.reviews-more { text-align: center; margin-top: 1rem; }
.reviews-more a {
  font-size: 0.75rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.reviews-more a:hover { text-decoration: underline; }

/* ── CONTACT PAGE ───────────────────────────────── */
.contact-intro {
  font-size: 1rem;
  color: var(--text-lt);
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2.75rem;
  transition: var(--ease);
}
.contact-card:hover { box-shadow: var(--sh); }
.contact-card h2 {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--navy);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.contact-card address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-lt);
  line-height: 1.9;
}
.contact-card address a { color: var(--gold); text-decoration: none; }
.contact-card address a:hover { text-decoration: underline; }
.contact-card .contact-cta {
  margin-top: 1.5rem;
}

/* ── FOOTER ─────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 5rem 5.5rem 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0.3rem;
}
.footer-tagline {
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.8;
  margin-bottom: 0;
}
.footer-col h3 {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: white; }
.footer-col address {
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.85;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
}
.footer-bottom a { color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes expandW {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}
@keyframes scaleIn {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1080px) {
  .site-header { padding: 0 2rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-photo { height: 75vw; order: -1; }
  .hero-content { padding: 4rem 3rem; }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip-img { height: 70vw; }
  .about-strip-text { padding: 4rem 3rem; }
  .stats-bar { grid-template-columns: repeat(2,1fr); padding: 3rem; }
  .services-strip, .testimonial-strip { padding: 4rem 3rem; }
  .services-home-grid { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer { padding: 4rem 3rem 2rem; }
  .page-banner { padding: 3.5rem 3rem 3rem; }
  .page-banner::after { left: 3rem; }
  .content, .content-md { padding: 4rem 3rem; }
}
/* ── HAMBURGER ──────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 199;
  }
  .main-navigation.open { display: block; }
  .main-navigation ul { flex-direction: column; }
  .main-navigation li { border-top: 1px solid var(--border); }
  .main-navigation a { padding: 1rem 2rem; font-size: 0.72rem; }
  .main-navigation a::after { display: none; }
  .site-header { position: relative; }
  .hero-name { font-size: 3rem; }
  .hero-content { padding: 3rem 2rem; }
  .services-home-grid, .clinic-cards, .contact-grid, .memberships-grid, .patient-grid, .about-layout { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2,1fr); padding: 2.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 3rem 2rem 2rem; }
  .page-banner { padding: 3rem 2rem 2.5rem; }
  .page-banner::after { left: 2rem; }
  .content, .content-md { padding: 3rem 1.5rem; }
}
