/* ============================================================
   ReAwakening Health — shared stylesheet (websitefableconfident)
   Quiet, established, editorial. The numbers are stated, not shouted.
   ============================================================ */

:root {
  --forest: #1F4C3F;
  --forest-deep: #14362C;
  --forest-ink: #0E2820;
  --sage: #97BC62;
  --moss: #C6D6B5;
  --cream: #F6EFE4;
  --cream-soft: #FBF6EC;
  --paper: #FFFFFF;
  --terracotta: #B85042;
  --terracotta-soft: #E8B8AE;
  --ink: #1B2820;
  --ink-2: #3E524A;
  --muted: #6D7F78;
  --rule: #E2D9C8;
  --shadow: 0 10px 30px rgba(20, 54, 44, 0.07), 0 2px 6px rgba(20, 54, 44, 0.04);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; letter-spacing: -0.01em; color: var(--forest-ink); margin: 0; }
h1 { font-size: clamp(2.2rem, 4.2vw, 3.3rem); line-height: 1.12; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); line-height: 1.2; }
h3 { font-size: 1.3rem; line-height: 1.3; }
p { margin: 0 0 1rem; color: var(--ink-2); }
a { color: var(--forest); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.74rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--forest);
  display: inline-block;
}
.lead { font-size: 1.14rem; color: var(--ink-2); line-height: 1.65; max-width: 66ch; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 239, 228, 0.9);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid rgba(31, 76, 63, 0.1);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; max-width: var(--maxw); margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.15rem; color: var(--forest-ink); }
.logo-mark {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--forest);
  display: grid; place-items: center; color: var(--cream);
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--ink); font-size: 0.93rem; font-weight: 500; }
.nav-links a:hover { color: var(--forest); text-decoration: none; }
.nav-links a.nav-active { color: var(--forest); position: relative; }
.nav-links a.nav-active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -7px; height: 1.5px; background: var(--forest); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: transparent; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--forest-ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px;
  font-weight: 600; font-size: 0.93rem;
  border: 1px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--forest); color: var(--cream); }
.btn-primary:hover { background: var(--forest-deep); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--forest-ink); border-color: rgba(31, 76, 63, 0.3); }
.btn-ghost:hover { background: rgba(31, 76, 63, 0.05); text-decoration: none; }
.text-link { font-weight: 600; font-size: 0.97rem; color: var(--forest); border-bottom: 1px solid rgba(31,76,63,0.3); padding-bottom: 2px; }
.text-link:hover { text-decoration: none; border-bottom-color: var(--forest); }
.bg-forest .text-link { color: var(--moss); border-bottom-color: rgba(198,214,181,0.4); }
.bg-forest .text-link:hover { border-bottom-color: var(--moss); }

/* ---------- Sections ---------- */
section { padding: clamp(68px, 8vw, 116px) 0; }
.section-header { max-width: 740px; margin-bottom: 52px; }
.section-header h2 { margin-bottom: 18px; }
.bg-paper { background: var(--paper); }
.bg-cream { background: var(--cream); }
.bg-cream-soft { background: var(--cream-soft); }
.bg-forest { background: var(--forest); color: var(--cream); }
.bg-forest h2, .bg-forest h3 { color: var(--cream); }
.bg-forest .eyebrow { color: var(--moss); }
.bg-forest .eyebrow::before { background: var(--moss); }
.bg-forest p { color: rgba(246, 239, 228, 0.82); }
.section-cta { margin-top: 44px; }

/* ---------- Hero ---------- */
.hero { padding: clamp(64px, 8vw, 110px) 0 clamp(56px, 6vw, 84px); }
.hero-inner { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 72px; align-items: center; }
.hero h1 .accent { color: var(--terracotta); font-style: italic; font-weight: 500; }
.hero .lead { margin-top: 24px; max-width: 58ch; }
.hero-cta { margin-top: 32px; display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.hero-note {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--rule);
  font-size: 0.92rem; color: var(--muted); line-height: 1.6; max-width: 60ch;
}
.hero-note strong { color: var(--forest-ink); font-weight: 600; }

/* Hero quote — quiet serif, no card */
.hero-quote { border-left: 2px solid var(--forest); padding-left: 30px; }
.hero-quote p {
  font-family: 'Fraunces', serif; font-weight: 500; font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.45;
  color: var(--forest-ink); margin: 0 0 14px;
}
.hero-quote .attribution {
  font-family: 'Inter', sans-serif; font-style: normal; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}

