/* ============================================================
   Healthcare Journey Advocates — Site Styles
   Aesthetic: Editorial, refined, warm. Quiet luxury for healthcare.
   ============================================================ */

:root {
  /* Simplified palette — optimized for accessibility and older readers */
  --teal:        #023C43;   /* PRIMARY: headlines, nav, buttons, links */
  --teal-deep:   #012A30;   /* darker teal for footer */
  --teal-soft:   #1F5961;   /* mid-teal for hover states */
  --taupe:       #A29B89;   /* warm taupe — accents only, not body text */
  --taupe-deep:  #6F6857;   /* deeper taupe — for eyebrow labels */
  --sand:        #D4CABC;   /* warm sand — backgrounds, dividers */
  --cream:       #F4EFE5;   /* soft cream — section backgrounds */
  --cream-warm:  #EDE6D8;   /* slightly warmer cream wash */
  --paper:       #FBFAF6;   /* main background — near white */
  --ink:         #2A2A2D;   /* PRIMARY body text — high contrast */
  --ink-soft:    #3D3D42;   /* secondary body text — still high contrast */
  --ink-mute:    #6B6B70;   /* muted captions only */
  --rule:        #D4CABC;   /* divider lines */
  --rule-soft:   #E5DFD2;   /* lighter dividers */
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

a { color: var(--teal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--taupe-deep); }

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

/* ----- Type ----- */
.serif { font-family: 'Lora', Georgia, serif; }
.sans { font-family: 'Inter', -apple-system, sans-serif; }
.display {
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: -0.005em;
}

h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.15; letter-spacing: -.015em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); line-height: 1.35; font-weight: 600; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe-deep);
}

.lead { font-family: 'Inter', sans-serif; font-size: 1.2rem; line-height: 1.7; color: var(--ink-soft); font-weight: 400; }

/* ----- Layout ----- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.narrow    { max-width: 780px; margin: 0 auto; padding: 0 2rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem; max-width: 1400px; margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; gap: .8rem; }
.nav-brand img { height: 52px; width: auto; }
.nav-brand-text {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem; color: var(--teal); letter-spacing: .03em;
  display: none;
}
@media (min-width: 768px) { .nav-brand-text { display: block; } }

.nav-links {
  display: none; gap: 2.2rem; align-items: center;
}
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: .98rem;
  letter-spacing: .02em;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a.active {
  color: var(--teal);
}
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--taupe);
}

.btn-pill {
  font-family: 'Inter', sans-serif;
  font-size: .92rem; letter-spacing: .06em; text-transform: uppercase;
  padding: .8rem 1.6rem;
  background: var(--teal); color: var(--paper) !important;
  border: 2px solid var(--teal);
  border-radius: 999px;
  font-weight: 600;
  transition: all .25s ease;
  display: inline-block;
  cursor: pointer;
  line-height: 1.4;
}
.btn-pill:hover {
  background: var(--teal-soft); border-color: var(--teal-soft); color: var(--paper) !important;
}
.btn-pill:focus-visible {
  outline: 3px solid var(--taupe);
  outline-offset: 3px;
}
.btn-pill.outline {
  background: transparent; color: var(--teal) !important;
}
.btn-pill.outline:hover { background: var(--teal); color: var(--paper) !important; }

/* Smaller pill button used in the navigation bar */
.nav-links .btn-pill {
  font-size: .78rem;
  padding: .55rem 1.2rem;
  letter-spacing: .08em;
  border-width: 1.5px;
}

/* mobile menu toggle */
.menu-toggle {
  display: block;
  background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  color: var(--teal);
  letter-spacing: .1em; text-transform: uppercase;
  padding: .5rem;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1.5rem 2rem;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Inter', sans-serif;
  color: var(--ink); padding: .5rem 0;
  font-size: .95rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -20%, rgba(135,158,171,0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(162,155,137,0.18), transparent 60%),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 4rem; }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .8rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--taupe);
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--teal);
  font-weight: 400;
}
.hero h1 em {
  font-style: italic;
  color: var(--taupe-deep);
  font-weight: 300;
}

.hero p.lead { margin-bottom: 2rem; max-width: 540px; }

