/* ============================================================
   VIBRANT HEALTH ADVOCATES – HERMES
   Design: Warm & Human Community — scrapbook, polaroid, cozy
   ============================================================ */

/* === TOKENS === */
:root {
  --cream:          #FDF6E9;
  --cream-dark:     #F0E2C8;
  --cream-mid:      #F7EDD8;
  --terracotta:     #C4622D;
  --terracotta-lt:  #D97A4A;
  --terracotta-pale:#FAE8DC;
  --brand:          #7B2D8B;
  --brand-light:    #F0D9F5;
  --brand-mid:      #9B4DAB;
  --earth:          #7A5230;
  --earth-light:    #C49A6C;
  --dark:           #2C1A0E;
  --mid:            #6B4020;
  --text:           #3D2010;
  --white:          #FFFEF9;
  --shadow-sm:      0 4px 16px rgba(44,26,14,.10);
  --shadow-md:      0 8px 32px rgba(44,26,14,.14);
  --shadow-lg:      0 16px 56px rgba(44,26,14,.18);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.78;
  font-size: 1.05rem;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-weight: 900;
  line-height: 1.18;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.55rem); }
h4 { font-size: 1rem; }

/* === LAYOUT === */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5.5rem 0; }
.section--sm{ padding: 3.5rem 0; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--cream);
  border-bottom: 2.5px dotted var(--earth-light);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  text-decoration: none;
}
.brand-lockup .logo-icon  { width: 46px;  height: 46px;  object-fit: contain; }
.brand-lockup .wordmark   { height: 34px; object-fit: contain; max-width: 210px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-nav a {
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  transition: background .2s, color .2s;
  color: var(--dark);
}
.site-nav a:hover,
.site-nav a.active { background: var(--brand-light); color: var(--brand); }
.site-nav a.nav-cta {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 2px 10px rgba(196,98,45,.3);
}
.site-nav a.nav-cta:hover { background: var(--terracotta-lt); }

/* ============================================================
   HERO (homepage full-bleed)
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  height: 700px;
  overflow: hidden;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(44,26,14,.72) 0%,
    rgba(44,26,14,.38) 55%,
    rgba(44,26,14,.05) 100%
  );
}
.hero__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  /* push content into upper portion — bottom 180px reserved for pull-up card */
  padding: 0 1.5rem 180px;
}
.hero__content {
  max-width: 640px;
  margin-left: max(1.5rem, calc(50% - 560px));
}
.hero__pill {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.hero__title {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.13;
  margin-bottom: 1rem;
  text-shadow: 0 3px 12px rgba(0,0,0,.35);
}
.hero__sub {
  color: rgba(255,255,255,.91);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 540px;
}

/* Pull-up card overlapping hero bottom */
.pullup-wrap {
  position: relative;
  z-index: 10;
  margin-top: -130px;
  padding-bottom: 1rem;
}
.pullup-card {
  background: var(--white);
  border-radius: 28px;
  padding: 2.75rem 3.25rem;
  box-shadow: var(--shadow-lg);
  max-width: 920px;
  margin: 0 auto;
  border: 2px solid rgba(255,255,255,.8);
}

/* ============================================================
   SQUIGGLE DIVIDER
   ============================================================ */
.squiggle { text-align: center; line-height: 0; margin: 0.25rem 0; }

/* ============================================================
   IMPACT BAR
   ============================================================ */
.impact-bar {
  background: var(--terracotta);
  color: #fff;
  padding: 2.75rem 1.5rem;
}
.impact-inner {
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}
.impact-stat { text-align: center; }
.impact-stat__num {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
}
.impact-stat__label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  opacity: .88;
  margin-top: .35rem;
  letter-spacing: .03em;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.eyebrow {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: .7rem;
}
.section-header p {
  max-width: 640px;
  margin: .75rem auto 0;
  color: var(--mid);
  font-size: 1.05rem;
}

/* ============================================================
   POLAROID CARDS
   ============================================================ */
.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2.75rem 2.25rem;
  align-items: start;
}
/* stagger rows */
.polaroid-grid .pol:nth-child(2) { margin-top: 2.5rem; }
.polaroid-grid .pol:nth-child(3) { margin-top: 1.25rem; }

