/* ============================================
   HOME PAGE — Editorial, Typographic, Design-Rich
   Purple Clinic editorial influence + AWC brand
   ============================================ */

/* ──────────────────────────────────────────────
   HERO — Split layout, full-height doctor
   ────────────────────────────────────────────── */

.hero {
  background: var(--navy-deep);
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
}

/* — Large background type watermark — */
.hero-bg-word {
  position: absolute;
  bottom: -0.15em;
  left: -0.03em;
  font-family: var(--font-display);
  font-size: clamp(12rem, 20vw, 20rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

/* — Teal left edge line — */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  width: 4px;
  height: 70%;
  background: linear-gradient(to bottom, transparent, var(--teal) 25%, var(--teal) 75%, transparent);
  z-index: 3;
}

/* Remove old triangle pseudo (handled by .hero-right now) */
.hero::before { display: none; }

/* ── LEFT PANEL — content ── */
.hero-left {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(100px, 14vh, 160px) clamp(32px, 4vw, 64px) 60px clamp(32px, 6vw, 100px);
}

/* hero-inner removed — not used in current layout */

/* — Left: headline block — */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow-line { width: 36px; height: 2px; background: var(--teal); flex-shrink: 0; }
.hero-eyebrow-text {
  font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4.5vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 32px;
}
.hero-headline em { color: var(--teal); font-style: italic; display: block; }

.hero-sub-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-sub {
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  color: rgba(255,255,255,0.6);
  max-width: 400px;
  line-height: 1.75;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── RIGHT PANEL — full-height doctor image ── */
.hero-image-card {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
  align-self: stretch;
}

/* teal geometric backdrop triangle */
.hero-image-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 100%;
  background: var(--teal);
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 100% 100%);
  opacity: 0.09;
  z-index: 0;
}

/* subtle teal glow at bottom */
.hero-image-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(23,184,176,0.1), transparent);
  z-index: 1;
}

.hero-image-card-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image-card img {
  width: auto;
  height: 75%;
  max-height: 75svh;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(-20px 0 60px rgba(23,184,176,0.15));
}

/* tag on image */
.hero-image-tag {
  position: absolute;
  top: clamp(80px, 12vh, 120px);
  left: 24px;
  z-index: 3;
  background: var(--teal);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
  white-space: nowrap;
}

/* ── STAT BAR — spans full width, below both panels ── */
.hero-stats-bar {
  grid-column: 1 / -1;
  grid-row: 2;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 28px clamp(32px, 6vw, 100px) 36px;
  background: var(--navy-deep);
}
.hero-stat {
  padding: 0 clamp(16px, 2.5vw, 40px);
  border-right: 1px solid rgba(255,255,255,0.07);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child  { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-num .hl { color: var(--teal); }
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .hero-left {
    grid-column: 1;
    grid-row: 1;
    padding: 120px 24px 40px;
  }
  .hero-image-card {
    grid-column: 1;
    grid-row: 2;
    height: 60vw;
    min-height: 280px;
    max-height: 400px;
  }
  .hero-image-card-inner {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
  }
  .hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .hero-stats-bar {
    grid-column: 1;
    grid-row: 3;
    padding: 24px 24px 32px;
  }
  .hero-headline { font-size: clamp(2.5rem, 10vw, 4rem); }
}
@media (max-width: 600px) {
  .hero-stats-bar { grid-template-columns: 1fr 1fr; }
  .hero-stat:nth-child(3) { display: none; }
}

/* ──────────────────────────────────────────────
   TRUST STRIP — white with teal top rule
   ────────────────────────────────────────────── */
.trust-strip {
  background: #fff;
  border-top: 4px solid var(--teal);
  border-bottom: 1px solid rgba(32,40,92,0.07);
  padding: 44px 0 48px;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 16px;
  flex: 1; min-width: 180px;
}
.trust-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--teal-muted); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-dark);
  transition: background 0.2s, transform 0.2s;
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-item:hover .trust-icon { background: var(--teal); color: #fff; transform: scale(1.08); }
.trust-text strong { display: block; font-size: 0.9375rem; font-weight: 700; color: var(--navy-brand); }
.trust-text span   { font-size: 0.8125rem; color: rgba(32,40,92,0.5); }
.trust-divider { width: 1px; height: 44px; background: rgba(32,40,92,0.08); flex-shrink: 0; }
@media (max-width: 860px) { .trust-divider { display: none; } .trust-item { min-width: calc(50% - 10px); } }
@media (max-width: 480px)  { .trust-item { min-width: 100%; } }

/* ──────────────────────────────────────────────
   EDITORIAL INTRO — large type + image mosaic
   ────────────────────────────────────────────── */
.editorial-section {
  background: var(--off-white);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

/* Left side: bold statement + services teaser */
.editorial-left {}

.editorial-tagline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy-deep);
  margin-bottom: 28px;
}
.editorial-tagline em { color: var(--teal); font-style: italic; }

