/* ============================================================
   VIBRANT HEALTH ADVOCATES — GLASGOW BRANCH
   Warm & Human Community Design System
   ============================================================ */

:root {
  --cream:      #FFF6ED;
  --cream-deep: #EFE0CC;
  --cream-card: #FFFBF5;
  --terra:      #C4633A;
  --terra-lt:   #E8956D;
  --terra-pale: #FAE8DE;
  --purple:     #7B2D8B;
  --purple-lt:  #F0D9F5;
  --purple-mid: #C99AD8;
  --dark:       #2C1A0E;
  --mid:        #5C3A2A;
  --warm:       #8B7355;
  --white:      #FFFFFF;

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

  --r-img:  28px;
  --r-card: 20px;
  --r-sm:   12px;

  --sh-sm: 0 2px 14px rgba(44,26,14,.10);
  --sh-md: 0 6px 32px rgba(44,26,14,.15);
  --sh-lg: 0 14px 56px rgba(44,26,14,.22);

  --max-w: 1160px;
  --gut:   clamp(16px, 4vw, 48px);
}

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

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

img { max-width: 100%; display: block; }
ul  { list-style: none; }
a   { color: var(--purple); text-underline-offset: 3px; }
a:hover { color: var(--terra); }

h1 { font-size: clamp(2.2rem, 5.5vw, 4rem);   font-weight: 900; line-height: 1.08; letter-spacing: -.025em; }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.8rem);  font-weight: 800; line-height: 1.18; letter-spacing: -.015em; }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.6rem);  font-weight: 700; line-height: 1.3; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { max-width: 70ch; }
p + p { margin-top: 1.2em; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gut);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  padding: 14px 32px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-primary { background: var(--purple); color: var(--white); }
.btn-primary:hover { background: var(--terra); color: var(--white); }
.btn-terra   { background: var(--terra); color: var(--white); }
.btn-terra:hover { background: var(--purple); color: var(--white); }
.btn-outline { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn-outline:hover { background: var(--purple); color: var(--white); }
.btn-white   { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--cream); color: var(--terra); }

/* ── Site Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream-card);
  border-bottom: 2px solid var(--cream-deep);
  box-shadow: var(--sh-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 12px var(--gut);
  gap: 24px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-icon     { width: 42px; height: 42px; object-fit: contain; }
.brand-wordmark { height: 30px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 28px);
  flex-wrap: wrap;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--dark);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--terra); border-bottom-color: var(--terra); }

.nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  border-radius: 40px;
  padding: 8px 22px;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: none !important;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--terra) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--cream-deep);
  border-radius: 8px;
  padding: 7px 9px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--dark); border-radius: 2px; }

/* ── Footer ── */
.site-footer {
  background: var(--dark);
  color: var(--cream-deep);
  padding: clamp(48px,8vw,88px) var(--gut) 32px;
}
.footer-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(239,224,204,.18);
}
.footer-brand-lockup { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-icon     { width: 42px; height: 42px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-wordmark { height: 28px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.footer-tagline  { font-size: 0.88rem; line-height: 1.65; color: rgba(239,224,204,.72); max-width: 34ch; }

.footer-heading {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--terra-lt);
  margin-bottom: 14px;
}
.footer-contact a, .footer-nav a {
  display: block;
  color: rgba(239,224,204,.82);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 3px 0;
  transition: color .2s;
}
.footer-contact a:hover, .footer-nav a:hover { color: var(--terra-lt); }
.footer-contact a { word-break: break-all; }

.footer-bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(239,224,204,.44);
}

/* ── Squiggle divider ── */
.squiggle-wrap { overflow: hidden; line-height: 0; }
.squiggle-wrap svg { display: block; width: 100%; }

/* ── Sections ── */
.section { padding: clamp(52px,9vw,108px) 0; }
.section-cream  { background: var(--cream); }
.section-card   { background: var(--cream-card); }
.section-terra  { background: var(--terra); }
.section-purple { background: var(--purple-lt); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(36px,5vw,64px);
}
.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--terra);
  margin-bottom: 10px;
}
.section-terra .eyebrow { color: rgba(255,255,255,.8); }
.section-terra h2 { color: var(--white); }