.pol {
  background: var(--white);
  padding: 13px 13px 52px;
  border-radius: 6px;
  box-shadow: 6px 9px 28px rgba(44,26,14,.15);
  transition: transform .3s ease, box-shadow .3s ease;
  display: block;
}
.pol:nth-child(odd)  { transform: rotate(-2.4deg); }
.pol:nth-child(even) { transform: rotate(2.1deg); }
.pol:nth-child(3n)   { transform: rotate(-1.2deg); }
.pol:hover {
  transform: rotate(0deg) scale(1.03) !important;
  box-shadow: 8px 14px 40px rgba(44,26,14,.22);
}
.pol__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.pol__cap {
  padding: .8rem .4rem 0;
  text-align: center;
}
.pol__icon  { font-size: 1.55rem; display: block; margin-bottom: .3rem; }
.pol__title { font-weight: 900; font-size: 1rem; color: var(--dark); margin-bottom: .3rem; }
.pol__blurb { font-size: .88rem; color: var(--mid); line-height: 1.6; }

/* ============================================================
   HIGHLIGHT CARDS (no photo)
   ============================================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}
/* stagger */
.highlights-grid .hl:nth-child(2) { margin-top: 2rem; }
.highlights-grid .hl:nth-child(3) { margin-top: 1rem; }

.hl {
  background: var(--white);
  border-radius: 22px;
  padding: 2rem 1.75rem;
  border: 2px dotted var(--earth-light);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.hl__icon  { font-size: 2.2rem; display: block; margin-bottom: .85rem; }
.hl__title { font-weight: 900; font-size: 1.15rem; margin-bottom: .55rem; color: var(--dark); }
.hl__blurb { font-size: .93rem; color: var(--mid); line-height: 1.72; }

/* ============================================================
   STAMP BADGE
   ============================================================ */
.stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border: 3px dashed var(--brand);
  background: var(--brand-light);
  color: var(--brand);
  font-weight: 900;
  font-size: .7rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.4;
  padding: .75rem;
  transform: rotate(-10deg);
  box-shadow: 2px 4px 16px rgba(123,45,139,.22);
  flex-shrink: 0;
}

/* ============================================================
   FULL-BLEED PHOTO SECTION (inner pages)
   ============================================================ */