/* ---------- Belief / prose sections ---------- */
.prose-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.prose-cols p { font-size: 1.04rem; }
.prose-cols p:last-child { margin-bottom: 0; }

/* ---------- Social OS ---------- */
.socialos-quote {
  margin: 6px 0 48px; padding-left: 30px;
  border-left: 2px solid var(--moss); max-width: 62ch;
}
.socialos-quote p {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem); line-height: 1.38;
  color: var(--cream); margin: 0;
}
.socialos-quote em { color: var(--moss); font-style: italic; }
.socialos-support { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }
.socialos-support .col p { color: rgba(246, 239, 228, 0.82); font-size: 1.02rem; }
.socialos-support .col p:last-child { margin-bottom: 0; }
.socialos-support strong { color: var(--cream); font-weight: 600; }
.socialos-support .unlock-head { margin-bottom: 16px; }
.socialos-unlock { list-style: none; padding: 0; margin: 0; }
.socialos-unlock li {
  padding: 11px 0; border-top: 1px solid rgba(246, 239, 228, 0.16);
  color: rgba(246, 239, 228, 0.9); font-size: 1rem; line-height: 1.55;
}
.socialos-unlock li:first-child { border-top: none; padding-top: 0; }
.socialos-infra-label {
  margin-top: 60px; margin-bottom: 24px;
  font-size: 0.98rem; color: rgba(246, 239, 228, 0.72); max-width: 72ch; line-height: 1.6;
}
.socialos-infra-label strong { color: var(--cream); font-weight: 600; }
.model-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 36px; }
.pillar { border-top: 1px solid rgba(246, 239, 228, 0.25); padding-top: 24px; }
.pillar .num {
  font-family: 'Fraunces', serif; font-size: 1rem; color: var(--moss); font-weight: 600;
  display: block; margin-bottom: 12px; letter-spacing: 0.04em;
}
.pillar h3 { color: var(--cream); margin-bottom: 10px; font-size: 1.18rem; }
.pillar p { color: rgba(246, 239, 228, 0.78); font-size: 0.97rem; margin: 0; }
.socialos-signals { margin-top: 60px; padding-top: 44px; border-top: 1px solid rgba(246, 239, 228, 0.18); }
.socialos-signals h3 { color: var(--cream); margin-bottom: 6px; font-size: 1.25rem; }
.socialos-signals .sub { color: rgba(246, 239, 228, 0.68); font-size: 0.95rem; margin-bottom: 20px; }
.signal-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 44px; }
.signal-grid li {
  color: rgba(246, 239, 228, 0.88); font-size: 0.97rem; line-height: 1.55;
  padding: 9px 0; border-top: 1px solid rgba(246, 239, 228, 0.12);
}

/* ---------- The record (understated) ---------- */
.record-list { margin-top: 8px; }
.record-row {
  display: grid; grid-template-columns: 220px 1fr; gap: 36px; align-items: baseline;
  padding: 26px 0; border-top: 1px solid var(--rule);
}
.record-row:last-child { border-bottom: 1px solid var(--rule); }
.record-figure {
  font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 600;
  color: var(--forest-ink); letter-spacing: -0.01em; line-height: 1.2;
}
.record-context { font-size: 0.99rem; color: var(--ink-2); line-height: 1.6; }
.record-context strong { color: var(--forest-ink); font-weight: 600; }
.bg-forest .record-row { border-color: rgba(246,239,228,0.18); }
.bg-forest .record-figure { color: var(--cream); }
.bg-forest .record-context { color: rgba(246,239,228,0.82); }
.record-note { margin-top: 26px; font-size: 0.9rem; color: var(--muted); max-width: 70ch; }

/* ---------- Thriving Hospital model ---------- */
.brand-thriving { color: var(--terracotta); font-weight: 600; }
.thrive-arc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 30px; }
.thrive-phase-card { border-top: 2px solid var(--rule); padding-top: 26px; }
.thrive-phase-card.phase-optimize  { border-top-color: var(--sage); }
.thrive-phase-card.phase-transform { border-top-color: var(--terracotta); }
.thrive-phase-card.phase-evolve    { border-top-color: var(--forest); }
.thrive-phase-card .phase-marker {
  font-size: 0.74rem; font-weight: 600; color: var(--muted);
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 10px;
}
.thrive-phase-card .phase-title {
  font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 600;
  color: var(--forest-ink); margin-bottom: 12px; letter-spacing: -0.01em; line-height: 1.1;
}
.thrive-phase-card .phase-summary { font-size: 0.97rem; color: var(--ink-2); line-height: 1.6; }