.hero-ctas { display: flex; gap: .8rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 30px 60px -20px rgba(2, 60, 67, 0.25);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(2, 60, 67, 0.55) 100%);
  pointer-events: none;
}
.hero-visual-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem 2.5rem;
  color: var(--paper);
  z-index: 2;
}
.hero-visual-content .name {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.6rem; line-height: 1.2; font-weight: 600;
  color: var(--paper); margin-bottom: 0.2rem;
}
.hero-visual-content .credentials {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

/* trust strip */
.trust-strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 1.5rem 0;
  background: var(--cream);
}
.trust-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; align-items: center;
  text-align: center;
}
.trust-item {
  font-family: 'Inter', sans-serif;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft);
}
.trust-item strong {
  color: var(--teal); font-weight: 500;
  display: block; font-size: 1.1rem; letter-spacing: .04em; text-transform: none;
  font-family: 'Lora', Georgia, serif;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 5rem 0; }
@media (min-width: 768px) { section { padding: 7rem 0; } }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}
.section-header .eyebrow { margin-bottom: 1rem; display: inline-block; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p.lead { color: var(--ink-soft); }

/* ----- How It Works ----- */
.how-it-works {
  background: var(--paper);
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 760px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (min-width: 1000px) {
  .how-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}
.how-step {
  position: relative;
  padding: 2rem 1.5rem 2rem;
  background: var(--cream);
  border-radius: 4px;
}
.how-step .step-num {
  font-family: 'Lora', Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: 500;
  font-style: italic;
  color: var(--taupe);
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.how-step h3 {
  font-size: 1.2rem;
  margin-bottom: .8rem;
  color: var(--teal);
  font-weight: 600;
}
.how-step p {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ----- Reviews Link (respectful, no testimonial republishing) ----- */
.reviews-link {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 5rem 2rem;
  text-align: center;
}
@media (min-width: 768px) { .reviews-link { padding: 6rem 2rem; } }
.reviews-link-inner {
  max-width: 680px;
  margin: 0 auto;
}
.reviews-link .eyebrow { display: inline-block; margin-bottom: 1rem; }
.reviews-link h2 { margin-bottom: 1.2rem; }
.reviews-link .lead {
  margin-bottom: 2rem;
  color: var(--ink-soft);
}
.reviews-stars {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  color: var(--taupe);
  margin-bottom: .8rem;
}
.reviews-note {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 2rem;
  font-weight: 500;
}

/* ----- Testimonials (legacy - kept for archive) ----- */
.testimonials {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.testimonials .section-header { margin-bottom: 3rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 760px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
.testimonial-card {
  background: var(--paper);
  padding: 2rem;
  border-radius: 4px;
  border-left: 3px solid var(--taupe);
  display: flex; flex-direction: column;
}
.testimonial-card .stars {
  color: var(--taupe);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.testimonial-card blockquote {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.testimonial-card .attribution {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
}
.testimonials-cta a {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  border-bottom: 1px solid var(--taupe);
  padding-bottom: 4px;
}
.testimonials-cta a:hover { color: var(--taupe-deep); }

/* ----- What is Patient Advocacy (centered) ----- */
.advocacy-intro {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.advocacy-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}
.advocacy-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
}
.advocacy-content p:last-child { margin-bottom: 0; }
.advocacy-content strong { color: var(--teal); font-weight: 600; }
.advocacy-content .advocacy-cta {
  margin-top: 2.2rem;
  text-align: center;
}
.advocacy-content .advocacy-cta a {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  border-bottom: 1px solid var(--taupe);
  padding-bottom: 4px;
}
.advocacy-content .advocacy-cta a:hover { color: var(--taupe-deep); }

/* ----- Story / About preview ----- */
.story {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 900px) {
  .story-grid { grid-template-columns: 0.9fr 1.1fr; gap: 5rem; }
}
.story-portrait {
  aspect-ratio: 3/4;
  background: var(--cream);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -15px rgba(2, 60, 67, 0.22);
}
.story-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Centered story (no portrait) - elegant single-column */
.story-centered {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.story-centered .story-content .eyebrow {
  display: block;
  margin-bottom: 1rem;
}
.story-centered .story-content h2 {
  margin-bottom: 2rem;
}
.story-centered .story-content p {
  text-align: left;
  margin-bottom: 1.4rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}
.story-centered .story-content .signature {
  text-align: center;
  margin-top: 2.5rem;
}
.story-centered .story-content .signature-detail {
  text-align: center;
}
.story-content .eyebrow { margin-bottom: 1rem; }
.story-content h2 { margin-bottom: 1.5rem; }
.story-content p { margin-bottom: 1.2rem; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.75; }
.story-content .signature {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--teal);
  margin-top: 2rem;
  margin-bottom: .25rem;
  letter-spacing: -.01em;
}
.story-content .signature-detail {
  font-family: 'Inter', sans-serif;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute);
}

/* ----- Services grid ----- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  max-width: 1200px;
  margin: 0 auto 3rem;
}
@media (min-width: 700px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--paper);
  padding: 2.5rem;
  display: flex; flex-direction: column;
  transition: background .3s ease;
  position: relative;
}
.service-card:hover { background: var(--cream); }
.service-card .num {
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem; color: var(--taupe-deep);
  margin-bottom: 2rem;
  font-style: italic;
}
.service-card h3 { margin-bottom: 1rem; color: var(--teal); }
.service-card p { color: var(--ink-soft); font-size: .95rem; flex-grow: 1; margin-bottom: 1.5rem; }
.service-card .more {
  font-family: 'Inter', sans-serif;
  font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--teal); font-weight: 500;
  display: inline-flex; gap: .5rem; align-items: center;
}
.service-card .more::after { content: '→'; transition: transform .25s ease; }
.service-card:hover .more::after { transform: translateX(4px); }

/* ----- Promise / Why us ----- */
.promise {
  background: var(--teal);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.promise::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 50% -50%, rgba(162,155,137,0.25), transparent 70%);
}
.promise .container { position: relative; z-index: 2; }
.promise h2 { color: var(--cream); }
.promise .eyebrow { color: var(--sand); }
.promise-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 700px) { .promise-list { grid-template-columns: 1fr 1fr; } }

.promise-item {
  padding: 2rem 0;
  border-top: 1px solid rgba(250,247,241,.2);
}
.promise-item .num {
  font-family: 'Lora', Georgia, serif;
  font-size: 2.2rem; color: var(--taupe);
  font-style: italic;
  margin-bottom: .5rem;
}
.promise-item h3 { color: var(--cream); margin-bottom: .8rem; font-size: 1.4rem; }
.promise-item p { color: rgba(250,247,241,.78); font-size: 1rem; line-height: 1.7; }

/* ----- Pull quote ----- */
.pullquote {
  background: var(--cream-warm);
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pullquote blockquote {
  max-width: 820px; margin: 0 auto; padding: 0 2rem;
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.45; font-weight: 400; font-style: italic;
  color: var(--teal);
  letter-spacing: -.005em;
}
.pullquote blockquote::before, .pullquote blockquote::after {
  content: '"';
  font-size: 1em;
  color: var(--taupe);
  display: inline-block;
  margin: 0 .1em;
}
.pullquote .attribution {
  font-family: 'Inter', sans-serif;
  font-size: .82rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 2rem;
}

/* ----- CTA strip ----- */
.cta-strip { padding: 6rem 0; text-align: center; }
.cta-strip h2 { margin-bottom: 1rem; }
.cta-strip p.lead { max-width: 600px; margin: 0 auto 2.5rem; }
.cta-strip .ctas { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.cta-strip .phone {
  display: block; margin-top: 2rem;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.8rem; color: var(--teal);
  font-style: italic;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--teal-deep);
  color: var(--cream);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand img { height: 56px; width: auto; filter: brightness(0) invert(1) opacity(.92); margin-bottom: 1.5rem; }
.footer-brand p {
  color: rgba(250,247,241,.65);
  font-size: .95rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .65rem; }
.footer-col a {
  color: rgba(250,247,241,.78);
  font-size: .92rem;
  font-family: 'Inter', sans-serif;
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(250,247,241,.12);
  padding: 2rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  color: rgba(250,247,241,.5);
  letter-spacing: .05em;
}

/* ============================================================
   INTERNAL PAGE: Page hero
   ============================================================ */
.page-hero {
  padding: 5rem 0 4rem;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162,155,137,.15), transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; max-width: 900px; }
.page-hero .eyebrow { margin-bottom: 1rem; display: inline-block; }
.page-hero h1 { color: var(--teal); margin-bottom: 1.2rem; font-size: clamp(2.4rem, 5vw, 3.8rem); }
.page-hero p.lead { max-width: 640px; }

.crumbs {
  font-family: 'Inter', sans-serif;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 2rem;
}
.crumbs a { color: var(--ink-mute); }
.crumbs a:hover { color: var(--teal); }

/* ============================================================
   PROSE
   ============================================================ */
.prose { max-width: 720px; margin: 0 auto; padding: 0 2rem; }
.prose h2 { margin: 3rem 0 1.2rem; }
.prose h3 { margin: 2.5rem 0 1rem; font-size: 1.4rem; }
.prose p { margin-bottom: 1.4rem; color: var(--ink-soft); font-size: 1.08rem; line-height: 1.8; }
.prose ul, .prose ol { margin: 1.5rem 0 1.5rem 1.5rem; }
.prose li { margin-bottom: .7rem; color: var(--ink-soft); line-height: 1.75; }
.prose ul li::marker { color: var(--taupe); }
.prose strong { color: var(--teal); font-weight: 500; }
.prose .pull {
  border-left: 3px solid var(--taupe);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.4rem; font-style: italic; line-height: 1.4;
  color: var(--teal-soft);
}

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; padding: 0 2rem; }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 1.8rem 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: flex-start;
  cursor: pointer; gap: 2rem;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.4rem;
  color: var(--teal);
  list-style: none;
  font-weight: 400;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--taupe);
  transition: transform .25s ease;
  flex-shrink: 0;
}
details[open] .faq-q::after { content: '−'; }
.faq-a { padding-top: 1.2rem; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.75; }

/* ============================================================
   FORM
   ============================================================ */
.form-wrap {
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 3rem;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 2px;
}
.form-row { margin-bottom: 1.5rem; }
.form-row label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .5rem;
  font-weight: 500;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--rule);
  background: var(--paper);
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--ink);
  border-radius: 2px;
  transition: border-color .2s ease;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--teal);
}
.form-row textarea { resize: vertical; min-height: 140px; }

