body {
  background:
    radial-gradient(circle at 12% 8%, rgba(232, 238, 228, 0.9), transparent 28%),
    linear-gradient(180deg, #fffdf7 0%, #ffffff 46%, #f7f5ed 100%);
}
.health-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 110px;
}
.health-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
  padding: 42px 0 86px;
}
.health-hero-copy {
  max-width: 760px;
}
.health-hero h1 {
  color: var(--ink);
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.92;
}
.health-hero p,
.health-panel p,
.health-loop li,
.health-safe p {
  max-width: 68ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
.health-hero-card {
  overflow: hidden;
  border-radius: 34px;
  background: #fffdf7;
  box-shadow: 0 28px 90px rgba(52, 76, 48, 0.16);
}
.health-hero-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.health-hero-card p {
  margin: 0;
  padding: 22px;
  font-size: 17px;
}
.health-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}
.health-panel,
.health-safe {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 253, 247, 0.72);
  padding: clamp(22px, 4vw, 38px);
}
.health-panel.wide {
  grid-row: span 2;
}
.health-panel h2,
.health-loop h2,
.health-outcomes h2,
.health-safe h2 {
  color: var(--ink);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 0.96;
}
.health-panel.metric strong {
  display: block;
  margin-bottom: 12px;
  color: var(--moss);
  font-size: 22px;
  letter-spacing: -0.03em;
}
.health-loop {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(24px, 6vw, 70px);
  margin: 96px 0;
}
.health-loop ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: loop;
}
.health-loop li {
  position: relative;
  padding: 24px 24px 24px 74px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}
.health-loop li::before {
  counter-increment: loop;
  content: counter(loop);
  position: absolute;
  left: 18px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--moss);
  color: white;
  font-weight: 900;
}
.health-loop strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
}
.health-outcomes {
  margin-bottom: 18px;
}
.outcome-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.outcome-list p {
  min-height: 190px;
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 22px 6px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}
.health-safe {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 66px;
}
.health-safe h2 {
  margin: 0;
}
.health-safe p {
  margin: 0;
}
@media (max-width: 900px) {
  .health-hero,
  .health-grid,
  .health-loop,
  .health-safe,
  .outcome-list {
    grid-template-columns: 1fr;
  }
  .health-hero {
    padding-bottom: 62px;
  }
  .health-loop {
    margin: 64px 0;
  }
  .outcome-list p {
    min-height: 0;
  }
}
