/* =========================================================
   Alto Health — Shared Stylesheet v3
   Brand colors sampled from logo
   Logo rendered as inline SVG (transparent, vector)
   ========================================================= */

:root {
  --alto-teal: #357291;
  --alto-teal-dark: #264F66;
  --alto-teal-deep: #1A3A4D;
  --alto-sage: #9FB197;
  --alto-sage-dark: #7E967A;
  --navy-deep: #1A3A4D;
  --coral: #E8A48E;
  --coral-deep: #D08A75;
  --cream: #FAF8F4;
  --cloud-white: #F5F2EC;
  --warm-tan: #E8E0D2;
  --fog-gray: #E5E9EC;
  --cool-gray: #6B6E73;
  --charcoal: #2A2D34;
  --white: #FFFFFF;
  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --gutter: 24px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(26, 58, 77, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 58, 77, 0.08);
  --shadow-lg: 0 18px 48px rgba(26, 58, 77, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--alto-teal); text-decoration: none; }
a:hover { color: var(--alto-teal-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--navy-deep);
  margin: 0 0 16px 0;
  line-height: 1.12;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }
p { margin: 0 0 16px 0; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: 88px 0; }
@media (max-width: 720px) { section { padding: 56px 0; } }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--fog-gray);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--gutter);
  max-width: var(--max-width); margin: 0 auto; gap: 24px;
}

/* LOGO — transparent PNG */
.brand {
  display: flex; align-items: center; text-decoration: none; flex-shrink: 0;
  height: 56px;
}
.alto-logo {
  height: 52px;
  width: auto;
  display: block;
  max-width: none;
}
/* Footer variant — turns logo into white silhouette on dark background */
.alto-logo--white {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--charcoal); font-weight: 500; font-size: 1rem;
  padding: 8px 0; position: relative; transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--alto-teal); }
.nav-links a.active { color: var(--alto-teal); }
.nav-links a.active::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--alto-teal); border-radius: 1px;
}
.nav-cta {
  background: var(--alto-teal); color: white !important;
  padding: 12px 22px !important; border-radius: var(--radius-sm);
  font-weight: 600; transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--alto-teal-dark); color: white !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy-deep); margin: 5px 0; transition: 0.3s;
}

@media (max-width: 880px) {
  .nav-links {
    position: fixed; top: 72px; right: -100%;
    flex-direction: column; background: white;
    width: 80%; max-width: 320px; height: calc(100vh - 72px);
    padding: 32px 24px; gap: 20px; align-items: flex-start;
    box-shadow: var(--shadow-lg); transition: right 0.3s ease;
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-cta { display: inline-block; }
  .mobile-toggle { display: block; }
  .alto-logo { height: 40px; }
  .brand { height: 44px; }
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 28px; border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-weight: 600; font-size: 1.05rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s ease; white-space: nowrap;
}
.btn-primary { background: var(--alto-teal); color: white; }
.btn-primary:hover { background: var(--alto-teal-dark); color: white; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: white; color: var(--alto-teal); border: 2px solid var(--alto-teal); }
.btn-secondary:hover { background: var(--alto-teal); color: white; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy-deep); border: 2px solid var(--navy-deep); }
.btn-outline:hover { background: var(--navy-deep); color: white; }
.btn-coral { background: var(--coral); color: var(--navy-deep); }
.btn-coral:hover { background: var(--coral-deep); color: var(--navy-deep); transform: translateY(-2px); }
.btn-arrow::after { content: "→"; margin-left: 4px; transition: transform 0.2s ease; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* HERO — clean, centered */
.hero {
  background: var(--cream);
  padding: 120px 0 100px;
  position: relative; overflow: hidden; text-align: center;
}
.hero::before {
  content: ""; position: absolute; top: -80px; left: -80px;
  width: 320px; height: 320px;
  background: var(--alto-sage); opacity: 0.14;
  transform: rotate(45deg); border-radius: 60px; pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; bottom: -100px; right: -100px;
  width: 380px; height: 380px;
  background: var(--alto-teal); opacity: 0.10;
  transform: rotate(45deg); border-radius: 60px; pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-block; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--alto-teal); margin-bottom: 24px;
  padding: 6px 18px; background: rgba(53, 114, 145, 0.08); border-radius: 100px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin-bottom: 24px; letter-spacing: -0.02em; line-height: 1.05;
}
.hero h1 .highlight { color: var(--alto-teal); font-style: italic; }
.hero-sub {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.55;
  color: var(--cool-gray); margin: 0 auto 40px; max-width: 620px;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 28px; justify-content: center;
  margin-top: 56px; flex-wrap: wrap;
  padding-top: 36px; border-top: 1px solid rgba(26, 58, 77, 0.1);
}
.hero-meta-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--cool-gray); }
.hero-meta-item svg { color: var(--alto-teal); flex-shrink: 0; }
.hero-meta-item strong { color: var(--navy-deep); font-weight: 600; }

