/* ===== VARIABLES ===== */
:root {
  --cream: #FFF3E0;
  --cream-light: #FFFAF4;
  --cream-mid: #F5E6D0;
  --cream-dark: #EDD9C0;
  --terra: #D4522A;
  --terra-light: #E8734E;
  --terra-dark: #A83E1E;
  --brown: #3D2B1F;
  --brown-mid: #5C3D2E;
  --brown-muted: #8A6A58;
  --olive: #7B8A6A;
  --shadow-soft: 0 4px 24px rgba(61,43,31,0.10);
  --shadow-card: 0 8px 32px rgba(61,43,31,0.13);
  --shadow-lift: 0 16px 48px rgba(61,43,31,0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-full: 999px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--cream);
  color: var(--brown);
  line-height: 1.75;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--terra); text-decoration: none; }
a:hover { color: var(--terra-dark); }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--brown);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide { max-width: 1320px; }
.container--narrow { max-width: 820px; }
section { padding: 80px 0; }

/* ===== NAVIGATION ===== */
.site-nav {
  background: var(--cream-light);
  border-bottom: 2px dotted var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(61,43,31,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-brand img.logo-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
}
.nav-brand img.wordmark {
  height: 32px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--brown-mid);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--terra);
  color: #fff;
}
.nav-cta {
  background: var(--terra) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: var(--terra-dark) !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--terra);
  color: var(--terra);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 1.2rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,15,5,0.18) 0%, rgba(30,15,5,0.65) 70%, rgba(30,15,5,0.80) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.hero-content h1 {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
.hero-content p {
  color: rgba(255,255,255,0.92);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  margin-bottom: 32px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.hero-cta {
  display: inline-block;
  background: var(--terra);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(212,82,42,0.45);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.hero-cta:hover {
  background: var(--terra-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,82,42,0.5);
}

/* Hero overlap card */
.hero-overlap-wrap {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}
.hero-overlap-card {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  max-width: 820px;
  width: 100%;
  box-shadow: var(--shadow-lift);
  border: 2px solid var(--cream-dark);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 16px 24px;
  border-right: 2px dotted var(--cream-dark);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--terra);
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--brown-muted);
  font-weight: 600;
  margin-top: 4px;
  line-height: 1.4;
}

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

/* ===== STAMP BADGE ===== */
.stamp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 4px dashed rgba(255,255,255,0.5);
  box-shadow: 0 4px 20px rgba(212,82,42,0.4);
  line-height: 1.3;
  padding: 12px;
  flex-shrink: 0;
}
.stamp-badge--outline {
  background: transparent;
  color: var(--terra);
  border-color: var(--terra);
  border-style: dashed;
  border-width: 3px;
}

/* ===== SECTIONS ===== */
.section--cream { background: var(--cream); }
.section--light { background: var(--cream-light); }
.section--mid { background: var(--cream-mid); }
.section--terra {
  background: var(--terra);
  color: #fff;
}
.section--terra h2, .section--terra h3 { color: #fff; }
.section--terra p { color: rgba(255,255,255,0.9); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terra);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--terra);
  border-radius: 2px;
}

/* ===== HIGHLIGHT CARDS ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.highlight-card {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.highlight-card:nth-child(2) { margin-top: 28px; }
.highlight-card:nth-child(3) { margin-top: 12px; }
.highlight-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}
.highlight-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--brown);
}
.highlight-card p {
  font-size: 0.95rem;
  color: var(--brown-muted);
  line-height: 1.7;
}
.highlight-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--terra);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ===== INTRO TEXT ===== */
.intro-text {
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  line-height: 1.85;
  color: var(--brown-mid);
  max-width: 760px;
}

/* ===== POLAROID GALLERY ===== */
.polaroid-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 48px 0;
}
.polaroid {
  background: #fff;
  padding: 14px 14px 40px 14px;
  box-shadow: var(--shadow-lift);
  border-radius: var(--radius-sm);
  max-width: 280px;
  flex-shrink: 0;
  transition: transform 0.25s, box-shadow 0.25s;
}
.polaroid:hover {
  transform: rotate(0deg) scale(1.04);
  box-shadow: 0 24px 60px rgba(61,43,31,0.22);
  z-index: 2;
}
.polaroid:nth-child(1) { transform: rotate(-3deg); }
.polaroid:nth-child(2) { transform: rotate(1.5deg) translateY(-12px); }
.polaroid:nth-child(3) { transform: rotate(-1deg) translateY(8px); }
.polaroid:nth-child(4) { transform: rotate(2.5deg); }
.polaroid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}
.polaroid-caption {
  margin-top: 12px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brown-muted);
  font-style: italic;
  line-height: 1.4;
}

