/* =================================================================
   LES PETITS CUISINIERS DE TOURS — ANTENNE DE POITIERS
   Warm & Human Community — Complete Design System
   ================================================================= */

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

/* ── Variables ── */
:root {
  --cream:           #FFF3E0;
  --cream-light:     #FFFBF5;
  --cream-mid:       #EDD9C0;
  --cream-deep:      #E0C8A8;
  --terracotta:      #D4522A;
  --terracotta-lt:   #E0714F;
  --terracotta-pale: #FAEAE3;
  --brown-dark:      #3D2B1F;
  --brown-mid:       #7A5C4A;
  --brown-light:     #C4A882;
  --warm-white:      #FFFDF9;
  --shadow-sm:  rgba(61,43,31,0.10);
  --shadow-md:  rgba(61,43,31,0.16);
  --shadow-lg:  rgba(61,43,31,0.24);
}

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

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--brown-dark);
  line-height: 1.75;
  font-size: 17px;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--terracotta); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--terracotta-lt); }
h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; color: var(--brown-dark); }
h1 { font-size: clamp(1.9rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1rem; }
ul { list-style: none; }

/* ── Layout ── */
.container      { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-primary {
  background: var(--terracotta);
  color: white;
  box-shadow: 0 4px 18px rgba(212,82,42,0.38);
}
.btn-primary:hover { background: var(--terracotta-lt); color: white; box-shadow: 0 6px 26px rgba(212,82,42,0.48); }

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

.btn-white {
  background: white;
  color: var(--terracotta);
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}
.btn-white:hover { background: var(--cream-light); color: var(--terracotta); }

/* ── Navigation ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream-light);
  border-bottom: 2px solid var(--cream-mid);
  box-shadow: 0 2px 14px var(--shadow-sm);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 11px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-lockup:hover { text-decoration: none; }
.brand-logo     { width: 42px; height: 42px; object-fit: contain; flex-shrink: 0; }
.brand-wordmark { height: 33px; width: auto; object-fit: contain; max-width: 210px; }

.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  color: var(--brown-dark);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 7px 13px;
  border-radius: 30px;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { background: var(--terracotta-pale); color: var(--terracotta); text-decoration: none; }

.btn-nav {
  background: var(--terracotta);
  color: white !important;
  padding: 9px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(212,82,42,0.32);
  flex-shrink: 0;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s;
}
.btn-nav:hover { background: var(--terracotta-lt); transform: translateY(-1px); text-decoration: none; }

/* Mobile nav toggle (CSS-only) */
.nav-toggle-input { display: none; }
.nav-toggle-label { display: none; }

/* ── Footer ── */
.site-footer {
  background: var(--brown-dark);
  color: var(--cream-mid);
  padding: 64px 0 32px;
  margin-top: 80px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 44px;
}
.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-logo     { width: 40px; height: 40px; object-fit: contain; filter: brightness(0) invert(1); flex-shrink: 0; }
.footer-wordmark { height: 28px; width: auto; object-fit: contain; max-width: 200px; filter: invert(1) brightness(10); }
.footer-tagline  { font-size: 0.88rem; color: var(--brown-light); line-height: 1.65; margin-bottom: 20px; }
.footer-emails a { display: block; color: var(--terracotta-lt); font-size: 0.87rem; margin-bottom: 5px; }
.footer-emails a:hover { color: white; text-decoration: none; }

.footer-nav-col h4 {
  color: white;
  font-size: 0.82rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-nav-col ul li { margin-bottom: 8px; }
.footer-nav-col ul a { color: var(--brown-light); font-size: 0.88rem; }
.footer-nav-col ul a:hover { color: white; text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(196,168,130,0.18);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--brown-light); font-size: 0.8rem; margin: 0; }

/* ── Squiggle Divider ── */
.squiggle-wrap { display: flex; justify-content: center; padding: 4px 0; overflow: hidden; line-height: 0; }
.squiggle-wrap svg { width: 100%; height: 44px; }

/* ── Section utilities ── */
.section     { padding: 84px 0; }
.section-sm  { padding: 56px 0; }
.section-alt  { background: var(--cream-light); }
.section-warm { background: var(--terracotta-pale); }
.section-dark { background: var(--brown-dark); color: var(--cream); }

.section-eyebrow {
  display: inline-block;
  color: var(--terracotta);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title    { margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--brown-mid); max-width: 640px; margin-bottom: 48px; line-height: 1.75; }
.center-text      { text-align: center; }
.center-text .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Hero (homepage) ── */
.hero-home {
  position: relative;
  background: var(--brown-dark);
  overflow: hidden;
}
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(42,22,10,0.76) 0%, rgba(42,22,10,0.45) 52%, rgba(42,22,10,0.12) 100%);
  z-index: 1;
}
.hero-home-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 28px 0;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hero-home-text { max-width: 610px; }
.hero-tagline {
  font-size: clamp(2rem, 4.8vw, 3.3rem);
  font-weight: 900;
  color: white;
  line-height: 1.13;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 14px rgba(0,0,0,0.38);
}
.hero-sub {
  color: rgba(255,255,255,0.91);
  font-size: 1.04rem;
  line-height: 1.8;
  margin-bottom: 2.4rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.28);
}
.hero-badge-pill {
  display: inline-block;
  background: rgba(212,82,42,0.55);
  color: rgba(255,235,220,0.95);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,200,170,0.3);
}
.hero-spacer { height: 140px; position: relative; z-index: 2; }

