/* ==========================================================================
   Gillani Physio & Joint Care — Design System
   Derivation:
   1. Physical/sensory specifics: the business name itself foregrounds "Joint
      Care" (not generic "physio") — the site should read as joint/mobility
      focused. Real team is PhD/DPT-credentialed (13 & 12 yrs experience
      leads) — a clinical-trust angle, not a spa/wellness angle. Location is
      "behind Pace" on Model Town Link Road — an established commercial
      artery, not a boutique side street.
   2. Competitor set: other Lahore physio listings (Marham-style directories)
      lean sterile blue/white hospital aesthetic. ZA Physio (same project
      family) already occupies navy + cyan + amber on warm cream. Gillani
      needs to be legibly different from both.
   3. No existing brand colors/logo were found in research (site cert error
      blocked visual confirmation, no logo asset recoverable) — free to set
      a new palette, built as a wordmark placeholder.

   Direction: deep teal (joint mobility / recovery) + warm coral (human,
   approachable — offsets clinical teal so it doesn't read sterile) on a
   warm bone neutral, NOT blue-tinted like ZA Physio's surfaces.
   Type: Source Serif 4 (display, confident/medical-trust) + Manrope (body,
   rounded grotesk) — distinct pairing from ZA's Fraunces/Inter.
   ========================================================================== */

:root {
  /* ---- Brand core (fixed, same in light/dark) ---- */
  --color-teal: #0F5C51;          /* primary — joint mobility / recovery */
  --color-teal-deep: #0A3F38;     /* darker teal for hover/depth/CTA bands */
  --color-coral: #E0713C;         /* accent — CTAs, highlights, warmth */
  --color-coral-deep: #C05A29;    /* coral hover state */

  /* ---- Theme-aware tokens (redefined below) ---- */
  --color-ink: #1C2321;           /* body text */
  --color-muted: #5B6763;         /* secondary text */
  --color-bg: #F6F3EC;            /* warm bone page background */
  --color-surface: #E8EEE9;       /* soft sage-tinted card background */
  --color-surface-warm: #F0E9DC;  /* warm sand card background (alt sections) */
  --color-border: #DCE2DA;
  --color-white: #FFFFFF;
  --color-link: #0F5C51;

  /* ---- Type ---- */
  --font-display: 'Source Serif 4', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Manrope', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;

  /* ---- Spacing rhythm ---- */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 7rem;

  /* ---- Layout ---- */
  --container-w: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  /* ---- Shadows (warm-toned, not pure black) ---- */
  --shadow-sm: 0 2px 8px rgba(30, 26, 18, 0.08);
  --shadow-md: 0 12px 32px rgba(30, 26, 18, 0.12);
  --shadow-lg: 0 24px 56px rgba(30, 26, 18, 0.16);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --color-bg: #121816;
    --color-surface: #1B2422;
    --color-surface-warm: #201B15;
    --color-ink: #ECEEEC;
    --color-muted: #A6B0AC;
    --color-border: #2A3532;
    --color-white: #1B2422;
    --color-link: #6FC9B8;
    --color-coral: #F08858;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.28);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.36);
    --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.44);
  }
}

:root[data-theme="dark"] {
  --color-bg: #121816;
  --color-surface: #1B2422;
  --color-surface-warm: #201B15;
  --color-ink: #ECEEEC;
  --color-muted: #A6B0AC;
  --color-border: #2A3532;
  --color-white: #1B2422;
  --color-link: #6FC9B8;
  --color-coral: #F08858;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.28);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.36);
  --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.44);
}

:root[data-theme="light"] {
  --color-bg: #F6F3EC;
  --color-surface: #E8EEE9;
  --color-surface-warm: #F0E9DC;
  --color-ink: #1C2321;
  --color-muted: #5B6763;
  --color-border: #DCE2DA;
  --color-white: #FFFFFF;
  --color-link: #0F5C51;
  --color-coral: #E0713C;
  --shadow-sm: 0 2px 8px rgba(30, 26, 18, 0.08);
  --shadow-md: 0 12px 32px rgba(30, 26, 18, 0.12);
  --shadow-lg: 0 24px 56px rgba(30, 26, 18, 0.16);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 var(--space-sm);
  line-height: 1.18;
  font-weight: 600;
  color: var(--color-ink);
}

