/* ================================================================
   Vibrant Health Advocates – Caldera · style.css
   Design archetype: Warm & Human Community
   ================================================================ */

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

/* ---- DESIGN TOKENS ---- */
:root {
  --cream:           #FAF6F0;
  --cream-card:      #FFF9F2;
  --cream-border:    #EDD9BE;
  --terracotta:      #C4622D;
  --terracotta-lit:  #D97F52;
  --terracotta-pale: #F5DDD0;
  --purple:          #7B2D8B;
  --purple-light:    #F0D9F5;
  --purple-mid:      #B57CC5;
  --text-dark:       #2C1A0E;
  --text-mid:        #5C3520;
  --text-muted:      #9B7B65;
  --shadow-card:     4px 8px 28px rgba(44,26,14,.15);
  --shadow-soft:     2px 4px 14px rgba(44,26,14,.08);
  --r-photo:         24px;
  --r-card:          16px;
}

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

body {
  font-family: ui-rounded, 'Trebuchet MS', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.78;
  overflow-x: hidden;
}

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

a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }

p { margin-bottom: 1.15em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; color: var(--text-dark); }
h1 { font-size: clamp(1.85rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.45rem, 3.5vw, 2.35rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.45rem); }
h4 { font-size: 1rem; }

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

/* ---- TYPOGRAPHY UTILS ---- */
.section-label {
  display: block;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: .6rem;
}

.section-title { margin-bottom: .6rem; }

.section-sub {
  color: var(--text-muted);
  max-width: 580px;
  font-size: 1.05rem;
  margin-bottom: 2.8rem;
}

.centered            { text-align: center; }
.centered .section-sub { margin-left: auto; margin-right: auto; }

.lead { font-size: 1.15rem; line-height: 1.8; color: var(--text-mid); }

/* ---- NAVIGATION ---- */
.site-nav {
  background: var(--cream);
  border-bottom: 2px solid var(--cream-border);
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem 1.5rem;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none !important;
  flex-shrink: 0;
}

.brand-lockup .logo-icon  { height: 42px; width: auto; }
.brand-lockup .wordmark   { height: 30px; width: auto; max-width: 220px; }

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

.nav-links a {
  display: block;
  padding: .42rem .85rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  color: var(--text-mid);
  white-space: nowrap;
  transition: background .18s, color .18s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--purple-light);
  color: var(--purple);
  text-decoration: none;
}

.nav-links a.nav-cta {
  background: var(--terracotta);
  color: #fff !important;
  padding: .42rem 1.1rem;
}

.nav-links a.nav-cta:hover {
  background: var(--purple);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--cream-border);
  border-radius: 8px;
  padding: .35rem .65rem;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--text-mid);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-start;
  padding: 5rem 1.5rem 130px;
  overflow: hidden;
}

@media (min-width: 900px) {
  .hero { padding-left: max(1.5rem, calc((100vw - 1160px) / 2 + 1.5rem)); }
  .hero-content { margin: 0; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0 0 56px 56px;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(44,26,14,.72) 0%, rgba(44,26,14,.45) 52%, rgba(44,26,14,.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: .3rem 1rem;
  margin-bottom: 1.2rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
}

.hero-sub {
  color: rgba(255,255,255,.9);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 560px;
}

.hero-btns {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- PULL-UP STATS CARD ---- */
.pullup-wrapper {
  margin-top: -85px;
  position: relative;
  z-index: 5;
  padding: 0 1.5rem;
}

.pullup-card {
  max-width: 1160px;
  margin: 0 auto;
  background: var(--cream-card);
  border-radius: var(--r-card);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--cream-border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
}

.pullup-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 5px;
  border-radius: 3px;
  background: var(--terracotta);
}

.stat-block {
  text-align: center;
  padding: 1rem .5rem;
  border-right: 2px dotted var(--cream-border);
}

.stat-block:last-child { border-right: none; }

.stat-num {
  display: block;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: .4rem;
}

.stat-label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-mid);
  display: block;
}