.editorial-body {
  font-size: 1.0625rem;
  color: rgba(13,17,53,0.6);
  line-height: 1.78;
  max-width: 460px;
  margin-bottom: 36px;
}

.label-dark { color: var(--teal-dark); }
.label-dark::before { background: var(--teal-dark); }

/* pill list of services preview */
.service-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
}
.service-pill {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--navy-brand);
  background: #fff;
  border: 1px solid rgba(32,40,92,0.12);
  border-radius: 100px;
  padding: 7px 14px;
  transition: all 0.2s;
}
.service-pill:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

/* Right side: image mosaic */
.editorial-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 10px;
}
.mosaic-cell {
  position: relative; overflow: hidden; border-radius: 3px;
}
.mosaic-cell img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s var(--ease-out);
}
.mosaic-cell:hover img { transform: scale(1.05); }
.mosaic-cell--tall {
  grid-row: 1 / 3;
}
/* teal fill cell */
.mosaic-cell--teal {
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px; padding: 20px;
  text-align: center;
}
.mosaic-cell--teal .mosaic-stat {
  font-family: var(--font-display);
  font-size: 2.75rem; font-weight: 900;
  color: #fff; line-height: 1;
}
.mosaic-cell--teal .mosaic-label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

@media (max-width: 900px) {
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-mosaic { height: 340px; }
}

/* ──────────────────────────────────────────────
   PROCESS — dark, 3-column cards
   ────────────────────────────────────────────── */
.process-section {
  background: var(--navy-dark);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(23,184,176,0.06);
  pointer-events: none;
}
.process-section::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(23,184,176,0.03);
  pointer-events: none;
}
.process-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 1; }
.process-sub { color: var(--text-muted); margin-top: 14px; font-size: 1rem; }

.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative; z-index: 1;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}
.process-step {
  background: rgba(255,255,255,0.025);
  padding: 44px 36px;
  position: relative;
  transition: background 0.3s ease;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(23,184,176,0.06); }
.process-step::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease-out);
}
.process-step:hover::before { transform: scaleX(1); }

.step-number {
  font-size: 3.5rem; font-family: var(--font-display); font-weight: 800;
  color: rgba(23,184,176,0.1); line-height: 1; margin-bottom: 20px;
  letter-spacing: -0.04em; transition: color 0.3s ease;
}
.process-step:hover .step-number { color: rgba(23,184,176,0.22); }
.step-content h3 { margin-bottom: 12px; }
.step-content p {
  font-size: 0.9375rem; color: rgba(255,255,255,0.58); line-height: 1.72; margin-bottom: 22px;
}
.step-cta {
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.09em;
  color: var(--teal); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s ease;
}
.step-cta:hover { gap: 10px; }
@media (max-width: 800px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .process-step:last-child { border-bottom: none; }
}

/* ──────────────────────────────────────────────
   TEAL BAND — full bleed CTA
   ────────────────────────────────────────────── */