/* Overlap card */
.overlap-wrap {
  max-width: 920px;
  margin: -100px auto 0;
  padding: 0 28px;
  position: relative;
  z-index: 20;
}
.overlap-card {
  background: var(--warm-white);
  border-radius: 28px;
  padding: 48px 56px;
  box-shadow: 0 14px 52px var(--shadow-lg);
  border: 2px dotted var(--brown-light);
}
.overlap-card h2 { margin-bottom: 18px; }
.overlap-card p  { font-size: 1.03rem; line-height: 1.85; color: var(--brown-mid); margin: 0; }

/* ── Polaroid Cards ── */
.polaroid {
  background: white;
  border-radius: 3px;
  box-shadow: 4px 6px 28px var(--shadow-lg);
  overflow: hidden;
  flex-shrink: 0;
}
.polaroid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.polaroid-caption {
  padding: 12px 14px 30px;
  text-align: center;
  font-size: 0.83rem;
  color: var(--brown-mid);
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
}
.rot-l  { transform: rotate(-2.5deg); }
.rot-r  { transform: rotate(2.2deg);  }
.rot-sl { transform: rotate(-1deg);   }
.rot-sr { transform: rotate(3deg);    }

/* Polaroid collage */
.polaroid-collage {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  padding: 16px 8px;
}
.polaroid-collage .polaroid { width: 200px; }
.polaroid-collage .polaroid:nth-child(2) { margin-top: 36px; }

/* ── Photo + text rows ── */
.photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.photo-row.reverse { direction: rtl; }
.photo-row.reverse > * { direction: ltr; }

.photo-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow-md);
}
.photo-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* ── Highlights ── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.highlight-card {
  background: var(--warm-white);
  border-radius: 24px;
  padding: 36px 30px;
  box-shadow: 0 4px 22px var(--shadow-sm);
  border: 2px dotted var(--cream-mid);
  transition: transform 0.2s, box-shadow 0.2s;
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px var(--shadow-md); }
.highlight-card:nth-child(2) { margin-top: 36px; }
.highlight-icon  { font-size: 2.4rem; margin-bottom: 16px; }
.highlight-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; }
.highlight-blurb { color: var(--brown-mid); font-size: 0.94rem; line-height: 1.75; margin: 0; }