.photo-band {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.photo-band__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.photo-band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,26,14,.52);
}
.photo-band__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 5rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.photo-band__content h2 { color: #fff; margin-bottom: .85rem; }
.photo-band__content p  { opacity: .9; font-size: 1.05rem; line-height: 1.75; }

/* ============================================================
   PAGE HERO (inner pages — gradient, no photo)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--terracotta-pale) 0%, var(--brand-light) 100%);
  padding: 5rem 1.5rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(123,45,139,.08);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(196,98,45,.07);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: .6rem; }
.page-hero h1       { margin-bottom: .85rem; }
.page-hero .lead    {
  font-size: 1.12rem;
  color: var(--mid);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================================
   PROGRAMME CARDS
   ============================================================ */
.prog-list { display: flex; flex-direction: column; gap: 2.5rem; }

.prog-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.prog-card--rev .prog-card__img-wrap { order: 2; }
.prog-card--rev .prog-card__body     { order: 1; }
.prog-card__img-wrap { overflow: hidden; min-height: 320px; }
.prog-card__img { width: 100%; height: 100%; object-fit: cover; }
.prog-card__body {
  padding: 2.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.prog-card__icon  { font-size: 2.2rem; display: block; margin-bottom: .75rem; }
.prog-card__title { font-weight: 900; font-size: 1.4rem; margin-bottom: .6rem; color: var(--dark); }
.prog-card__blurb { color: var(--mid); font-size: .95rem; margin-bottom: 1rem; line-height: 1.72; }
.prog-card__detail{ font-size: .93rem; color: var(--text); line-height: 1.78; }

/* ============================================================
   WAYS / GET INVOLVED CARDS
   ============================================================ */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}
.ways-grid .way:nth-child(2) { margin-top: 2rem; }

.way {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  border: 2.5px dotted var(--brand-light);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.way__icon  { font-size: 2.5rem; display: block; margin-bottom: .85rem; }
.way__title { font-weight: 900; font-size: 1.25rem; margin-bottom: .6rem; color: var(--dark); }
.way__blurb { font-size: .93rem; color: var(--mid); line-height: 1.75; }

/* ============================================================
   ARTICLE CARDS (blog)
   ============================================================ */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  align-items: start;
}
.article-grid .art-card:nth-child(2) { margin-top: 2rem; }

.art-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .3s, box-shadow .3s;
  display: block;
  color: inherit;
}
.art-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}
.art-card__img-wrap { height: 210px; overflow: hidden; }
.art-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.art-card:hover .art-card__img { transform: scale(1.04); }
.art-card__body { padding: 1.6rem 1.5rem; }
.art-card__tag  {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
  border-radius: 999px;
  padding: .15rem .7rem;
  margin-bottom: .75rem;
}
.art-card__title {
  font-weight: 900;
  font-size: 1.07rem;
  color: var(--dark);
  margin-bottom: .4rem;
  line-height: 1.3;
}
.art-card__dek {
  font-size: .88rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.art-card__link {
  font-weight: 800;
  font-size: .88rem;
  color: var(--terracotta);
}
.art-card__link::after { content: ' →'; }

/* ============================================================
   ARTICLE PAGE (full article)
   ============================================================ */
.article-header {
  max-width: 760px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 2rem;
  text-align: center;
}
.article-header .eyebrow { margin-bottom: .9rem; }
.article-header h1 { margin-bottom: .9rem; line-height: 1.18; }
.article-header .dek {
  font-size: 1.12rem;
  color: var(--mid);
  line-height: 1.75;
}
.article-hero-img {
  width: calc(100% - 3rem);
  max-width: 900px;
  margin: 2rem auto 3rem;
  border-radius: 28px;
  height: 440px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  display: block;
}

/* ============================================================
   PROSE
   ============================================================ */
.prose {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}
.prose p { margin-bottom: 1.6rem; font-size: 1.06rem; line-height: 1.88; }
.prose p:last-child { margin-bottom: 0; }
.prose h2 { margin: 2.75rem 0 1rem; }
.prose h3 { margin: 2.25rem 0 .75rem; }

/* ============================================================
   ABOUT PHOTO SPLIT
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-split__img {
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transform: rotate(-2deg);
  border: 10px solid var(--white);
}
.about-split__img--right { transform: rotate(2deg); }
.about-split__text h2 { margin-bottom: 1.25rem; }
.about-split__text p  { color: var(--mid); margin-bottom: 1.1rem; line-height: 1.82; }

/* ============================================================
   MISSION BOX
   ============================================================ */
.mission-box {
  background: linear-gradient(135deg, var(--terracotta-pale) 0%, var(--brand-light) 100%);
  border-radius: 28px;
  padding: 3rem 3.5rem;
  border-left: 6px solid var(--terracotta);
  position: relative;
  overflow: hidden;
}
.mission-box::before {
  content: '\201C';
  position: absolute;
  top: -.5rem; left: 1.5rem;
  font-size: 8rem;
  color: var(--terracotta);
  opacity: .12;
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
}
.mission-box p { font-size: 1.08rem; line-height: 1.85; color: var(--text); }

/* ============================================================
   TRUSTEE CARDS
   ============================================================ */
.trustee-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trustee-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.75rem 2rem;
  text-align: center;
  border: 2px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  min-width: 180px;
}
.trustee-card__av {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--brand-light);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.trustee-card__name { font-weight: 900; color: var(--dark); margin-bottom: .25rem; }
.trustee-card__role { font-size: .85rem; color: var(--terracotta); font-weight: 700; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.25rem; }
.contact-info p  { color: var(--mid); margin-bottom: 1rem; line-height: 1.78; }
.contact-info a  { color: var(--terracotta); font-weight: 700; word-break: break-all; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.contact-detail__item {
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  border: 2px dotted var(--earth-light);
}
.contact-detail__label {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--terracotta);
  display: block;
  margin-bottom: .35rem;
}
.contact-detail__val { font-size: .95rem; color: var(--text); line-height: 1.65; }
.contact-detail__val a { color: var(--brand); font-weight: 600; }

