/* ============================================================
   LES PETITS CUISINIERS DE TOURS — Warm & Human Community
   Design System: scrapbook, polaroid, terracotta, cream
   ============================================================ */

:root {
  --cream:       #FFF3E0;
  --cream-light: #FFFDF8;
  --cream-mid:   #F5E6C8;
  --cream-dark:  #E8D4A0;
  --terra:       #D4522A;
  --terra-light: #E8815A;
  --terra-pale:  #FAE5DC;
  --terra-dark:  #A83E1F;
  --brown:       #5C3D2E;
  --brown-mid:   #8B6145;
  --text:        #3D2B1F;
  --text-mid:    #6B4A35;
  --text-light:  #8B6145;
  --white:       #FFFDF8;
  --radius-card: 28px;
  --radius-img:  28px;
  --shadow-sm:   0 4px 18px rgba(61,43,31,.10);
  --shadow:      0 8px 32px rgba(61,43,31,.14);
  --shadow-lg:   0 16px 56px rgba(61,43,31,.20);
  --shadow-xl:   0 24px 72px rgba(61,43,31,.26);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.78;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--terra); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }
ul { list-style: none; }

h1,h2,h3,h4,h5 {
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2rem,   5.5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem,2.5vw, 1.55rem); }
h4 { font-size: 1.15rem; font-weight: 800; }

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- STICKY NAV ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream-light);
  border-bottom: 2.5px solid var(--cream-mid);
  box-shadow: 0 2px 14px rgba(61,43,31,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 12px;
  flex-wrap: wrap;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-lockup:hover { text-decoration: none; }
.brand-icon { width: 46px; height: 46px; object-fit: contain; flex-shrink: 0; }
.brand-wordmark { height: 30px; width: auto; object-fit: contain; flex-shrink: 0; }
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--text);
  font-weight: 700;
  font-size: .88rem;
  padding: 6px 14px;
  border-radius: 999px;
  transition: background .18s, color .18s;
  letter-spacing: .01em;
}
.nav-links a:hover,
.nav-links a.active { background: var(--terra); color: var(--white); text-decoration: none; }
.nav-cta { background: var(--terra) !important; color: var(--white) !important; }
.nav-cta:hover { background: var(--terra-dark) !important; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--brown);
  color: var(--cream);
  padding: 72px 28px 40px;
}
.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 56px;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo { width: 50px; height: 50px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-wordmark-img { height: 28px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.footer-col h4 {
  color: var(--cream-mid);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .10em;
  margin-bottom: 18px;
  font-weight: 800;
  opacity: .7;
}
.footer-col p,
.footer-col a {
  color: var(--cream-mid);
  font-size: .93rem;
  line-height: 1.65;
  margin-bottom: 8px;
  display: block;
}
.footer-col a:hover { color: var(--terra-light); text-decoration: underline; }
.footer-bottom {
  max-width: 1160px;
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  text-align: center;
  font-size: .82rem;
  color: rgba(245,226,192,.55);
}
.footer-tagline {
  color: rgba(245,226,192,.75);
  font-size: .93rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-weight: 800;
  font-size: .94rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s;
  text-decoration: none;
  letter-spacing: .01em;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); text-decoration: none; }
.btn-primary { background: var(--terra); color: var(--white); }
.btn-primary:hover { background: var(--terra-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2.5px solid rgba(255,255,255,.75); }
.btn-outline:hover { background: rgba(255,255,255,.15); color: var(--white); }
.btn-terra-outline { background: transparent; color: var(--terra); border: 2.5px solid var(--terra); }
.btn-terra-outline:hover { background: var(--terra); color: var(--white); }

/* ---- SECTION ANATOMY ---- */
section { padding: 80px 0; }
.section-chip {
  display: inline-block;
  background: var(--terra-pale);
  color: var(--terra);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-heading { margin-bottom: 16px; }
.section-intro {
  color: var(--text-light);
  font-size: 1.08rem;
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 0;
}

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

/* ---- HERO (homepage full-bleed) ---- */
.hero {
  position: relative;
  min-height: 90vh;
  background-size: cover;
  background-position: center 35%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 96px 0 230px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(45,28,18,.62) 0%,
    rgba(212,82,42,.22) 55%,
    rgba(45,28,18,.18) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 48px;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--terra);
  color: var(--white);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem,6vw,4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
  text-shadow: 0 3px 20px rgba(45,28,18,.45);
}
.hero-sub {
  color: rgba(255,243,224,.92);
  font-size: clamp(1rem,2vw,1.18rem);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- OVERLAP CARD (pulled up over hero) ---- */
.overlap-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  margin-top: -150px;
  padding: 0 28px;
}
.overlap-card {
  background: var(--cream-light);
  border: 5px solid var(--cream-dark);
  border-radius: var(--radius-card);
  padding: 40px 56px;
  max-width: 900px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  text-align: center;
}
.overlap-card h2 { color: var(--terra); margin-bottom: 14px; }
.overlap-card p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---- HOME INTRO SPLIT ---- */
.home-intro { background: var(--cream-light); padding: 96px 0 80px; }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ---- POLAROID CARDS ---- */
.polaroid {
  background: var(--white);
  border: 7px solid var(--cream-dark);
  border-radius: 14px;
  padding: 12px 12px 44px;
  box-shadow: var(--shadow-lg);
  display: inline-block;
}
.polaroid img { width: 100%; border-radius: 8px; }
.polaroid-caption {
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  color: var(--brown-mid);
  margin-top: 10px;
  font-style: italic;
}
.tilt-l  { transform: rotate(-2.8deg); }
.tilt-r  { transform: rotate( 2.2deg); }
.tilt-sl { transform: rotate(-1.4deg); }
.tilt-sr { transform: rotate( 1.2deg); }

/* ---- IMAGE STACK (decorative) ---- */
.img-stack { position: relative; }
.img-stack-main {
  width: 100%;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream-dark);
}
.img-stack-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 130px;
  height: 130px;
  background: var(--terra-pale);
  border: 3.5px dashed var(--terra);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  transform: rotate(-10deg);
  box-shadow: var(--shadow-sm);
  font-size: .68rem;
  font-weight: 900;
  color: var(--terra);
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ---- HIGHLIGHT CARDS (staggered) ---- */
.highlights-section { background: var(--cream); padding: 80px 0; }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  padding-top: 8px;
}
.h-card {
  background: var(--cream-light);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  border: 2.5px dashed var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: transform .22s, box-shadow .22s;
}
.h-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.h-card:nth-child(1) { margin-top: 0; }
.h-card:nth-child(2) { margin-top: 44px; }
.h-card:nth-child(3) { margin-top: 20px; }
.h-card-icon { font-size: 2.6rem; margin-bottom: 18px; display: block; }
.h-card h3 { color: var(--terra); margin-bottom: 12px; font-size: 1.18rem; }
.h-card p { color: var(--text-light); font-size: .94rem; line-height: 1.75; margin-bottom: 0; }

