/* ================================================================
   VIBRANT HEALTH ADVOCATES - DELTA
   Warm & Human Community — design system
   ================================================================ */

/* ── RESET ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TOKENS ───────────────────────────────────────────────────── */
:root {
  --cream:         #FBF5EC;
  --cream-warm:    #FDF8F0;
  --cream-card:    #FFF9F2;
  --cream-border:  #EFE0C6;
  --cream-deep:    #F2E6D0;
  --terra:         #BF5A36;
  --terra-mid:     #D97B52;
  --terra-light:   #ECA882;
  --terra-muted:   #F5DDD1;
  --purple:        #7B2D8B;
  --purple-mid:    #A660B8;
  --purple-light:  #F0D9F5;
  --purple-pale:   #F8EFF9;
  --text:          #3A2010;
  --text-mid:      #6B4330;
  --text-muted:    #9A7860;
  --shadow-sm:     rgba(80,30,10,0.08);
  --shadow:        rgba(80,30,10,0.13);
  --shadow-lg:     rgba(80,30,10,0.20);
}

/* ── BASE ─────────────────────────────────────────────────────── */
body {
  font-family: ui-rounded, system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.78;
  font-size: 1.0625rem;
}

h1,h2,h3,h4,h5 {
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.1rem,5vw,3.6rem); }
h2 { font-size: clamp(1.65rem,3.5vw,2.5rem); }
h3 { font-size: clamp(1.15rem,2.5vw,1.55rem); }
h4 { font-size: 1.05rem; }

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

.lead {
  font-size: clamp(1.05rem,2vw,1.22rem);
  line-height: 1.88;
  color: var(--text-mid);
}

strong { font-weight: 800; }

/* ── LAYOUT ───────────────────────────────────────────────────── */
.container {
  width: min(1140px, 100% - 2.5rem);
  margin-inline: auto;
}
.container--narrow {
  width: min(820px, 100% - 2.5rem);
  margin-inline: auto;
}
.container--wide {
  width: min(1280px, 100% - 2rem);
  margin-inline: auto;
}

.section { padding: clamp(4rem,8vw,7rem) 0; }
.section--sm { padding: clamp(2.5rem,5vw,4rem) 0; }
.section--cream  { background: var(--cream); }
.section--warm   { background: var(--cream-warm); }
.section--card   { background: var(--cream-card); }
.section--purple { background: var(--purple-light); }
.section--terra  { background: var(--terra-muted); }
.section--deep   { background: var(--cream-deep); }

.text-center { text-align: center; }
.text-purple { color: var(--purple); }
.text-terra  { color: var(--terra); }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .88rem 2.2rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: .97rem;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
  border: none;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--shadow-lg); }
.btn--purple { background: var(--purple); color: #fff; }
.btn--terra  { background: var(--terra); color: #fff; }
.btn--outline-white {
  border: 2.5px solid rgba(255,255,255,0.65);
  color: #fff;
  background: transparent;
}
.btn--outline-white:hover { background: rgba(255,255,255,0.15); box-shadow: none; transform: translateY(-2px); }
.btn--outline-purple {
  border: 2.5px solid var(--purple);
  color: var(--purple);
  background: transparent;
}
.btn--outline-purple:hover { background: var(--purple-light); }

/* ── NAV ──────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream-warm);
  border-bottom: 2px solid var(--cream-border);
  box-shadow: 0 2px 14px var(--shadow-sm);
}

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

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand-lockup .logo-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 12px;
}
.brand-lockup .wordmark {
  height: 30px;
  width: auto;
  object-fit: contain;
  /* dark artwork on transparent – shown as-is on light backgrounds */
}

.nav-links {
  display: flex;
  gap: .25rem;
  flex-wrap: wrap;
}
.nav-links a {
  display: block;
  padding: .42rem .9rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-mid);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--purple-light);
  color: var(--purple);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero { position: relative; background: var(--cream); }

.hero__imgwrap {
  width: 100%;
  height: clamp(480px,62vh,740px);
  overflow: hidden;
  position: relative;
}
.hero__imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__imgwrap::after {
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(30,10,5,.05) 30%,
    rgba(30,10,5,.50) 100%
  );
}

