/* ─── Brand Tokens ─────────────────────────────────────────── */
:root {
  --teal:       #0B6E6E;
  --teal-dark:  #085858;
  --coral:      #E8614A;
  --coral-dark: #C94F3A;
  --bg:         #FAFAF9;
  --surface:    #F0F0EE;
  --text:       #1A1A1A;
  --text-muted: #555550;
  --white:      #FFFFFF;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:     6px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --max-w:      760px;
  --wide-w:     1040px;
}

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Typography ───────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.body-muted { color: var(--text-muted); }

/* ─── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.container--wide {
  width: 100%;
  max-width: var(--wide-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section { padding-block: 5rem; }
.section--sm { padding-block: 3rem; }

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.12s ease;
  text-decoration: none;
  min-height: 48px;
  line-height: 1.3;
}

.btn--coral {
  background: var(--coral);
  color: var(--white);
}
.btn--coral:hover {
  background: var(--coral-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--lg {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

.micro-copy {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

/* ─── Divider ──────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid rgba(11,110,110,0.12);
  margin-block: 0;
}

/* ─── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.card--teal-border {
  border-left: 4px solid var(--teal);
}

.card--teal-top {
  border-top: 4px solid var(--teal);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

/* ─── Checkbox List ────────────────────────────────────────── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0.1em;
  border-radius: 4px;
  background: var(--teal);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── Outcome Grid ─────────────────────────────────────────── */
.outcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.outcome-card {
  background: var(--white);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.outcome-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.35rem;
}

.outcome-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── Stats Strip ──────────────────────────────────────────── */
.stats-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat-item .stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal);
  display: block;
}

.stat-item .stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ─── CTA Band ─────────────────────────────────────────────── */
.cta-band {
  background: var(--teal);
  color: var(--white);
  padding-block: 5rem;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-band .micro-copy { color: rgba(255,255,255,0.6); }

/* ─── Trust Strip ──────────────────────────────────────────── */
.trust-strip {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.9);
  padding-block: 1.1rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-strip span {
  display: inline-block;
  padding-inline: 0.75rem;
}

.trust-strip span + span::before {
  content: '·';
  margin-right: 0.75rem;
  opacity: 0.5;
}

/* ─── Bullet List (Variant E) ─────────────────────────────── */
.bullet-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
}
.bullet-list li::before {
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 0.42em;
}

/* ─── Photo Circle ─────────────────────────────────────────── */
.photo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--teal);
  box-shadow: 0 8px 32px rgba(11,110,110,0.18);
}

/* ─── Reference Card ───────────────────────────────────────── */
.ref-card {
  background: var(--white);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  max-width: 480px;
  margin-inline: auto;
}

.ref-card h3 {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.ref-card .ref-location {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.ref-card .ref-badge {
  display: inline-block;
  background: var(--surface);
  border-radius: 4px;
  padding: 0.25rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.ref-card .ref-proof {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.65);
  padding-block: 2.5rem;
  text-align: center;
  font-size: 0.875rem;
}

footer .footer-name {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.25rem;
}

footer a { color: rgba(255,255,255,0.7); }
footer a:hover { color: var(--white); }

footer .footer-meta { margin-top: 1rem; font-size: 0.8rem; }

/* ─── Clinic Card (Variant A) ─────────────────────────────── */
.clinic-card {
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--white);
}

.clinic-card .clinic-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--teal);
  margin-bottom: 0.25rem;
}

.clinic-card .clinic-detail {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
}

.clinic-card .clinic-live {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
}

.clinic-card .clinic-live::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
}

/* ─── Two-Column ───────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.two-col--hero {
  align-items: center;
  gap: 3rem;
}

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 680px) {
  .section { padding-block: 3.5rem; }
  .section--sm { padding-block: 2rem; }

  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col--hero { gap: 2rem; }

  .photo-circle { width: 200px; height: 200px; }
  .photo-wrap { margin-bottom: 0; }

  .outcome-grid { grid-template-columns: 1fr; }

  .stats-row { gap: 1.5rem; }

  .btn { width: 100%; text-align: center; }
  .btn--lg { font-size: 1rem; }

  .trust-strip span + span::before { display: none; }
  .trust-strip span { display: block; }
}