/* ── Homepage Hero ── */
.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding-bottom: 140px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg,
    rgba(44,26,14,.76) 0%,
    rgba(44,26,14,.42) 52%,
    rgba(44,26,14,.10) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
  padding: clamp(80px,12vw,140px) var(--gut) 0;
}
.hero-content h1 {
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 22px;
  text-shadow: 0 2px 28px rgba(0,0,0,.38);
}
.hero-sub {
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem,1.8vw,1.18rem);
  font-weight: 500;
  max-width: 52ch;
  line-height: 1.68;
}
.hero-content .btn { margin-top: 36px; }

/* ── Overlap card ── */
.overlap-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -120px;
  padding: 0 var(--gut);
  display: flex;
  justify-content: center;
}
.overlap-card {
  background: var(--cream-card);
  border-radius: var(--r-card);
  box-shadow: var(--sh-lg);
  border: 2px solid var(--cream-deep);
  padding: clamp(30px,5vw,58px);
  max-width: 880px;
  width: 100%;
}
.overlap-card .label {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--terra);
  margin-bottom: 10px;
  display: block;
}
.overlap-card h2 { color: var(--dark); margin-bottom: 16px; font-size: clamp(1.3rem,2.4vw,2rem); }
.overlap-card p  { color: var(--mid); max-width: none; }

/* ── Highlight cards (staggered) ── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  align-items: start;
}
.highlight-card {
  background: var(--cream-card);
  border-radius: var(--r-card);
  border: 2px solid var(--cream-deep);
  padding: 32px 28px;
  box-shadow: var(--sh-sm);
  transition: transform .25s, box-shadow .25s;
}
.highlight-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.highlight-card:nth-child(2) { margin-top: 38px; }
.highlight-card:nth-child(3) { margin-top: 18px; }
.highlight-card.dotted { border: 2px dotted var(--purple-mid); }
.hi-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.highlight-card h3 { margin-bottom: 10px; color: var(--dark); }
.highlight-card p  { color: var(--mid); font-size: 0.94rem; max-width: none; }

/* ── Impact stats ── */
.impact-section {
  background: var(--terra);
  padding: clamp(56px,8vw,88px) 0;
  position: relative;
  overflow: hidden;
}
.impact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 50%, rgba(255,255,255,.09) 0%, transparent 55%),
    radial-gradient(circle at 82% 50%, rgba(240,217,245,.12) 0%, transparent 55%);
}
.impact-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.impact-stat {
  flex: 1 1 200px;
  text-align: center;
  padding: 28px 24px;
  position: relative;
}
.impact-stat + .impact-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 1px;
  background: rgba(255,255,255,.28);
}
.impact-number {
  font-size: clamp(3rem,7vw,5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
  text-shadow: 0 2px 18px rgba(44,26,14,.28);
}
.impact-label {
  display: block;
  color: rgba(255,255,255,.88);
  font-size: 0.96rem;
  font-weight: 600;
  margin-top: 8px;
}

/* ── Stamp badge ── */
.stamp-badge {
  position: absolute;
  right: max(var(--gut), calc((100vw - var(--max-w)) / 2 + var(--gut)));
  top: 50%;
  translate: 0 -50%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px dashed rgba(255,255,255,.55);
  background: rgba(255,255,255,.13);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  line-height: 1.55;
  padding: 14px;
  transform: rotate(-14deg);
}

/* ── Polaroid cards ── */
.polaroid-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.polaroid {
  background: var(--white);
  padding: 13px 13px 52px;
  box-shadow: var(--sh-lg);
  max-width: 272px;
  width: 100%;
  flex-shrink: 0;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.polaroid:hover {
  transform: rotate(0deg) scale(1.04) !important;
  box-shadow: 0 20px 68px rgba(44,26,14,.32);
  z-index: 5;
}
.polaroid:nth-child(1) { transform: rotate(-2.8deg); margin-top: 22px; }
.polaroid:nth-child(2) { transform: rotate(1.6deg); }
.polaroid:nth-child(3) { transform: rotate(-1.4deg); margin-top: 30px; }
.polaroid:nth-child(4) { transform: rotate(2.3deg); margin-top: 8px; }
.polaroid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.polaroid-caption {
  text-align: center;
  margin-top: 12px;
  font-weight: 700;
  color: var(--warm);
  font-size: 0.82rem;
  font-style: italic;
  padding: 0 6px;
}

/* ── CTA section ── */
.cta-section {
  background: var(--purple-lt);
  padding: clamp(68px,9vw,112px) 0;
  text-align: center;
}
.cta-section h2 { color: var(--dark); margin-bottom: 14px; }
.cta-section p  { color: var(--mid); font-size: 1.05rem; margin: 0 auto 32px; max-width: 54ch; }

/* ── Page hero (inner pages) ── */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(44,26,14,.72) 0%, rgba(44,26,14,.28) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(56px,9vw,112px) var(--gut);
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
}
.page-hero-content .eyebrow { color: var(--terra-lt); }
.page-hero-content h1 { color: var(--white); margin-bottom: 14px; }
.page-hero-content p  { color: rgba(255,255,255,.88); max-width: 56ch; font-size: 1.08rem; }

/* ── Split layout ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,72px);
  align-items: center;
}
.split.rev { direction: rtl; }
.split.rev > * { direction: ltr; }
.split-img {
  width: 100%;
  border-radius: var(--r-img);
  box-shadow: var(--sh-md);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.split-body h2 { margin-bottom: 18px; }
.split-body p  { color: var(--mid); max-width: none; }
.split-body .btn { margin-top: 26px; }

/* ── Mission block ── */
.mission-block {
  background: var(--purple-lt);
  border-radius: var(--r-card);
  padding: clamp(32px,5vw,56px);
  border-left: 6px solid var(--purple);
}
.mission-block p {
  font-size: clamp(1.05rem,2vw,1.22rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.72;
  max-width: 80ch;
  font-style: italic;
}

/* ── Story callout ── */
.story-callout {
  background: var(--terra-pale);
  border-radius: var(--r-card);
  padding: clamp(28px,4vw,48px);
  border: 2.5px dotted var(--terra);
}
.story-callout h3 { margin-bottom: 14px; color: var(--terra); }
.story-callout p  { color: var(--mid); max-width: none; }

/* ── Trustees ── */
.trustees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 24px;
}
.trustee-card {
  background: var(--cream-card);
  border: 2.5px dotted var(--purple-mid);
  border-radius: var(--r-card);
  padding: 28px 24px;
  text-align: center;
}
.trustee-initial {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--purple-lt);
  color: var(--purple);
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.trustee-card h4 { color: var(--dark); margin-bottom: 4px; }
.trustee-role {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--terra);
}