/* ---- SQUIGGLE DECORATION ---- */
.squiggle-inline {
  display: flex;
  justify-content: center;
  margin: 2.2rem auto;
  max-width: 420px;
  padding: 0 1rem;
}

.squiggle-inline svg { display: block; width: 100%; height: auto; }

/* ---- BAND BACKGROUNDS ---- */
.band-cream         { background: var(--cream); }
.band-card          { background: var(--cream-card); }
.band-terra-pale    { background: var(--terracotta-pale); }
.band-purple-light  { background: var(--purple-light); }

.band-dark {
  background: var(--text-dark);
  color: rgba(250,246,240,.85);
}

.band-dark h1,
.band-dark h2,
.band-dark h3 { color: var(--cream); }

.band-terracotta {
  background: var(--terracotta);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.band-terracotta::before {
  content: '';
  position: absolute;
  top: -70px; left: -70px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  pointer-events: none;
}

.band-terracotta::after {
  content: '';
  position: absolute;
  bottom: -90px; right: -50px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}

.band-terracotta h2,
.band-terracotta h3 { color: #fff; }
.band-terracotta p  { color: rgba(255,255,255,.9); }

/* ---- SPLIT LAYOUT ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.split.reverse-order .split-photo { order: -1; }

.split-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--r-photo);
  box-shadow: var(--shadow-card);
}

.split-photo.tilted         img { transform: rotate(-1.5deg); }
.split-photo.tilted-right   img { transform: rotate( 1.5deg); }

/* ---- HIGHLIGHT CARDS (staggered) ---- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.highlight-card {
  background: var(--cream-card);
  border-radius: var(--r-card);
  padding: 2rem 1.8rem 1.8rem;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--cream-border);
  position: relative;
}

.highlight-card::after {
  content: '';
  display: block;
  height: 4px;
  border-radius: 2px;
  background: var(--terracotta);
  margin-top: 1.2rem;
}

.highlight-card:nth-child(2) { margin-top: 2.5rem; }
.highlight-card:nth-child(3) { margin-top: 1.2rem; }

.highlight-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: .8rem;
}

.highlight-card h3 { color: var(--terracotta); margin-bottom: .6rem; }

/* ---- PROGRAMME CARDS ---- */
.programme-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.programme-card {
  background: var(--cream-card);
  border-radius: var(--r-card);
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--cream-border);
  border-top: 5px solid var(--terracotta);
  position: relative;
  overflow: hidden;
}

.programme-card:nth-child(even) {
  border-top-color: var(--purple);
  margin-top: 2rem;
}

.programme-card::before {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--terracotta-pale);
  opacity: .45;
}

.programme-card:nth-child(even)::before { background: var(--purple-light); }

.programme-icon { font-size: 2.2rem; display: block; margin-bottom: .8rem; }
.programme-card h3 { color: var(--terracotta); margin-bottom: .5rem; }
.programme-card:nth-child(even) h3 { color: var(--purple); }
.prog-blurb  { font-weight: 600; margin-bottom: .8rem; }
.prog-detail { font-size: .92rem; color: var(--text-mid); line-height: 1.75; }

/* ---- WAY CARDS (get-involved) ---- */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.way-card {
  background: var(--cream-card);
  border-radius: var(--r-card);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--cream-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.way-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  border-radius: var(--r-card) var(--r-card) 0 0;
  background: var(--terracotta);
}

.way-card:nth-child(2)         { margin-top: 2rem; }
.way-card:nth-child(2)::before { background: var(--purple); }
.way-card:nth-child(3)::before { background: var(--terracotta-lit); }

.way-icon { font-size: 2.8rem; display: block; margin-bottom: .8rem; }
.way-card h3 { margin-bottom: .6rem; }

/* ---- TRUSTEE CARDS ---- */
.trustee-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.trustee-card {
  background: var(--cream-card);
  border: 2px dotted var(--purple-mid);
  border-radius: var(--r-card);
  padding: 1.6rem 2rem;
  text-align: center;
  flex: 0 1 200px;
  min-width: 160px;
}

.trustee-card h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.trustee-role { font-size: .88rem; font-weight: 600; color: var(--purple); margin: 0; }

