/* ============================================================
   ZOE'S HEALTHCARE SERVICES — Brand-accurate stylesheet
   Palette: Teal #1E6E73 | Pine #13474B | Apricot #E8967A
            Sage #9DBFAE  | Linen #F6F2EC | Charcoal #2B2B2B
   Type:    Poppins (display/nav) + Source Sans 3 (body)
   ============================================================ */

/* Fonts are loaded via <link rel="stylesheet"> in each page <head> (with preconnect) for faster, non-blocking delivery. */

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:    #1E6E73;
  --pine:    #13474B;
  --apricot: #E8967A;
  --sage:    #9DBFAE;
  --linen:   #F6F2EC;
  --linen-dk:#EDE8DF;
  --char:    #2B2B2B;
  --white:   #FFFFFF;
  --head:    'Poppins', sans-serif;
  --display: 'Zilla Slab', Georgia, serif;
  --body:    'Source Sans 3', sans-serif;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(19,71,75,0.10);
  --trans:   0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--body);
  color: var(--char);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--head); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1.05rem; }

.eyebrow {
  font-family: var(--head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--apricot);
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  padding: 0;
  background: none;
  border: none;
}
/* coral rule above the label — replaces the old pill/bubble */
.eyebrow::before {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: currentColor;
  border-radius: 2px;
}
/* keep the accent centered inside centered call-to-action bands */
.cta-band .eyebrow { align-items: center; }

/* ---------- layout ---------- */
.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

section { padding: 3rem 0; }
section.tight { padding: 2rem 0; }

/* ---------- navigation ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(19,71,75,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(157,191,174,0.18);
  transition: box-shadow var(--trans);
}

.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.18); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-mark { height: 52px; width: auto; }
.nav-logo-text {
  font-family: var(--head);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--linen);
  letter-spacing: 0.005em;
  white-space: nowrap;
  margin-left: 0.85rem;
  padding-left: 0.85rem;
  border-left: 1.5px solid rgba(246,242,236,0.4);
}
/* legacy fallback if any nav still uses a plain img */
.nav-logo > img:only-child { height: 64px; width: auto; }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--head);
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(246,242,236,0.85);
  transition: color var(--trans);
}

.nav-links a:hover,
.nav-links a.active { color: var(--apricot); }

.nav-cta {
  background: var(--apricot);
  color: var(--white) !important;
  padding: 0.52rem 1.3rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background var(--trans), transform var(--trans) !important;
}

.nav-cta:hover {
  background: #d4795f !important;
  transform: translateY(-1px);
  color: var(--white) !important;
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--linen);
  border-radius: 2px;
  transition: all var(--trans);
}

/* ---------- hero — full-bleed photo with overlay ---------- */
.hero {
  position: relative;
  display: flex;
  overflow: hidden;
  isolation: isolate;
}

/* Full-bleed background photo */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: -2;
}

/* Dark navy gradient overlay — heavier on the left for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    100deg,
    rgba(13,38,54,0.94) 0%,
    rgba(13,42,58,0.86) 34%,
    rgba(15,50,66,0.55) 62%,
    rgba(15,50,66,0.15) 100%
  );
}

/* Inner wrapper positions content top-left and trust row bottom */
.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 0 3rem;   /* top clears the fixed nav */
  width: min(1140px, 92%);
}

.hero-content {
  max-width: 640px;
  padding-top: 1rem;
}

/* Headline — bold serif, white, with coral accent rules */
.hero-content h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.005em;
  color: var(--white);
  margin: 0;
}

/* Coral double-line accents above and below the headline */
.hero-rule {
  display: block;
  width: 120px;
  height: 4px;
  border-top: 2px solid var(--apricot);
  border-bottom: 2px solid var(--apricot);
  height: 7px;
}
.hero-rule:first-child { margin-bottom: 1.8rem; }
.hero-rule:last-child  { margin-top: 1.8rem; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}

