:root {
  --bg: #f7f8f4;
  --bg-alt: #eef1ea;
  --paper: #ffffff;
  --text: #13201c;
  --muted: #4c5d56;
  --line: #d5ddd8;
  --accent: #0b8f78;
  --accent-dark: #086f5d;
  --shadow: 0 16px 40px rgba(8, 38, 31, 0.08);
  --radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at top right, #dff4ef 0%, var(--bg) 38%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0 0 0.6rem;
  line-height: 1.2;
  font-family: "Fraunces", serif;
  letter-spacing: 0.2px;
}

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(247, 248, 244, 0.8);
  border-bottom: 1px solid rgba(19, 32, 28, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  gap: 0.7rem;
}

.logo-img {
  width: 42px;
  height: 42px;
  display: block;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #22342f;
}

.menu-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.72rem 1.2rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-ghost:hover {
  background: #fff;
}

.hero {
  position: relative;
  padding: 4.2rem 0 3rem;
  overflow: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.6rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.2vw, 3.45rem);
  margin-bottom: 1rem;
}

.lead {
  color: var(--muted);
  font-size: 1.07rem;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.2rem 0;
}

.quick-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #2d453e;
}

.quick-points li::before {
  content: "* ";
  color: var(--accent);
}

.hero-card {
  border-radius: var(--radius);
  background: linear-gradient(140deg, #102623 0%, #183a33 100%);
  color: #d9f1eb;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.3rem;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(217, 241, 235, 0.3);
}

.stat-row strong {
  color: #fff;
}

.hero-wave {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 95%);
  height: 40px;
  background:
    radial-gradient(circle at 15% 120%, rgba(11, 143, 120, 0.38) 0%, rgba(11, 143, 120, 0) 42%),
    radial-gradient(circle at 65% -50%, rgba(11, 143, 120, 0.2) 0%, rgba(11, 143, 120, 0) 45%);
  pointer-events: none;
}

.section {
  padding: 4.2rem 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section-head {
  margin-bottom: 1.6rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
  color: #2f6055;
  margin-bottom: 0.35rem;
}

.cards,
.doctor-grid,
.review-grid {
  display: grid;
  gap: 1rem;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.doctor-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.doctor-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem;
}

.doctor-card .specialty {
  color: #2e5a4f;
  font-weight: 700;
}

.doctor-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.doctor-card li {
  margin-bottom: 0.4rem;
  color: #28453d;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.review-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.2rem;
}

.review-card p {
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.review-card span {
  font-size: 0.8rem;
  font-weight: 700;
  color: #2f6055;
}

.booking-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.booking-form,
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.booking-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.booking-form input,
.booking-form select {
  width: 100%;
  margin-bottom: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.72rem;
  font: inherit;
}

.contact-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.contact-card li {
  margin-bottom: 0.5rem;
}

.site-footer {
  background: #0f1f1c;
  color: #e4eeeb;
  padding: 1.1rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.fine-print {
  color: #577068;
  font-size: 0.87rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.7s ease forwards;
  animation-play-state: paused;
}

.reveal.show {
  animation-play-state: running;
}

.delay-1 {
  animation-delay: 0.12s;
}

.delay-2 {
  animation-delay: 0.24s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .booking-grid,
  .contact-grid,
  .services-grid,
  .review-grid,
  .doctor-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 0.9rem 4%;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(247, 248, 244, 0.97);
    border-bottom: 1px solid var(--line);
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-weight: 700;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 3.4rem;
  }

  .hero-grid,
  .booking-grid,
  .contact-grid,
  .services-grid,
  .review-grid,
  .doctor-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.4rem 0;
  }
}