.hero__card-wrap {
  position: relative;
  z-index: 2;
}
.hero__card {
  background: var(--cream-warm);
  border-radius: 32px;
  padding: clamp(2rem,5vw,3.8rem);
  box-shadow: 0 16px 56px var(--shadow-lg);
  border: 2px solid var(--cream-border);
  margin-top: -160px;
  margin-bottom: 0;
  position: relative;
}
.hero__tag {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .32rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.1rem;
}
.hero__title {
  font-size: clamp(2rem,4.5vw,3.4rem);
  font-weight: 900;
  line-height: 1.14;
  margin-bottom: 1.1rem;
  color: var(--text);
}
.hero__title em { color: var(--purple); font-style: normal; }
.hero__sub {
  font-size: clamp(.95rem,1.8vw,1.13rem);
  line-height: 1.84;
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 680px;
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

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

/* ── SECTION TAG ──────────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .32rem 1rem;
  border-radius: 50px;
  margin-bottom: .9rem;
}
.tag--purple { background: var(--purple-light); color: var(--purple); }
.tag--terra  { background: var(--terra-muted);  color: var(--terra); }

/* ── HIGHLIGHTS GRID ──────────────────────────────────────────── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 2rem;
  align-items: start;
}
.highlights-grid .card:nth-child(2) { margin-top: 2rem; }

/* ── CARD ─────────────────────────────────────────────────────── */
.card {
  background: var(--cream-card);
  border-radius: 28px;
  padding: clamp(1.6rem,3vw,2.6rem);
  border: 2px solid var(--cream-border);
  box-shadow: 0 4px 22px var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow);
}
.card--terra {
  background: var(--terra-muted);
  border-color: var(--terra-light);
}
.card--purple {
  background: var(--purple-pale);
  border-color: var(--purple-mid);
}
.card--dashed {
  border-style: dashed;
  border-color: var(--terra-mid);
}
.card__icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.card__title { font-size: 1.28rem; font-weight: 900; margin-bottom: .7rem; }
.card__body { font-size: .97rem; line-height: 1.78; color: var(--text-mid); }

/* ── POLAROID ─────────────────────────────────────────────────── */
.polaroid {
  background: var(--cream-warm);
  padding: 11px 11px 46px;
  border-radius: 3px;
  box-shadow: 0 8px 32px var(--shadow-lg);
  transition: transform .3s, box-shadow .3s;
  display: block;
}
.polaroid:hover {
  transform: rotate(0deg) scale(1.03) !important;
  box-shadow: 0 14px 44px var(--shadow-lg);
}
.polaroid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 1px;
}
.polaroid__cap {
  text-align: center;
  padding-top: 10px;
  font-size: .87rem;
  font-weight: 700;
  font-style: italic;
  color: var(--text-muted);
}
.polaroid--r2  { transform: rotate(2.2deg); }
.polaroid--rm2 { transform: rotate(-2.4deg); }
.polaroid--r1  { transform: rotate(1.1deg); }
.polaroid--rm3 { transform: rotate(-3deg); }

.polaroid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 2.5rem;
  padding: 1.5rem 0 2rem;
}

/* ── IMPACT STATS ─────────────────────────────────────────────── */
.impact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.impact-stat {
  text-align: center;
  padding: 1.8rem 2.5rem;
}
.impact-stat__num {
  font-size: clamp(2.4rem,5vw,3.8rem);
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
  display: block;
}
.impact-stat__label {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-top: .4rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  max-width: 140px;
  margin-inline: auto;
}
.impact-divider {
  width: 2px;
  height: 70px;
  background: var(--cream-border);
  flex-shrink: 0;
}

/* ── STAMP ────────────────────────────────────────────────────── */
.stamp {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  border: 3.5px dotted var(--terra);
  background: var(--terra-muted);
  color: var(--terra);
  text-align: center;
  padding: 1.1rem;
  font-weight: 900;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1.35;
  rotate: -10deg;
  box-shadow: 0 4px 18px var(--shadow);
  flex-shrink: 0;
}
.stamp--purple {
  border-color: var(--purple);
  background: var(--purple-pale);
  color: var(--purple);
  rotate: 7deg;
}
.stamp__num { font-size: 1.5rem; font-weight: 900; display: block; }

/* ── SPLIT LAYOUT ─────────────────────────────────────────────── */
.split {
  display: grid;
  gap: clamp(2rem,4vw,4rem);
  align-items: center;
}
.split--2col { grid-template-columns: 1fr 1fr; }
.split--60-40 { grid-template-columns: 3fr 2fr; }
.split--40-60 { grid-template-columns: 2fr 3fr; }

.split__img {
  border-radius: 28px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 10px 40px var(--shadow-lg);
}

