/* ============================================================
   VIBRANT HEALTH ADVOCATES - NOVARA
   Design: Warm & Human Community
   ============================================================ */

:root {
  --cream:           #FFF8F0;
  --cream-dark:      #F5EDE0;
  --cream-mid:       #FAF2E8;
  --terracotta:      #C4623A;
  --terracotta-lt:   #E8956A;
  --terracotta-pale: #FAE8DC;
  --brand:           #7B2D8B;
  --brand-light:     #F0D9F5;
  --brand-mid:       #C794D4;
  --text:            #2C1810;
  --text-mid:        #5C3D2E;
  --text-light:      #8B6B5A;
  --white:           #FFFDF9;

  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  28px;
  --radius-xl:  44px;

  --shadow-sm:  2px 3px 14px rgba(44,24,16,.09);
  --shadow-md:  4px 8px 28px rgba(44,24,16,.14);
  --shadow-lg:  8px 16px 48px rgba(44,24,16,.20);

  --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont,
          'Helvetica Neue', Arial, sans-serif;

  --max:    1160px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  line-height: 1.8;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.6rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.25rem); }

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

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--terracotta);
  margin-bottom: .8rem;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }

/* ── SITE HEADER / NAV ──────────────────────────────────── */
.site-header {
  background: var(--cream);
  border-bottom: 2.5px dotted rgba(196,98,58,.35);
  position: sticky;
  top: 0;
  z-index: 200;
  padding: .85rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

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

.brand-logo    { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.brand-wordmark{ height: 34px; width: auto; object-fit: contain; }

.main-nav {
  display: flex;
  align-items: center;
  gap: .15rem;
  list-style: none;
  flex-wrap: wrap;
}

.main-nav a {
  display: block;
  padding: .45rem .9rem;
  font-size: .94rem;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: 50px;
  transition: background .18s, color .18s;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--brand-light);
  color: var(--brand);
}

.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  box-shadow: 0 2px 10px rgba(196,98,58,.3);
}
.nav-cta:hover { background: #a84f2c !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .45rem;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 3px;
  background: var(--text);
  border-radius: 4px;
  transition: .25s;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--text);
  color: var(--cream-dark);
  padding: 3.5rem 0 2rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand { }

.footer-brand .brand-lockup { margin-bottom: 1rem; }

.footer-brand .brand-logo     { filter: brightness(0) invert(1); }
.footer-brand .brand-wordmark { filter: brightness(0) invert(1); }

.footer-brand p {
  font-size: .9rem;
  color: #a0896e;
  line-height: 1.7;
  margin: 0;
}

.footer-heading {
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--terracotta-lt);
  margin-bottom: 1rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: .38rem; }
