/* ============================================================
   Vibrant Health Advocates – Andromeda  |  Warm & Human Community
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #FAF6EF;
  --cream-deep:  #F2EAD8;
  --cream-card:  #FFFDF7;
  --terra:       #C4622D;
  --terra-light: #E8916A;
  --terra-pale:  #F9E8DC;
  --purple:      #7B2D8B;
  --purple-light:#F0D9F5;
  --purple-mid:  #B06CC0;
  --bark:        #6B4A2A;
  --ink:         #2C1A0E;
  --ink-soft:    #5C3D24;
  --warm-grey:   #C9B99E;
  --shadow:      rgba(44,26,14,0.13);
  --shadow-soft: rgba(44,26,14,0.07);
  --radius-sm:   12px;
  --radius-md:   24px;
  --radius-lg:   36px;
  --radius-xl:   48px;
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.75;
  font-size: 1.0625rem;
  overflow-x: hidden;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }

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

.lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--ink-soft);
  line-height: 1.8;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.6rem;
  display: block;
}

/* ── Layout Utilities ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 3rem);
}

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section-tight {
  padding: clamp(2rem, 5vw, 4rem) 0;
}

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

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 18px rgba(123,45,139,0.28);
}
.btn-primary:hover { background: #621874; box-shadow: 0 6px 24px rgba(123,45,139,0.38); }

.btn-terra {
  background: var(--terra);
  color: #fff;
  box-shadow: 0 4px 18px rgba(196,98,45,0.28);
}
.btn-terra:hover { background: #a84e22; box-shadow: 0 6px 24px rgba(196,98,45,0.38); }

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2.5px solid var(--purple);
}
.btn-outline:hover { background: var(--purple-light); }

/* ── NAV ── */
.site-nav {
  background: var(--cream-card);
  border-bottom: 2px dotted var(--warm-grey);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem clamp(1.2rem, 4vw, 3rem);
  max-width: 1180px;
  margin: 0 auto;
  gap: 1rem;
}

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

.brand-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-wordmark {
  height: 36px;
  width: auto;
  object-fit: contain;
  /* dark artwork on transparent — shows fine on light nav */
}

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

.nav-links a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--purple-light);
  color: var(--purple);
  text-decoration: none;
}

.nav-cta {
  background: var(--purple) !important;
  color: #fff !important;
  padding: 0.5rem 1.3rem !important;
}
.nav-cta:hover { background: #621874 !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: all 0.2s;
}

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

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--ink);
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: visible;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44,26,14,0.82) 0%,
    rgba(44,26,14,0.45) 50%,
    rgba(44,26,14,0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.2rem, 4vw, 3rem) clamp(4rem, 8vw, 6rem);
  max-width: 760px;
  margin: 0 auto 0 0;
  padding-left: clamp(1.2rem, 6vw, 5rem);
}

.hero-eyebrow {
  display: inline-block;
  background: var(--terra);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.35rem 1.1rem;
  margin-bottom: 1.2rem;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 620px;
}

/* Polaroid card pulled up over hero */
.hero-polaroid-anchor {
  position: relative;
  z-index: 3;
  height: 0;
}

.hero-polaroid {
  position: absolute;
  bottom: -3rem;
  right: clamp(1.5rem, 6vw, 5rem);
  background: var(--cream-card);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.2rem 1.8rem;
  box-shadow: 0 12px 40px var(--shadow);
  transform: rotate(2.5deg);
  max-width: 260px;
  border: 3px solid var(--cream-deep);
}
.hero-polaroid img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 170px;
  object-fit: cover;
  margin-bottom: 0.7rem;
}
.hero-polaroid-caption {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-align: center;
  font-style: italic;
}

/* ── STAMP BADGE ── */
.stamp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.25;
  border: 4px dashed rgba(255,255,255,0.45);
  box-shadow: 0 6px 22px rgba(196,98,45,0.35);
  padding: 0.8rem;
}

.stamp-badge-purple {
  background: var(--purple);
  box-shadow: 0 6px 22px rgba(123,45,139,0.35);
}

/* ── HIGHLIGHT CARDS (HOMEPAGE) ── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.highlight-card {
  background: var(--cream-card);
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem;
  border: 2px dotted var(--warm-grey);
  box-shadow: 0 4px 18px var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.highlight-card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 0 10px 32px var(--shadow);
}
.highlight-card:nth-child(2) { transform: translateY(1.2rem); }
.highlight-card:nth-child(2):hover { transform: translateY(calc(1.2rem - 4px)) rotate(0.5deg); }

.highlight-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  display: block;
}

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

/* ── IMPACT BAR ── */
.impact-bar {
  background: var(--purple);
  color: #fff;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.impact-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E") repeat;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.impact-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.impact-stat {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--purple-light);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.impact-label {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 600;
}

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