@media (max-width: 720px) {
  .hero { padding: 72px 0 64px; }
  .hero-ctas .btn { flex: 1 1 100%; max-width: 360px; }
  .hero-meta { gap: 16px; flex-direction: column; align-items: center; margin-top: 40px; padding-top: 28px; }
}

/* VALUE PROPS */
.value-props { background: white; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.value-card {
  background: var(--cream); padding: 36px 28px; border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid transparent;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--alto-sage); }
.value-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--alto-teal); display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; color: white;
}
.value-icon.sage { background: var(--alto-sage-dark); }
.value-icon.coral { background: var(--coral); color: var(--navy-deep); }
.value-card h3 { color: var(--navy-deep); margin-bottom: 12px; }
.value-card p { color: var(--cool-gray); margin: 0; }

@media (max-width: 880px) { .value-grid { grid-template-columns: 1fr; gap: 18px; } }

/* TWO BIG FEATURE CARDS */
.feature-pair { background: var(--cream); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; }
.feature-card {
  position: relative; border-radius: var(--radius-lg); padding: 56px 44px;
  overflow: hidden; min-height: 320px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: white; transition: transform 0.3s ease; text-decoration: none;
}
.feature-card:hover { transform: translateY(-6px); }
.feature-card.locations { background: var(--alto-teal); }
.feature-card.membership { background: var(--alto-sage-dark); }
.feature-card::before {
  content: ""; position: absolute; top: -50%; right: -30%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
  border-radius: 50%;
}
.feature-card-content { position: relative; z-index: 2; }
.feature-card h3 { font-size: 2rem; color: white; margin-bottom: 14px; }
.feature-card p { font-size: 1.15rem; line-height: 1.55; opacity: 0.95; margin-bottom: 28px; max-width: 380px; }
.feature-card-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 1.1rem; color: white;
  position: relative; z-index: 2;
}

@media (max-width: 880px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 40px 28px; min-height: 240px; }
}

/* ABOUT TEASER */
.about-teaser { background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual {
  background: linear-gradient(135deg, var(--alto-sage) 0%, var(--alto-teal) 100%);
  border-radius: var(--radius-lg); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-visual::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 50%);
}
.about-visual-stat { position: relative; z-index: 2; text-align: center; color: white; }
.about-visual-stat .num {
  font-family: var(--font-display); font-size: 5rem; font-weight: 600;
  line-height: 1; margin-bottom: 8px;
}
.about-visual-stat .label { font-size: 1.05rem; font-weight: 500; letter-spacing: 0.05em; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { font-size: 1.1rem; color: var(--cool-gray); margin-bottom: 24px; }

@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }

/* CTA STRIP */
.cta-strip {
  background: var(--alto-teal); color: white; text-align: center;
  padding: 96px 0; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  border-radius: 50%;
}
.cta-strip-inner { position: relative; z-index: 2; }
.cta-strip h2 { color: white; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-strip p { font-size: 1.2rem; color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 32px; }

/* PAGE BANNER */
.page-banner {
  background: var(--cream); padding: 88px 0 72px; text-align: center;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: var(--alto-sage); opacity: 0.12;
  transform: rotate(45deg); border-radius: 60px;
}
.page-banner-inner { position: relative; z-index: 2; }
.page-banner h1 { margin-bottom: 16px; }
.page-banner p { font-size: 1.2rem; color: var(--cool-gray); max-width: 640px; margin: 0 auto; }

/* LOCATIONS */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.location-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column; border: 1px solid var(--fog-gray);
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.location-photo {
  width: 100%; aspect-ratio: 4/3; background: var(--alto-teal);
  position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.location-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.location-photo.coming-soon {
  background: linear-gradient(135deg, var(--alto-sage), var(--alto-teal));
  flex-direction: column; color: white;
}
.location-photo.coming-soon .badge {
  background: white; color: var(--alto-teal);
  padding: 8px 18px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 16px;
}
.location-photo.coming-soon .icon-large { opacity: 0.5; }
.status-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--alto-sage); color: var(--navy-deep);
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; z-index: 2;
}
.location-body { padding: 32px 28px; flex: 1; display: flex; flex-direction: column; }
.status-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  align-self: flex-start;
}
.status-pill.open { background: var(--alto-sage); color: var(--navy-deep); }
.status-pill.coming-soon { background: rgba(53, 114, 145, 0.1); color: var(--alto-teal); }
.location-city { font-family: var(--font-display); font-size: 1.75rem; font-weight: 600; color: var(--navy-deep); margin-bottom: 4px; }
.location-tagline { color: var(--cool-gray); font-size: 0.95rem; margin-bottom: 24px; }
.location-doctor {
  display: flex; gap: 14px; align-items: center;
  padding: 16px; background: var(--cream); border-radius: var(--radius-md); margin-bottom: 20px;
}
.location-doctor img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.location-doctor-name { font-weight: 600; color: var(--navy-deep); margin-bottom: 2px; }
.location-doctor-meta { font-size: 0.88rem; color: var(--cool-gray); }
.location-info { margin-bottom: 24px; }
.location-info-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--fog-gray); font-size: 0.98rem;
}
.location-info-row:last-child { border-bottom: none; }
.location-info-icon { width: 20px; flex-shrink: 0; color: var(--alto-teal); margin-top: 2px; }
.location-info-content { flex: 1; }
.location-info-label {
  display: block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--cool-gray); margin-bottom: 2px;
}
.location-info-value { color: var(--charcoal); }
.location-info-value a { color: var(--charcoal); font-weight: 500; }
.location-info-value a:hover { color: var(--alto-teal); }
.location-actions { display: flex; gap: 12px; margin-top: auto; flex-wrap: wrap; }
.location-actions .btn { flex: 1 1 auto; padding: 14px 20px; font-size: 0.98rem; }

