/* ============================================================
   Les Petits Cuisiniers de Dijon — style.css
   Design: Warm & Human Community / Scrapbook
   ============================================================ */

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

:root {
  --cream:        #FFF8F0;
  --cream-deep:   #FFF3E0;
  --cream-dark:   #F5E6D0;
  --cream-card:   #FFFCF7;
  --terra:        #D4522A;
  --terra-dark:   #B8441F;
  --terra-mid:    #E07050;
  --terra-light:  #FAE8DE;
  --terra-pale:   #FEF2EC;
  --ink:          #2C1A0E;
  --ink-soft:     #5C3D1E;
  --ink-muted:    #8B6848;
  --border:       #E2C4A2;
  --border-dot:   #D4A882;

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

  --shadow-sm:   2px 4px 14px rgba(80,30,0,.08);
  --shadow-md:   4px 10px 32px rgba(80,30,0,.13);
  --shadow-lg:   8px 20px 56px rgba(80,30,0,.18);
  --shadow-card: 6px 14px 40px rgba(80,30,0,.15);

  --r-sm:  12px;
  --r-md:  24px;
  --r-lg:  32px;
  --r-xl:  48px;
}

/* ── BASE ──────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.78;
  font-size: 1.05rem;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); }

.section-label {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terra);
  background: var(--terra-pale);
  padding: .32em 1em;
  border-radius: 999px;
  margin-bottom: 1rem;
  border: 1.5px dotted var(--terra-mid);
}

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

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
  gap: 1rem;
}

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

.brand-lockup:hover { text-decoration: none; }

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

.brand-lockup .wordmark {
  height: 28px;
  width: auto;
  object-fit: contain;
  /* dark artwork on transparent bg — shows fine on cream header */
}

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

.nav-links a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: .9rem;
  padding: .38rem .72rem;
  border-radius: 999px;
  transition: background .18s, color .18s;
  white-space: nowrap;
}

.nav-links a:hover {
  background: var(--terra-pale);
  color: var(--terra);
  text-decoration: none;
}

.nav-links a.active {
  background: var(--terra);
  color: #fff;
}

.nav-links .nav-cta {
  background: var(--terra);
  color: #fff;
}

.nav-links .nav-cta:hover {
  background: var(--terra-dark);
  color: #fff;
}

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 13vh;
  padding-bottom: 160px;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: 0;
  border-radius: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(44,26,14,.58) 0%,
    rgba(44,26,14,.28) 50%,
    rgba(44,26,14,.62) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}

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

.hero-content .hero-sub {
  color: rgba(255,255,255,.92);
  font-size: 1.1rem;
  line-height: 1.82;
  text-shadow: 0 1px 10px rgba(0,0,0,.3);
  margin-bottom: 2.2rem;
}

.hero-btn {
  display: inline-block;
  background: var(--terra);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2.2rem;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(212,82,42,.5);
  transition: transform .2s, box-shadow .2s, background .2s;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,82,42,.6);
  background: var(--terra-dark);
  text-decoration: none;
}

/* Overlap card pulls up from the hero bottom into the next section */
.hero-overlap-wrap {
  position: absolute;
  bottom: -90px;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 1.5rem;
}

.hero-overlap-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--cream-card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.overlap-stat .stat-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--terra);
  line-height: 1;
  display: block;
}

.overlap-stat .stat-label {
  font-size: .9rem;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.4;
  margin-top: .3rem;
  display: block;
}

.overlap-divider {
  width: 1px;
  background: var(--border);
}

/* ── SQUIGGLE DIVIDERS ─────────────────────────────────── */
.squiggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem .5rem;
}

.squiggle-wrap svg {
  width: 100%;
  max-width: 700px;
  height: 40px;
  display: block;
}

