:root {
  --ink: #10212b;
  --muted: #60727c;
  --line: #dce7e8;
  --soft: #f3f8f7;
  --teal: #047c89;
  --teal-2: #0fb5ad;
  --navy: #0b2d44;
  --coral: #f26d5b;
  --white: #fff;
  --shadow: 0 18px 55px rgba(14, 46, 62, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.topbar { background: var(--navy); color: rgba(255,255,255,.9); font-size: 13px; }
.topbar-inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar a { color: white; font-weight: 700; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220,231,232,.8);
}
.nav { min-height: 78px; display: flex; align-items: center; gap: 24px; }
.brand img { width: 172px; }
.nav-links { display: flex; align-items: center; gap: 24px; margin-left: auto; font-size: 15px; font-weight: 700; color: #28414d; }
.nav-links a:hover { color: var(--teal); }
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--coral); color: white; box-shadow: 0 12px 28px rgba(242,109,91,.26); }
.btn-ghost { background: rgba(255,255,255,.14); color: white; border-color: rgba(255,255,255,.34); }
.btn-light { background: white; color: var(--navy); }
.btn-dark { background: var(--navy); color: white; }
.menu-btn { display: none; margin-left: auto; border: 1px solid var(--line); background: white; border-radius: 8px; padding: 10px 12px; font-weight: 800; }

.hero { min-height: 680px; position: relative; display: grid; align-items: center; overflow: hidden; background: var(--navy); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,31,45,.94) 0%, rgba(7,31,45,.76) 39%, rgba(7,31,45,.26) 70%, rgba(7,31,45,.08) 100%); }
.hero-content { position: relative; padding: 78px 0 105px; }
.hero-copy { width: min(680px, 100%); color: white; }
.eyebrow { display: inline-flex; color: var(--teal-2); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; margin-bottom: 12px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 6vw, 76px); line-height: .96; letter-spacing: 0; margin-bottom: 22px; }
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.06; letter-spacing: 0; margin-bottom: 16px; }
h3 { font-size: 20px; line-height: 1.22; margin-bottom: 10px; }
.hero p { color: rgba(255,255,255,.84); font-size: 19px; max-width: 620px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; max-width: 620px; }
.hero-metrics div { padding: 18px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.1); backdrop-filter: blur(12px); border-radius: 8px; }
.hero-metrics strong { display: block; font-size: 31px; line-height: 1; }
.hero-metrics span { color: rgba(255,255,255,.78); font-size: 13px; }

