:root {
  --ink: #10212b;
  --muted: #61717b;
  --paper: #f6fbfb;
  --surface: rgba(255, 255, 255, 0.72);
  --line: rgba(16, 33, 43, 0.14);
  --teal: #167a80;
  --mint: #74c7b8;
  --blue: #2f74c0;
  --navy: #153a5b;
  --coral: #e6725d;
  --shadow: 0 24px 70px rgba(23, 58, 91, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(116, 199, 184, 0.32), transparent 26rem),
    radial-gradient(circle at 86% 4%, rgba(47, 116, 192, 0.16), transparent 30rem),
    linear-gradient(180deg, #f7fcfc, #eef7f6 58%, #f8fbfb);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header,
main {
  position: relative;
  z-index: 1;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(246, 251, 251, 0.82);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 74px;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 5;
}

a {
  color: inherit;
  text-decoration: none;
}

.brand,
nav,
.hero-actions {
  align-items: center;
  display: flex;
}

.brand {
  font-weight: 800;
  gap: 12px;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: 50%;
  color: white;
  display: inline-flex;
  font-size: 0.72rem;
  height: 34px;
  justify-content: center;
  width: 34px;
}

nav {
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

nav a:hover {
  color: var(--teal);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(34px, 7vw, 92px);
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.74fr);
  min-height: calc(100vh - 74px);
  padding: clamp(44px, 8vw, 92px) clamp(20px, 5vw, 72px) 48px;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: var(--ink);
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 24px;
  max-width: 880px;
}

.intro {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.7;
  max-width: 650px;
}

.hero-actions {
  gap: 14px;
  margin-top: 34px;
}

.primary-action {
  border: 1px solid var(--navy);
  box-shadow: 0 10px 30px rgba(23, 58, 91, 0.1);
}

.primary-action {
  align-items: center;
  background: var(--navy);
  color: white;
  display: inline-flex;
  font-weight: 800;
  min-height: 52px;
  padding: 0 22px;
}

.primary-action:hover {
  background: var(--teal);
}

.doctor-panel {
  display: grid;
  gap: 18px;
}

.portrait {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.88), transparent 32%),
    linear-gradient(135deg, #d9f1ec, #d8e9f7 58%, #b8d8df);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.portrait::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 30px 30px;
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.portrait img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  width: 100%;
}

.portrait-card {
  background: rgba(255, 255, 255, 0.9);
  bottom: 24px;
  box-shadow: 0 20px 46px rgba(16, 33, 43, 0.22);
  display: grid;
  gap: 8px;
  left: 24px;
  padding: 22px;
  position: absolute;
  right: 24px;
  z-index: 2;
}

.photo-caption {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.84);
}

.portrait-card strong {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.portrait-card small {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.cross {
  background:
    linear-gradient(var(--teal), var(--teal)) center / 5px 28px no-repeat,
    linear-gradient(var(--teal), var(--teal)) center / 28px 5px no-repeat;
  display: block;
  height: 32px;
  margin-bottom: 18px;
  width: 32px;
}

.stats {
  display: grid;
  gap: 1px;
  margin: 0;
}

.stats div {
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  gap: 8px;
  grid-template-columns: 112px 1fr;
  padding: 16px;
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  font-weight: 700;
  margin: 0;
}

.care-band,
.approach-band,
.contact-band {
  padding: clamp(56px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  margin-bottom: 34px;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.6rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
}

.care-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.care-card {
  background: var(--surface);
  border: 1px solid var(--line);
  min-height: 300px;
  padding: 24px;
  transition: background 180ms ease, transform 180ms ease;
}

.care-card:hover {
  background: white;
  transform: translateY(-6px);
}

.card-index {
  color: var(--coral);
  display: block;
  font-weight: 800;
  margin-bottom: 72px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.care-card p,
.principles-list p {
  color: var(--muted);
  line-height: 1.7;
}

.approach-band {
  background: var(--ink);
  color: white;
}

.approach-band .eyebrow {
  color: var(--mint);
}

.principles-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.principles-list p {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.3rem, 3vw, 2.6rem);
  margin: 0;
  padding: 24px 0;
}

.contact-band {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.contact-band h2 {
  max-width: 780px;
}

@media (max-width: 900px) {
  .hero,
  .section-heading,
  .care-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: start;
  }

  .doctor-panel {
    max-width: 520px;
  }

  .contact-band {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: auto;
    min-height: 68px;
  }

  nav {
    gap: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.72rem, 13vw, 3.8rem);
    line-height: 0.95;
    margin-bottom: 18px;
  }

  .intro {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .primary-action {
    min-height: 48px;
    padding: 0 16px;
  }

  .stats div {
    grid-template-columns: 1fr;
  }
}