/* ============================================================
   Service detail features
   ============================================================ */
.feature-grid {
  display: grid; gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin: 3rem 0;
}
@media (min-width: 700px) { .feature-grid { grid-template-columns: 1fr 1fr; } }

.feature {
  background: var(--paper);
  padding: 2rem;
}
.feature h3 { font-size: 1.3rem; margin-bottom: .8rem; }
.feature p { font-size: .98rem; color: var(--ink-soft); }

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow, .hero h1, .hero p.lead, .hero-ctas {
  animation: fadeUp .9s ease both;
}
.hero h1 { animation-delay: .1s; }
.hero p.lead { animation-delay: .2s; }
.hero-ctas { animation-delay: .3s; }

/* ============================================================
   MOBILE READABILITY OPTIMIZATIONS
   Critical for older readers on smaller screens
   ============================================================ */
@media (max-width: 640px) {
  /* Tighter horizontal padding so reading width is wider */
  .container, .narrow { padding: 0 1.25rem; }
  .section-header { padding: 0 1.25rem; margin-bottom: 2.5rem; }
  .advocacy-content,
  .reviews-link-inner,
  .story-centered,
  .how-grid,
  .reading-grid,
  .testimonials-grid {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  /* Reduce vertical breathing room (still generous) */
  section { padding: 3.5rem 0; }

  /* Hero — keep h1 readable but proportional */
  .hero h1 { font-size: 2.2rem; line-height: 1.15; margin-bottom: 1.2rem; }
  .hero p.lead { font-size: 1.05rem; margin-bottom: 1.5rem; }
  .hero-grid { gap: 2.5rem; padding: 0 1.25rem; }
  .hero-visual { aspect-ratio: 3/4; }
  .hero-visual-content { padding: 1.5rem 1.5rem; }
  .hero-visual-content .name { font-size: 1.3rem; }
  .hero-visual-content .credentials { font-size: 0.75rem; }

  /* Body text — slightly larger and more breathable */
  body { font-size: 17px; line-height: 1.65; }
  p { font-size: 1.02rem; }
  .lead { font-size: 1.05rem; line-height: 1.65; }

  /* Headings */
  h2 { font-size: 1.55rem !important; line-height: 1.25; }
  h3 { font-size: 1.15rem; }

  /* Trust strip — wraps to 2x2 on phones */
  .trust-strip { padding: 1.5rem 1rem; }
  .trust-item { font-size: 0.85rem; padding: 0.5rem; }
  .trust-item strong { font-size: 1rem; display: block; margin-bottom: 0.25rem; }

  /* Service cards */
  .service-card { padding: 1.5rem; }
  .service-card h3 { font-size: 1.2rem; }
  .service-card p { font-size: 0.96rem; line-height: 1.6; }

  /* How It Works steps */
  .how-step { padding: 1.5rem 1.25rem; }
  .how-step .step-num { font-size: 2.4rem; margin-bottom: 0.5rem; }
  .how-step h3 { font-size: 1.1rem; }
  .how-step p { font-size: 0.94rem; }

  /* Promise section */
  .promise-list li { font-size: 1rem; line-height: 1.6; }

  /* Helpful Reading cards */
  .reading-card { padding: 1.5rem; }
  .reading-card h3 { font-size: 1.1rem !important; }
  .reading-card p { font-size: 0.92rem; }

  /* Buttons — touch-friendly */
  .btn-pill {
    font-size: .82rem;
    padding: .9rem 1.4rem;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-links .btn-pill {
    font-size: .72rem;
    padding: .6rem 1rem;
    min-height: 0;
  }

  /* CTA strip — stack buttons */
  .cta-strip h2 { font-size: 1.6rem; }
  .ctas { flex-direction: column; align-items: stretch; gap: .6rem; }
  .ctas .btn-pill { width: 100%; }

  /* Footer — single column on mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding: 0 1.25rem; }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 0 1.25rem;
  }

  /* Article pages — comfortable reading */
  .prose { padding: 0 1.25rem; }
  .prose h2 { font-size: 1.4rem !important; margin-top: 2rem !important; }
  .prose p, .prose li { font-size: 1.02rem; line-height: 1.7; }
  .prose ul { padding-left: 1.25rem; }
  .prose .pull { font-size: 1.15rem; padding: 1.5rem; }

  /* Page hero on article pages */
  .page-hero h1 { font-size: 1.9rem; line-height: 1.2; }
  .page-hero .lead { font-size: 1rem; }
  .crumbs { font-size: 0.75rem; }

  /* Author byline at bottom of articles — stacks vertically */
  .prose div[style*="border-left: 3px solid var(--taupe)"] {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
  }
  .prose div[style*="border-left: 3px solid var(--taupe)"] img {
    margin: 0 auto 1rem !important;
  }

  /* Reviews link section */
  .reviews-link h2 { font-size: 1.55rem; }
  .reviews-stars { font-size: 1.4rem; }

  /* Comparison table — scrollable on phones */
  .compare-table {
    font-size: 0.88rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .compare-table td { white-space: normal; min-width: 140px; }
  .compare-table th, .compare-table td { padding: 0.75rem; }

  /* Sign blocks (do-you-need page) */
  .sign-block {
    padding: 1.5rem 1.25rem;
    margin: 2rem 0 !important;
  }
  .sign-block .sign-num { font-size: 2rem !important; }
  .sign-block h2 { font-size: 1.2rem !important; }

  /* Page hero padding */
  .page-hero { padding: 3rem 1.25rem 2rem; }
}

/* Very small screens (< 380px) — extra tightening */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.95rem; }
  h2 { font-size: 1.4rem !important; }
  .container, .narrow,
  .advocacy-content,
  .reviews-link-inner,
  .story-centered,
  .section-header,
  .footer-grid,
  .prose { padding-left: 1rem; padding-right: 1rem; }
  .trust-item { padding: 0.4rem 0.3rem; font-size: 0.76rem; }
  .trust-item strong { font-size: 0.88rem; }
}
