/* ===== POLARIS — WARM COMMUNITY STYLESHEET ===== */

:root {
  --cream:       #FAF5EF;
  --cream-deep:  #F2E8D8;
  --cream-card:  #FFFCF7;
  --terra:       #C4622D;
  --terra-light: #E8A87C;
  --terra-pale:  #F7E6D8;
  --brand:       #7B2D8B;
  --brand-light: #F0D9F5;
  --brand-mid:   #C49AD0;
  --brown:       #2C1810;
  --brown-mid:   #5C3A28;
  --brown-soft:  #8B6355;
  --white:       #FFFCF7;
  --shadow-warm: rgba(44,24,16,0.12);
  --shadow-terra: rgba(196,98,45,0.18);
  --radius-card: 24px;
  --radius-img:  28px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--brown);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.75;
  min-height: 100vh;
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--brown);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--brand); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--terra); }
strong { font-weight: 700; color: var(--brown); }

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

/* ===== LAYOUT ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ===== NAV ===== */
.site-nav {
  background: var(--white);
  border-bottom: 2px dotted var(--cream-deep);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px var(--shadow-warm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.brand-lockup img.logo-icon {
  height: 44px;
  width: 44px;
  object-fit: contain;
}
.brand-lockup img.wordmark {
  height: 32px;
  object-fit: contain;
  max-width: 220px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brown-mid);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--brand-light);
  color: var(--brand);
}
.nav-cta {
  background: var(--brand) !important;
  color: #fff !important;
  padding: 0.45rem 1.1rem !important;
}
.nav-cta:hover { background: var(--terra) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--brown);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ===== HERO ===== */
.hero-wrap {
  position: relative;
  overflow: visible;
  background: var(--brown);
  padding-bottom: 0;
}
.hero-img-full {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
  opacity: 0.82;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(44,24,16,0.55) 0%, rgba(123,45,139,0.25) 100%);
  pointer-events: none;
}
.hero-text-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  width: min(800px, 90%);
  text-align: center;
  color: #fff;
  z-index: 2;
}
.hero-text-block h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(44,24,16,0.4);
  margin-bottom: 1rem;
}
.hero-text-block p {
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255,255,255,0.93);
  text-shadow: 0 1px 8px rgba(44,24,16,0.3);
  max-width: 640px;
  margin: 0 auto 1.6rem;
}
.hero-card-pull {
  position: relative;
  z-index: 3;
  margin-top: -80px;
  padding: 0 1.5rem;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.hero-stat-row {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 40px var(--shadow-warm);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 2px solid var(--cream-deep);
}
.hero-stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 2px dotted var(--cream-deep);
}
.hero-stat-item:last-child { border-right: none; }
.hero-stat-item .stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}
.hero-stat-item .stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown-mid);
  line-height: 1.3;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 18px rgba(123,45,139,0.25);
}
.btn-primary:hover {
  background: var(--terra);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(196,98,45,0.28);
}
.btn-secondary {
  background: var(--terra-pale);
  color: var(--terra);
  border: 2px solid var(--terra);
}
.btn-secondary:hover {
  background: var(--terra);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 2.5px solid var(--brand);
}
.btn-outline:hover {
  background: var(--brand);
  color: #fff;
}

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