/* Buttons scoped to the hero */
.hero .btn-primary {
  background: var(--white);
  color: var(--teal);
}
.hero .btn-primary:hover {
  background: var(--linen);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
}
.hero .btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.65);
}
.hero .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* Trust row — horizontal, white outline icons + white labels */
.hero-trust {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
}
.trust-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}
.trust-item svg { color: var(--white); flex-shrink: 0; }
.trust-item span {
  font-family: var(--head);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--white);
  letter-spacing: 0.01em;
}

/* (trust-icon kept for any reuse) */
.trust-icon {
  width: 28px; height: 28px;
  background: rgba(157,191,174,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { display: block; }

/* ---------- stat cards ---------- */
.stat-cards-wrap {
  position: relative;
  z-index: 10;
  margin-top: 0;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: 0 4px 32px rgba(19,71,75,0.12);
  border-top: 3px solid var(--apricot);
  transition: transform var(--trans), box-shadow var(--trans);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(19,71,75,0.16);
}

.stat-icon {
  width: 52px; height: 52px;
  background: rgba(30,110,115,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}

.stat-card h3 {
  font-family: var(--head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pine);
  margin-bottom: 0.35rem;
}
.stat-card p { font-size: 0.9rem; color: #5a6a6b; line-height: 1.5; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.78rem 1.8rem;
  border-radius: 50px;
  transition: all var(--trans);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--apricot);
  color: var(--white);
}
.btn-primary:hover {
  background: #d4795f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,150,122,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(246,242,236,0.45);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover {
  background: var(--pine);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ---------- services overview ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--linen-dk);
  border-radius: 16px;
  padding: 2.4rem 2rem 2rem;
  box-shadow: 0 6px 30px rgba(19,71,75,0.10);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(19,71,75,0.16);
}

/* two-tone accent bar across the top */
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(to right, var(--pine) 0 68%, var(--apricot) 68% 100%);
}

.service-card-label {
  display: block;
  font-family: var(--head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--apricot);
  margin-bottom: 0.6rem;
}

.service-card h3 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--pine);
  font-size: 1.65rem;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.service-card-sub {
  font-style: italic;
  color: var(--teal);
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.service-note {
  font-size: 0.85rem;
  color: #5a6a6b;
  line-height: 1.5;
  margin-top: 1.1rem;
}
.service-note strong { color: var(--pine); }

.service-list {
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.97rem;
  color: #3a4a4b;
}

.service-list li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--apricot);
  border-radius: 50%;
  margin-top: 0.55rem;
  flex-shrink: 0;
}

/* ---------- why us / differentiator strip ---------- */
.why-section { background: var(--pine); color: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.why-text h2 { color: var(--white); margin-bottom: 1rem; }
.why-text p { color: rgba(246,242,236,0.82); font-size: 1.05rem; margin-bottom: 1.5rem; }

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pillar {
  background: var(--white);
  border: 1px solid var(--linen-dk);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 3px solid var(--apricot);
  transition: box-shadow var(--trans), transform var(--trans);
}
.pillar:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.18); transform: translateY(-2px); }

.pillar h4 { color: #000; margin-bottom: 0.4rem; font-size: 1rem; }
.pillar p  { font-size: 0.9rem; color: #000; line-height: 1.6; }

/* ---------- testimonials ---------- */
.testimonials { background: var(--linen); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--apricot);
}

.testimonial-card .stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 0.8rem;
}
.testimonial-card .stars svg { display: block; flex-shrink: 0; }

.testimonial-card blockquote {
  font-size: 0.97rem;
  line-height: 1.72;
  color: #3a4a4b;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.testimonial-card cite {
  font-style: normal;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--teal);
  display: block;
}
.testimonial-card cite span {
  display: block;
  font-family: var(--body);
  font-weight: 400;
  color: #7a8a8b;
  font-size: 0.84rem;
  margin-top: 0.15rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--teal) 0%, var(--pine) 100%);
  text-align: center;
  padding: 3rem 0;
}