/* ---- IMPACT BAND ---- */
.impact-band { background: var(--terra); padding: 72px 0; }
.impact-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}
.impact-item { text-align: center; color: var(--white); }
.impact-stat {
  font-size: clamp(2.8rem,5.5vw,4.2rem);
  font-weight: 900;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.03em;
}
.impact-divider { color: rgba(255,255,255,.3); font-size: 2rem; }
.impact-label { font-size: .94rem; font-weight: 700; opacity: .88; letter-spacing: .03em; }

/* ---- PHOTO STRIP (scrollable polaroids) ---- */
.photo-strip-section { background: var(--cream-mid); padding: 64px 0; overflow: hidden; }
.photo-strip {
  display: flex;
  gap: 28px;
  padding: 24px 28px 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  align-items: center;
}
.photo-strip::-webkit-scrollbar { display: none; }
.photo-strip .polaroid { flex-shrink: 0; width: 220px; }

/* ---- CTA SECTION ---- */
.cta-section {
  background: var(--cream-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner { position: relative; z-index: 2; }
.cta-section h2 { max-width: 580px; margin: 0 auto 16px; color: var(--text); }
.cta-section p { max-width: 460px; margin: 0 auto 36px; color: var(--text-light); font-size: 1.05rem; }
.cta-deco {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--terra-pale);
  border-radius: 50%;
  opacity: .45;
  top: -80px;
  right: -80px;
  pointer-events: none;
}
.cta-deco-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--cream-mid);
  border-radius: 50%;
  opacity: .6;
  bottom: -60px;
  left: -60px;
  pointer-events: none;
}

/* ---- PAGE HEADERS (inner pages) ---- */
.page-header {
  background: var(--cream-light);
  padding: 72px 0 56px;
  border-bottom: 3px solid var(--cream-mid);
  position: relative;
  overflow: hidden;
}
.page-header-deco {
  position: absolute;
  top: -40px; right: -40px;
  width: 240px; height: 240px;
  background: var(--terra-pale);
  border-radius: 50%;
  opacity: .4;
  pointer-events: none;
}
.page-header h1 { margin-bottom: 14px; }
.page-header .lead {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.78;
}