/* ── SECTIONS ──────────────────────────────────────────── */
.section { padding: 5rem 1.5rem; }
.section-lg { padding: 7rem 1.5rem; }
.section--cream { background: var(--cream); }
.section--warm { background: var(--cream-deep); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.section-header h2 { margin-bottom: .9rem; }

.section-header p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ── HIGHLIGHTS ────────────────────────────────────────── */
.highlights-section {
  background: var(--cream-deep);
  padding: 8rem 1.5rem 5.5rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1060px;
  margin: 3rem auto 0;
  align-items: start;
}

.highlight-card {
  background: var(--cream-card);
  border-radius: var(--r-md);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.highlight-card:nth-child(1) {
  border: 2px solid var(--border);
}

.highlight-card:nth-child(2) {
  border: 2.5px dashed var(--terra-mid);
  margin-top: 2.8rem;
}

.highlight-card:nth-child(3) {
  border: 2px solid var(--border);
  margin-top: -1.2rem;
}

.highlight-icon {
  font-size: 2.4rem;
  margin-bottom: .9rem;
  display: block;
  line-height: 1;
}

.highlight-card h3 {
  font-size: 1.2rem;
  margin-bottom: .6rem;
  color: var(--terra);
}

.highlight-card p {
  font-size: .93rem;
  color: var(--ink-soft);
  line-height: 1.78;
}

/* ── SPLIT LAYOUT ──────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.split-img-frame {
  position: relative;
}

.split-img-frame::after {
  content: '';
  position: absolute;
  top: 14px;
  right: -14px;
  bottom: -14px;
  left: 14px;
  border: 2.5px dashed var(--terra-mid);
  border-radius: var(--r-xl);
  z-index: 0;
  opacity: .55;
}

.split-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  display: block;
  position: relative;
  z-index: 1;
}

.split-text h2 { margin-bottom: 1.2rem; }

.split-text p {
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  line-height: 1.85;
}

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

.polaroid {
  background: #fff;
  padding: 11px 11px 44px;
  box-shadow: var(--shadow-card);
  border-radius: 3px;
  max-width: 260px;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid rgba(200,170,140,.25);
}

.polaroid:hover {
  box-shadow: var(--shadow-lg);
  transform: rotate(0deg) scale(1.04) !important;
}

.polaroid:nth-child(1) { transform: rotate(-3.2deg); }
.polaroid:nth-child(2) { transform: rotate(2deg); margin-top: 32px; }
.polaroid:nth-child(3) { transform: rotate(-1.2deg); margin-top: -12px; }

.polaroid img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.polaroid-caption {
  text-align: center;
  margin-top: 8px;
  font-size: .8rem;
  color: var(--ink-muted);
  font-style: italic;
  line-height: 1.4;
}

/* ── STAMP BADGE ───────────────────────────────────────── */
.stamp-badge {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 3.5px dashed var(--terra);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--terra-pale);
  transform: rotate(-9deg);
  flex-shrink: 0;
  padding: 1rem;
  position: relative;
  box-shadow: 3px 4px 16px rgba(212,82,42,.18);
}

.stamp-badge::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,82,42,.35);
}

.stamp-badge .stamp-main {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--terra);
  line-height: 1.1;
}

.stamp-badge .stamp-sub {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terra-dark);
  margin-top: .25rem;
  line-height: 1.4;
}

/* ── IMPACT ROW ────────────────────────────────────────── */
.impact-section {
  background: var(--cream);
  padding: 5rem 1.5rem;
}

.impact-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
}

.impact-stats {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.impact-stat-row {
  display: flex;
  align-items: baseline;
  gap: .65rem;
}

.stat-big {
  font-size: 3rem;
  font-weight: 800;
  color: var(--terra);
  line-height: 1;
}

.stat-desc {
  font-size: 1rem;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.4;
}

.impact-quote {
  padding: 2rem;
  background: var(--cream-deep);
  border-radius: var(--r-lg);
  border: 2px solid var(--border);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.8;
}

/* ── PHOTO BANNER ──────────────────────────────────────── */
.photo-banner {
  height: 46vh;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}

.photo-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,26,14,.18), rgba(44,26,14,.52));
}

/* ── PROGRAMME CARDS ───────────────────────────────────── */
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
  align-items: start;
}

.programme-card {
  background: var(--cream-card);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.programme-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--terra);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.programme-card:nth-child(2) { margin-top: 2.5rem; }
.programme-card:nth-child(4) { margin-top: -2rem; }

.programme-icon {
  font-size: 2.4rem;
  margin-bottom: .8rem;
  display: block;
  line-height: 1;
}

.programme-card h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

.programme-card .blurb {
  font-size: .93rem;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: .85rem;
  line-height: 1.65;
}