.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p  { color: rgba(246,242,236,0.82); max-width: 540px; margin-inline: auto; margin-bottom: 2rem; font-size: 1.08rem; }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background-color: var(--pine);   /* fallback while photo loads */
  background-size: cover;
  background-position: center;
  padding: 120px 0 52px;
  color: var(--white);
  overflow: hidden;
}
/* Dark gradient overlay keeps headline + lead readable over the photo */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(19,71,75,0.90) 0%, rgba(19,71,75,0.78) 45%, rgba(19,71,75,0.52) 100%);
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(246,242,236,0.92); font-size: 1.15rem; max-width: 580px; }

/* ---------- services detail page ---------- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
}

.service-block:not(:last-child) { border-bottom: 1px solid var(--linen-dk); }

/* flip: text left, photo right — explicit column placement */
.service-block.flip .service-content {
  grid-column: 1;
  grid-row: 1;
}
.service-block.flip .service-visual--photo,
.service-block.flip .service-visual {
  grid-column: 2;
  grid-row: 1;
}

/* ---- hero photo panel — see .hero-photo-panel above ---- */

/* ---- service visual panels (photo variant) ---- */
.service-visual {
  border-radius: 20px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--pine) 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-visual--photo {
  background: none;
  display: block;
  aspect-ratio: 4/3;
}

.service-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 20px;
  aspect-ratio: 4/3;
}

/* coaching photo — the wide room image crops better from centre-top */
.coaching-visual .service-photo {
  object-position: center 25%;
}

/* ---- CTA band background photo ---- */
.cta-band {
  background-color: var(--pine);
  background-size: cover;
  background-position: center 60%;
  position: relative;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(19,71,75,0.88) 0%,
    rgba(30,110,115,0.82) 100%
  );
  z-index: 0;
}
.cta-band .container {
  position: relative;
  z-index: 1;
}

/* service-visual-inner removed — replaced by service-photo images */

/* coaching-visual gradient/overlay removed — now uses real photo */