/* ── Programmes ── */
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px;
  align-items: start;
}
.programme-card {
  background: var(--cream-card);
  border-radius: var(--r-card);
  border: 2px solid var(--cream-deep);
  padding: 36px 30px;
  box-shadow: var(--sh-sm);
  transition: transform .25s, box-shadow .25s;
}
.programme-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.programme-card:nth-child(2) { margin-top: 38px; }
.programme-card:nth-child(4) { margin-top: -20px; }
.prog-icon { font-size: 2.2rem; margin-bottom: 14px; }
.programme-card h3 { margin-bottom: 10px; }
.programme-blurb  { color: var(--mid); font-weight: 600; margin-bottom: 14px; font-size: 0.96rem; }
.programme-detail { color: var(--warm); font-size: 0.91rem; max-width: none; line-height: 1.72; }

/* ── Ways ── */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  align-items: start;
}
.way-card {
  background: var(--cream-card);
  border-radius: var(--r-card);
  border: 2px solid var(--cream-deep);
  padding: 40px 26px 32px;
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.way-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--purple), var(--terra));
}
.way-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.way-card:nth-child(2) { margin-top: 44px; }
.way-icon { font-size: 2.6rem; margin-bottom: 20px; }
.way-card h3 { margin-bottom: 12px; }
.way-card p  { color: var(--mid); font-size: 0.94rem; max-width: none; }

