/* ─── MULISH self-hosted ─────────────────────────────────────── */
@font-face { font-family:'Mulish'; font-style:normal; font-weight:300; font-display:swap;
  src: url('fonts/mulish-v10-latin-300.woff2') format('woff2'), url('fonts/mulish-v10-latin-300.woff') format('woff'); }
@font-face { font-family:'Mulish'; font-style:normal; font-weight:400; font-display:swap;
  src: url('fonts/mulish-v10-latin-regular.woff2') format('woff2'), url('fonts/mulish-v10-latin-regular.woff') format('woff'); }
@font-face { font-family:'Mulish'; font-style:normal; font-weight:500; font-display:swap;
  src: url('fonts/mulish-v10-latin-500.woff2') format('woff2'), url('fonts/mulish-v10-latin-500.woff') format('woff'); }
@font-face { font-family:'Mulish'; font-style:normal; font-weight:600; font-display:swap;
  src: url('fonts/mulish-v10-latin-600.woff2') format('woff2'), url('fonts/mulish-v10-latin-600.woff') format('woff'); }
@font-face { font-family:'Mulish'; font-style:normal; font-weight:700; font-display:swap;
  src: url('fonts/mulish-v10-latin-700.woff2') format('woff2'), url('fonts/mulish-v10-latin-700.woff') format('woff'); }
@font-face { font-family:'Mulish'; font-style:italic; font-weight:300; font-display:swap;
  src: url('fonts/mulish-v10-latin-300italic.woff2') format('woff2'), url('fonts/mulish-v10-latin-300italic.woff') format('woff'); }
@font-face { font-family:'Mulish'; font-style:italic; font-weight:400; font-display:swap;
  src: url('fonts/mulish-v10-latin-italic.woff2') format('woff2'), url('fonts/mulish-v10-latin-italic.woff') format('woff'); }
@font-face { font-family:'Mulish'; font-style:italic; font-weight:600; font-display:swap;
  src: url('fonts/mulish-v10-latin-600italic.woff2') format('woff2'), url('fonts/mulish-v10-latin-600italic.woff') format('woff'); }
@font-face { font-family:'Mulish'; font-style:italic; font-weight:700; font-display:swap;
  src: url('fonts/mulish-v10-latin-700italic.woff2') format('woff2'), url('fonts/mulish-v10-latin-700italic.woff') format('woff'); }

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --orange:       #D4620A;
  --orange-light: #E8832A;
  --orange-dark:  #B04E06;
  --orange-glow:  rgba(212,98,10,.25);
  --navy:         #12172A;
  --charcoal:     #1E2335;
  --slate:        #4A5168;
  --muted:        #7B8099;
  --cream:        #FAF7F3;
  --cream-dark:   #F2EDE6;
  --white:        #FFFFFF;
  --border:       #E5E1DA;
  --ff:           'Mulish', Arial, Helvetica, sans-serif;
  --header-h:     72px;
  --max-w:        1240px;
  --r:            8px;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff); color: var(--charcoal); background: var(--white);
  -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── CURSOR GLOW ────────────────────────────────────────────── */
.cursor-glow {
  position: fixed;
  top: -200px; left: -200px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,98,10,.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  margin-left: -200px; margin-top: -200px;
  transition: opacity .3s;
}
@media (hover: none) { .cursor-glow { display: none; } }