/* ---- ABOUT PAGE ---- */
.about-split { padding: 88px 0; }
.about-img-col { position: relative; padding: 20px 32px 48px 0; }
.about-img-main {
  width: 100%;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream-dark);
}
.about-img-polaroid {
  position: absolute;
  bottom: 0;
  right: -8px;
  width: 52%;
  transform: rotate(3.5deg);
}
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--text-light); }

/* ---- STORY ---- */
.story-section { background: var(--terra-pale); padding: 88px 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}
.pull-quote {
  border-left: 5px solid var(--terra);
  padding: 22px 28px;
  margin: 28px 0;
  background: rgba(255,255,255,.6);
  border-radius: 0 18px 18px 0;
  font-size: 1.12rem;
  font-style: italic;
  color: var(--text);
  font-weight: 700;
  line-height: 1.6;
}
.story-img-wrap { position: relative; margin-top: 16px; }
.story-img {
  width: 100%;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255,255,255,.7);
}
.story-stamp {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  background: var(--terra);
  border: 3px dashed rgba(255,255,255,.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  transform: rotate(-8deg);
  font-size: .65rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .07em;
  text-transform: uppercase;
  line-height: 1.5;
  box-shadow: var(--shadow);
}

/* ---- MISSION ---- */
.mission-section { background: var(--cream-light); padding: 88px 0; }
.mission-box {
  max-width: 840px;
  margin: 0 auto;
  background: var(--terra-pale);
  border-radius: var(--radius-card);
  padding: 52px 64px;
  border: 3px dashed var(--terra-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission-box::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 40px;
  font-size: 14rem;
  font-weight: 900;
  color: var(--terra);
  opacity: .08;
  line-height: 1;
  font-family: Georgia, serif;
}
.mission-box p { color: var(--text); font-size: 1.1rem; line-height: 1.85; font-style: italic; font-weight: 600; }

/* ---- TRUSTEES ---- */
.trustees-section { background: var(--cream); padding: 80px 0; }
.trustees-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 44px;
}
.trustee-card {
  background: var(--cream-light);
  border: 3px solid var(--cream-dark);
  border-radius: 24px;
  padding: 32px 36px;
  text-align: center;
  min-width: 200px;
  flex: 1;
  max-width: 280px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s;
}
.trustee-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.trustee-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--terra-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin: 0 auto 18px;
  border: 3px dashed var(--terra-light);
}
.trustee-card h4 { color: var(--text); font-weight: 800; margin-bottom: 5px; font-size: 1.05rem; }
.trustee-card .role { color: var(--terra); font-size: .9rem; font-weight: 700; }

/* ---- OUR WORK ---- */
.ourwork-intro { background: var(--cream-light); padding: 88px 0; }
.ourwork-img-wrap {
  width: 100%;
  max-height: 440px;
  overflow: hidden;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream-dark);
  margin-bottom: 56px;
}
.ourwork-img-wrap img { width: 100%; height: 440px; object-fit: cover; }
.what-we-do-box {
  background: var(--cream-mid);
  border-radius: var(--radius-card);
  padding: 48px 52px;
  border: 2.5px solid var(--cream-dark);
  margin-top: 16px;
}
.what-we-do-box p { color: var(--text-light); }

/* ---- PROGRAMMES ---- */
.programmes-section { background: var(--cream); padding: 80px 0; }
.programme-card {
  background: var(--cream-light);
  border-radius: var(--radius-card);
  padding: 40px 44px;
  border: 2px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
}
.programme-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.programme-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: var(--terra);
  border-radius: 4px 0 0 4px;
}
.prog-icon { font-size: 2.6rem; margin-bottom: 12px; display: block; }
.programme-card h3 { color: var(--text); margin-bottom: 10px; }
.programme-card .blurb { color: var(--text-mid); font-weight: 700; margin-bottom: 10px; }
.programme-card .detail { color: var(--text-light); font-size: .95rem; line-height: 1.78; margin-bottom: 0; }

/* ---- GET INVOLVED ---- */
.getinvolved-hero-img {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  border-radius: var(--radius-img);
  margin-bottom: 0;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream-dark);
}
.getinvolved-hero-img img { width: 100%; height: 400px; object-fit: cover; }
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 48px;
}
.way-card {
  background: var(--cream-light);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  border: 2.5px dashed var(--cream-dark);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .22s, box-shadow .22s;
  position: relative;
}
.way-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.way-card:nth-child(1) { margin-top: 0; }
.way-card:nth-child(2) { margin-top: 40px; }
.way-card:nth-child(3) { margin-top: 16px; }
.way-icon { font-size: 3rem; display: block; margin-bottom: 22px; }
.way-card h3 { color: var(--terra); margin-bottom: 14px; }
.way-card p { color: var(--text-light); font-size: .94rem; margin-bottom: 28px; }