/* ── Impact Stats ── */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.impact-card {
  background: var(--warm-white);
  border-radius: 24px;
  padding: 44px 28px 36px;
  box-shadow: 0 4px 22px var(--shadow-sm);
  border: 2px solid var(--cream-mid);
  text-align: center;
}
.impact-stat  { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; color: var(--terracotta); line-height: 1; margin-bottom: 10px; }
.impact-label { font-weight: 700; color: var(--brown-mid); font-size: 0.97rem; }

/* ── Stamp Badge ── */
.stamp-badge {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 3px solid var(--terracotta);
  background: var(--terracotta-pale);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.stamp-badge::before {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 2px dashed var(--terracotta);
  opacity: 0.7;
}
.stamp-num  { font-size: 1.55rem; font-weight: 900; color: var(--terracotta); line-height: 1; position: relative; z-index: 1; }
.stamp-text { font-size: 0.66rem; font-weight: 700; color: var(--terracotta); text-transform: uppercase; letter-spacing: 0.06em; position: relative; z-index: 1; margin-top: 2px; }

/* ── Programmes ── */
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
}
.programme-card {
  background: var(--warm-white);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 4px 22px var(--shadow-sm);
  border-left: 5px solid var(--terracotta);
  transition: transform 0.2s, box-shadow 0.2s;
}
.programme-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px var(--shadow-md); }
.programme-card:nth-child(even) { margin-top: 28px; }
.prog-icon   { font-size: 2rem; margin-bottom: 12px; }
.prog-title  { font-size: 1.18rem; font-weight: 800; margin-bottom: 10px; }
.prog-blurb  { color: var(--brown-mid); font-size: 0.94rem; line-height: 1.7; margin-bottom: 16px; }
.prog-detail {
  font-size: 0.88rem;
  color: var(--brown-mid);
  line-height: 1.7;
  padding-top: 16px;
  border-top: 1.5px dotted var(--cream-deep);
}

/* ── What We Do ── */
.what-text p { font-size: 1.03rem; line-height: 1.85; color: var(--brown-dark); margin-bottom: 1.4rem; }

/* ── Trustees ── */
.trustees-wrap { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; padding: 8px 0; }
.trustee-badge {
  width: 152px;
  height: 152px;
  border-radius: 50%;
  border: 3px dotted var(--brown-light);
  background: var(--warm-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  box-shadow: 0 4px 18px var(--shadow-sm);
  transition: transform 0.2s;
}
.trustee-badge:hover { transform: scale(1.04); }
.trustee-name { font-weight: 800; font-size: 0.84rem; color: var(--brown-dark); line-height: 1.3; margin-bottom: 5px; }
.trustee-role { font-size: 0.74rem; font-weight: 700; color: var(--terracotta); }

/* ── Ways (Get Involved) ── */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.way-card {
  background: var(--warm-white);
  border-radius: 24px;
  padding: 44px 30px 36px;
  box-shadow: 0 4px 22px var(--shadow-sm);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.way-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px var(--shadow-md); }
.way-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--terracotta);
  border-radius: 24px 24px 0 0;
}
.way-card:nth-child(2) { margin-top: 36px; }
.way-icon  { font-size: 2.8rem; margin-bottom: 18px; }
.way-title { font-size: 1.12rem; font-weight: 800; margin-bottom: 12px; }
.way-blurb { color: var(--brown-mid); font-size: 0.94rem; line-height: 1.75; }