.service-content .service-list { margin-bottom: 2rem; }
.service-content h2 { margin-bottom: 0.5rem; }
.service-content > p { margin-bottom: 1.5rem; color: #4a5a5b; }

/* ---------- about page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 4rem;
  align-items: start;
}

.about-card {
  background: linear-gradient(140deg, var(--pine) 0%, var(--teal) 100%);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.about-logo { margin-bottom: 2rem; }
.about-logo img { width: 160px; }

.about-card h3 { color: var(--white); margin-bottom: 0.3rem; }
.about-card .title { color: var(--sage); font-size: 0.92rem; margin-bottom: 1.5rem; }
.about-card p { color: rgba(246,242,236,0.82); font-size: 0.95rem; line-height: 1.7; }

.cred-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.cred-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--head);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--sage);
}
.cred-item::before { content: '✓'; color: var(--apricot); font-weight: 700; }

.about-content h2 { margin-bottom: 1.2rem; }
.about-content > p { margin-bottom: 1.2rem; color: #4a5a5b; font-size: 1.05rem; }

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.value-item {
  background: var(--white);
  border: 1px solid var(--linen-dk);
  border-left: 3px solid var(--apricot);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.value-item h4 { color: var(--teal); margin-bottom: 0.35rem; }
.value-item p  { font-size: 0.9rem; color: #4a5a5b; }

/* ---------- contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: #4a5a5b; margin-bottom: 2rem; font-size: 1.05rem; }

.contact-methods { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2.5rem; }

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.method-icon {
  width: 48px; height: 48px;
  background: var(--linen);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--linen-dk);
}
.method-icon svg { display: block; }

.method-label { font-family: var(--head); font-size: 0.82rem; font-weight: 500; color: #7a8a8b; text-transform: uppercase; letter-spacing: 0.06em; }
.method-value { font-family: var(--head); font-weight: 600; color: var(--pine); font-size: 1rem; }
.method-value a { color: inherit; }
.method-value a:hover { color: var(--teal); }

.service-areas h4 { margin-bottom: 0.75rem; color: var(--pine); font-size: 1rem; }
.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-tag {
  background: var(--linen);
  border: 1px solid var(--linen-dk);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.86rem;
  color: #4a5a5b;
  font-family: var(--head);
  font-weight: 500;
}

/* contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--linen-dk);
}

.contact-form-wrap h3 { margin-bottom: 0.5rem; }
.contact-form-wrap > p { color: #7a8a8b; font-size: 0.92rem; margin-bottom: 1.8rem; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--pine);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d4cfc6;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--char);
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(30,110,115,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-note {
  font-size: 0.82rem;
  color: #9a9a9a;
  margin-top: 1rem;
  line-height: 1.5;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--pine);
  color: rgba(246,242,236,0.7);
  padding: 2.75rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(157,191,174,0.15);
}

.footer-brand img { width: 88px; height: auto; margin-bottom: 0.85rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }

.footer-col h5 {
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--linen);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(246,242,236,0.65);
  margin-bottom: 0.55rem;
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--apricot); }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.84rem; }
.footer-bottom a { color: var(--apricot); }

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(232,150,122,0.15);
  border: 1px solid rgba(232,150,122,0.3);
  border-radius: 50px;
  padding: 0.3rem 0.85rem;
  font-size: 0.8rem;
  color: var(--apricot);
  font-family: var(--head);
  font-weight: 500;
}
.footer-badge svg { display: block; flex-shrink: 0; }

/* ---------- mission / quote section ---------- */
.mission-section {
  background: var(--pine);
  color: var(--white);
  text-align: left;
  padding: 3.5rem 0;
}
.mission-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 3rem;
  align-items: center;
}
.mission-media img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.mission-section .eyebrow { margin-bottom: 0.75rem; }
.mission-title {
  font-family: var(--display);
  font-weight: 700;
  color: var(--white);
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin-bottom: 2.2rem;
}
.mission-quote {
  position: relative;
  max-width: 680px;
  margin: 0;
  padding: 2.4rem 2.6rem 2.2rem;
}
.mission-quote::before,
.mission-quote::after {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
}
.mission-quote::before {
  top: 0; left: 0;
  border-top: 3px solid var(--white);
  border-left: 3px solid var(--white);
}
.mission-quote::after {
  bottom: 0; right: 0;
  border-bottom: 3px solid var(--white);
  border-right: 3px solid var(--white);
}
.mission-quote blockquote {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.1vw, 1.5rem);
  line-height: 1.5;
  color: var(--white);
  text-align: left;
  margin: 0;
}
.mq-mark {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 0.2;
  color: var(--white);
}
.mq-open { text-align: left; height: 2.2rem; }
.mq-close { text-align: right; margin-top: 1.4rem; height: 1.2rem; }

/* ---------- referral partners (healthcare pros) ---------- */
.referral-header {
  text-align: left;
  max-width: 820px;
  margin-inline: 0;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(157,191,174,0.18);
}
.referral-header .eyebrow { margin-bottom: 1rem; }
.referral-header h2 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--white);
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.referral-sub {
  font-size: 1.12rem;
  line-height: 1.6;
  margin: 0;
}
.rs-coral { color: var(--apricot); }
.rs-sage  { color: var(--sage); }