/* ── Blog cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
  align-items: start;
}
.blog-card {
  background: var(--cream-card);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 2px solid var(--cream-deep);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); color: inherit; }
.blog-card:nth-child(2) { margin-top: 28px; }
.blog-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--purple);
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.08rem; margin-bottom: 10px; line-height: 1.38; color: var(--dark); }
.blog-card .dek { color: var(--mid); font-size: 0.9rem; line-height: 1.62; max-width: none; flex: 1; }
.read-more {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--terra);
  text-decoration: none;
}
.read-more::after { content: ' →'; }

/* ── Article ── */
.article-header {
  background: var(--cream-card);
  border-bottom: 2px solid var(--cream-deep);
  padding: clamp(48px,7vw,92px) var(--gut) 40px;
}
.article-header-inner { max-width: 760px; margin-inline: auto; }
.article-tag {
  display: inline-block;
  background: var(--purple-lt);
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
  text-decoration: none;
}
.article-header h1 { margin-bottom: 20px; }
.article-dek {
  font-size: clamp(1.08rem,2vw,1.26rem);
  font-weight: 600;
  color: var(--mid);
  line-height: 1.62;
  max-width: none;
  border-left: 5px solid var(--terra);
  padding-left: 20px;
}
.article-hero-wrap {
  max-height: 480px;
  overflow: hidden;
  border-radius: 0 0 var(--r-img) var(--r-img);
}
.article-hero-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }
.article-layout {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(36px,5vw,68px) var(--gut);
}
.article-body p { margin-bottom: 1.4em; max-width: none; color: var(--mid); line-height: 1.85; }
.article-body p:first-child::first-letter {
  font-size: 3.8rem;
  font-weight: 900;
  float: left;
  line-height: .82;
  margin-right: 10px;
  color: var(--terra);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--terra);
  text-decoration: none;
  margin-bottom: 20px;
}
.back-link:hover { color: var(--purple); }

/* ── Contact form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: clamp(32px,5vw,72px);
  align-items: start;
}
.contact-info h3 { margin-bottom: 14px; }
.contact-info p  { color: var(--mid); margin-bottom: 24px; max-width: none; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.cd-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail a, .contact-detail p {
  color: var(--dark);
  word-break: break-all;
  font-weight: 600;
  font-size: 0.94rem;
  max-width: none;
  text-decoration: none;
  margin: 0;
}
.contact-detail a:hover { color: var(--terra); }

.contact-form {
  background: var(--cream-card);
  border-radius: var(--r-card);
  border: 2px solid var(--cream-deep);
  padding: clamp(24px,4vw,48px);
  box-shadow: var(--sh-sm);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--cream);
  border: 2px solid var(--cream-deep);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--dark);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123,45,139,.11);
}
.form-textarea { min-height: 160px; resize: vertical; line-height: 1.65; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235C3A2A' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

/* ── Prose ── */
.prose { max-width: 76ch; color: var(--mid); line-height: 1.82; }
.prose p { margin-bottom: 1.3em; max-width: none; }

/* ── Utilities ── */
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 56px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.dotted-box { border: 2.5px dotted var(--terra); border-radius: var(--r-card); padding: clamp(24px,4vw,40px); }
.badge {
  display: inline-block;
  background: var(--purple-lt);
  color: var(--purple);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 40px;
}

/* ── Responsive ── */
@media (max-width: 920px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-card:nth-child(2),
  .highlight-card:nth-child(3) { margin-top: 0; }
  .programmes-grid { grid-template-columns: 1fr; }
  .programme-card:nth-child(2),
  .programme-card:nth-child(4) { margin-top: 0; }
  .ways-grid { grid-template-columns: 1fr; }
  .way-card:nth-child(2) { margin-top: 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:nth-child(2) { margin-top: 0; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split.rev { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 32px; }
  .stamp-badge  { display: none; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream-card);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px var(--gut) 20px;
    border-top: 2px solid var(--cream-deep);
    box-shadow: var(--sh-md);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 10px 0; border-bottom: 1px solid var(--cream-deep) !important; font-size: 1rem; }
  .nav-links li:last-child a { border-bottom: none !important; }
  .nav-cta { margin-top: 10px; display: inline-flex; }

  .hero { min-height: 480px; padding-bottom: 36px; }
  .hero-content { padding-top: 64px; }
  .overlap-wrapper { margin-top: 0; }
  .overlap-card { padding: 26px 18px; }

  .polaroid-row { flex-direction: column; align-items: center; }
  .polaroid:nth-child(1),
  .polaroid:nth-child(2),
  .polaroid:nth-child(3),
  .polaroid:nth-child(4) { transform: rotate(0deg) !important; margin-top: 0 !important; max-width: 320px; }

  .impact-grid { flex-direction: column; }
  .impact-stat + .impact-stat::before { display: none; }

  .article-hero-wrap img { height: 260px; }
  .programmes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }
  h3 { font-size: 1.18rem; }
}