/* ── PAGE BANNER ──────────────────────────────────────────────── */
.page-banner {
  position: relative;
  height: clamp(240px,38vw,460px);
  overflow: hidden;
}
.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(58,32,16,.60) 0%,rgba(123,45,139,.30) 100%);
}
.page-banner__text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem,4vw,3rem);
}
.page-banner__title {
  color: #fff;
  text-shadow: 0 3px 14px rgba(0,0,0,.38);
  margin-bottom: .4rem;
}
.page-banner__sub {
  color: rgba(255,255,255,.85);
  font-size: clamp(.95rem,1.8vw,1.1rem);
  max-width: 580px;
  line-height: 1.6;
}

/* ── TRUSTEE CARDS ────────────────────────────────────────────── */
.trustees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 1.5rem;
}
.trustee-card {
  background: var(--cream-card);
  border-radius: 22px;
  padding: 1.8rem 1.4rem;
  text-align: center;
  border: 2.5px dashed var(--purple-mid);
  box-shadow: 0 4px 18px var(--shadow-sm);
  transition: transform .2s;
}
.trustee-card:hover { transform: translateY(-3px); }
.trustee-card__initial {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 1.55rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.trustee-card__name { font-weight: 800; font-size: 1rem; margin-bottom: .25rem; }
.trustee-card__role { font-size: .85rem; color: var(--text-muted); font-weight: 600; }

/* ── PROGRAMME CARDS ──────────────────────────────────────────── */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 2rem;
}
.prog-card {
  background: var(--cream-card);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 6px 30px var(--shadow);
  border: 2px solid var(--cream-border);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.prog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px var(--shadow-lg);
}
.prog-card__top {
  background: var(--terra-muted);
  padding: 1.8rem 2rem 1.5rem;
}
.prog-card--alt .prog-card__top { background: var(--purple-pale); }
.prog-card__icon { font-size: 2.6rem; margin-bottom: .6rem; }
.prog-card__title { font-size: 1.25rem; font-weight: 900; }
.prog-card__body {
  padding: 1.8rem 2rem;
  flex: 1;
}
.prog-card__blurb {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-weight: 700;
}
.prog-card__detail {
  font-size: .92rem;
  line-height: 1.78;
  color: var(--text-muted);
}

/* ── WAYS ─────────────────────────────────────────────────────── */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 2rem;
  align-items: start;
}
.ways-grid .way-card:nth-child(2) { margin-top: 2rem; }
.way-card {
  background: var(--cream-card);
  border-radius: 28px;
  padding: 2.4rem 2rem;
  text-align: center;
  border: 2.5px solid var(--cream-border);
  box-shadow: 0 4px 22px var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.way-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px var(--shadow-lg);
}
.way-card--terra { background: var(--terra-muted); border-color: var(--terra-mid); }
.way-card--purple { background: var(--purple-pale); border-color: var(--purple-mid); }
.way-card__icon { font-size: 3rem; margin-bottom: 1.1rem; display: block; }
.way-card__title { font-size: 1.3rem; font-weight: 900; margin-bottom: .7rem; }
.way-card__body { font-size: .95rem; line-height: 1.78; color: var(--text-mid); }

/* ── BLOG GRID ────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 2.5rem;
}
.art-card {
  background: var(--cream-card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 26px var(--shadow);
  border: 2px solid var(--cream-border);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.art-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px var(--shadow-lg);
}
.art-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.art-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.art-card:hover .art-card__img img { transform: scale(1.04); }
.art-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.art-card__title {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: .6rem;
  color: var(--text);
  line-height: 1.3;
}
.art-card__dek {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.68;
  flex: 1;
  margin-bottom: 1.2rem;
}
.art-card__read {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 800;
  font-size: .88rem;
  color: var(--purple);
}
.art-card__read::after { content:'→'; transition: transform .15s; }
.art-card:hover .art-card__read::after { transform: translateX(4px); }

/* ── ARTICLE ──────────────────────────────────────────────────── */
.article-wrap { padding: clamp(3rem,6vw,5rem) 0; }
.article-hero-img {
  width: 100%;
  height: clamp(280px,42vh,500px);
  object-fit: cover;
  border-radius: 28px;
  margin-bottom: 3rem;
  box-shadow: 0 10px 40px var(--shadow-lg);
}
.article-header { margin-bottom: 2.5rem; }
.article-dek {
  font-size: clamp(1.05rem,2vw,1.22rem);
  line-height: 1.8;
  color: var(--text-mid);
  border-left: 4px solid var(--purple-mid);
  padding-left: 1.2rem;
  margin-bottom: 0;
}
.article-body p {
  font-size: 1.05rem;
  line-height: 1.92;
  margin-bottom: 1.6em;
  color: var(--text);
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 800;
  font-size: .9rem;
  color: var(--purple);
  margin-bottom: 2.5rem;
}
.article-back::before { content:'←'; }
.article-back:hover { text-decoration: underline; }