/* ── Blog Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: start;
}
.blog-teaser {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 4px 7px 28px var(--shadow-lg);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-teaser:hover { transform: translateY(-4px) rotate(0deg) !important; box-shadow: 6px 12px 40px var(--shadow-lg); }
.blog-teaser:nth-child(1) { transform: rotate(-1.5deg); }
.blog-teaser:nth-child(2) { transform: rotate(1deg);   margin-top: 32px; }
.blog-teaser:nth-child(3) { transform: rotate(-0.6deg); }

.blog-teaser-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.blog-teaser-body { padding: 22px 22px 28px; }
.blog-teaser-title { font-size: 1.02rem; font-weight: 800; line-height: 1.3; margin-bottom: 10px; color: var(--brown-dark); }
.blog-teaser-dek   { font-size: 0.87rem; color: var(--brown-mid); line-height: 1.6; margin-bottom: 18px; }
.blog-teaser-link  { font-size: 0.87rem; font-weight: 700; color: var(--terracotta); }
.blog-teaser-link:hover { text-decoration: underline; }

/* ── Page hero banner ── */
.page-banner {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: var(--brown-dark);
}
.page-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.page-banner-veil { position: absolute; inset: 0; background: rgba(42,22,10,0.5); }
.page-banner-inner {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 28px;
  max-width: 1140px;
  margin: 0 auto;
}
.page-banner h1 { color: white; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.page-banner .sub { color: rgba(255,255,255,0.85); font-size: 1rem; margin: 6px 0 0; max-width: 560px; }

/* ── Mission Banner ── */
.mission-block {
  background: var(--terracotta);
  border-radius: 24px;
  padding: 60px 72px;
  color: white;
  position: relative;
  overflow: hidden;
}
.mission-block::before {
  content: '✦';
  position: absolute;
  top: -30px; right: 40px;
  font-size: 9rem;
  opacity: 0.07;
  color: white;
  pointer-events: none;
}
.mission-block h2   { color: white; margin-bottom: 20px; }
.mission-block p    { color: rgba(255,255,255,0.91); font-size: 1.04rem; line-height: 1.82; max-width: 800px; margin: 0; }

/* ── CTA Section ── */
.cta-band {
  background: var(--brown-dark);
  padding: 80px 28px;
  text-align: center;
}
.cta-band h2  { color: white; font-size: clamp(1.75rem, 4vw, 2.8rem); margin-bottom: 18px; }
.cta-band p   { color: rgba(255,255,255,0.78); font-size: 1.04rem; max-width: 520px; margin: 0 auto 36px; }

/* ── Story layout ── */
.story-row {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.story-text p { font-size: 1.03rem; line-height: 1.85; margin-bottom: 1.4rem; color: var(--brown-dark); }

/* ── Article Layout ── */
.article-head { padding: 64px 0 44px; }
.article-eyebrow {
  display: inline-block;
  background: var(--terracotta-pale);
  color: var(--terracotta);
  font-weight: 700;
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.article-title { font-size: clamp(1.75rem, 4vw, 2.9rem); font-weight: 900; margin-bottom: 18px; max-width: 780px; }
.article-dek   { font-size: 1.18rem; color: var(--brown-mid); max-width: 680px; line-height: 1.7; margin: 0; }
.article-hero-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px var(--shadow-md);
  display: block;
}
.article-body { max-width: 740px; margin: 0 auto; }
.article-body p { font-size: 1.04rem; line-height: 1.88; margin-bottom: 1.55rem; color: var(--brown-dark); }
.article-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 48px;
  border-top: 2px dotted var(--cream-mid);
  margin-top: 48px;
  flex-wrap: wrap;
}

/* ── Contact Form ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 68px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 18px; }
.contact-info p  { font-size: 1.03rem; color: var(--brown-mid); line-height: 1.75; margin-bottom: 24px; }
.contact-emails {
  background: var(--warm-white);
  border-radius: 18px;
  padding: 24px 28px;
  border: 2px dotted var(--cream-mid);
  margin-bottom: 24px;
}
.contact-emails p   { font-size: 0.88rem; color: var(--brown-light); margin-bottom: 8px; }
.contact-emails a   { display: block; font-weight: 700; font-size: 0.93rem; color: var(--terracotta); margin-bottom: 6px; }
.contact-emails a:hover { text-decoration: underline; }
.contact-form-wrap {
  background: var(--warm-white);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 6px 28px var(--shadow-sm);
  border: 2px dotted var(--cream-mid);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--brown-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 2px solid var(--cream-mid);
  border-radius: 12px;
  background: var(--cream-light);
  font-family: system-ui, sans-serif;
  font-size: 0.94rem;
  color: var(--brown-dark);
  transition: border-color 0.18s, background 0.18s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--terracotta); background: white; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  background: var(--terracotta);
  color: white;
  padding: 15px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  margin-top: 4px;
  font-family: system-ui, sans-serif;
}
.form-submit:hover { background: var(--terracotta-lt); transform: translateY(-2px); }

/* ── Dotted accent box ── */
.dotted-box {
  border: 2px dotted var(--brown-light);
  border-radius: 18px;
  padding: 28px 32px;
  background: var(--warm-white);
}

/* ── Text content helper ── */
.text-body p { font-size: 1.03rem; line-height: 1.85; margin-bottom: 1.4rem; color: var(--brown-dark); }

/* ── Scrapbook accent underline ── */
.accent-word { color: var(--terracotta); }

/* ── Two col layout ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

/* ── Inline stamp row (impact with badge) ── */
.impact-with-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* ── ========== RESPONSIVE ========== ── */
@media (max-width: 1080px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-inner > :first-child { grid-column: 1 / -1; }
  .story-row { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .programmes-grid  { grid-template-columns: 1fr; }
  .programme-card:nth-child(even) { margin-top: 0; }
  .contact-layout   { grid-template-columns: 1fr; gap: 36px; }
  .two-col          { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .nav-inner    { flex-wrap: wrap; padding: 10px 16px; }
  .brand-lockup { flex: 1 1 auto; }
  .btn-nav      { display: none; }
  .nav-toggle-label {
    display: flex; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 8px; border-radius: 8px; flex-shrink: 0;
  }
  .nav-toggle-label span {
    display: block; width: 22px; height: 2px;
    background: var(--brown-dark); border-radius: 2px;
  }
  .nav-links {
    display: none; flex-direction: column; align-items: stretch;
    width: 100%; padding: 10px 0; gap: 0;
    border-top: 1px solid var(--cream-mid); margin-top: 6px;
  }
  .nav-links a { display: block; padding: 9px 12px; border-radius: 8px; }
  .nav-toggle-input:checked ~ .nav-links { display: flex; }

  /* Hero */
  .hero-home-content { padding: 72px 20px 0; min-height: 380px; }
  .hero-spacer       { height: 110px; }
  .overlap-wrap      { margin-top: -80px; padding: 0 16px; }
  .overlap-card      { padding: 28px 24px; }

  /* Grids */
  .highlights-grid { grid-template-columns: 1fr; gap: 16px; }
  .highlight-card:nth-child(2) { margin-top: 0; }
  .impact-grid    { grid-template-columns: 1fr; gap: 16px; }
  .photo-row      { grid-template-columns: 1fr; gap: 32px; }
  .photo-row.reverse { direction: ltr; }
  .ways-grid      { grid-template-columns: 1fr; gap: 16px; }
  .way-card:nth-child(2) { margin-top: 0; }
  .blog-grid      { grid-template-columns: 1fr; gap: 24px; }
  .blog-teaser:nth-child(n) { transform: none; margin-top: 0; }
  .polaroid-collage { flex-direction: column; align-items: center; }
  .polaroid-collage .polaroid { width: 100%; max-width: 300px; margin-top: 0 !important; }

  /* Page Banner */
  .page-banner { height: 240px; }

  /* Article */
  .article-head { padding: 44px 0 32px; }

  /* Contact */
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner > :first-child { grid-column: auto; }
  .site-footer { margin-top: 48px; }

  /* Mission */
  .mission-block { padding: 44px 28px; }

  /* Section */
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  .hero-home-content { padding: 60px 16px 0; }
  .hero-spacer { height: 90px; }
  .overlap-wrap { margin-top: -60px; }
  .container { padding: 0 16px; }
  .trustee-badge { width: 130px; height: 130px; }
}