/* ---- POLAROID CARDS ---- */
.polaroid-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1.5rem 0 2.5rem;
}

.polaroid {
  background: var(--cream-card);
  padding: 10px 10px 46px;
  box-shadow: 4px 8px 26px rgba(44,26,14,.19), 0 1px 4px rgba(44,26,14,.08);
  border-radius: 4px;
  flex: 0 0 260px;
  max-width: 260px;
  position: relative;
  transition: transform .25s;
}

.polaroid:hover { transform: rotate(0deg) scale(1.03) !important; }

.polaroid:nth-child(1) { transform: rotate(-3deg); }
.polaroid:nth-child(2) { transform: rotate(2.2deg); margin-top: 1.8rem; }
.polaroid:nth-child(3) { transform: rotate(-1.5deg); margin-top: .5rem; }

.polaroid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--r-photo);
  display: block;
}

.polaroid-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.35;
}

/* ---- STAMP BADGE ---- */
.stamp-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.stamp-badge {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 3px dashed var(--purple);
  background: var(--purple-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  position: relative;
}

.stamp-badge::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1.5px dotted var(--purple-mid);
}

.stamp-badge .stamp-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.stamp-badge .stamp-text {
  font-size: .62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--purple);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

/* ---- BLOG / ARTICLE CARDS ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.blog-card {
  background: var(--cream-card);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--cream-border);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 6px 16px 36px rgba(44,26,14,.19);
}

.blog-card:nth-child(2) { margin-top: 2.5rem; }
.blog-card:nth-child(3) { margin-top: 1rem; }

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--r-photo) var(--r-photo) 0 0;
}

.blog-card-body {
  padding: 1.5rem 1.5rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: .55rem;
  line-height: 1.35;
}

.blog-dek {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.2rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: .95rem;
  text-decoration: none !important;
  transition: all .2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
  line-height: 1;
}

.btn-terra {
  background: var(--terracotta);
  color: #fff;
}
.btn-terra:hover { background: #a84e22; color: #fff; }

.btn-purple {
  background: var(--purple);
  color: #fff;
}
.btn-purple:hover { background: #5f2069; color: #fff; }

.btn-white {
  background: #fff;
  color: var(--terracotta);
}
.btn-white:hover { background: var(--cream); color: var(--terracotta); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2.5px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); color: #fff; }

.btn-sm { padding: .55rem 1.25rem; font-size: .85rem; }

/* ---- CTA BAND ---- */
.cta-band {
  padding: 5rem 0;
  text-align: center;
}

.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band .cta-sub {
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--terracotta-pale);
  border-radius: 0 0 48px 48px;
  padding: 3.5rem 1.5rem 3rem;
  text-align: center;
}

.page-hero h1         { margin-bottom: .7rem; }
.page-hero .page-sub  { color: var(--text-mid); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ---- PHOTO FULL-BLEED ---- */
.full-photo-wrap { padding: 0 1.5rem; max-width: 1160px; margin: 0 auto; }

.full-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--r-photo);
  box-shadow: var(--shadow-card);
  display: block;
}

/* ---- CONTACT ---- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 { margin-bottom: 1rem; }

.contact-email {
  display: block;
  word-break: break-all;
  color: var(--purple);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .4rem;
}

.contact-form-wrap {
  background: var(--cream-card);
  border-radius: var(--r-card);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--cream-border);
}

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

.form-group label {
  display: block;
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: .4rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--cream-border);
  border-radius: 12px;
  font-size: .95rem;
  font-family: inherit;
  background: var(--cream);
  color: var(--text-dark);
  transition: border-color .2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--purple-mid);
}

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

/* ---- PULL QUOTE ---- */
.pull-quote {
  border-left: 5px solid var(--terracotta);
  background: var(--terracotta-pale);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  padding: 1.3rem 1.8rem;
  margin: 2rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ---- ARTICLE PAGE ---- */
.article-header-band {
  background: var(--terracotta-pale);
  border-radius: 0 0 48px 48px;
  padding: 3.5rem 1.5rem 2.5rem;
}

.article-header-inner { max-width: 780px; margin: 0 auto; }

.article-tag {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: .3rem 1rem;
  margin-bottom: 1.2rem;
}

.article-header-band h1 { margin-bottom: .8rem; }

.article-dek {
  font-size: 1.15rem;
  color: var(--text-mid);
  font-weight: 500;
  line-height: 1.65;
}

.article-hero-wrap {
  max-width: 780px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
}

.article-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--r-photo);
  box-shadow: var(--shadow-card);
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem 1.5rem 5rem;
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 1.5em;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--purple);
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 2rem;
}

