:root {
  --ink: #13252b;
  --muted: #5f6d72;
  --line: #dce3e1;
  --paper: #f8f6f1;
  --white: #ffffff;
  --green: #123f3d;
  --green-soft: #e4efeb;
  --gold: #b89145;
  --wine: #7b2636;
  --shadow: 0 20px 60px rgba(19, 37, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(248, 246, 241, 0.92);
  border-bottom: 1px solid rgba(220, 227, 225, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: #30444a;
  font-size: 0.94rem;
}

.site-nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--wine);
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(248, 246, 241, 0.98) 0%, rgba(248, 246, 241, 0.9) 38%, rgba(248, 246, 241, 0.18) 62%),
    url("78498100-E495-4EE7-A626-AD71FCBAA363.jpeg") center right / cover no-repeat;
}

.hero-content {
  max-width: 720px;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 5.8vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 600px;
  color: #34484d;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(19, 37, 43, 0.16);
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  color: var(--green);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(18, 63, 61, 0.22);
}

.button.light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.34);
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

.intro-band {
  padding-top: 28px;
  padding-bottom: 28px;
  background: var(--green);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.metrics div {
  min-height: 132px;
  padding: 26px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  margin-bottom: 8px;
  font-size: 1.14rem;
}

.metrics span {
  color: rgba(255, 255, 255, 0.76);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.62fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.section-text p,
.cta-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.portrait {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.portrait img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.portrait figcaption {
  padding: 18px;
}

.portrait strong,
.portrait span {
  display: block;
}

.portrait span {
  color: var(--muted);
}

.focus {
  background: var(--white);
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.condition-grid,
.clinic-grid,
.concern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.condition-grid article,
.clinic-card {
  padding: 26px;
  background: #f9faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.condition-grid p,
.clinic-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.concern-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.concern-card {
  background: #f9faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.concern-card:hover {
  border-color: rgba(18, 63, 61, 0.28);
  box-shadow: 0 18px 42px rgba(19, 37, 43, 0.09);
  transform: translateY(-2px);
}

.concern-card[open] {
  background: var(--white);
  border-color: rgba(123, 38, 54, 0.28);
  box-shadow: 0 20px 54px rgba(19, 37, 43, 0.1);
}

.concern-card summary {
  position: relative;
  display: grid;
  gap: 9px;
  min-height: 136px;
  padding: 24px 58px 24px 24px;
  cursor: pointer;
  list-style: none;
}

.concern-card summary::-webkit-details-marker {
  display: none;
}

.concern-card summary::after {
  content: "+";
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
}

.concern-card[open] summary::after {
  content: "−";
  background: var(--wine);
}

.concern-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.concern-card strong {
  max-width: 500px;
  font-size: clamp(1.08rem, 1.45vw, 1.38rem);
  line-height: 1.2;
}

.concern-body {
  padding: 0 24px 24px;
}

.concern-body p {
  margin-bottom: 0;
  color: var(--muted);
}

.clinics {
  background: var(--green-soft);
}

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

.clinic-card {
  background: var(--white);
}

.clinic-city {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--wine);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(56px, 8vw, 92px) clamp(18px, 5vw, 64px);
  color: var(--white);
  background: var(--wine);
}

.cta-section .eyebrow,
.cta-section p {
  color: rgba(255, 255, 255, 0.78);
}

.cta-section h2 {
  max-width: 780px;
}

.cta-section p {
  max-width: 760px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.72);
  background: #0b2524;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 430px;
    background:
      linear-gradient(180deg, rgba(248, 246, 241, 0.98) 0%, rgba(248, 246, 241, 0.95) 48%, rgba(248, 246, 241, 0.08) 72%),
      url("78498100-E495-4EE7-A626-AD71FCBAA363.jpeg") bottom right 32% / auto 390px no-repeat;
  }

  .metrics,
  .condition-grid,
  .concern-grid {
    grid-template-columns: 1fr;
  }

  .about,
  .clinic-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .brand {
    align-items: flex-start;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .site-nav {
    gap: 10px;
    font-size: 0.88rem;
  }

  .nav-cta {
    padding: 8px 12px;
  }

  .hero {
    padding-bottom: 380px;
    background:
      linear-gradient(180deg, rgba(248, 246, 241, 0.98) 0%, rgba(248, 246, 241, 0.96) 54%, rgba(248, 246, 241, 0.08) 77%),
      url("78498100-E495-4EE7-A626-AD71FCBAA363.jpeg") bottom right 28% / auto 315px no-repeat;
  }

  .button.secondary {
    background: var(--white);
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  .hero-actions,
  .cta-actions,
  .button {
    width: 100%;
  }

  .metrics div,
  .condition-grid article,
  .concern-card summary,
  .clinic-card {
    padding: 22px;
  }

  .concern-card summary {
    min-height: 132px;
    padding-right: 58px;
  }

  .concern-body {
    padding: 0 22px 22px;
  }

  .site-footer {
    flex-direction: column;
  }
}