h1 { font-size: clamp(2.3rem, 4.2vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { margin: 0 0 var(--space-sm); color: var(--color-ink); }

a { color: var(--color-link); text-decoration: none; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--color-coral);
  outline-offset: 2px;
}

ul, ol { padding-left: 1.2em; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: var(--space-2xl) 0; }
@media (max-width: 720px) { .section { padding: var(--space-xl) 0; } }

.section--surface { background: var(--color-surface); }
.section--warm { background: var(--color-surface-warm); }
.section--teal {
  background: linear-gradient(160deg, var(--color-teal-deep), var(--color-teal) 70%);
  color: #F2F7F5;
  position: relative;
  overflow: hidden;
}
.section--teal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at 85% 20%, rgba(224, 113, 60, 0.22), transparent 60%);
  pointer-events: none;
}
.section--teal h2, .section--teal h3 { color: #FFFFFF; }
.section--teal p { color: #D9E7E3; }
.section--teal .muted { color: #B7CBC5; }

.section-head { max-width: 640px; margin: 0 0 var(--space-lg); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-coral-deep);
  margin-bottom: var(--space-xs);
}
.section--teal .eyebrow { color: var(--color-coral); }

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-coral);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--color-coral-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  border-color: currentColor;
  color: var(--color-teal);
}
.section--teal .btn-ghost { color: #fff; }
.btn-ghost:hover { background: rgba(15, 92, 81, 0.08); transform: translateY(-2px); }
.section--teal .btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

.btn-text {
  background: none;
  border: none;
  padding: 0.3em 0;
  color: var(--color-teal);
  font-weight: 700;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}
.btn-text:hover { border-bottom-color: currentColor; }

.btn-sm { padding: 0.6em 1.2em; font-size: 0.88rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 63, 56, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.3s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); border-bottom-color: rgba(255, 255, 255, 0.08); }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  height: 84px;
}

.brand { display: flex; align-items: center; gap: 0.6em; font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: #fff; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: #FFFFFF;
  border: 2.5px solid var(--color-coral);
  color: var(--color-teal); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text small { font-family: var(--font-body); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-coral); }

.nav-desktop { display: flex; align-items: center; gap: var(--space-lg); }
.nav-links { display: flex; gap: var(--space-md); list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: #EAF3F0;
  font-weight: 600;
  font-size: 0.96rem;
  position: relative;
  padding: 0.3em 0.1em;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 2px;
  background: var(--color-coral);
  transition: right 0.25s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-links a:hover { color: #fff; }
.nav-links a[aria-current="page"] { color: var(--color-coral); }

.header-cta { display: flex; align-items: center; gap: var(--space-sm); }
.header-phone { display: flex; align-items: center; gap: 0.4em; font-weight: 700; color: #fff; font-size: 0.95rem; }
.header-phone svg { flex-shrink: 0; }
.header-phone:hover { color: var(--color-coral); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5em;
  color: #fff;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: var(--space-md);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  visibility: hidden;
}
.mobile-drawer.is-open { transform: translateX(0); visibility: visible; }
.mobile-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-lg); }
.mobile-drawer nav { display: flex; flex-direction: column; gap: var(--space-sm); }
.mobile-drawer nav a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-ink);
  padding: 0.3em 0;
  border-bottom: 1px solid var(--color-border);
}
.mobile-drawer .btn { margin-top: var(--space-lg); justify-content: center; }
.drawer-close { background: none; border: none; cursor: pointer; color: var(--color-ink); padding: 0.5em; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; padding: var(--space-2xl) 0; overflow: hidden; }
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero { padding: var(--space-xl) 0; }
}

.hero-eyebrow { display: flex; align-items: center; gap: 0.6em; margin-bottom: var(--space-sm); }
.hero-eyebrow .eyebrow { margin: 0; }

.hero h1 { margin-bottom: var(--space-sm); }
.hero-lede { font-size: 1.15rem; color: var(--color-muted); max-width: 46ch; margin-bottom: var(--space-md); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-md); }

.hero-trust { display: flex; flex-wrap: wrap; gap: var(--space-md); }
.hero-trust-item { display: flex; align-items: center; gap: 0.6em; font-size: 0.9rem; font-weight: 600; color: var(--color-muted); }
.hero-trust-item svg { color: var(--color-coral); flex-shrink: 0; }

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; z-index: 0; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(200deg, rgba(10, 63, 56, 0.05) 0%, rgba(10, 63, 56, 0.55) 100%);
  pointer-events: none;
}
.hero-media-badge {
  position: absolute; z-index: 2; left: var(--space-md); bottom: var(--space-md);
  background: rgba(255,255,255,0.94);
  color: var(--color-ink);
  border-radius: var(--radius-md);
  padding: 0.9em 1.2em;
  box-shadow: var(--shadow-md);
  max-width: 240px;
}
.hero-media-badge strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--color-teal); }
.hero-media-badge span { font-size: 0.82rem; color: var(--color-muted); }