.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px var(--shadow);
  position: relative;
}

.split-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ── POLAROID GALLERY ── */
.polaroid-gallery {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 0;
}

.polaroid {
  background: var(--cream-card);
  border-radius: var(--radius-md);
  padding: 1rem 1rem 2rem;
  box-shadow: 0 8px 32px var(--shadow);
  border: 3px solid var(--cream-deep);
  max-width: 240px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.polaroid:hover { transform: scale(1.03) rotate(0deg) !important; }
.polaroid:nth-child(1) { transform: rotate(-3.5deg); }
.polaroid:nth-child(2) { transform: rotate(2deg) translateY(-1rem); }
.polaroid:nth-child(3) { transform: rotate(-1.5deg) translateY(0.8rem); }
.polaroid:nth-child(4) { transform: rotate(3deg); }

.polaroid img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 0.75rem;
}

.polaroid-caption {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-align: center;
  font-style: italic;
}

/* ── PROGRAMME CARDS ── */
.programme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.programme-card {
  background: var(--cream-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 6px 24px var(--shadow-soft);
  border: 2px solid var(--cream-deep);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.programme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px var(--shadow);
}
.programme-card:nth-child(odd) { margin-top: 1.5rem; }

.programme-card-inner {
  padding: 2rem 1.8rem;
  flex: 1;
}

.programme-icon {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
  display: block;
}

.programme-card h3 {
  color: var(--purple);
  margin-bottom: 0.6rem;
}

.programme-detail {
  display: none;
}

.programme-card .blurb {
  color: var(--ink-soft);
  font-size: 0.97rem;
}

/* ── WAYS TO HELP ── */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.way-card {
  background: var(--cream-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 6px 28px var(--shadow-soft);
  border: 2.5px dotted var(--purple-mid);
  transition: transform 0.2s, box-shadow 0.2s;
}
.way-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px var(--shadow); }
.way-card:nth-child(2) { margin-top: 2rem; }

.way-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
}

.way-card h3 { color: var(--purple); margin-bottom: 0.7rem; }

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

.blog-card {
  background: var(--cream-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 6px 24px var(--shadow-soft);
  border: 2px solid var(--cream-deep);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px) rotate(-0.3deg); box-shadow: 0 16px 44px var(--shadow); }
.blog-card:nth-child(2) { margin-top: 2rem; }
.blog-card:nth-child(3) { margin-top: 1rem; }

.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
  line-height: 1.35;
}

.blog-card-dek {
  color: var(--ink-soft);
  font-size: 0.93rem;
  flex: 1;
  margin-bottom: 1.2rem;
}

.blog-card-link {
  font-weight: 700;
  color: var(--purple);
  font-size: 0.93rem;
}
.blog-card-link:hover { color: var(--terra); }

/* ── TRUSTEES ── */
.trustees-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: center;
}

.trustee-card {
  background: var(--cream-card);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  text-align: center;
  border: 2px dotted var(--warm-grey);
  min-width: 180px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  transition: transform 0.2s;
}
.trustee-card:hover { transform: translateY(-3px) rotate(-1deg); }
.trustee-card:nth-child(2) { transform: rotate(1.5deg); }
.trustee-card:nth-child(2):hover { transform: translateY(-3px) rotate(0deg); }

.trustee-initial {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
}

.trustee-card h4 { color: var(--ink); margin-bottom: 0.2rem; }
.trustee-role { font-size: 0.85rem; color: var(--terra); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── CONTACT FORM ── */
.contact-form-wrap {
  background: var(--cream-card);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: 0 8px 36px var(--shadow-soft);
  border: 2px dotted var(--warm-grey);
  max-width: 640px;
}

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

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border: 2px solid var(--warm-grey);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-light);
}

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

/* ── ARTICLE ── */
.article-hero {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 36px var(--shadow);
}
.article-hero img {
  width: 100%;
  height: clamp(260px, 40vw, 480px);
  object-fit: cover;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
}

.article-body h1 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  margin-bottom: 0.8rem;
}