.programme-card .detail {
  font-size: .9rem;
  color: var(--ink-muted);
  line-height: 1.82;
}

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

.trustee-card {
  background: var(--cream-card);
  border-radius: var(--r-md);
  padding: 1.85rem 1.75rem;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  min-width: 210px;
  max-width: 250px;
}

.trustee-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--terra-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.1rem;
  border: 3px solid var(--terra-pale);
}

.trustee-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

.trustee-card .role {
  font-size: .78rem;
  color: var(--terra);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── WAYS / GET INVOLVED ───────────────────────────────── */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1080px;
  margin: 3rem auto 0;
  align-items: start;
}

.way-card {
  background: var(--cream-card);
  border-radius: var(--r-lg);
  padding: 2.4rem 2rem;
  border: 2.5px dashed var(--border-dot);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}

.way-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.way-card:nth-child(2) { margin-top: 2.5rem; }

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

.way-card h3 {
  font-size: 1.18rem;
  margin-bottom: .6rem;
}

.way-card p {
  font-size: .91rem;
  color: var(--ink-soft);
  line-height: 1.82;
}

/* ── BLOG CARDS ────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1080px;
  margin: 3rem auto 0;
  align-items: start;
}

.blog-card {
  background: var(--cream-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .22s, transform .22s;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.blog-card:nth-child(2) { margin-top: 1.8rem; }

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

.blog-card-body { padding: 1.6rem; }

.blog-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: .5rem;
  line-height: 1.45;
}

.blog-card .dek {
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.72;
  margin-bottom: 1.1rem;
}

.read-more {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--terra);
  border-bottom: 2px solid var(--terra-light);
  padding-bottom: 2px;
  transition: border-color .18s;
}

.read-more:hover {
  border-color: var(--terra);
  text-decoration: none;
}

/* ── MISSION BOX ───────────────────────────────────────── */
.mission-box {
  background: var(--terra-pale);
  border-radius: var(--r-xl);
  border: 2px solid var(--terra-light);
  padding: 3rem 3.5rem;
  max-width: 820px;
  margin: 3rem auto 0;
  position: relative;
}

.mission-box::before {
  content: '\201C';
  position: absolute;
  top: -.3rem;
  left: 2rem;
  font-size: 7rem;
  color: var(--terra);
  opacity: .12;
  font-family: Georgia, serif;
  line-height: 1;
}

.mission-box p {
  font-size: 1.08rem;
  line-height: 1.88;
  color: var(--ink-soft);
}

/* ── STORY / ABOUT TEXT ────────────────────────────────── */
.prose-block {
  max-width: 780px;
  margin: 0 auto;
}

.prose-block p {
  font-size: 1.04rem;
  line-height: 1.88;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

/* ── WHAT WE DO ────────────────────────────────────────── */
.what-section {
  background: var(--cream-deep);
  padding: 5.5rem 1.5rem;
}

/* ── CTA SECTION ───────────────────────────────────────── */
.cta-section {
  background: var(--terra);
  padding: 5.5rem 1.5rem;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  max-width: 660px;
  margin: 0 auto 2rem;
}

.btn-light {
  display: inline-block;
  background: #fff;
  color: var(--terra);
  font-weight: 800;
  font-size: 1.05rem;
  padding: .9rem 2.6rem;
  border-radius: 999px;
  box-shadow: 0 4px 22px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,.28);
  text-decoration: none;
}

.btn-terra {
  display: inline-block;
  background: var(--terra);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: .9rem 2.6rem;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(212,82,42,.35);
  transition: transform .2s, box-shadow .2s, background .2s;
}

.btn-terra:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(212,82,42,.5);
  background: var(--terra-dark);
  text-decoration: none;
}

/* ── PAGE HEADER ───────────────────────────────────────── */
.page-header {
  background: var(--cream-deep);
  padding: 4.5rem 1.5rem 3.5rem;
  border-bottom: 2px solid var(--border);
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: .8rem;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── ARTICLE ───────────────────────────────────────────── */
.article-header {
  background: var(--cream-deep);
  padding: 4rem 1.5rem 3rem;
  border-bottom: 2px solid var(--border);
}

.article-header-inner {
  max-width: 780px;
  margin: 0 auto;
}

.article-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1.2rem;
}