.doctor-band { background: white; padding: 76px 0 28px; }
.doctor-feature { display: grid; grid-template-columns: 440px 1fr; gap: 54px; align-items: center; }
.doctor-feature-text { grid-template-columns: 1fr; max-width: 930px; }
.doctor-photo { border-radius: 8px; overflow: hidden; background: var(--soft); box-shadow: var(--shadow); }
.doctor-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }
.doctor-photo-large { align-self: start; }
.doctor-gallery { position: relative; min-height: 420px; }
.doctor-gallery-main { width: 100%; height: 330px; object-fit: cover; object-position: center; border-radius: 8px; box-shadow: var(--shadow); }
.doctor-gallery-portrait { position: absolute; right: 18px; bottom: 0; width: 180px; height: 180px; object-fit: cover; border: 8px solid white; border-radius: 8px; box-shadow: 0 16px 40px rgba(14,46,62,.2); }
.doctor-copy h2 { margin-bottom: 10px; }
.doctor-copy p { color: var(--muted); max-width: 760px; }
.doctor-qualification { color: var(--ink) !important; font-size: 19px; font-weight: 800; margin-bottom: 16px; }
.doctor-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 24px 0; }
.doctor-meta p { min-height: 92px; margin: 0; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: var(--soft); }
.doctor-meta b, .doctor-meta span { display: block; }
.doctor-meta b { color: var(--teal); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.doctor-meta span { color: var(--ink); font-weight: 800; line-height: 1.35; }
.quick-band { margin-top: 48px; position: relative; z-index: 5; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: white; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); overflow: hidden; }
.quick-grid a { padding: 22px; border-right: 1px solid var(--line); }
.quick-grid a:last-child { border-right: 0; }
.quick-grid b { display: block; font-size: 17px; }
.quick-grid span { color: var(--muted); font-size: 14px; }
.section { padding: 92px 0; }
.section.muted { background: var(--soft); }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.large-text { font-size: 20px; color: var(--muted); }
.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 34px; }
.section-head h2 { max-width: 760px; margin-bottom: 0; }
.text-link { color: var(--teal); font-weight: 800; border-bottom: 2px solid currentColor; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card { min-height: 430px; background: white; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: 0 8px 28px rgba(16,33,43,.06); }
.service-card img { width: 100%; height: 235px; object-fit: cover; }
.service-card div { padding: 24px; }
.service-card span { color: var(--teal); font-weight: 800; font-size: 13px; text-transform: uppercase; }
.service-card p { color: var(--muted); margin-bottom: 0; }
.service-wide { grid-row: span 2; min-height: 100%; }
.service-wide img { height: 505px; }
.social-section { background: white; }
.social-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.social-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.social-post { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: white; box-shadow: 0 8px 28px rgba(16,33,43,.06); }
.social-post img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.social-post span { display: block; padding: 14px; font-weight: 900; color: var(--ink); }
.social-profile-card { grid-column: 1 / -1; display: grid; gap: 4px; padding: 20px; border-radius: 8px; background: linear-gradient(135deg, var(--coral), var(--teal)); color: white; box-shadow: var(--shadow); }
.social-profile-card b { font-size: 22px; line-height: 1.1; }
.social-profile-card span { color: rgba(255,255,255,.86); }
.diagnostics { display: grid; grid-template-columns: .9fr 1.1fr; gap: 58px; align-items: center; }
.visual-panel { background: var(--navy); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.visual-panel img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.check-list { display: grid; gap: 12px; margin: 24px 0; }
.check-list p { display: grid; grid-template-columns: 190px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); margin: 0; }
.check-list span { color: var(--muted); }
.pathway { background: var(--navy); color: white; }
.pathway .eyebrow { color: #7fe2d9; }
.path-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.path-grid article { padding: 24px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; background: rgba(255,255,255,.07); }
.path-grid b { color: #7fe2d9; }
.path-grid p { color: rgba(255,255,255,.76); margin-bottom: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chips a { padding: 14px 16px; border: 1px solid var(--line); background: white; border-radius: 8px; font-weight: 800; color: #294552; }
.cta-section { padding-top: 0; }
.cta { display: flex; justify-content: space-between; gap: 28px; align-items: center; background: linear-gradient(135deg, var(--teal), var(--navy)); color: white; border-radius: 8px; padding: 44px; }
.cta p { color: rgba(255,255,255,.78); max-width: 720px; margin-bottom: 0; }
.footer { background: #071d2b; color: rgba(255,255,255,.76); padding: 48px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 42px; }
.footer img { width: 170px; background: white; padding: 8px; border-radius: 8px; margin-bottom: 18px; }
.footer h3 { color: white; font-size: 16px; }
.footer a, .footer span { display: block; margin: 8px 0; }
.copyright { border-top: 1px solid rgba(255,255,255,.1); margin-top: 28px; padding-top: 18px; font-size: 13px; }
.mobile-actions { display: none; }

.page-hero { background: var(--navy); color: white; padding: 78px 0; }
.page-hero p { max-width: 780px; color: rgba(255,255,255,.78); font-size: 19px; }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.panel { border: 1px solid var(--line); border-radius: 8px; padding: 24px; background: white; }
.panel p { color: var(--muted); margin-bottom: 0; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.form { display: grid; gap: 14px; }
.form input, .form textarea, .form select { width: 100%; min-height: 48px; border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; font: inherit; }
.form textarea { min-height: 132px; resize: vertical; }
.map-frame { width: 100%; min-height: 360px; border: 0; border-radius: 8px; }

@media (max-width: 900px) {
  .topbar-inner { justify-content: center; flex-wrap: wrap; padding: 8px 0; }
  .nav { min-height: 70px; }
  .brand img { width: 148px; }
  .nav-links { display: none; position: absolute; top: 70px; left: 20px; right: 20px; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; background: white; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .nav-cta { display: none; }
  .menu-btn { display: inline-flex; }
  .hero { min-height: 650px; }
  .hero-shade { background: linear-gradient(90deg, rgba(7,31,45,.95), rgba(7,31,45,.72)); }
  .hero-metrics, .quick-grid, .service-grid, .path-grid, .content-grid, .doctor-feature, .doctor-meta, .social-grid, .social-posts { grid-template-columns: 1fr; }
  .doctor-band { padding: 56px 0 18px; }
  .doctor-feature { gap: 28px; }
  .doctor-photo { max-width: 420px; }
  .doctor-gallery { min-height: 360px; }
  .doctor-gallery-main { height: 280px; }
  .doctor-gallery-portrait { width: 140px; height: 140px; right: 14px; border-width: 6px; }
  .quick-band { margin-top: 28px; }
  .quick-grid a { border-right: 0; border-bottom: 1px solid var(--line); }
  .split, .diagnostics, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 62px 0; }
  .section-head, .cta { display: grid; align-items: start; }
  .service-wide img, .service-card img { height: 250px; }
  .check-list p { grid-template-columns: 1fr; gap: 4px; }
  .mobile-actions { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: grid; grid-template-columns: repeat(3, 1fr); background: white; border-top: 1px solid var(--line); }
  .mobile-actions a { text-align: center; padding: 13px 8px; font-size: 13px; font-weight: 900; color: var(--teal); }
  body { padding-bottom: 48px; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 28px, 1180px); }
  h1 { font-size: 42px; }
  .hero p, .large-text, .page-hero p { font-size: 17px; }
  .hero-metrics div, .quick-grid a, .panel, .path-grid article { padding: 18px; }
  .cta { padding: 28px; }
  .social-profile-card { padding: 18px; }
}