.article-dek {
  font-size: 1.18rem;
  color: var(--ink-soft);
  border-left: 4px solid var(--terra);
  padding-left: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.article-body p {
  margin-bottom: 1.4em;
  color: var(--ink);
}

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

/* ── SECTION BACKGROUNDS ── */
.bg-cream-deep { background: var(--cream-deep); }
.bg-terra-pale { background: var(--terra-pale); }
.bg-purple-light { background: var(--purple-light); }
.bg-white-warm { background: var(--cream-card); }

/* ── DOTTED BORDER ACCENT ── */
.dotted-box {
  border: 2.5px dotted var(--terra);
  border-radius: var(--radius-md);
  padding: 2rem;
}

/* ── MISSION BLOCK ── */
.mission-block {
  background: var(--purple);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 6vw, 4rem);
  position: relative;
  overflow: hidden;
}
.mission-block::after {
  content: '';
  position: absolute;
  right: -3rem;
  top: -3rem;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.mission-block h2 { color: var(--purple-light); margin-bottom: 1.2rem; }
.mission-block p { color: rgba(255,255,255,0.9); font-size: 1.08rem; line-height: 1.8; }

/* ── WHAT WE DO ── */
.what-we-do-text p { margin-bottom: 1.5em; }

/* ── CONTACT INFO CARDS ── */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.contact-info-card {
  background: var(--cream-card);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  border: 2px dotted var(--warm-grey);
  box-shadow: 0 4px 16px var(--shadow-soft);
}
.contact-info-card .icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.contact-info-card h4 { color: var(--purple); margin-bottom: 0.4rem; font-size: 0.95rem; }
.contact-info-card p, .contact-info-card a { font-size: 0.93rem; color: var(--ink-soft); word-break: break-all; }
.contact-info-card a:hover { color: var(--purple); }

/* ── FULL-BLEED BANNER ── */
.fullbleed-banner {
  position: relative;
  height: clamp(340px, 45vw, 520px);
  overflow: hidden;
}
.fullbleed-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.fullbleed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44,26,14,0.55) 0%, rgba(44,26,14,0.15) 60%, transparent 100%);
}
.fullbleed-text {
  position: absolute;
  top: 50%;
  left: clamp(1.5rem, 5vw, 4rem);
  transform: translateY(-50%);
  color: #fff;
  max-width: 480px;
}
.fullbleed-text h2 { color: #fff; margin-bottom: 0.7rem; }
.fullbleed-text p { color: rgba(255,255,255,0.88); }

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='rgba(240,217,245,0.06)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 3rem;
}

.footer-brand .brand-lockup { margin-bottom: 1.2rem; }
.footer-brand .brand-wordmark { filter: invert(1) brightness(2); }
.footer-brand .brand-icon { opacity: 0.9; }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; max-width: 300px; }

.footer-col h4 {
  color: var(--purple-light);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--purple-light); text-decoration: none; }

.footer-email {
  font-size: 0.82rem !important;
  word-break: break-all;
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ── CTA BANNER ── */
.cta-section {
  background: var(--terra-pale);
  border-top: 3px dotted var(--terra-light);
  border-bottom: 3px dotted var(--terra-light);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
  position: relative;
}
.cta-section h2 { color: var(--ink); margin-bottom: 1.2rem; }

/* ── PAGE BANNER (inner pages) ── */
.page-banner {
  background: var(--purple);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.page-banner h1 { color: #fff; margin-bottom: 0.7rem; }
.page-banner p { color: var(--purple-light); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ── SCRAPBOOK ROW ── */
.scrapbook-row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.scrapbook-row.reverse { flex-direction: row-reverse; }

.scrapbook-img-wrap {
  flex: 0 0 auto;
  width: clamp(220px, 35%, 360px);
  position: relative;
}
.scrapbook-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 36px var(--shadow);
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.scrapbook-img-wrap.tilted img { transform: rotate(-2deg); }
.scrapbook-img-wrap.tilted-right img { transform: rotate(2.5deg); }

.scrapbook-text { flex: 1; min-width: 260px; }

/* ── STORY TIMELINE ── */
.story-text {
  max-width: 720px;
  margin: 0 auto;
}
.story-text p { margin-bottom: 1.5em; font-size: 1.05rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .split-img img { height: 300px; }
  .impact-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-polaroid { display: none; }
}

@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream-card); padding: 1rem; border-bottom: 2px dotted var(--warm-grey); z-index: 200; gap: 0.2rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-item { border-bottom: 1px solid rgba(255,255,255,0.15); padding: 1.2rem; }
  .impact-item:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .highlight-card:nth-child(2) { transform: translateY(0); }
  .programme-card:nth-child(odd) { margin-top: 0; }
  .way-card:nth-child(2) { margin-top: 0; }
  .blog-card:nth-child(2),
  .blog-card:nth-child(3) { margin-top: 0; }
  .scrapbook-row, .scrapbook-row.reverse { flex-direction: column; }
  .scrapbook-img-wrap { width: 100%; }
}

/* ── UTILITIES ── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-top { padding-top: 5rem; }