/* ─── UTILS ──────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: clamp(16px,4vw,48px); }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: .75rem;
}
.section-eyebrow::before {
  content: ''; display: inline-block; width: 24px; height: 2px;
  background: var(--orange); border-radius: 2px; flex-shrink: 0;
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s .1s cubic-bezier(.22,1,.36,1);
}
.section-eyebrow.in::before { transform: scaleX(1); }

.section-title {
  font-family: var(--ff); font-size: clamp(1.9rem,3.5vw,2.9rem);
  font-weight: 300; line-height: 1.15; color: var(--navy); letter-spacing: -.02em;
}
.section-title em { font-style: italic; font-weight: 700; color: var(--orange); }
.section-header { text-align: center; margin-bottom: 3.5rem; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .7rem 1.4rem; border-radius: 100px;
  font-family: var(--ff); font-size: .8rem; font-weight: 700;
  letter-spacing: .04em; cursor: pointer;
  transition: box-shadow .25s, background .2s, color .2s, border-color .2s;
  white-space: nowrap; border: 2px solid transparent; position: relative;
  overflow: hidden; z-index: 1;
}
.btn-inner { display: inline-flex; align-items: center; gap: .5rem; }

.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 8px 28px var(--orange-glow); }

.btn-ghost { background: transparent; color: var(--slate); border-color: var(--border); font-size: .76rem; }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.btn-ghost-dark { background: transparent; color: var(--navy); border-color: rgba(18,23,42,.25); }
.btn-ghost-dark:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

.btn-lg { padding: .85rem 1.9rem; font-size: .85rem; }

/* ─── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; height: var(--header-h);
  background: rgba(255,255,255,.92); backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid rgba(229,225,218,.6);
  z-index: 999; transition: box-shadow .3s, background .3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 4px 40px rgba(18,23,42,.1);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 1rem; }

.logo-wrap { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.logo-icon {
  width: 42px; height: 42px; border-radius: 50%; background: var(--orange);
  color: var(--white); display: grid; place-items: center;
  font-family: var(--ff); font-size: .9rem; font-weight: 700;
  flex-shrink: 0; box-shadow: 0 4px 14px var(--orange-glow);
}
.logo-icon--sm { width: 28px; height: 28px; font-size: .7rem; box-shadow: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.logo-top { font-size: .46rem; font-weight: 700; letter-spacing: .1em; color: var(--orange); white-space: nowrap; }
.logo-mid { font-size: .57rem; font-weight: 700; letter-spacing: .09em; color: var(--navy); white-space: nowrap; }
.logo-bot { font-size: .49rem; font-weight: 400; letter-spacing: .05em; color: var(--slate); white-space: nowrap; }

.main-nav { display: flex; align-items: center; gap: .1rem; margin-left: auto; }
.main-nav a {
  font-size: .76rem; font-weight: 600; color: var(--slate);
  padding: .4rem .65rem; border-radius: 6px; letter-spacing: .02em;
  transition: color .15s, background .15s; white-space: nowrap;
}
.main-nav a:hover { color: var(--orange); background: rgba(212,98,10,.06); }

.header-cta { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; margin-left: auto; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: all .25s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(18,23,42,.12); z-index: 998;
  padding: 1.5rem; flex-direction: column; gap: .25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: .9rem; font-weight: 600; color: var(--slate);
  padding: .7rem .5rem; border-bottom: 1px solid var(--border); transition: color .15s; }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav-cta { color: var(--orange) !important; font-weight: 700 !important; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  margin-top: var(--header-h); background: var(--cream);
  min-height: calc(100vh - var(--header-h)); overflow: hidden; position: relative;
}

/* ambient blobs */
.blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; z-index: 0;
}
.blob-1 {
  width: 500px; height: 500px; top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(212,98,10,.12) 0%, transparent 70%);
  animation: blobFloat1 8s ease-in-out infinite;
}
.blob-2 {
  width: 400px; height: 400px; bottom: 0; right: 30%;
  background: radial-gradient(circle, rgba(212,98,10,.08) 0%, transparent 70%);
  animation: blobFloat2 10s ease-in-out infinite;
}
@keyframes blobFloat1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,30px) scale(1.1); } }
@keyframes blobFloat2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-30px,-20px) scale(1.05); } }

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-h));
  position: relative; z-index: 1;
}

.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem clamp(2rem,4vw,5rem) 5rem clamp(1.5rem,5vw,6rem);
}

/* tag pill */
.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(212,98,10,.1); border: 1px solid rgba(212,98,10,.2);
  color: var(--orange); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 100px;
  margin-bottom: 1.75rem; width: fit-content;
  opacity: 0; animation: fadeUp .6s .1s cubic-bezier(.22,1,.36,1) both;
}
.tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
  animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* headline */