/* ===== HIGHLIGHT CARDS ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2.2rem 2rem;
  border: 2px solid var(--cream-deep);
  box-shadow: 0 4px 22px var(--shadow-warm);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px var(--shadow-warm);
}
.highlight-card:nth-child(2) { margin-top: 1.5rem; }
.highlight-card:nth-child(3) { margin-top: 0.75rem; }
.card-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}
.highlight-card h3 {
  color: var(--brand);
  margin-bottom: 0.7rem;
}
.highlight-card p { color: var(--brown-mid); font-size: 0.97rem; }

/* ===== INTRO SECTION ===== */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-split .text-col {}
.intro-split .img-col { position: relative; }
.polaroid-stack { position: relative; height: 480px; }
.polaroid {
  position: absolute;
  background: var(--white);
  padding: 10px 10px 30px;
  border-radius: 8px;
  box-shadow: 0 6px 28px var(--shadow-warm), 0 1px 4px rgba(44,24,16,0.08);
  border: 2px solid var(--cream-deep);
}
.polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.polaroid-1 {
  width: 280px;
  height: 310px;
  top: 0;
  left: 20px;
  transform: rotate(-3.5deg);
  z-index: 2;
}
.polaroid-2 {
  width: 260px;
  height: 295px;
  top: 80px;
  left: 160px;
  transform: rotate(2.8deg);
  z-index: 3;
}
.polaroid-3 {
  width: 240px;
  height: 270px;
  top: 170px;
  left: 10px;
  transform: rotate(-1.5deg);
  z-index: 1;
}

/* ===== STAMP BADGE ===== */
.stamp-badge {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--brand);
  border: 4px dotted var(--brand-mid);
  outline: 3px solid var(--brand);
  outline-offset: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
  padding: 12px;
  position: absolute;
  bottom: 20px;
  right: 10px;
  z-index: 10;
  transform: rotate(8deg);
  box-shadow: 0 4px 18px rgba(123,45,139,0.3);
}
.stamp-badge .stamp-num {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 2px;
  display: block;
}

/* ===== FULL-BLEED PHOTO BANNER ===== */
.photo-banner {
  position: relative;
  overflow: visible;
  margin-bottom: 80px;
}
.photo-banner-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.photo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44,24,16,0.5) 0%, rgba(44,24,16,0.15) 100%);
  pointer-events: none;
}
.photo-banner-card {
  position: absolute;
  bottom: -70px;
  right: 6%;
  width: min(420px, 90%);
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2.2rem;
  box-shadow: 0 12px 48px var(--shadow-warm);
  border: 2px solid var(--cream-deep);
  z-index: 2;
}
.photo-banner-card h3 { color: var(--brand); margin-bottom: 0.8rem; }
.photo-banner-card p { color: var(--brown-mid); font-size: 0.96rem; margin-bottom: 1.2rem; }

/* ===== PROGRAMME CARDS ===== */
.programme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.programme-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 2px solid var(--cream-deep);
  box-shadow: 0 4px 22px var(--shadow-warm);
  transition: transform 0.22s, box-shadow 0.22s;
}
.programme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 38px var(--shadow-warm);
}
.programme-card:nth-child(even) { margin-top: 1.8rem; }
.prog-card-header {
  background: var(--terra-pale);
  padding: 1.8rem 1.8rem 1.4rem;
  border-bottom: 2px dotted var(--cream-deep);
}
.prog-card-header .card-icon { margin-bottom: 0.6rem; }
.prog-card-header h3 { color: var(--brown); margin-bottom: 0.4rem; }
.prog-card-header p { color: var(--brown-mid); font-size: 0.93rem; }
.prog-card-body {
  padding: 1.5rem 1.8rem 1.8rem;
}
.prog-card-body p { color: var(--brown-mid); font-size: 0.93rem; }

/* ===== ABOUT PARAS / MISSION ===== */
.mission-block {
  background: var(--brand-light);
  border-radius: var(--radius-card);
  padding: 3rem;
  border: 2px dotted var(--brand-mid);
  position: relative;
}
.mission-block blockquote {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brand);
  line-height: 1.7;
  font-style: italic;
}
.mission-block blockquote::before {
  content: "\201C";
  font-size: 4rem;
  color: var(--brand-mid);
  line-height: 0;
  vertical-align: -1.2rem;
  margin-right: 0.2rem;
}