.footer-links a { color: #b89d88; font-size: .91rem; transition: color .18s; }
.footer-links a:hover { color: var(--cream); text-decoration: none; }

.footer-contact p { font-size: .88rem; color: #a0896e; margin-bottom: .6rem; line-height: 1.6; }
.footer-contact a { color: #c7a98c; }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.4rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p { font-size: .8rem; color: #6a5040; margin: 0; }
.footer-bottom a { color: #8a7060; }
.footer-bottom a:hover { color: var(--cream); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20,8,4,.62) 0%,
    rgba(20,8,4,.50) 55%,
    rgba(20,8,4,.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem,8vw,7rem) var(--gutter) clamp(6rem,10vw,9rem);
  min-height: 640px;
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  padding: .38rem .95rem;
  border-radius: 50px;
  margin-bottom: 1.3rem;
  width: fit-content;
}

.hero h1 {
  color: var(--white);
  max-width: 820px;
  margin-bottom: 1.3rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}

.hero-sub {
  color: rgba(255,248,240,.87);
  font-size: clamp(.98rem, 1.9vw, 1.18rem);
  max-width: 640px;
  line-height: 1.78;
  margin-bottom: 2rem;
}

.hero-cta {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white) !important;
  padding: .88rem 2.1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 20px rgba(196,98,58,.5);
  text-decoration: none !important;
}
.hero-cta:hover { background: #a84f2c; transform: translateY(-2px); }

/* ── IMPACT STRIP (pulled up over hero) ─────────────────── */
.impact-strip-wrap {
  position: relative;
  z-index: 10;
  margin-top: -4rem;
  padding: 0 var(--gutter);
}

.impact-strip {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 2.5px solid var(--terracotta-pale);
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: var(--max);
  margin: 0 auto;
}

.impact-stat { text-align: center; flex: 1; min-width: 110px; }

.impact-stat .number {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--terracotta);
  line-height: 1;
  display: block;
}

.impact-stat .label {
  font-size: .86rem;
  font-weight: 600;
  color: var(--text-light);
  margin-top: .35rem;
  display: block;
  line-height: 1.4;
}

.impact-divider {
  width: 1.5px;
  min-height: 56px;
  background: var(--terracotta-pale);
  flex-shrink: 0;
  align-self: stretch;
  border: none;
}

/* ── SQUIGGLE DIVIDER ───────────────────────────────────── */
.squiggle-wrap {
  overflow: hidden;
  line-height: 0;
  padding: .6rem 0;
}
.squiggle-wrap svg { width: 100%; display: block; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .82rem 1.9rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all .2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-family: var(--font);
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 3px 16px rgba(196,98,58,.38);
}
.btn-primary:hover { background: #a84f2c; transform: translateY(-2px); color: var(--white); text-decoration: none; }

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 2.5px solid var(--terracotta);
}
.btn-outline:hover { background: var(--terracotta-pale); text-decoration: none; }

.btn-brand {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 3px 16px rgba(123,45,139,.32);
}
.btn-brand:hover { background: #631f73; transform: translateY(-2px); color: var(--white); text-decoration: none; }

.btn-white {
  background: var(--white);
  color: var(--terracotta);
  box-shadow: 0 3px 12px rgba(0,0,0,.12);
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); color: var(--terracotta); text-decoration: none; }

/* ── SECTION BACKGROUNDS ────────────────────────────────── */
.bg-cream-dark      { background: var(--cream-dark); }
.bg-terracotta-pale { background: var(--terracotta-pale); }
.bg-brand-light     { background: var(--brand-light); }

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

/* ── ROUNDED PHOTO ──────────────────────────────────────── */
.photo-rounded {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.photo-rounded img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ── POLAROID STACK ─────────────────────────────────────── */
.polaroid-stack {
  position: relative;
  padding: 1.5rem 1rem 1rem 1.5rem;
}

.polaroid {
  background: var(--white);
  padding: 11px 11px 44px;
  box-shadow: var(--shadow-md);
  border-radius: 3px;
  position: relative;
  display: inline-block;
}
.polaroid img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 2px;
}
.polaroid-cap {
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-light);
  margin-top: .4rem;
}

.polaroid-a {
  transform: rotate(-3deg);
  position: relative;
  z-index: 2;
  margin-bottom: -40px;
  margin-left: 20px;
}
.polaroid-b {
  transform: rotate(2deg) translateX(30px) translateY(-10px);
  position: relative;
  z-index: 1;
}

.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 1.5rem 1rem;
}
.polaroid-grid .polaroid { display: block; }
.polaroid-grid .polaroid:nth-child(1) { transform: rotate(-2.5deg); }
.polaroid-grid .polaroid:nth-child(1):hover { transform: rotate(-2.5deg) translateY(-6px); }
.polaroid-grid .polaroid:nth-child(2) { transform: rotate(1.8deg) translateY(14px); }
.polaroid-grid .polaroid:nth-child(2):hover { transform: rotate(1.8deg) translateY(8px); }
.polaroid-grid .polaroid:nth-child(3) { transform: rotate(-1.2deg) translateY(6px); }
.polaroid-grid .polaroid:nth-child(3):hover { transform: rotate(-1.2deg) translateY(0); }

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

.highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--terracotta-pale);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--terracotta-lt);
}
.highlights-grid .highlight-card:nth-child(2) { margin-top: 2rem; }
.highlights-grid .highlight-card:nth-child(3) { margin-top: .5rem; }