.teal-band {
  background: var(--teal);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
.teal-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
/* large faded text behind */
.teal-band::after {
  content: 'FREE';
  position: absolute;
  right: -0.05em; top: -0.2em;
  font-family: var(--font-display);
  font-size: 14rem; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,0.06);
  pointer-events: none; user-select: none;
}
.teal-band-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.teal-band-text h2 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); color: #fff; margin-bottom: 6px; }
.teal-band-text p  { color: rgba(255,255,255,0.72); font-size: 1rem; }
.teal-band-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.btn-white {
  background: #fff; color: var(--teal-dark);
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.8125rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px 32px; border-radius: 2px; border: none; cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.btn-white:hover { background: var(--navy-deep); color: #fff; transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.8125rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 2px; cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* ──────────────────────────────────────────────
   ABOUT — white, large editorial layout
   ────────────────────────────────────────────── */
.about-section {
  background: #fff;
  padding: var(--section-pad) 0;
  border-bottom: 1px solid rgba(32,40,92,0.06);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.about-image-stack { position: relative; z-index: 1; }
.about-media {
  position: relative;
}

/* teal square deco behind image */
.about-img-deco {
  position: absolute;
  bottom: -20px; left: -20px;
  width: 100px; height: 100px;
  background: var(--teal);
  border-radius: 2px;
  opacity: 0.9;
  z-index: -1;
}
.about-img-deco-2 {
  position: absolute;
  top: -16px; right: -16px;
  width: 60px; height: 60px;
  border: 3px solid var(--teal);
  border-radius: 2px;
  opacity: 0.3;
  z-index: -1;
}
.about-image-stack-inner { border-radius: 3px; overflow: hidden; }
.about-img-main {
  width: 100%; height: 540px; object-fit: cover; display: block;
  transition: transform 0.7s var(--ease-out);
}
.about-image-stack-inner:hover .about-img-main { transform: scale(1.02); }
.about-image-accent {
  position: absolute; bottom: 20px; right: -24px;
  width: 84px; height: 84px;
  background: var(--navy-brand); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 16px; box-shadow: 0 10px 36px rgba(13,17,53,0.3); z-index: 2;
}
.about-image-accent img { width: 42px; height: 42px; object-fit: contain; }

/* on white */
.about-section .label { color: var(--teal-dark); }
.about-section .label::before { background: var(--teal-dark); }
.about-section .heading-lg { color: var(--navy-deep); }
.about-section .accent-text { color: var(--teal); }
.about-section .divider { background: var(--teal); }
.about-body { color: rgba(13,17,53,0.62); font-size: 1.0625rem; line-height: 1.78; margin-bottom: 20px; }
.about-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-main { height: 380px; }
  .about-image-accent { right: 12px; }
}

/* ──────────────────────────────────────────────
   PHOTO ROW — fullbleed mosaic strip
   ────────────────────────────────────────────── */
.photo-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  height: 280px;
  overflow: hidden;
}
.photo-row-item { position: relative; overflow: hidden; }
.photo-row-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s var(--ease-out);
}
.photo-row-item:hover img { transform: scale(1.07); }
.photo-row-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(13,17,53,0.3);
  transition: background 0.3s;
}
.photo-row-item:hover::after { background: rgba(23,184,176,0.3); }

/* teal cell in row */
.photo-row-item--teal {
  background: var(--teal);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; padding: 24px;
}
.photo-row-item--teal::after { display: none; }
.photo-row-stat { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; }
.photo-row-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.75); }

@media (max-width: 768px) {
  .photo-row { grid-template-columns: 1fr 1fr; height: 220px; }
  .photo-row-item:nth-child(3),
  .photo-row-item:nth-child(4) { display: none; }
}

/* ──────────────────────────────────────────────
   SERVICES — dark + teal grid texture
   ────────────────────────────────────────────── */
.services-section {
  background: var(--navy-mid);
  padding: var(--section-pad) 0;
  position: relative; overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(23,184,176,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,184,176,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.services-section .label { color: var(--teal); }
.services-header { text-align: center; margin-bottom: 52px; position: relative; z-index: 1; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 12px;
  position: relative; z-index: 1;
}
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid transparent;
  border-radius: 3px; padding: 28px 24px;
  transition: all 0.3s var(--ease-out);
}
.service-card:hover {
  background: rgba(255,255,255,0.07);
  border-top-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}
.service-icon { width: 36px; height: 36px; color: var(--teal); margin-bottom: 18px; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 8px; }
.service-note { font-size: 0.6875rem; color: var(--pink-bright); vertical-align: super; }
.service-card p { font-size: 0.84375rem; color: rgba(255,255,255,0.5); line-height: 1.68; }
.services-note {
  text-align: center; font-size: 0.8125rem; color: var(--text-muted);
  margin-top: 8px; margin-bottom: 40px; position: relative; z-index: 1;
}
.services-cta { text-align: center; position: relative; z-index: 1; }

/* ──────────────────────────────────────────────
   REVIEWS SCROLLER — compiled from all locations
   ────────────────────────────────────────────── */
.reviews-section {
  background: var(--teal-pale);
  padding: var(--section-pad) 0;
  border-top: 1px solid rgba(23,184,176,0.12);
  border-bottom: 1px solid rgba(23,184,176,0.12);
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  margin-bottom: 52px;
  padding: 0 var(--gutter);
}
.reviews-section .label { color: var(--teal-dark); }
.reviews-section .label::before { background: var(--teal-dark); }
.reviews-section .heading-lg  { color: var(--navy-deep); }
.reviews-section .accent-text { color: var(--teal); }

/* star rating display */
.review-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 12px;
  color: #F59E0B;
}
.review-stars svg { width: 16px; height: 16px; fill: currentColor; }