.contact-form {
  background: var(--white);
  border-radius: 28px;
  padding: 2.75rem 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { margin-bottom: 1.5rem; }
.fg { margin-bottom: 1.4rem; }
.fg label {
  display: block;
  font-weight: 800;
  font-size: .9rem;
  margin-bottom: .4rem;
  color: var(--dark);
}
.fg input, .fg textarea, .fg select {
  width: 100%;
  padding: .8rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 14px;
  background: var(--cream);
  font-family: inherit;
  font-size: .98rem;
  color: var(--text);
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  outline: none;
  border-color: var(--brand);
}
.fg textarea { min-height: 140px; resize: vertical; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: .85rem 2.25rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: all .25s;
  font-family: inherit;
  line-height: 1;
}
.btn--terra {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 4px 18px rgba(196,98,45,.35);
}
.btn--terra:hover {
  background: var(--terracotta-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,98,45,.4);
}
.btn--brand {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 18px rgba(123,45,139,.35);
}
.btn--brand:hover {
  background: var(--brand-mid);
  transform: translateY(-2px);
}
.btn--white {
  background: #fff;
  color: var(--terracotta);
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
}
.btn--white:hover { background: var(--cream); transform: translateY(-2px); }
.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2.5px solid rgba(255,255,255,.6);
}
.btn--outline-white:hover { background: rgba(255,255,255,.1); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-band {
  background: linear-gradient(130deg, var(--terracotta) 0%, var(--brand) 100%);
  padding: 6rem 1.5rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -70px; right: -70px;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -90px; left: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.cta-band__inner { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: .85rem; }
.cta-band p  { opacity: .9; font-size: 1.08rem; max-width: 560px; margin: 0 auto 2.25rem; line-height: 1.75; }
.cta-band .btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   DOTTED BOX
   ============================================================ */
.dotted-box {
  border: 2.5px dotted var(--earth-light);
  border-radius: 22px;
  padding: 2rem 2.25rem;
}

/* ============================================================
   INTRO TEXT (centred prose)
   ============================================================ */
.intro-prose {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.intro-prose p { color: var(--mid); font-size: 1.08rem; line-height: 1.85; }

/* ============================================================
   STORY / BODY TEXT (left-aligned wide prose)
   ============================================================ */
.body-prose p { color: var(--mid); font-size: 1.06rem; line-height: 1.85; margin-bottom: 1.5rem; }
.body-prose p:last-child { margin-bottom: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.82);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .brand-lockup { margin-bottom: 1rem; }
.footer-brand .wordmark { filter: brightness(0) invert(1); }
.footer-brand p {
  font-size: .88rem;
  line-height: 1.72;
  color: rgba(255,255,255,.62);
}
.footer-nav h4, .footer-contact h4 {
  color: #fff;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1rem;
  font-weight: 800;
}
.footer-nav li { margin-bottom: .45rem; }
.footer-nav a  { color: rgba(255,255,255,.65); font-size: .88rem; transition: color .2s; }
.footer-nav a:hover { color: var(--terracotta-lt); }
.footer-contact p  { font-size: .85rem; color: rgba(255,255,255,.65); margin-bottom: .65rem; line-height: 1.6; }
.footer-contact a  { color: #E8A87A; word-break: break-all; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.42);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .about-split  { grid-template-columns: 1fr; }
  .about-split__img { transform: none; margin: 0 auto; max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .prog-card    { grid-template-columns: 1fr; }
  .prog-card--rev .prog-card__img-wrap { order: 0; }
  .prog-card--rev .prog-card__body     { order: 0; }
  .prog-card__img-wrap { min-height: 240px; }
}

@media (max-width: 720px) {
  .hero__inner  { height: 560px; }
  .hero__text   { padding-bottom: 120px; }
  .pullup-wrap  { margin-top: -80px; }
  .pullup-card  { padding: 2rem 1.5rem; }
  .section      { padding: 3.5rem 0; }
  .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .impact-inner { gap: 2.5rem; }
  .mission-box  { padding: 2rem; }
  .cta-band     { padding: 4rem 1.5rem; }
  .article-hero-img { height: 280px; }
  .polaroid-grid .pol:nth-child(2),
  .polaroid-grid .pol:nth-child(3),
  .highlights-grid .hl:nth-child(2),
  .highlights-grid .hl:nth-child(3),
  .ways-grid .way:nth-child(2),
  .article-grid .art-card:nth-child(2) { margin-top: 0; }
}

@media (max-width: 520px) {
  .hero__inner  { height: 480px; }
  .site-nav a   { font-size: .8rem; padding: .3rem .65rem; }
  .brand-lockup .wordmark { max-width: 150px; height: 28px; }
  .brand-lockup .logo-icon{ width: 38px; height: 38px; }
}