.highlight-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.highlight-card h3 { margin-bottom: .6rem; font-size: 1.25rem; }
.highlight-card p  { font-size: .96rem; color: var(--text-mid); line-height: 1.72; }

/* ── STAMP BADGE ─────────────────────────────────────────── */
.stamp-wrap {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 3px dashed var(--terracotta);
  background: var(--terracotta-pale);
  text-align: center;
  padding: .85rem;
  transform: rotate(-8deg);
  flex-shrink: 0;
  margin-top: .5rem;
}
.stamp-text {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--terracotta);
  line-height: 1.35;
}

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

.programme-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.9rem;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--brand);
  transition: transform .25s, box-shadow .25s;
}
.programme-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.programme-card:nth-child(odd) { border-top-color: var(--terracotta); }

.programme-icon { font-size: 2.5rem; display: block; margin-bottom: .9rem; }
.programme-card h3 { margin-bottom: .55rem; }
.programme-card .blurb {
  font-size: .97rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.programme-card .detail {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.75;
}

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

.way-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 2.5px dotted var(--terracotta-lt);
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s, border-style .25s;
}
.way-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--terracotta);
  border-style: solid;
}
.ways-grid .way-card:nth-child(2) { margin-top: 1.5rem; }

.way-icon { font-size: 2.8rem; display: block; margin-bottom: 1rem; }
.way-card h3 { margin-bottom: .7rem; }
.way-card p  { font-size: .95rem; color: var(--text-mid); margin-bottom: 1.5rem; line-height: 1.7; }

/* ── BLOG CARDS ─────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 2px solid var(--cream-dark);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.blog-card-img { width: 100%; height: 210px; object-fit: cover; display: block; }
.blog-card-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.blog-dek { font-size: .94rem; color: var(--text-mid); margin-bottom: 1.2rem; flex: 1; line-height: 1.65; }

.read-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--brand);
  font-weight: 700;
  font-size: .93rem;
  transition: gap .2s;
  text-decoration: none;
}
.read-more::after { content: '→'; }
.read-more:hover { gap: .7rem; text-decoration: none; }

/* ── ARTICLE ─────────────────────────────────────────────── */
.article-hero {
  position: relative;
  height: 440px;
  overflow: hidden;
}
.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 25%, rgba(20,8,4,.76) 100%);
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }

.article-hero-text {
  position: absolute;
  bottom: 2.5rem;
  left: 0; right: 0;
  z-index: 1;
  padding: 0 var(--gutter);
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin: 0 auto;
}
.article-hero-text h1 {
  color: var(--white);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  margin-bottom: .5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.article-hero-text .dek {
  color: rgba(255,248,240,.84);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 700px;
}

.article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 3rem var(--gutter) 4rem;
}
.article-body p {
  font-size: 1.07rem;
  line-height: 1.88;
  color: var(--text);
  margin-bottom: 1.5em;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--terracotta);
  font-weight: 700;
  font-size: .93rem;
  margin-bottom: 1.8rem;
  text-decoration: none;
}
.article-back::before { content: '←'; }
.article-back:hover { color: #a84f2c; text-decoration: none; }

/* ── CONTACT FORM ───────────────────────────────────────── */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.2rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--terracotta-pale);
}
.contact-form h2 { margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.35rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .91rem;
  color: var(--text);
  margin-bottom: .45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .78rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color .2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--brand); }
.form-group textarea { resize: vertical; min-height: 145px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(140deg, var(--terracotta) 0%, #9b4525 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: calc(var(--radius-xl) - 4px);
  border: 2.5px dashed rgba(255,255,255,.22);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,248,240,.85); margin-bottom: 1.8rem; font-size: 1.08rem; }