/* ==========================================================================
   Cards (hairline-grid style — consistent across site)
   ========================================================================== */
.grid { display: grid; gap: var(--space-md); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }

.card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--color-surface);
  color: var(--color-teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-sm);
}
.section--teal .card-icon { background: rgba(255,255,255,0.12); color: #fff; }

.card h3 { margin-bottom: 0.4em; }
.card p:last-child { margin-bottom: 0; }
.card-fee { display: inline-block; margin-top: 0.6em; font-weight: 700; color: var(--color-coral-deep); font-size: 0.92rem; }

/* Photo cards */
.photo-card { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.photo-card:hover img { transform: scale(1.05); }

/* ==========================================================================
   Team cards
   ========================================================================== */
.team-card { text-align: left; }
.team-card .card-icon { width: 100%; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--color-teal), var(--color-coral)); margin-bottom: var(--space-md); }
.team-role { color: var(--color-coral-deep); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5em; }
.team-meta { display: flex; flex-wrap: wrap; gap: 0.5em 1em; font-size: 0.85rem; color: var(--color-muted); margin-top: 0.8em; }
.team-meta span { display: flex; align-items: center; gap: 0.35em; }

/* ==========================================================================
   Testimonial / review cards
   ========================================================================== */
.review-card { position: relative; }
.review-stars { display: flex; gap: 3px; color: var(--color-coral); margin-bottom: 0.7em; }
.review-source { display: inline-flex; align-items: center; gap: 0.4em; font-size: 0.8rem; font-weight: 700; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.8em; }
.review-label { font-size: 0.78rem; color: var(--color-muted); font-style: italic; margin-top: 0.4em; }

/* ==========================================================================
   Section reveal animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 0.4em; }
.cta-band p { max-width: 52ch; margin-left: auto; margin-right: auto; margin-bottom: var(--space-md); }
.cta-actions { display: flex; justify-content: center; gap: var(--space-sm); flex-wrap: wrap; }

/* ==========================================================================
   Map
   ========================================================================== */
.map-box { height: 380px; position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.map-box iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 0.4em; color: var(--color-ink); }
input, textarea, select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85em 1em;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-ink);
  transition: border-color 0.2s ease;
}
input:focus, textarea:focus, select:focus { border-color: var(--color-teal); }
textarea { resize: vertical; min-height: 120px; }

.form-status {
  margin-top: var(--space-sm);
  padding: 0.9em 1.1em;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.94rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.success { background: rgba(15, 92, 81, 0.12); color: var(--color-teal); border: 1px solid rgba(15, 92, 81, 0.3); }
.form-status.error { background: rgba(224, 113, 60, 0.12); color: var(--color-coral-deep); border: 1px solid rgba(224, 113, 60, 0.3); }

/* ==========================================================================
   FAQ (details/summary)
   ========================================================================== */
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { flex-shrink: 0; transition: transform 0.25s ease; color: var(--color-coral); }
.faq-item[open] summary .icon { transform: rotate(45deg); }
.faq-item p { margin-top: 0.8em; color: var(--color-muted); }

/* ==========================================================================
   Breadcrumb / page hero (interior pages)
   ========================================================================== */
.page-hero { padding: var(--space-xl) 0 var(--space-lg); }
.page-hero .eyebrow { margin-bottom: var(--space-xs); }
.page-hero p { max-width: 60ch; color: var(--color-muted); font-size: 1.08rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--color-teal-deep); color: #DCEAE6; padding: var(--space-xl) 0 var(--space-md); }
.site-footer a { color: #DCEAE6; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-lg); margin-bottom: var(--space-lg); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 0.6em; font-family: var(--font-display); font-size: 1.15rem; color: #fff; margin-bottom: 0.8em; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: #9FC2BA; margin-bottom: 0.9em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6em; font-size: 0.94rem; }
.footer-social { display: flex; gap: 0.7em; margin-top: var(--space-sm); }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover { background: var(--color-coral); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: #9FC2BA;
}
.footer-bottom a { color: #9FC2BA; }
.footer-bottom nav { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

/* ==========================================================================
   Misc utilities
   ========================================================================== */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--color-teal); color: #fff; padding: 1em 1.4em; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.badge-row { display: flex; flex-wrap: wrap; gap: var(--space-sm); align-items: center; }
.stat { text-align: center; }
.stat strong { display: block; font-family: var(--font-display); font-size: 2.2rem; color: var(--color-teal); }
.section--teal .stat strong { color: #fff; }
.stat span { font-size: 0.85rem; color: var(--color-muted); }
.section--teal .stat span { color: #C9DED8; }

.divider { height: 1px; background: var(--color-border); border: none; margin: var(--space-lg) 0; }