.hero-headline {
  font-size: clamp(2.6rem,5.5vw,5rem); font-weight: 200;
  line-height: 1.05; color: var(--navy); letter-spacing: -.03em;
  margin-bottom: 1.75rem;
}
.hl-line {
  display: block; overflow: hidden;
  opacity: 0; transform: translateY(60px);
  animation: lineUp .9s cubic-bezier(.22,1,.36,1) both;
}
.hl-accent { font-style: italic; font-weight: 700; color: var(--orange); }
@keyframes lineUp { to { opacity: 1; transform: none; } }

.hero-body {
  font-size: 1rem; line-height: 1.75; color: var(--slate); max-width: 420px;
  margin-bottom: 2.25rem;
  opacity: 0; animation: fadeUp .7s .7s cubic-bezier(.22,1,.36,1) both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.hero-actions {
  display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 3rem;
  opacity: 0; animation: fadeUp .7s .85s cubic-bezier(.22,1,.36,1) both;
}

/* hero stats bar */
.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  opacity: 0; animation: fadeUp .7s 1s cubic-bezier(.22,1,.36,1) both;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat .stat-num { font-size: 1.75rem; font-weight: 300; color: var(--navy); line-height: 1; }
.hero-stat .stat-suffix { font-size: 1.1rem; font-weight: 700; color: var(--orange); display: inline; }
.hero-stat .stat-label { font-size: .65rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-top: .2rem; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* hero images */
.hero-images {
  position: relative; overflow: hidden;
  animation: fadeUp .8s .15s cubic-bezier(.22,1,.36,1) both;
}
.hero-img { position: absolute; left: 0; right: 0; overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05); will-change: transform; }

.hero-img-city { top: 0; height: 53%;
  clip-path: inset(0 100% 0 0);
  animation: clipH .9s .3s cubic-bezier(.65,0,.35,1) both; }
.hero-img-doctor { bottom: 0; height: 50%; border-top: 4px solid var(--orange);
  clip-path: inset(100% 0 0 0);
  animation: clipV .9s .55s cubic-bezier(.65,0,.35,1) both; }
.hero-img-doctor img { object-position: center 20%; }
@keyframes clipH { to { clip-path: inset(0 0% 0 0); } }
@keyframes clipV { to { clip-path: inset(0% 0 0 0); } }

/* floating card */
.hero-float-card {
  position: absolute; bottom: 1.5rem; left: -1.5rem;
  background: var(--white); border-radius: 12px;
  padding: .9rem 1.25rem; display: flex; align-items: center; gap: .75rem;
  box-shadow: 0 16px 48px rgba(18,23,42,.16); z-index: 2;
  animation: floatCard 1s .9s cubic-bezier(.34,1.56,.64,1) both;
  white-space: nowrap;
}
@keyframes floatCard { from { opacity:0; transform: translateX(-20px) scale(.9); } to { opacity:1; transform: none; } }
.float-icon { font-size: 1.4rem; line-height: 1; color: var(--orange); }
.hero-float-card strong { display: block; font-size: .8rem; font-weight: 700; color: var(--navy); }
.hero-float-card span { font-size: .68rem; color: var(--muted); }

/* accent bar */
.hero-accent-bar {
  position: absolute; top: 0; right: 0; width: 6px; height: 100%;
  background: linear-gradient(to bottom, var(--orange), transparent);
}

/* scroll hint */
.scroll-hint {
  position: absolute; bottom: 2rem; left: clamp(1.5rem,5vw,6rem);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  opacity: 0; animation: fadeUp .6s 1.2s ease both; z-index: 2;
}
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s 1.5s infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(.5); opacity: .4; } }
.scroll-hint span { font-size: .6rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); writing-mode: vertical-rl; }

/* ─── PILLARS ────────────────────────────────────────────────── */
.pillars { background: var(--white); padding: 6rem 0; border-bottom: 1px solid var(--border); }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); }

.pillar {
  padding: 2.75rem 2.25rem; border-right: 1px solid var(--border);
  position: relative; transition: background .25s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--cream); }