/* ---- BLOG ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: start;
  margin-top: 48px;
}
.blog-card {
  background: var(--cream-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 3px solid var(--cream-dark);
  transition: transform .22s, box-shadow .22s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-card:nth-child(1) { margin-top: 0; }
.blog-card:nth-child(2) { margin-top: 36px; }
.blog-card:nth-child(3) { margin-top: 18px; }
.blog-card-img { width: 100%; height: 210px; object-fit: cover; border-radius: 0; }
.blog-card-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block;
  background: var(--terra-pale);
  color: var(--terra);
  font-size: .72rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.blog-card h3 { font-size: 1.04rem; margin-bottom: 10px; line-height: 1.38; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--terra); text-decoration: none; }
.blog-card .dek { color: var(--text-light); font-size: .9rem; line-height: 1.65; flex: 1; margin-bottom: 22px; }
.read-more {
  color: var(--terra);
  font-weight: 800;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}
.read-more:hover { text-decoration: underline; }
.read-more-arrow { transition: transform .18s; }
.read-more:hover .read-more-arrow { transform: translateX(3px); }

/* ---- ARTICLE ---- */
.article-header { background: var(--cream-light); padding: 72px 0 56px; }
.article-meta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 22px; }
.article-tag {
  display: inline-block;
  background: var(--terra-pale);
  color: var(--terra);
  font-size: .72rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.article-header h1 { max-width: 800px; margin-bottom: 18px; }
.article-dek {
  color: var(--text-light);
  font-size: 1.12rem;
  line-height: 1.72;
  max-width: 680px;
  font-style: italic;
  font-weight: 600;
}
.article-hero-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-img);
  margin: 48px 0 56px;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream-dark);
  display: block;
}
.article-body { max-width: 740px; margin: 0 auto; padding: 0 28px 96px; }
.article-body p { color: var(--text); margin-bottom: 1.5em; font-size: 1.05rem; line-height: 1.88; }
.article-body p strong { color: var(--terra); font-weight: 900; }
.article-body h2 { color: var(--text); margin: 2em 0 .7em; }
.article-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  border-top: 2px solid var(--cream-mid);
  margin-top: 16px;
  flex-wrap: wrap;
  gap: 16px;
}
.article-back { color: var(--terra); font-weight: 800; font-size: .92rem; display: inline-flex; gap: 5px; align-items: center; }
.article-back:hover { text-decoration: underline; }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 22px; }
.contact-info p { color: var(--text-light); margin-bottom: 14px; font-size: 1.02rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: var(--cream-light);
  border-radius: 16px;
  border: 2px solid var(--cream-dark);
  margin-bottom: 12px;
}
.contact-detail-icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-detail p { margin: 0; font-size: .95rem; color: var(--text-mid); }
.contact-detail a { color: var(--terra); font-weight: 700; }
.contact-form-wrap {
  background: var(--cream-light);
  border-radius: var(--radius-card);
  padding: 52px 48px;
  border: 2.5px solid var(--cream-dark);
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { margin-bottom: 28px; color: var(--text); }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 7px; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border-radius: 16px;
  border: 2px solid var(--cream-dark);
  background: var(--cream);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px var(--terra-pale);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- MISC UTILS ---- */
.text-center { text-align: center; }
.text-terra { color: var(--terra); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.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-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .highlights-grid,
  .ways-grid,
  .blog-grid { grid-template-columns: 1fr; gap: 24px; }
  .h-card:nth-child(2),
  .h-card:nth-child(3),
  .way-card:nth-child(2),
  .way-card:nth-child(3),
  .blog-card:nth-child(2),
  .blog-card:nth-child(3) { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .split-grid,
  .about-split .split-grid,
  .story-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 72px 0 180px; min-height: 75vh; }
  .hero-content { padding: 0 24px; }
  .overlap-wrapper { margin-top: -100px; }
  .overlap-card { padding: 28px 28px; }
  .about-img-polaroid { display: none; }
  .mission-box { padding: 36px 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .impact-flex { gap: 40px; }
  .what-we-do-box { padding: 32px 28px; }
  .programme-card { padding: 32px 28px; }
  .nav-inner { padding: 8px 16px; }
  .brand-wordmark { height: 24px; }
  .brand-icon { width: 36px; height: 36px; }
}

@media (max-width: 480px) {
  .nav-links a { font-size: .78rem; padding: 5px 10px; }
  .hero h1 { font-size: 2rem; }
  .overlap-card { padding: 22px 20px; }
  .blog-card:nth-child(n) { margin-top: 0; }
  .ways-grid,
  .highlights-grid { gap: 20px; }
}