@media (max-width: 880px) { .locations-grid { grid-template-columns: 1fr; } }

/* SERVICES */
.service-block {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 60px; align-items: center;
  padding: 80px 0; border-bottom: 1px solid var(--fog-gray);
}
.service-block:last-child { border-bottom: none; }
.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }
.service-visual {
  border-radius: var(--radius-lg); aspect-ratio: 5/4;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 40px; position: relative; overflow: hidden; color: white;
}
.service-visual.clinic { background: var(--alto-teal); }
.service-visual.mso { background: var(--alto-sage-dark); }
.service-visual::before {
  content: ""; position: absolute; top: -30%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
  border-radius: 50%;
}
.service-visual-content { position: relative; z-index: 2; text-align: center; }
.service-visual-icon { margin-bottom: 16px; opacity: 0.95; }
.service-visual-label { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; letter-spacing: 0.04em; }
.service-content .eyebrow {
  display: inline-block; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--alto-teal); margin-bottom: 14px;
}
.service-content h2 { margin-bottom: 12px; }
.service-content .subhead { font-size: 1.2rem; color: var(--alto-teal); font-weight: 500; margin-bottom: 20px; }
.service-content p { color: var(--cool-gray); font-size: 1.05rem; }
.service-content ul { list-style: none; padding: 0; margin: 24px 0 32px; }
.service-content ul li { padding: 10px 0 10px 32px; position: relative; color: var(--charcoal); }
.service-content ul li::before {
  content: "✓"; position: absolute; left: 0; top: 10px;
  width: 22px; height: 22px;
  background: var(--alto-sage); color: var(--navy-deep);
  border-radius: 50%; font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

@media (max-width: 880px) {
  .service-block { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .service-block:nth-child(even) { direction: ltr; }
}

/* FORMS */
.form-section { background: var(--cream); }
.form-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.form-content h2 { margin-bottom: 16px; }
.form-content p { color: var(--cool-gray); font-size: 1.05rem; margin-bottom: 24px; }
.form-content ol { padding-left: 0; list-style: none; counter-reset: stepcount; margin-bottom: 32px; }
.form-content ol li { counter-increment: stepcount; padding: 12px 0 12px 48px; position: relative; color: var(--charcoal); }
.form-content ol li::before {
  content: counter(stepcount); position: absolute; left: 0; top: 8px;
  width: 32px; height: 32px;
  background: var(--alto-teal); color: white;
  border-radius: 50%; font-family: var(--font-display); font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.form-callout {
  background: var(--alto-teal); color: white;
  padding: 20px 24px; border-radius: var(--radius-md); margin-top: 20px;
}
.form-callout strong { display: block; font-family: var(--font-display); font-size: 1.5rem; margin-top: 4px; }
.form-card { background: white; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.form-card h3 { margin-bottom: 24px; color: var(--navy-deep); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-field label { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-sans); font-size: 1rem;
  padding: 12px 14px; border: 1.5px solid var(--fog-gray);
  border-radius: var(--radius-sm); background: white; color: var(--charcoal);
  transition: border-color 0.2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--alto-teal); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-card .btn { width: 100%; margin-top: 8px; }

@media (max-width: 880px) {
  .form-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px; }
}

/* ABOUT BODY */
.about-body { max-width: 760px; margin: 0 auto; font-size: 1.15rem; color: var(--charcoal); }
.about-body p { margin-bottom: 20px; line-height: 1.7; }
.about-body h2 { margin-top: 56px; margin-bottom: 16px; }
.about-body h2:first-child { margin-top: 0; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.values-grid .value-card { padding: 32px 24px; }

@media (max-width: 880px) { .values-grid { grid-template-columns: 1fr; } }

/* FOOTER */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { margin-bottom: 16px; }
.footer-brand .alto-logo { height: 44px; }
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  color: white; font-family: var(--font-sans); font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.96rem; transition: color 0.2s ease; }
.footer-col a:hover { color: white; }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; font-size: 0.88rem; color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: white; }

@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* UTILITIES */
.section-eyebrow {
  display: block; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--alto-teal); margin-bottom: 14px;
}
.text-center { text-align: center; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 16px; }
.section-header p { font-size: 1.15rem; color: var(--cool-gray); }