.article-back:hover { text-decoration: underline; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--text-dark);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand { display: flex; flex-direction: column; gap: .3rem; }

.footer-lockup {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none !important;
  margin-bottom: .5rem;
}

.footer-lockup .logo-icon { height: 40px; width: auto; }

.footer-lockup .wordmark {
  height: 26px;
  width: auto;
  filter: invert(1) brightness(10);
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(250,246,240,.6);
  margin-bottom: .8rem;
}

.footer-emails { display: flex; flex-direction: column; gap: .3rem; }

.footer-emails a {
  font-size: .8rem;
  color: var(--purple-light);
  word-break: break-all;
  font-weight: 600;
}

.footer-emails a:hover { color: #fff; text-decoration: none; }

.footer-col h4 {
  color: rgba(250,246,240,.45);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a  { font-size: .88rem; color: rgba(250,246,240,.7); }
.footer-col a:hover { color: var(--cream); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(250,246,240,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(250,246,240,.35);
  margin: 0;
}

/* ---- DOTTED ACCENT BOX ---- */
.dotted-box {
  border: 2px dotted var(--terracotta-lit);
  border-radius: var(--r-card);
  padding: 1.8rem 2rem;
}

/* ---- MISSION CALLOUT ---- */
.mission-callout {
  background: var(--purple-light);
  border-radius: var(--r-card);
  padding: 2.5rem 3rem;
  border: 2px solid var(--purple-mid);
  position: relative;
  overflow: hidden;
}

.mission-callout::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  font-size: 8rem;
  color: var(--purple-mid);
  opacity: .25;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.mission-callout p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 960px) {
  .split              { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse-order .split-photo { order: 0; }
  .split-photo img    { height: 280px; }

  .highlights-grid    { grid-template-columns: 1fr 1fr; }
  .highlight-card:nth-child(2),
  .highlight-card:nth-child(3) { margin-top: 0; }

  .programme-grid     { grid-template-columns: 1fr; }
  .programme-card:nth-child(even) { margin-top: 0; }

  .ways-grid          { grid-template-columns: 1fr 1fr; }
  .way-card:nth-child(2) { margin-top: 0; }

  .blog-grid          { grid-template-columns: 1fr 1fr; }
  .blog-card:nth-child(3) { margin-top: 0; }

  .contact-split      { grid-template-columns: 1fr; }

  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .pullup-card        { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 2px solid var(--cream-border);
    z-index: 99;
    gap: .25rem;
    box-shadow: var(--shadow-card);
  }

  .highlights-grid,
  .ways-grid,
  .blog-grid { grid-template-columns: 1fr; }

  .highlight-card:nth-child(2),
  .highlight-card:nth-child(3),
  .blog-card:nth-child(2),
  .blog-card:nth-child(3),
  .way-card:nth-child(2)  { margin-top: 0; }

  .pullup-card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .stat-block {
    border-right: none;
    border-bottom: 2px dotted var(--cream-border);
    padding: .75rem 0;
  }

  .stat-block:last-child { border-bottom: none; }

  .polaroid-row { gap: 1rem; }
  .polaroid:nth-child(1),
  .polaroid:nth-child(2),
  .polaroid:nth-child(3) { transform: none; margin-top: 0; flex: 0 0 280px; max-width: 280px; }

  .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .hero { min-height: 520px; padding-bottom: 90px; }
  .pullup-wrapper { margin-top: -65px; }

  .article-hero-img { height: 240px; }
  .full-photo       { height: 260px; }

  .mission-callout { padding: 2rem 1.5rem; }
}