.pillar--accent { background: var(--navy); color: var(--white); }
.pillar--accent .pillar-text { color: rgba(255,255,255,.6); }
.pillar--accent .pillar-icon { color: var(--orange-light); }
.pillar--accent .pillar-title { color: var(--white); }
.pillar--accent .pillar-num { color: rgba(255,255,255,.2); }
.pillar--accent:hover { background: #1a2040; }

.pillar-num {
  font-size: 3.5rem; font-weight: 800; line-height: 1; color: rgba(18,23,42,.06);
  position: absolute; top: 1.25rem; right: 1.5rem; letter-spacing: -.04em;
  transition: color .25s;
}
.pillar--accent .pillar-num { color: rgba(255,255,255,.08); }
.pillar:hover .pillar-num { color: rgba(212,98,10,.1); }

.pillar-icon { width: 44px; height: 44px; color: var(--orange); margin-bottom: 1.25rem; }
.pillar-icon svg { width: 100%; height: 100%; }

.pillar-title { font-size: 1.3rem; font-weight: 700; margin-bottom: .6rem;
  letter-spacing: -.01em; }

.pillar-text { font-size: .875rem; line-height: 1.75; color: var(--slate); }

.pillar-line {
  position: absolute; bottom: 0; left: 2.25rem;
  width: 0; height: 3px; background: var(--orange);
  transition: width .5s cubic-bezier(.22,1,.36,1);
}
.pillar:hover .pillar-line { width: calc(100% - 4.5rem); }
.pillar--accent .pillar-line { background: var(--orange-light); }

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about { padding: 7rem 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.about-lead { font-size: 1.15rem; font-weight: 300; line-height: 1.65;
  color: var(--charcoal); margin: 1.25rem 0 1rem; letter-spacing: -.01em; }
.about-body { font-size: .9rem; line-height: 1.85; color: var(--slate); margin-bottom: 1rem; }

.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: auto; display: block;
  border-radius: 16px; box-shadow: 0 32px 80px rgba(18,23,42,.18); }

.about-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--orange); color: var(--white);
  padding: 1.25rem 1.5rem; border-radius: 12px; text-align: center;
  box-shadow: 0 12px 32px var(--orange-glow);
  opacity: 0; transform: scale(.7) translateY(20px);
  transition: opacity .6s .3s cubic-bezier(.34,1.56,.64,1), transform .6s .3s cubic-bezier(.34,1.56,.64,1);
}
.about-image.in .about-badge { opacity: 1; transform: none; }
.badge-num { display: inline; font-size: 2.5rem; font-weight: 300; line-height: 1; }
.badge-suf { font-size: 1.5rem; font-weight: 700; color: var(--orange-light); }
.badge-label { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; opacity: .8; margin-top: .3rem; }

/* decorative ring */
.about-deco-ring {
  position: absolute; top: -1.5rem; right: -1.5rem;
  width: 120px; height: 120px; border-radius: 50%;
  border: 2px dashed rgba(212,98,10,.25);
  animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── SERVICES ────────────────────────────────────────────────── */
.services { padding: 7rem 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

.service-card {
  background: var(--white); border-radius: 16px; padding: 2.25rem 2rem;
  border: 1px solid var(--border); position: relative; overflow: hidden;
  cursor: pointer; transition: border-color .25s, box-shadow .25s;
  transform-style: preserve-3d; transform-origin: center;
}
.service-card:hover { border-color: rgba(212,98,10,.25);
  box-shadow: 0 20px 60px rgba(18,23,42,.1); }

.card-glow {
  position: absolute; inset: 0; pointer-events: none;
  border-radius: 16px; transition: background .2s;
}

.service-icon { width: 40px; height: 40px; color: var(--orange); margin-bottom: 1.25rem; }
.service-icon svg { width: 100%; height: 100%; }

.service-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy);
  margin-bottom: .5rem; line-height: 1.3; letter-spacing: -.01em; }
.service-card p { font-size: .85rem; line-height: 1.75; color: var(--slate); }

.card-arrow {
  position: absolute; bottom: 1.5rem; right: 1.75rem;
  font-size: 1.1rem; color: var(--orange); opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s, transform .25s cubic-bezier(.22,1,.36,1);
}
.service-card:hover .card-arrow { opacity: 1; transform: none; }

