:root {
  --navy: #0B1F33;
  --navy-2: #122A44;
  --teal: #0E7490;
  --teal-mid: #1488A8;
  --teal-soft: #E6F4F7;
  --gold: #C6A75E;
  --gold-light: #E8D5A3;
  --white: #FFFFFF;
  --mist: #F4F7F9;
  --ink: #14212B;
  --muted: #5A6B78;
  --line: rgba(11, 31, 51, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(11, 31, 51, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 0.6em;
  color: var(--navy);
}
p { margin: 0 0 1em; color: var(--muted); }
.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Topbar */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 1rem;
}
.topbar strong { color: var(--gold-light); font-weight: 600; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, var(--teal) 0%, var(--navy) 70%),
    var(--navy);
  position: relative;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 2px rgba(198,167,94,0.35);
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px solid var(--gold-light);
  border-radius: 50%;
  border-bottom-color: transparent;
  transform: rotate(-35deg);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-weight: 700; font-size: 0.98rem; color: var(--navy); }
.logo-tag { font-size: 0.72rem; color: var(--teal); font-weight: 500; letter-spacing: 0.02em; }
.nav-links {
  display: none;
  gap: 1.35rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}
.nav-links a:hover { color: var(--navy); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 0.55rem 0.95rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 1.7rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-wa {
  background: #1FAF5A;
  color: #fff;
  box-shadow: 0 10px 24px rgba(31,175,90,0.28);
}
.btn-wa:hover { background: #18964c; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border-color: rgba(11,31,51,0.18);
}
.btn-ghost-dark:hover { border-color: var(--teal); color: var(--teal); }
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 24px rgba(11,31,51,0.2);
}
.btn-primary:hover { background: var(--navy-2); }
.wa-icon { width: 1.15em; height: 1.15em; flex-shrink: 0; }

/* Hero */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(14,116,144,0.18), transparent 55%),
    linear-gradient(165deg, var(--navy) 0%, #0A2740 48%, #0C3A4A 100%);
  color: #fff;
  padding: 2.5rem 0 3.25rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 85%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.hero .eyebrow { color: var(--gold-light); }
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5.5vw, 3.35rem);
  margin-bottom: 0.85rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 500;
}
.hero-lead {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pill {
  font-size: 0.78rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(232,213,163,0.25);
  color: rgba(255,255,255,0.9);
}
.pill strong { color: var(--gold-light); font-weight: 600; }
.hero-visual {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(145deg, rgba(14,116,144,0.35), rgba(11,31,51,0.5)),
    #0E3A4A;
  aspect-ratio: 16 / 10;
  min-height: 240px;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(11,31,51,0.88);
  border: 1px solid rgba(198,167,94,0.45);
  border-radius: 14px;
  padding: 0.7rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  backdrop-filter: blur(8px);
}
.badge-label { font-weight: 700; font-size: 0.9rem; color: #fff; }
.badge-sub { font-size: 0.72rem; color: var(--gold-light); letter-spacing: 0.04em; }

/* Highlights */
.highlights {
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
  padding-bottom: 0.5rem;
}
.highlights-grid {
  display: grid;
  gap: 0.85rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 0.35rem;
}
.highlight {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-sm);
}
.highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin-bottom: 0.7rem;
}
.highlight-icon svg { width: 22px; height: 22px; }
.highlight h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
  font-weight: 700;
}
.highlight p { margin: 0; font-size: 0.92rem; }

/* Sections common */
.section-head {
  max-width: 38rem;
  margin-bottom: 2rem;
}
.section-head h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
}
.section-head p { margin-bottom: 0; }

/* Services */
.services {
  padding: 3.5rem 0 2.5rem;
  background: var(--mist);
}
.services-grid {
  display: grid;
  gap: 1rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
  position: relative;
  overflow: hidden;
}
.service-card.featured {
  background: linear-gradient(160deg, #fff 0%, #F0F8FA 100%);
  border-color: rgba(14,116,144,0.22);
}
.service-card.featured::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  font-size: 1rem;
  margin-bottom: 0.9rem;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}
.service-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}
.services-cta {
  margin-top: 1.75rem;
  text-align: center;
}

/* About */
.about {
  padding: 3.75rem 0;
}
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(160deg, var(--teal-soft), #dce8ef);
  aspect-ratio: 3 / 4;
  max-height: 520px;
  box-shadow: var(--shadow);
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-float {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(11,31,51,0.9);
  color: #fff;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(198,167,94,0.4);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.about-float strong { font-size: 1rem; }
.about-float span { font-size: 0.8rem; color: var(--gold-light); }
.about-copy h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.65rem;
}
.about-list li {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: var(--mist);
  border-left: 3px solid var(--gold);
  font-size: 0.95rem;
  color: var(--ink);
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* Clinic strip */
.clinic-strip {
  background: var(--navy);
  color: #fff;
  padding: 3rem 0;
}
.clinic-strip h2 { color: #fff; }
.clinic-strip .eyebrow { color: var(--gold-light); }
.clinic-strip p { color: rgba(255,255,255,0.72); }
.clinic-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
.clinic-visual {
  border-radius: var(--radius);
  overflow: hidden;
  background: #123048;
  aspect-ratio: 4 / 3;
  min-height: 200px;
}
.clinic-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Location */
.location {
  padding: 3.5rem 0;
  background: var(--mist);
}
.location-grid {
  display: grid;
  gap: 1.5rem;
}
.address {
  font-size: 1.05rem;
  color: var(--ink);
  margin: 1rem 0;
}
.location-note { max-width: 32rem; }
.location-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.location-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.card-meta {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  text-align: center;
  color: var(--muted);
}

/* CTA band */
.cta-band {
  padding: 3.5rem 0;
  background:
    radial-gradient(ellipse 70% 80% at 20% 50%, rgba(14,116,144,0.35), transparent 55%),
    linear-gradient(120deg, var(--navy) 0%, #0C3548 55%, #0B1F33 100%);
  text-align: center;
  color: #fff;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 0.6rem;
}
.cta-band p {
  color: rgba(255,255,255,0.75);
  max-width: 30rem;
  margin: 0 auto 1.5rem;
}
.eyebrow.light { color: var(--gold-light); }

/* Footer */
.site-footer {
  background: #081624;
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 0 1.5rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.4rem;
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.65rem;
}
.site-footer a:hover { color: var(--gold-light); }
.site-footer p { color: rgba(255,255,255,0.65); margin-bottom: 0.4rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* FAB */
.fab-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1FAF5A;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(31,175,90,0.4);
  transition: transform 0.15s ease;
}
.fab-wa:hover { transform: scale(1.06); }
.fab-wa svg { width: 28px; height: 28px; }

/* Fallbacks when images missing */
.hero-visual:has(img[src=""]),
.about-visual:has(img[src=""]) { /* noop */ }

/* Desktop */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hero { padding: 3.5rem 0 4.5rem; }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0.5rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }
  .about-visual { max-height: none; }
  .clinic-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
  }
  .location-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .service-card.featured:nth-child(1),
  .service-card.featured:nth-child(2) {
    grid-row: span 1;
  }
}

/* Image placeholder via CSS if broken */
.hero-visual img,
.about-visual img,
.clinic-visual img {
  background:
    linear-gradient(145deg, rgba(14,116,144,0.25), rgba(11,31,51,0.45));
}