.article-dek {
  font-size: 1.12rem;
  color: var(--ink-soft);
  line-height: 1.75;
  font-style: italic;
  border-left: 4px solid var(--terra);
  padding-left: 1.25rem;
}

.article-hero-img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
}

.article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}

.article-body p {
  margin-bottom: 1.6rem;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--ink-soft);
}

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

.article-back:hover { text-decoration: underline; }

/* ── CONTACT FORM ──────────────────────────────────────── */
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group.full { grid-column: 1 / -1; }

label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: .02em;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: .78rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--cream-card);
  color: var(--ink);
  font-family: var(--font);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(212,82,42,.12);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

button[type="submit"] {
  display: inline-block;
  background: var(--terra);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: .9rem 2.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(212,82,42,.35);
  transition: transform .2s, box-shadow .2s, background .2s;
  font-family: var(--font);
}

button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,82,42,.5);
  background: var(--terra-dark);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info-card {
  background: var(--terra-pale);
  border-radius: var(--r-md);
  padding: 1.6rem;
  border: 2px solid var(--terra-light);
}

.contact-info-card h4 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--terra);
  margin-bottom: .55rem;
  font-weight: 700;
}

.contact-info-card p,
.contact-info-card a {
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.contact-info-card a { color: var(--terra); }
.contact-info-card a:hover { text-decoration: underline; }

/* ── FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.82);
  padding: 4.5rem 1.5rem 2.5rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand { display: flex; flex-direction: column; gap: 1.1rem; }

.footer-brand .brand-lockup { align-items: center; gap: .6rem; }

.footer-brand .logo-icon {
  width: 38px; height: 38px; object-fit: contain;
}

.footer-brand .wordmark {
  height: 26px;
  width: auto;
  object-fit: contain;
  filter: invert(1) brightness(10);
}

.footer-brand p {
  font-size: .87rem;
  line-height: 1.72;
  color: rgba(255,255,255,.55);
  max-width: 280px;
}

.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--terra-light);
  margin-bottom: 1.1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }

.footer-col ul li a {
  font-size: .87rem;
  color: rgba(255,255,255,.65);
  transition: color .18s;
}

.footer-col ul li a:hover {
  color: var(--terra-light);
  text-decoration: none;
}

.footer-col p {
  font-size: .87rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin-bottom: .6rem;
}

.footer-col a {
  color: var(--terra-light);
  font-size: .87rem;
  word-break: break-all;
}

.footer-col a:hover { text-decoration: underline; }

.footer-bottom {
  max-width: 1120px;
  margin: 2.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 960px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .highlight-card:nth-child(2),
  .highlight-card:nth-child(3) { margin-top: 0; }

  .hero-overlap-wrap {
    position: static;
    padding: 1.5rem;
    margin-top: 0;
    bottom: auto;
  }

  .hero-overlap-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem;
  }

  .hero { padding-bottom: 3rem; min-height: 70vh; }

  .highlights-section { padding-top: 4rem; }

  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .impact-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .impact-stat-row { justify-content: center; }
  .stamp-badge { margin: 1rem auto; }

  .programmes-grid { grid-template-columns: 1fr; max-width: 560px; }
  .programme-card:nth-child(2),
  .programme-card:nth-child(4) { margin-top: 0; }

  .ways-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .way-card:nth-child(2) { margin-top: 0; }

  .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .blog-card:nth-child(2) { margin-top: 0; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }

  .trustees-row { flex-direction: column; align-items: center; }

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

  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
}

@media (max-width: 640px) {
  .nav-inner { padding: .7rem 1rem; }
  .nav-links { display: none; }

  .section { padding: 3.5rem 1rem; }
  .section-lg { padding: 5rem 1rem; }
  .highlights-section { padding: 3.5rem 1rem; }
  .what-section { padding: 3.5rem 1rem; }
  .cta-section { padding: 4rem 1rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .hero-overlap-card { gap: 1.5rem; }

  .mission-box { padding: 2rem 1.5rem; }
}

/* ── UTILITY ───────────────────────────────────────────── */
.text-center { text-align: center; }
.text-terra { color: var(--terra); }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