/* ===== TRUSTEE CARDS ===== */
.trustee-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.trustee-card {
  background: var(--terra-pale);
  border-radius: 999px;
  padding: 1rem 2rem;
  border: 2px solid var(--terra-light);
  font-weight: 700;
  color: var(--brown);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  min-width: 160px;
  text-align: center;
}
.trustee-card .t-role { font-size: 0.8rem; color: var(--terra); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== STORY / ABOUT IMG ===== */
.story-img {
  width: 100%;
  border-radius: var(--radius-img);
  display: block;
  box-shadow: 0 8px 38px var(--shadow-warm);
  border: 6px solid var(--white);
  outline: 2px solid var(--cream-deep);
}
.img-caption {
  font-size: 0.82rem;
  color: var(--brown-soft);
  text-align: center;
  margin-top: 0.6rem;
  font-style: italic;
}

/* ===== GET INVOLVED WAYS ===== */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.way-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2.4rem 2rem;
  border: 2px solid var(--cream-deep);
  box-shadow: 0 4px 22px var(--shadow-warm);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.way-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow-warm);
}
.way-card:nth-child(2) { margin-top: 1.5rem; }
.way-card .card-icon { font-size: 2.8rem; margin-bottom: 1rem; }
.way-card h3 { color: var(--brand); margin-bottom: 0.8rem; }
.way-card p { color: var(--brown-mid); font-size: 0.95rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--brand);
  border-radius: var(--radius-card);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -30px;
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-banner h2 { color: #fff; margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 1.8rem; position: relative; z-index: 1; max-width: 600px; margin-left: auto; margin-right: auto; }
.btn-white {
  background: #fff;
  color: var(--brand);
  font-weight: 800;
  position: relative;
  z-index: 1;
}
.btn-white:hover {
  background: var(--terra-pale);
  color: var(--terra);
  transform: translateY(-2px);
}

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 2px solid var(--cream-deep);
  box-shadow: 0 4px 22px var(--shadow-warm);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px var(--shadow-warm);
}
.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 1.8rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-body h3 { color: var(--brown); margin-bottom: 0.6rem; font-size: 1.15rem; line-height: 1.35; }
.blog-card-body .dek { color: var(--brown-mid); font-size: 0.93rem; line-height: 1.6; flex: 1; margin-bottom: 1.2rem; }
.blog-card-body a.read-link {
  color: var(--brand);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.blog-card-body a.read-link:hover { color: var(--terra); }

/* ===== ARTICLE ===== */
.article-hero-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 0 0 var(--radius-img) var(--radius-img);
  display: block;
  margin-bottom: 3rem;
}
.article-header { max-width: 720px; margin: 0 auto 2rem; text-align: center; }
.article-header h1 { margin-bottom: 1rem; }
.article-header .dek { font-size: 1.2rem; color: var(--brown-mid); font-weight: 500; line-height: 1.65; }
.article-body { max-width: 720px; margin: 0 auto; }
.article-body p { font-size: 1.05rem; color: var(--brown); margin-bottom: 1.4em; line-height: 1.82; }
.article-body h2 { margin: 2rem 0 0.8rem; color: var(--brand); }
.article-pull-quote {
  background: var(--brand-light);
  border-left: 5px solid var(--brand);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 1.6rem 2rem;
  margin: 2.5rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brand);
  font-style: italic;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { color: var(--brand); margin-bottom: 1rem; }
.contact-info p { color: var(--brown-mid); font-size: 0.97rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border-radius: 16px;
  border: 2px solid var(--cream-deep);
}
.contact-detail .det-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-detail a { color: var(--brand); font-weight: 600; word-break: break-all; font-size: 0.9rem; }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2.8rem;
  border: 2px solid var(--cream-deep);
  box-shadow: 0 6px 30px var(--shadow-warm);
}
.form-row { margin-bottom: 1.4rem; }
label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brown);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border: 2px solid var(--cream-deep);
  border-radius: 14px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--brown);
  background: var(--cream);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--brand-mid);
  box-shadow: 0 0 0 3px rgba(123,45,139,0.12);
  background: var(--white);
}
textarea { min-height: 130px; resize: vertical; }
.form-submit { width: 100%; font-size: 1.05rem; padding: 0.9rem; }

/* ===== DOTTED DIVIDER ===== */
.dot-divider {
  border: none;
  border-top: 3px dotted var(--cream-deep);
  margin: 3rem 0;
}