/* ── CTA SECTION ──────────────────────────────────────────────── */
.cta-band {
  background: var(--purple);
  color: #fff;
  padding: clamp(4rem,7vw,6rem) 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content:'';
  position: absolute;
  top: -70px; right: -70px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-band::after {
  content:'';
  position: absolute;
  bottom: -90px; left: -50px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.cta-band h2 { color: #fff; margin-bottom: 1.1rem; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin-inline: auto; margin-bottom: 2rem; }
.cta-band .btn-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }

/* ── CONTACT ──────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}
.form-field { margin-bottom: 1.5rem; }
.form-field label {
  display: block;
  font-weight: 800;
  font-size: .9rem;
  color: var(--text-mid);
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: .85rem 1.2rem;
  border: 2px solid var(--cream-border);
  border-radius: 14px;
  background: var(--cream-warm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--purple-mid); box-shadow: 0 0 0 3px var(--purple-light); }
.form-field textarea { min-height: 148px; resize: vertical; }

.contact-details {
  background: var(--cream-card);
  border-radius: 24px;
  padding: 2rem;
  border: 2.5px dashed var(--terra);
  box-shadow: 0 6px 24px var(--shadow-sm);
}
.contact-detail + .contact-detail { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--cream-border); }
.contact-detail dt { font-weight: 900; font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; color: var(--terra); margin-bottom: .35rem; }
.contact-detail dd { color: var(--text-mid); font-size: .95rem; word-break: break-word; line-height: 1.6; }
.contact-detail dd a { color: var(--purple); text-decoration: underline; text-underline-offset: 3px; }

/* ── FOOTER ───────────────────────────────────────────────────── */
.site-footer {
  background: var(--text);
  color: var(--cream);
  padding: clamp(3rem,6vw,5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .brand-lockup { margin-bottom: 1.1rem; }
.footer-brand .wordmark { filter: invert(1) brightness(2.5); }
.footer-brand .logo-icon { border-radius: 10px; }
.footer-brand p { font-size: .93rem; color: #B8A090; line-height: 1.72; }
.footer-col-head {
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--terra-mid);
  margin-bottom: 1.1rem;
}
.footer-nav { display: flex; flex-direction: column; gap: .52rem; }
.footer-nav a { font-size: .92rem; color: #B8A090; transition: color .15s; }
.footer-nav a:hover { color: #fff; }
.footer-emails { display: flex; flex-direction: column; gap: .55rem; }
.footer-emails a { font-size: .82rem; color: #B8A090; word-break: break-all; transition: color .15s; text-decoration: underline; text-underline-offset: 3px; }
.footer-emails a:hover { color: var(--purple-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p { font-size: .82rem; color: #6B5548; margin: 0; }
.footer-bottom a { color: var(--terra-mid); text-decoration: underline; }

/* ── DECORATIVE ───────────────────────────────────────────────── */
.dotted-box {
  border: 2.5px dashed var(--cream-border);
  border-radius: 20px;
  padding: 2rem;
}
.dotted-box--terra { border-color: var(--terra-mid); }
.dotted-box--purple { border-color: var(--purple-mid); }

.intro-text-section { position: relative; }

.blob-accent {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 920px) {
  .split--2col,
  .split--60-40,
  .split--40-60 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }

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

@media (max-width: 700px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--cream-warm);
    padding: 1rem;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 10px 24px var(--shadow);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-inner { flex-wrap: wrap; position: relative; }

  .hero__card { margin-top: -80px; padding: 1.5rem; }
  .hero__card .hero__title { font-size: 1.75rem; }

  .highlights-grid .card:nth-child(2) { margin-top: 0; }
  .ways-grid .way-card:nth-child(2) { margin-top: 0; }

  .impact-row { flex-direction: column; }
  .impact-divider { width: 50px; height: 2px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .polaroid-gallery { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero__card { margin-top: -50px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { text-align: center; }
  .prog-grid { grid-template-columns: 1fr; }
  .ways-grid { grid-template-columns: 1fr; }
  .polaroid-gallery { grid-template-columns: 1fr; }
}