/* ── MISSION BOX ────────────────────────────────────────── */
.mission-box {
  background: var(--brand-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.2rem;
  border-left: 6px solid var(--brand);
}
.mission-box p {
  font-size: 1.03rem;
  line-height: 1.88;
  color: var(--text);
  font-style: italic;
  margin: 0;
}

/* ── PAGE HEADER ────────────────────────────────────────── */
.page-header {
  background: var(--cream-dark);
  padding: clamp(2.5rem,6vw,5rem) 0 clamp(2rem,5vw,4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: var(--terracotta-pale);
  opacity: .55;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -90px; left: -50px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: var(--brand-light);
  opacity: .45;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1  { margin-bottom: .65rem; }
.page-header .lead {
  font-size: clamp(.98rem, 2vw, 1.18rem);
  color: var(--text-mid);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.72;
}

/* ── FULL-BLEED PHOTO BAND ──────────────────────────────── */
.fullbleed {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.fullbleed-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.fullbleed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20,8,4,.78) 0%,
    rgba(20,8,4,.55) 50%,
    rgba(20,8,4,.25) 100%
  );
}
.fullbleed-content {
  position: relative;
  z-index: 1;
  padding: 4rem var(--gutter);
  max-width: 600px;
}
.fullbleed-content h2 { color: var(--white); margin-bottom: 1rem; }
.fullbleed-content p  { color: rgba(255,248,240,.85); font-size: 1.05rem; margin-bottom: 1.5rem; }

/* ── TRUSTEES ───────────────────────────────────────────── */
.trustees-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trustee-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--cream-dark);
  flex: 1;
  min-width: 170px;
}
.trustee-name { font-weight: 800; font-size: 1.03rem; }
.trustee-role { font-size: .86rem; color: var(--terracotta); font-weight: 600; margin-top: .25rem; }

/* ── DOTTED BOX ─────────────────────────────────────────── */
.dotted-box {
  border: 3px dotted var(--terracotta-lt);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
}

/* ── CONTACT DETAIL BOX ─────────────────────────────────── */
.contact-details {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--cream-dark);
  height: fit-content;
}
.contact-details h3 { margin-bottom: 1.2rem; }

.contact-item {
  display: flex;
  gap: .9rem;
  margin-bottom: 1.4rem;
  align-items: flex-start;
}
.contact-item-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .15rem; }
.contact-item-text { font-size: .93rem; color: var(--text-mid); line-height: 1.65; }
.contact-item-text strong { display: block; font-size: .82rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .2rem; }
.contact-item-text a { color: var(--brand); word-break: break-all; }

/* ── INTRO TEXT ─────────────────────────────────────────── */
.intro-text {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-mid);
}

/* ── STORY SECTION ──────────────────────────────────────── */
.story-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1.4em;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .split,
  .split-3-2,
  .split-2-3 { grid-template-columns: 1fr; gap: 2.2rem; }

  .programme-grid { grid-template-columns: 1fr; }

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

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

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

@media (max-width: 640px) {
  :root { --gutter: 1.1rem; }

  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    padding: .8rem var(--gutter) 1.2rem;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 2px dotted var(--terracotta-pale);
    box-shadow: var(--shadow-md);
    z-index: 100;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: .6rem .75rem; width: 100%; border-radius: var(--radius-sm); }

  .hero { min-height: 500px; }
  .hero-content { min-height: 500px; padding-bottom: 5.5rem; }

  .impact-strip { padding: 1.4rem 1rem; gap: .8rem; }
  .impact-divider { display: none; }

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

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; }

  .polaroid-grid .polaroid:nth-child(1),
  .polaroid-grid .polaroid:nth-child(2),
  .polaroid-grid .polaroid:nth-child(3) { transform: none; }

  .polaroid-a { transform: none; margin-bottom: 1rem; margin-left: 0; }
  .polaroid-b { transform: none; }

  .cta-banner { padding: 2.5rem 1.5rem; border-radius: var(--radius-lg); }
  .cta-banner::before { display: none; }

  .page-header::before,
  .page-header::after { display: none; }

  .article-hero { height: 280px; }

  .contact-form { padding: 1.7rem 1.3rem; }

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

  .form-row { grid-template-columns: 1fr; }

  .fullbleed { min-height: 300px; }
  .fullbleed-overlay {
    background: rgba(20,8,4,.65);
  }
}