/* ─── QUOTE BANNER ────────────────────────────────────────────── */
.quote-banner {
  background: var(--navy); padding: 6rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.quote-bg-text {
  position: absolute; top: -8rem; left: 50%; transform: translateX(-50%);
  font-size: 28rem; font-weight: 900; color: rgba(255,255,255,.03);
  line-height: 1; pointer-events: none; user-select: none;
}
.quote-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.quote-banner blockquote {
  font-size: clamp(1.2rem,2.5vw,1.9rem); font-weight: 300; font-style: italic;
  color: var(--white); max-width: 760px; line-height: 1.65;
  letter-spacing: -.01em; margin-bottom: 1.25rem;
}
.quote-banner cite { font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange-light); }

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact { padding: 7rem 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4.5rem; align-items: center; }

.contact-items { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  flex-shrink: 0; margin-top: .45rem;
}
.contact-item strong { display: block; font-size: .68rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: var(--navy); margin-bottom: .2rem; }
.contact-item p, .contact-item a { font-size: .9rem; color: var(--slate); transition: color .15s; }
.contact-item a:hover { color: var(--orange); }

.contact-map { border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(18,23,42,.14); }
.map-placeholder { height: 400px; position: relative; }
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.map-pin {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  background: var(--white); display: flex; align-items: center; gap: .5rem;
  padding: .6rem 1.1rem; border-radius: 100px;
  box-shadow: 0 8px 24px rgba(18,23,42,.12);
  font-size: .75rem; font-weight: 700; color: var(--navy); white-space: nowrap;
}
.map-pin-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* ─── BANKING ────────────────────────────────────────────────── */
.banking { background: var(--white); padding: 2.5rem 0; border-top: 1px solid var(--border); }
.banking-inner h4 { font-size: .65rem; font-weight: 800; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 1.1rem; }
.banking-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.banking-grid > div span { font-size: .65rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); display: block; margin-bottom: .25rem; }
.banking-grid > div p { font-size: .85rem; color: var(--charcoal); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: var(--navy); padding: 1.75rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; }
.footer-logo { display: flex; align-items: center; gap: .65rem;
  color: rgba(255,255,255,.4); font-size: .72rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .72rem; color: rgba(255,255,255,.35); transition: color .15s; }
.footer-links a:hover { color: var(--orange-light); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .banking-grid  { grid-template-columns: repeat(2,1fr); }
  .hero-content  { padding: 4rem 2.5rem; }
}

@media (max-width: 860px) {
  :root { --header-h: 64px; }
  .main-nav { display: none; }
  .header-cta .btn-ghost { display: none; }
  .header-cta { margin-left: auto; }
  .hamburger { display: flex; }

  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-images { order: -1; height: 320px; }
  .hero-img-city { display: none; }
  .hero-img-doctor { top: 0; bottom: 0; height: 100%; border-top: none; }
  .hero-img-doctor img { object-position: center 15%; }
  .hero-content { order: 1; padding: 2.5rem 1.5rem 3rem; }
  .hero-body { max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 1.25rem; }
  .hero-float-card { left: 1rem; bottom: 1rem; }
  .scroll-hint { display: none; }
  .blob { opacity: .5; }

  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); }
  .pillar:last-child { border-bottom: none; }
  .pillar--accent { border-bottom-color: rgba(255,255,255,.1); }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap img { height: auto; }
  .about-badge { left: 1rem; bottom: -1rem; }
  .about-deco-ring { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  :root { --header-h: 58px; }
  .logo-icon { width: 34px; height: 34px; font-size: .75rem; }
  .logo-bot  { display: none; }
  .header-cta .btn-primary { padding: .5rem .9rem; font-size: .72rem; }
  .hero-images { height: 260px; }
  .hero-headline { font-size: 2.25rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .banking-grid  { grid-template-columns: 1fr; }
  .footer-inner  { flex-direction: column; align-items: flex-start; }
}

/* ─── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .cursor-glow { display: none; }
}