.referral-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 2.5rem;
}
.referral-col {
  border-left: 2px solid var(--apricot);
  padding-left: 1.5rem;
}
.referral-col:first-child {
  border-left: none;
  padding-left: 0;
}
.referral-tag {
  display: block;
  font-family: var(--head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--apricot);
  margin-bottom: 1rem;
}
.referral-col h4 {
  font-family: var(--head);
  font-weight: 600;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.referral-col p {
  color: rgba(157,191,174,0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 3-column variant */
.referral-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* light variant — white background, dark headings */
.referral-light .referral-col h4 { color: var(--pine); }
.referral-light .referral-col p  { color: #5a6a6b; }

/* ---------- section headers ---------- */
.section-header { text-align: left; max-width: 640px; margin-inline: 0; margin-bottom: 2.25rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: #5a6a6b; font-size: 1.05rem; line-height: 1.75; }

/* ---------- utilities ---------- */
.text-teal   { color: var(--teal); }
.text-pine   { color: var(--pine); }
.text-apricot{ color: var(--apricot); }
.bg-linen    { background: var(--linen); }
.text-center { text-align: center; }
.mt-1  { margin-top: 1rem; }
.mt-2  { margin-top: 2rem; }
.mb-05 { margin-bottom: 0.5rem; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-inner { padding: 7rem 0 2.5rem; }
  .hero-trust { gap: 1.4rem 2rem; margin-top: 2.5rem; }
  .trust-item span { font-size: 0.95rem; }
  .stat-cards-wrap { margin-top: 0; padding-top: 2.5rem; }
  .stat-cards { grid-template-columns: 1fr; gap: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pillars { grid-template-columns: 1fr; }
  .referral-grid { grid-template-columns: 1fr 1fr; column-gap: 1.75rem; row-gap: 2rem; }
  .referral-col:nth-child(odd) { border-left: none; padding-left: 0; }
  .referral-grid.cols-3 { grid-template-columns: 1fr; row-gap: 1.75rem; }
  .referral-grid.cols-3 .referral-col { border-left: none; padding-left: 0; }
  .service-block { grid-template-columns: 1fr; }
  .service-block.flip .service-content,
  .service-block.flip .service-visual--photo,
  .service-block.flip .service-visual {
    grid-column: 1;
    grid-row: auto;
  }
  .about-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mission-media img { max-height: 340px; }
  .about-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .intro-strip .container { grid-template-columns: 1fr; gap: 1.5rem; }
  .value-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* nav collapses to a hamburger early enough that the wordmark never
   collides with the links on split-screen / tablet widths */
@media (max-width: 960px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--pine); padding: 1.5rem; gap: 1rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-logo-text { font-size: 1.3rem; }
}

@media (max-width: 640px) {
  .nav-logo-mark { height: 42px; }
  .nav-logo-text { font-size: 1.15rem; margin-left: 0.6rem; padding-left: 0.6rem; }
  .referral-grid { grid-template-columns: 1fr; }
  .referral-col { border-left: none; padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  section { padding: 2.25rem 0; }
}

@media (max-width: 480px) {
  .nav-logo-mark { height: 36px; }
  .nav-logo-text { font-size: 1rem; margin-left: 0.5rem; padding-left: 0.5rem; }
  .container { width: 90%; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ---------- blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(19,71,75,0.16);
}
.blog-card-top {
  height: 6px;
  background: var(--teal);
}
.blog-card-top--coral { background: var(--apricot); }
.blog-card-body {
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-tag {
  font-family: var(--head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.blog-tag--coral { color: var(--apricot); }
.blog-card-body h3 { color: var(--pine); margin-bottom: 0.75rem; }
.blog-card-body h3 a:hover { color: var(--teal); }
.blog-excerpt { font-size: 0.98rem; color: #555; flex: 1; }
.blog-meta {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: #888;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.blog-readmore {
  margin-top: 1rem;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--teal);
}
.blog-readmore:hover { color: var(--pine); }

/* article page */
.article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem 0 1rem;
}
.article-body h2 {
  color: var(--pine);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  margin: 2.5rem 0 1rem;
}
.article-body h3 {
  color: var(--teal);
  margin: 2rem 0 0.75rem;
}
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol {
  list-style: disc;
  margin: 0 0 1.25rem 1.4rem;
}
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 0.6rem; }
.article-body a { color: var(--teal); text-decoration: underline; }
.article-body a:hover { color: var(--pine); }
.article-meta-line {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(246,242,236,0.85);
  margin-top: 1rem;
}
.article-note {
  background: var(--linen);
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  margin: 2.5rem 0 0;
}
.article-cta {
  background: var(--linen);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}
.article-cta h3 { color: var(--pine); margin-bottom: 0.5rem; }
.article-cta p { margin-bottom: 1.25rem; }
.article-backlink {
  display: inline-block;
  margin: 0 0 2rem;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal);
}
.article-backlink:hover { color: var(--pine); }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .blog-grid { grid-template-columns: 1fr; }
}
