/* ============================================================
   Marigold Health Navigators — theme
   Warm editorial · survivor-led · medically credible
   Fraunces (display) + Source Sans 3 (body)
   ============================================================ */

:root {
  --ground: #FBF6EE;
  --ground-2: #F5EBDB;
  --panel: #FFFDF8;
  --ink: #3B3430;
  --ink-2: #6C6055;
  --accent: #C4761B;
  --accent-ink: #8A5314;
  --accent-soft: #F6E3C8;
  --deep: #4C3543;
  --deep-ink: #FBF6EE;
  --deep-ink-2: #CDB9C2;
  --line: #E8DCC6;
  --plum: #63424F;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", -apple-system, "Segoe UI", sans-serif;

  --radius-sm: 5px;
  --radius: 10px;
  --radius-lg: 18px;
}

h1, h2 {
  font-weight: 550;
  letter-spacing: -0.01em;
}

/* ---------- Hero ---------- */

.mg-hero {
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
  overflow: hidden;
}

.mg-hero .container {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

@media (max-width: 56rem) {
  .mg-hero .container {
    grid-template-columns: 1fr;
  }
}

.mg-hero h1 {
  margin-bottom: var(--s-5);
}

.mg-hero .lede {
  margin-bottom: var(--s-6);
}

.mg-hero__art {
  position: relative;
}

.mg-hero__arcs {
  position: absolute;
  top: -12%;
  right: -14%;
  width: 78%;
  z-index: 0;
  pointer-events: none;
}

.mg-hero__art .ph {
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-2);
}

@media (max-width: 56rem) {
  .mg-hero__art {
    max-width: 26rem;
  }
}

/* ---------- Founder story ---------- */

.mg-story-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

@media (max-width: 56rem) {
  .mg-story-grid {
    grid-template-columns: 1fr;
  }
}

.mg-story__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: var(--fs-xl);
  line-height: 1.35;
  color: var(--plum);
  border: none;
  margin: 0 0 var(--s-5);
  padding: 0;
}

.mg-story__quote::before {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3px;
  background: var(--accent);
  margin-bottom: var(--s-5);
}

.mg-story__attr {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ink);
}

.mg-story__attr small {
  display: block;
  font-weight: 400;
  color: var(--ink-2);
}

.mg-story__body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  font-weight: 600;
  float: left;
  line-height: 0.82;
  padding-right: 0.12em;
  color: var(--accent-ink);
}

/* ---------- Mission panel ---------- */

.mg-mission {
  background: var(--plum);
  color: #FBF6EE;
  padding-block: clamp(3.5rem, 6vw, 6rem);
}

.mg-mission .container {
  max-width: 52rem;
  text-align: center;
}

.mg-mission .eyebrow {
  color: #E3C9A8;
}

.mg-mission p {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 450;
  line-height: 1.4;
  color: #FBF6EE;
  margin: 0;
  text-wrap: balance;
}

/* ---------- Program cards ---------- */

.mg-program {
  position: relative;
}

.mg-program__glyph {
  width: 3rem;
  height: 3rem;
  margin-bottom: var(--s-4);
}

.mg-program h3 {
  color: var(--ink);
}

.mg-program ul {
  padding-left: 1.1em;
  margin: var(--s-3) 0 0;
  color: var(--ink-2);
  font-size: var(--fs-sm);
}

.mg-program li {
  margin-bottom: var(--s-2);
}

/* ---------- Promise line ---------- */

.mg-promise {
  background: var(--accent-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-lg);
  color: var(--ink);
  text-align: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

/* ---------- Impact ---------- */

.mg-impact .stat {
  border-top-color: var(--accent);
}

/* ---------- Help panels ---------- */

.mg-help {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

@media (max-width: 52rem) {
  .mg-help { grid-template-columns: 1fr; }
}

.mg-help__panel {
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.75rem);
}

.mg-help__panel--donate {
  background: var(--deep);
  color: var(--deep-ink);
}

.mg-help__panel--donate h3 {
  color: var(--deep-ink);
  font-size: var(--fs-xl);
}

.mg-help__panel--donate p {
  color: var(--deep-ink-2);
}

.mg-help__panel--volunteer {
  background: var(--panel);
  border: 1px solid var(--line);
}

.mg-help__panel--volunteer h3 {
  font-size: var(--fs-xl);
}

.mg-anchors {
  list-style: none;
  padding: 0;
  margin: var(--s-5) 0;
}

.mg-anchors li {
  display: flex;
  gap: var(--s-4);
  align-items: baseline;
  padding-block: var(--s-3);
  border-bottom: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  font-size: var(--fs-sm);
}

.mg-anchors li:last-child {
  border-bottom: none;
}

.mg-anchors strong {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  min-width: 4.2rem;
  color: var(--accent);
}

.mg-help__panel--volunteer .mg-anchors strong {
  color: var(--accent-ink);
}