/* ===== SPLIT LAYOUT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  position: relative;
}
.split-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}
.split-img .stamp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
}

/* ===== PROGRAMME CARDS ===== */
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.prog-card {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--cream-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}
.prog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.prog-card:nth-child(even) { margin-top: 20px; }
.prog-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}
.prog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--brown);
}
.prog-blurb {
  font-size: 0.95rem;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 12px;
}
.prog-detail {
  font-size: 0.93rem;
  color: var(--brown-muted);
  line-height: 1.75;
}

/* ===== TEAM / TRUSTEES ===== */
.trustees-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.trustee-card {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  border: 2px dotted var(--cream-dark);
  flex: 1;
  min-width: 200px;
  text-align: center;
}
.trustee-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream-dark);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--terra);
  font-weight: 800;
  border: 3px solid var(--terra);
}
.trustee-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--brown);
}
.trustee-role {
  font-size: 0.85rem;
  color: var(--terra);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.blog-card {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--cream-dark);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}
.blog-card:nth-child(2) { margin-top: 24px; }
.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--brown);
  line-height: 1.35;
}
.blog-card-dek {
  font-size: 0.92rem;
  color: var(--brown-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--terra);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.read-more::after {
  content: '→';
  transition: transform 0.2s;
}
.blog-card:hover .read-more::after { transform: translateX(4px); }

/* ===== WAYS TO HELP ===== */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.way-card {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--cream-dark);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.way-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.way-card:nth-child(2) { margin-top: 24px; }
.way-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.way-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--brown);
}
.way-card p {
  font-size: 0.93rem;
  color: var(--brown-muted);
  line-height: 1.75;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--terra);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  border: 3px dashed rgba(255,255,255,0.25);
  pointer-events: none;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}
.cta-banner p { color: rgba(255,255,255,0.88); margin-bottom: 32px; }
.btn {
  display: inline-block;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
  letter-spacing: 0.01em;
}
.btn--white {
  background: #fff;
  color: var(--terra);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  color: var(--terra-dark);
}
.btn--terra {
  background: var(--terra);
  color: #fff;
  box-shadow: 0 4px 20px rgba(212,82,42,0.4);
}
.btn--terra:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,82,42,0.5);
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: var(--terra);
  border: 2px solid var(--terra);
}
.btn--outline:hover {
  background: var(--terra);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { font-size: 1rem; color: var(--brown-muted); line-height: 1.8; margin-bottom: 20px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--cream-light);
  border-radius: var(--radius-md);
  border: 2px dotted var(--cream-dark);
  margin-bottom: 12px;
}
.contact-detail-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-detail-text { font-size: 0.92rem; }
.contact-detail-text strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--terra); font-weight: 800; margin-bottom: 2px; }
.contact-detail-text a { color: var(--brown); font-weight: 600; font-size: 0.92rem; word-break: break-all; }
.contact-detail-text a:hover { color: var(--terra); }

.contact-form {
  background: var(--cream-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--cream-dark);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--brown-mid);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 2px solid var(--cream-dark);
  background: var(--cream);
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--brown);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(212,82,42,0.12);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  font-size: 1.05rem;
  padding: 18px;
  border-radius: var(--radius-full);
}

/* ===== ARTICLE ===== */
.article-hero {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin-bottom: 40px;
  box-shadow: var(--shadow-lift);
}
.article-header {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}
.article-header h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}
.article-header .dek {
  font-size: 1.18rem;
  color: var(--brown-muted);
  line-height: 1.7;
  font-style: italic;
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--brown-mid);
}
.article-body p { margin-bottom: 1.5em; }
.article-body p:first-child::first-letter {
  float: left;
  font-size: 3.8em;
  font-weight: 900;
  line-height: 0.85;
  margin: 0.06em 0.12em 0 0;
  color: var(--terra);
}