/* ---------- Commitments ---------- */
.approach-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 30px; }
.approach-card {
  background: var(--paper); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 38px 34px;
}
.approach-card .num {
  font-family: 'Inter', sans-serif; font-size: 0.74rem; font-weight: 600;
  color: var(--muted); letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 16px; display: block;
}
.approach-card h3 { font-size: 1.4rem; margin-bottom: 14px; line-height: 1.25; }
.approach-card p { color: var(--ink-2); font-size: 1rem; margin-bottom: 18px; }
.approach-card ul { list-style: none; padding: 0; margin: 0; }
.approach-card ul li {
  padding: 11px 0; border-top: 1px solid var(--rule);
  font-size: 0.95rem; color: var(--ink-2); line-height: 1.55;
}

/* ---------- Compare ---------- */
.compare-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 30px; }
.compare-card { border-top: 1px solid var(--rule); padding-top: 24px; }
.compare-card .who {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.compare-card .sells { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 600; color: var(--forest-ink); line-height: 1.3; margin-bottom: 10px; }
.compare-card .gap { font-size: 0.96rem; color: var(--ink-2); margin: 0; line-height: 1.6; }
.compare-card.compare-us { border-top: 2px solid var(--forest); }
.compare-card.compare-us .who { color: var(--forest); }
.compare-note { margin-top: 36px; font-size: 0.94rem; color: var(--muted); max-width: 76ch; }

/* ---------- Awards ---------- */
.awards-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: end; margin-bottom: 48px; }
.awards-intro .lead { margin: 0; }
.awards-feature {
  display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center;
  background: var(--cream-soft); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 36px 40px; margin-bottom: 36px;
}
.award-medal {
  width: 84px; height: 84px; border-radius: 50%; flex-shrink: 0;
  background: var(--paper); border: 1px solid var(--rule);
  display: grid; place-items: center; color: var(--forest);
}
.awards-feature .feature-kicker {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.awards-feature h3 { font-size: 1.45rem; color: var(--forest-ink); margin-bottom: 8px; }
.awards-feature p { margin: 0; font-size: 0.97rem; color: var(--ink-2); max-width: 66ch; }
.awards-feature .earned { color: var(--forest); font-weight: 600; }
.awards-list { list-style: none; padding: 0; margin: 0; }
.awards-list li {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: baseline;
  padding: 16px 0; border-top: 1px solid var(--rule);
}
.awards-list li:last-child { border-bottom: 1px solid var(--rule); }
.awards-list .a-name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.05rem; color: var(--forest-ink); }
.awards-list .a-desc { font-size: 0.88rem; color: var(--muted); display: block; margin-top: 2px; font-family: 'Inter', sans-serif; font-weight: 400; }
.awards-list .a-by { font-size: 0.85rem; color: var(--forest); font-weight: 600; white-space: nowrap; }
.awards-more { margin-top: 32px; }

/* ---------- Fit (who we partner with) ---------- */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.fit-grid h3 { font-size: 1.2rem; margin-bottom: 18px; }
.fit-list { list-style: none; padding: 0; margin: 0; }
.fit-list li {
  padding: 13px 0; border-top: 1px solid var(--rule);
  font-size: 0.99rem; color: var(--ink-2); line-height: 1.6;
}
.fit-list li strong { color: var(--forest-ink); font-weight: 600; }

/* ---------- Leaders strip ---------- */
.leaders-strip { display: flex; flex-wrap: wrap; gap: 36px 48px; margin: 40px 0 32px; }
.leader-chip { display: flex; flex-direction: column; width: 124px; }
.leader-chip .chip-avatar {
  width: 88px; height: 88px; border-radius: 50%; overflow: hidden;
  border: 1px solid var(--rule); margin-bottom: 12px; background: var(--forest);
}
.leader-chip .chip-avatar img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.chip-avatar-initials {
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.5rem;
  color: var(--cream); background: var(--forest);
}
.leader-chip .chip-name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 0.95rem; color: var(--forest-ink); line-height: 1.3; }
.leader-chip .chip-role { font-size: 0.7rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 3px; line-height: 1.35; }