/* ── Scroller track ── */
.reviews-scroll-outer {
  position: relative;
  /* fade edges */
}
.reviews-scroll-outer::before,
.reviews-scroll-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.reviews-scroll-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--teal-pale), transparent);
}
.reviews-scroll-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--teal-pale), transparent);
}

.reviews-track-wrap {
  display: flex;
  gap: 20px;
  animation: reviews-scroll 55s linear infinite;
  width: max-content;
}
.reviews-track-wrap:hover { animation-play-state: paused; }

@keyframes reviews-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* second row, opposite direction */
.reviews-track-wrap--reverse {
  animation-direction: reverse;
  animation-duration: 60s;
  margin-top: 20px;
}

.review-card {
  background: #fff;
  border: 1px solid rgba(23,184,176,0.13);
  border-top: 3px solid var(--teal);
  border-radius: 3px;
  padding: 28px 28px 24px;
  width: 320px;
  flex-shrink: 0;
  box-shadow: 0 2px 16px rgba(23,184,176,0.07);
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: default;
}
.review-card:hover {
  box-shadow: 0 8px 32px rgba(23,184,176,0.15);
  transform: translateY(-3px);
}

.review-card-text {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: rgba(13,17,53,0.68);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.review-card-author {
  display: flex;
  align-items: center;
  gap: 11px;
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem;
  color: #fff; flex-shrink: 0;
}
.review-name { font-size: 0.875rem; font-weight: 700; color: var(--navy-deep); }
.review-location { font-size: 0.75rem; color: rgba(13,17,53,0.45); }
.review-source {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(13,17,53,0.3);
}

/* reviews CTA bar */
.reviews-cta-bar {
  text-align: center;
  margin-top: 48px;
  padding: 0 var(--gutter);
}
.reviews-cta-bar p {
  font-size: 0.9375rem;
  color: rgba(13,17,53,0.5);
  margin-bottom: 16px;
}

/* ──────────────────────────────────────────────
   LOCATIONS CTA — navy-brand + teal
   ────────────────────────────────────────────── */
.locations-cta-section {
  background: var(--navy-brand);
  padding: var(--section-pad) 0;
  position: relative; overflow: hidden;
}
.locations-cta-section::before {
  content: '';
  position: absolute; bottom: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(23,184,176,0.07); pointer-events: none;
}
.locations-cta-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
  position: relative; z-index: 1;
}
.locations-cta-content .label { color: var(--teal); }
.locations-cta-content .label::before { background: var(--teal); }
.locations-cta-content .accent-text { color: var(--teal); }
.locations-cta-content p {
  color: rgba(255,255,255,0.62); font-size: 1.0625rem;
  margin: 20px 0 36px; max-width: 420px; line-height: 1.72;
}
.locations-cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.state-list { display: flex; flex-direction: column; gap: 9px; }
.state-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 20px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid transparent; border-radius: 3px; transition: all 0.22s ease;
}
.state-item:hover { background: rgba(23,184,176,0.1); border-left-color: var(--teal); padding-left: 24px; }
.state-name { font-weight: 700; font-size: 0.9375rem; }
.state-count { font-size: 0.8125rem; color: var(--teal); font-weight: 600; }
@media (max-width: 900px) { .locations-cta-grid { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────────
   DONATE — dark with gradient top rule
   ────────────────────────────────────────────── */
.donate-section {
  background: var(--navy-deep);
  padding: var(--section-pad) 0;
  text-align: center; position: relative; overflow: hidden;
}
.donate-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, var(--teal), var(--teal-light), var(--pink-bright));
}
.donate-section::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(23,184,176,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.donate-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.donate-logo { margin: 0 auto 28px; width: 68px; opacity: 0.8; }
.donate-logo img { width: 100%; height: auto; }
.donate-inner h2 { margin-bottom: 18px; }
.donate-inner p { color: rgba(255,255,255,0.58); font-size: 1.0625rem; margin-bottom: 36px; line-height: 1.72; }