/* ===== SECTION BG VARIANTS ===== */
.bg-cream { background: var(--cream); }
.bg-cream-deep { background: var(--cream-deep); }
.bg-terra-pale { background: var(--terra-pale); }
.bg-brand-light { background: var(--brand-light); }
.bg-white { background: var(--white); }

/* ===== INLINE IMAGE OFFSET ===== */
.img-offset-right {
  float: right;
  width: 42%;
  margin: 0 0 2rem 2.5rem;
  border-radius: var(--radius-img);
  box-shadow: 0 8px 32px var(--shadow-warm);
  border: 6px solid var(--white);
  outline: 2px solid var(--cream-deep);
  transform: rotate(1.5deg);
}
.img-offset-left {
  float: left;
  width: 42%;
  margin: 0 2.5rem 2rem 0;
  border-radius: var(--radius-img);
  box-shadow: 0 8px 32px var(--shadow-warm);
  border: 6px solid var(--white);
  outline: 2px solid var(--cream-deep);
  transform: rotate(-1.5deg);
}
.clearfix::after { content: ''; display: table; clear: both; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--brown);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brand-lockup { margin-bottom: 1.2rem; }
.footer-brand .brand-lockup img.wordmark {
  filter: invert(1) brightness(2);
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.7); }
.footer-col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color 0.18s; }
.footer-col ul li a:hover { color: var(--brand-mid); }
.footer-contact-item { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 0.6rem; }
.footer-contact-item a { color: var(--brand-mid); }
.footer-contact-item a:hover { color: var(--terra-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.8rem;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--brand-mid); }
.charity-reg { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ===== PAGE HEADERS ===== */
.page-header {
  background: var(--terra-pale);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  border-bottom: 3px dotted var(--terra-light);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 200px; height: 200px;
  background: rgba(196,98,45,0.06);
  border-radius: 50%;
}
.page-header h1 { color: var(--brown); margin-bottom: 0.8rem; }
.page-header p { color: var(--brown-mid); font-size: 1.1rem; max-width: 620px; margin: 0 auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .intro-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .polaroid-stack { height: 320px; }
  .polaroid-1 { width: 200px; height: 220px; }
  .polaroid-2 { width: 190px; height: 210px; top: 50px; left: 120px; }
  .polaroid-3 { width: 180px; height: 200px; top: 120px; left: 5px; }
  .stamp-badge { bottom: 10px; right: 10px; width: 90px; height: 90px; font-size: 0.62rem; }
  .stamp-badge .stamp-num { font-size: 1.2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .photo-banner-card { position: static; margin: -50px 1.5rem 0; transform: none; }
  .photo-banner { margin-bottom: 2rem; }
  .hero-text-block { top: 40%; transform: translate(-50%, -50%); }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 1rem 1.5rem 1.5rem; border-bottom: 2px dotted var(--cream-deep); box-shadow: 0 8px 24px var(--shadow-warm); gap: 0.4rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .site-nav { position: relative; }
  .hero-img-full { height: 450px; }
  .hero-text-block { width: 92%; top: 38%; }
  .hero-stat-row { grid-template-columns: 1fr; }
  .hero-stat-item { border-right: none; border-bottom: 2px dotted var(--cream-deep); }
  .hero-stat-item:last-child { border-bottom: none; }
  .hero-card-pull { margin-top: -40px; padding: 0 1rem; }
  .highlight-card:nth-child(2),
  .highlight-card:nth-child(3) { margin-top: 0; }
  .programme-card:nth-child(even) { margin-top: 0; }
  .way-card:nth-child(2) { margin-top: 0; }
  .blog-card:nth-child(2),
  .blog-card:nth-child(3) { margin-top: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-wrap { padding: 1.8rem; }
  .mission-block { padding: 2rem 1.5rem; }
  .img-offset-right, .img-offset-left { float: none; width: 100%; margin: 1.5rem 0; transform: none; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .article-hero-img { height: 260px; }
  .photo-banner-img { height: 300px; }
}