/* ===== FULLBLEED PHOTO SECTION ===== */
.photo-fullbleed {
  position: relative;
  height: 480px;
  overflow: hidden;
  margin: 0;
}
.photo-fullbleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-fullbleed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30,15,5,0.55) 0%, rgba(30,15,5,0.2) 60%, rgba(30,15,5,0.1) 100%);
}
.photo-fullbleed-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 60px;
}
.photo-fullbleed-content h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 520px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  background: var(--cream-mid);
  padding: 64px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px dotted var(--cream-dark);
}
.page-header::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--terra);
  opacity: 0.06;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--terra);
  opacity: 0.05;
}
.page-header h1 { position: relative; z-index: 1; margin-bottom: 16px; }
.page-header p { position: relative; z-index: 1; color: var(--brown-muted); font-size: 1.12rem; max-width: 640px; margin: 0 auto; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--brown-muted);
  font-weight: 600;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--terra); }
.breadcrumb span { color: var(--brown-muted); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--brown);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 32px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .logo-icon { width: 40px; height: 40px; border-radius: 50%; }
.footer-brand .wordmark { height: 26px; width: auto; filter: invert(1) brightness(2); }
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.footer-col h5 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-weight: 800;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--terra-light); }
.footer-emails { margin-top: 16px; }
.footer-emails a {
  display: block;
  color: var(--terra-light) !important;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  word-break: break-all;
}
.footer-emails a:hover { color: #fff !important; }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0 0 24px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* ===== DOTTED BOX ===== */
.dotted-box {
  border: 2px dotted var(--terra);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  background: rgba(212,82,42,0.04);
  margin: 32px 0;
}

/* ===== ACCENT QUOTE ===== */
blockquote.accent {
  border-left: 5px solid var(--terra);
  padding: 20px 28px;
  background: var(--cream-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 32px 0;
  font-size: 1.12rem;
  font-style: italic;
  color: var(--brown-mid);
  box-shadow: var(--shadow-soft);
}

/* ===== TEXT UTILITIES ===== */
.text-terra { color: var(--terra); }
.text-muted { color: var(--brown-muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0 !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-card:nth-child(2),
  .highlight-card:nth-child(3) { margin-top: 0; }
  .highlight-card:nth-child(3) { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card:nth-child(2) { margin-top: 0; }
  .ways-grid { grid-template-columns: repeat(2, 1fr); }
  .way-card:nth-child(2) { margin-top: 0; }
}
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse { direction: ltr; }
  .split-img img { height: 300px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-card:nth-child(n) { margin-top: 0; }
  .highlight-card:nth-child(3) { max-width: 100%; }
  .programmes-grid { grid-template-columns: 1fr; }
  .prog-card:nth-child(even) { margin-top: 0; }
  .hero-overlap-card { grid-template-columns: 1fr; gap: 0; }
  .stat-item { border-right: none; border-bottom: 2px dotted var(--cream-dark); }
  .stat-item:last-child { border-bottom: none; }
  .ways-grid { grid-template-columns: 1fr; }
  .way-card:nth-child(n) { margin-top: 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:nth-child(n) { margin-top: 0; }
  .trustees-row { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream-light); padding: 16px; border-bottom: 2px dotted var(--cream-dark); box-shadow: var(--shadow-card); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-inner { flex-wrap: wrap; position: relative; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 40px 24px; }
  .photo-fullbleed-content { padding: 0 28px; }
  .photo-fullbleed { height: 360px; }
  .hero { min-height: 540px; padding-bottom: 80px; }
  .hero-overlap-card { margin-top: -60px; }
  .contact-form { padding: 28px 20px; }
  .polaroid-row { gap: 16px; }
  .polaroid { max-width: 220px; }
  h1 { font-size: clamp(2rem, 7vw, 3rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
}
@media (max-width: 480px) {
  .hero-overlap-wrap { padding: 0 12px; }
  .hero-overlap-card { padding: 24px 20px; }
  .nav-brand img.wordmark { max-width: 140px; }
  .container { padding: 0 16px; }
}