/* ---------- Team page ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.person {
  background: var(--cream-soft);
  border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 26px 22px; display: flex; flex-direction: column;
}
.avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--forest); margin-bottom: 16px;
  flex-shrink: 0; overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; filter: grayscale(100%); display: block; }
.avatar.avatar-initials {
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.15rem;
  color: var(--cream);
}
.person h3 { font-size: 1.12rem; margin-bottom: 4px; }
.person .role {
  display: inline-block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--muted); text-transform: uppercase; margin-bottom: 14px;
}
.person ul { margin: 0; padding-left: 0; list-style: none; }
.person li {
  padding: 7px 0; border-top: 1px solid var(--rule);
  font-size: 0.89rem; color: var(--ink-2); line-height: 1.5;
}

/* ---------- Extended-team note (team grid) ---------- */
.network-card {
  grid-column: span 2;
  background: var(--forest); border: 1px solid var(--forest);
  border-radius: var(--radius); padding: 30px 30px;
  display: flex; flex-direction: column; justify-content: center;
}
.network-card .role {
  display: inline-block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 12px;
}
.network-card p {
  font-family: 'Fraunces', serif; font-size: 1.18rem; font-weight: 500;
  line-height: 1.5; color: var(--cream); margin: 0;
}
@media (max-width: 960px) { .network-card { grid-column: span 2; } }
@media (max-width: 560px) { .network-card { grid-column: span 1; } }

/* ---------- Closing band (quiet CTA) ---------- */
.closing { background: var(--forest-deep); color: var(--cream); padding: clamp(64px, 8vw, 104px) 0; }
.closing .closing-inner { max-width: 760px; }
.closing .eyebrow { color: var(--moss); }
.closing .eyebrow::before { background: var(--moss); }
.closing h2 { color: var(--cream); margin-bottom: 18px; }
.closing p { color: rgba(246, 239, 228, 0.82); font-size: 1.08rem; max-width: 60ch; margin-bottom: 30px; }
.closing .email-line { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 600; }
.closing .email-line a { color: var(--cream); border-bottom: 1px solid rgba(246,239,228,0.4); padding-bottom: 2px; }
.closing .email-line a:hover { text-decoration: none; border-bottom-color: var(--cream); }
.closing .closing-links { margin-top: 26px; display: flex; gap: 28px; flex-wrap: wrap; }
.closing .closing-links a { color: var(--moss); font-weight: 600; font-size: 0.95rem; }

/* ---------- Contact ---------- */
.acq-team { display: flex; flex-wrap: wrap; gap: 44px; margin: 48px 0 40px; }
.acq-person { display: flex; flex-direction: column; gap: 12px; width: 140px; }
.acq-avatar { width: 108px; height: 108px; border-radius: 50%; overflow: hidden; border: 1px solid rgba(246, 239, 228, 0.3); background: var(--forest-deep); }
.acq-avatar img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); display: block; }
.acq-name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.02rem; color: var(--cream); }

/* ---------- Footer ---------- */
footer {
  background: var(--forest-ink); color: rgba(246, 239, 228, 0.65);
  padding: 40px 0 30px; font-size: 0.88rem;
}
.foot-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.foot-links { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-links a { color: rgba(246, 239, 228, 0.7); }
.foot-links a:hover { color: var(--moss); }

/* ---------- Page intro ---------- */
.page-intro { padding: clamp(56px, 7vw, 92px) 0 clamp(36px, 4vw, 56px); }
.page-intro h1 { max-width: 24ch; }
.page-intro .lead { margin-top: 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .prose-cols, .socialos-support, .awards-intro, .fit-grid { grid-template-columns: 1fr; gap: 36px; }
  .approach-grid, .compare-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .model-pillars, .thrive-arc { grid-template-columns: 1fr; gap: 28px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.mobile-show { display: flex; flex-direction: column; position: absolute; top: 64px; right: 16px; background: var(--cream); padding: 20px; border-radius: var(--radius); box-shadow: var(--shadow); gap: 16px; }
  .nav-links a.nav-active::after { display: none; }
  .awards-feature { grid-template-columns: 1fr; gap: 20px; padding: 30px 28px; }
  .record-row { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 800px) {
  .signal-grid { grid-template-columns: 1fr; gap: 0; }
  .awards-list li { grid-template-columns: 1fr; gap: 6px; }
  .awards-list .a-by { white-space: normal; }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; }
}
