/* ===== PETITS CUISINIERS DE LILLE — DESIGN SYSTEM ===== */
/* Warm & Human Community archetype */

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

:root {
  --terracotta: #D4522A;
  --terracotta-light: #E8784F;
  --terracotta-pale: #F5D5C8;
  --cream: #FFF3E0;
  --cream-dark: #F5E6C8;
  --cream-mid: #FAF0D7;
  --warm-brown: #6B3E26;
  --warm-brown-light: #9B6B4A;
  --earthy: #C4956A;
  --ink: #2C1810;
  --ink-light: #5C3D2E;
  --white: #FFFDF9;
  --shadow-warm: rgba(100, 45, 15, 0.12);
  --shadow-deep: rgba(100, 45, 15, 0.22);
  --radius-card: 24px;
  --radius-img: 20px;
  --radius-pill: 100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI Rounded", "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.75;
  font-size: 18px;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--terracotta); text-decoration: none; }
a:hover { text-decoration: underline; }

strong { font-weight: 700; color: var(--warm-brown); }

/* ===== LAYOUT ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 1.5rem; }
.container--wide { max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; }

section { padding: 5rem 0; }

/* ===== NAVIGATION ===== */
.site-nav {
  background: var(--white);
  border-bottom: 2px solid var(--terracotta-pale);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 18px var(--shadow-warm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
  gap: 1rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand img.nav-logo {
  height: 44px;
  width: auto;
}
.nav-brand img.nav-wordmark {
  height: 32px;
  width: auto;
  max-width: 220px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--terracotta-pale);
  color: var(--terracotta);
}
.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  border-radius: var(--radius-pill) !important;
  padding: 0.5rem 1.2rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--terracotta-light) !important;
  text-decoration: none !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--terracotta-pale);
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--warm-brown);
  color: var(--cream);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-brand img.footer-logo {
  height: 48px;
  filter: brightness(0) invert(1);
  margin-bottom: 0.6rem;
}
.footer-brand img.footer-wordmark {
  display: block;
  height: 28px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
  max-width: 200px;
}
.footer-brand p { font-size: 0.9rem; opacity: 0.82; line-height: 1.6; }
.footer-links h4, .footer-contact h4 {
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  opacity: 0.7;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links ul a {
  color: var(--cream-dark);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-links ul a:hover { color: var(--terracotta-pale); text-decoration: none; }
.footer-contact p { font-size: 0.92rem; opacity: 0.85; line-height: 1.7; }
.footer-contact a { color: var(--terracotta-pale); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.83rem;
  opacity: 0.55;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--shadow-deep); text-decoration: none; }
.btn-primary { background: var(--terracotta); color: var(--white); }
.btn-primary:hover { background: var(--terracotta-light); }
.btn-cream { background: var(--cream); color: var(--terracotta); }
.btn-cream:hover { background: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 2.5px solid var(--terracotta);
}
.btn-outline:hover { background: var(--terracotta-pale); }
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.12rem; }

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

/* ===== STAMP BADGE ===== */
.stamp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px dashed var(--terracotta);
  background: var(--cream-dark);
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.3;
  padding: 0.5rem;
  box-shadow: 0 3px 14px var(--shadow-warm);
  transform: rotate(-6deg);
  flex-shrink: 0;
}
.stamp-badge span { display: block; font-size: 1.6rem; letter-spacing: 0; margin-bottom: 0.2rem; }

/* ===== DOTTED BORDER ===== */
.dotted-box {
  border: 3px dotted var(--earthy);
  border-radius: var(--radius-card);
  padding: 2rem;
  background: var(--white);
}

/* ===== POLAROID CARDS ===== */
.polaroid {
  background: var(--white);
  border-radius: 16px;
  padding: 12px 12px 28px;
  box-shadow: 0 8px 32px var(--shadow-deep);
  display: inline-block;
}
.polaroid img {
  width: 100%;
  border-radius: 12px;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.polaroid-caption {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--warm-brown);
  text-align: center;
  margin-top: 0.6rem;
  font-style: italic;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 680px;
  overflow: visible;
  background: var(--warm-brown);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero.jpg');
  background-size: cover;
  background-position: center 30%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(40, 18, 6, 0.28) 0%,
    rgba(40, 18, 6, 0.55) 60%,
    rgba(40, 18, 6, 0.78) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 1.5rem 10rem;
  max-width: 1140px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.2rem;
}
.hero h1 {
  color: var(--white);
  max-width: 680px;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-sub {
  color: rgba(255,245,225,0.9);
  font-size: 1.15rem;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Pulled-up overlap card */
.hero-overlap {
  position: relative;
  z-index: 3;
  margin-top: -90px;
}
.hero-overlap-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HIGHLIGHT CARDS ===== */
.highlight-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  box-shadow: 0 8px 32px var(--shadow-deep);
  position: relative;
}
.highlight-card:nth-child(2) { transform: translateY(16px); }
.highlight-card:nth-child(3) { transform: translateY(-8px); }
.highlight-icon {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
  display: block;
}
.highlight-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--terracotta);
}
.highlight-card p { font-size: 0.95rem; line-height: 1.65; color: var(--ink-light); }

/* ===== HOME INTRO SECTION ===== */
.home-intro { background: var(--cream-mid); }
.home-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-text h2 { margin-bottom: 1.2rem; }
.intro-text p { color: var(--ink-light); font-size: 1.05rem; line-height: 1.8; }
.intro-image-stack {
  position: relative;
  height: 420px;
}
.intro-img-main {
  position: absolute;
  right: 0; top: 0;
  width: 80%;
  height: 340px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 40px var(--shadow-deep);
}
.intro-img-polaroid {
  position: absolute;
  left: 0; bottom: 0;
  width: 220px;
  background: var(--white);
  padding: 10px 10px 28px;
  border-radius: 14px;
  box-shadow: 0 8px 28px var(--shadow-deep);
  transform: rotate(3.5deg);
  z-index: 2;
}
.intro-img-polaroid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.intro-img-polaroid .polaroid-caption { margin-top: 0.5rem; font-size: 0.78rem; }

/* ===== IMPACT STATS ===== */
.impact-bar {
  background: var(--terracotta);
  color: var(--white);
  padding: 3rem 0;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.impact-stat { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; line-height: 1; }
.impact-label { font-size: 1rem; opacity: 0.88; margin-top: 0.4rem; font-weight: 600; }
.impact-item { padding: 1rem; }
.impact-item + .impact-item {
  border-left: 2px solid rgba(255,255,255,0.25);
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.6rem; }
.section-eyebrow {
  display: inline-block;
  background: var(--terracotta-pale);
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.8rem;
}
.section-header p { color: var(--ink-light); max-width: 620px; margin: 0.8rem auto 0; font-size: 1.05rem; }

/* ===== PROGRAMME CARDS ===== */
.programmes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.programme-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2.2rem;
  box-shadow: 0 6px 28px var(--shadow-warm);
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.programme-card:hover {
  border-color: var(--terracotta-pale);
  transform: translateY(-4px);
}
.programme-card:nth-child(even) { margin-top: 2rem; }
.prog-icon {
  font-size: 2.6rem;
  display: block;
  margin-bottom: 0.9rem;
}
.programme-card h3 { color: var(--terracotta); margin-bottom: 0.7rem; }
.programme-card .blurb { font-weight: 600; color: var(--ink); margin-bottom: 0.8rem; font-size: 1rem; }
.programme-card .detail { font-size: 0.94rem; color: var(--ink-light); line-height: 1.7; }

/* ===== PHOTO FEATURE (full-bleed) ===== */
.photo-feature {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.photo-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(40,18,6,0.72) 0%, rgba(40,18,6,0.2) 60%, transparent 100%);
  display: flex;
  align-items: center;
}
.photo-feature-text {
  color: var(--white);
  padding: 3rem;
  max-width: 520px;
}
.photo-feature-text h2 { color: var(--white); margin-bottom: 1rem; }
.photo-feature-text p { font-size: 1.05rem; opacity: 0.9; }

/* ===== TEAM ===== */
.team-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trustee-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.8rem 2rem;
  text-align: center;
  min-width: 200px;
  box-shadow: 0 5px 22px var(--shadow-warm);
  border: 3px dotted var(--earthy);
  flex: 1;
  max-width: 260px;
}
.trustee-initial {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--terracotta-pale);
  color: var(--terracotta);
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.trustee-card h4 { font-size: 1.08rem; margin-bottom: 0.3rem; }
.trustee-role {
  font-size: 0.85rem;
  color: var(--terracotta);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: var(--cream-mid);
  padding: 4rem 0 3rem;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-image-wrap {
  position: relative;
}
.about-image-main {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 12px 40px var(--shadow-deep);
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-stamp {
  position: absolute;
  bottom: -20px;
  right: -16px;
}
.about-text h1 { margin-bottom: 1rem; }
.about-text p { color: var(--ink-light); font-size: 1.03rem; line-height: 1.8; margin-bottom: 1.2rem; }

/* ===== MISSION BLOCK ===== */
.mission-block {
  background: var(--warm-brown);
  color: var(--cream);
  border-radius: var(--radius-card);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.mission-block::before {
  content: '"';
  position: absolute;
  top: -0.3rem;
  left: 1.5rem;
  font-size: 8rem;
  color: rgba(255,255,255,0.07);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}
.mission-block h3 { color: var(--cream-dark); margin-bottom: 1rem; }
.mission-block p { font-size: 1.05rem; line-height: 1.8; opacity: 0.9; }

/* ===== STORY SECTION ===== */
.story-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 4rem;
  align-items: start;
}
.story-text p { color: var(--ink-light); font-size: 1.03rem; line-height: 1.85; margin-bottom: 1.3rem; }

/* ===== GET INVOLVED ===== */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.way-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2.2rem;
  box-shadow: 0 6px 28px var(--shadow-warm);
  text-align: center;
  transition: transform 0.2s;
}
.way-card:hover { transform: translateY(-5px); }
.way-card:nth-child(2) { background: var(--terracotta); color: var(--white); }
.way-card:nth-child(2) h3 { color: var(--white); }
.way-card:nth-child(2) p { color: rgba(255,255,255,0.88); }
.way-icon { font-size: 2.8rem; display: block; margin-bottom: 1rem; }
.way-card h3 { margin-bottom: 0.8rem; }
.way-card p { font-size: 0.95rem; line-height: 1.7; color: var(--ink-light); }

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 6px 28px var(--shadow-warm);
  transition: transform 0.2s;
}
.blog-card:hover { transform: translateY(-5px); }
.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; }
.blog-tag {
  display: inline-block;
  background: var(--terracotta-pale);
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.8rem;
}
.blog-card h3 { font-size: 1.08rem; margin-bottom: 0.6rem; line-height: 1.35; }
.blog-card p { font-size: 0.92rem; color: var(--ink-light); line-height: 1.65; margin-bottom: 1rem; }
.blog-card a.read-more {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--terracotta);
  text-decoration: none;
}
.blog-card a.read-more:hover { text-decoration: underline; }

/* ===== ARTICLE PAGE ===== */
.article-header {
  background: var(--cream-mid);
  padding: 4rem 0 3rem;
  border-bottom: 2px solid var(--terracotta-pale);
}
.article-tag {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.article-header h1 { max-width: 820px; margin-bottom: 1rem; }
.article-dek {
  font-size: 1.2rem;
  color: var(--ink-light);
  max-width: 700px;
  line-height: 1.65;
  font-style: italic;
}
.article-hero-img {
  width: 100%;
  max-width: 860px;
  border-radius: 24px;
  margin: 2.5rem auto;
  display: block;
  box-shadow: 0 12px 40px var(--shadow-deep);
  aspect-ratio: 16/7;
  object-fit: cover;
}
.article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}
.article-body p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink-light);
  margin-bottom: 1.5em;
}
.article-body p:first-child {
  font-size: 1.18rem;
  color: var(--ink);
  font-weight: 500;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  box-shadow: 0 8px 36px var(--shadow-warm);
}
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
  color: var(--ink);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 14px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px var(--terracotta-pale);
  background: var(--white);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.contact-info h3 { margin-bottom: 1rem; color: var(--terracotta); }
.contact-info p { color: var(--ink-light); line-height: 1.75; margin-bottom: 1rem; font-size: 1rem; }
.contact-info a { color: var(--terracotta); }
.contact-info a:hover { text-decoration: underline; }
.contact-detail {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border-radius: 14px;
  border-left: 4px solid var(--terracotta);
}
.contact-detail-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-detail-text { font-size: 0.94rem; color: var(--ink-light); line-height: 1.6; }
.contact-detail-text strong { display: block; color: var(--ink); margin-bottom: 0.15rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--cream-mid);
  border-top: 3px solid var(--terracotta-pale);
  border-bottom: 3px solid var(--terracotta-pale);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 1rem; color: var(--warm-brown); }
.cta-banner p { font-size: 1.1rem; color: var(--ink-light); max-width: 560px; margin: 0 auto 1.8rem; }

/* ===== SQUIGGLE SECTION BREAK ===== */
.cream-section { background: var(--cream); }
.cream-mid-section { background: var(--cream-mid); }

/* ===== INLINE POLAROID GALLERY ===== */
.polaroid-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.polaroid-row .polaroid {
  width: calc(33% - 1.5rem);
  min-width: 220px;
}
.polaroid-row .polaroid:nth-child(2) { transform: rotate(-2.5deg); margin-top: 24px; }
.polaroid-row .polaroid:nth-child(3) { transform: rotate(1.8deg); margin-top: -10px; }

/* ===== WHAT WE DO ===== */
.what-we-do-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.what-we-do-text p { color: var(--ink-light); font-size: 1.03rem; line-height: 1.85; margin-bottom: 1.3rem; }
.what-we-do-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 12px 40px var(--shadow-deep);
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  transform: rotate(-1.5deg);
}

/* ===== PAGE HERO (non-homepage) ===== */
.page-hero {
  background: var(--cream-mid);
  padding: 3.5rem 0 3rem;
  border-bottom: 2px solid var(--terracotta-pale);
}
.page-hero h1 { margin-bottom: 0.7rem; }
.page-hero p { color: var(--ink-light); font-size: 1.1rem; max-width: 600px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-overlap-inner { grid-template-columns: 1fr; max-width: 480px; }
  .highlight-card:nth-child(2), .highlight-card:nth-child(3) { transform: none; }
  .hero-overlap { margin-top: -20px; }
  .home-intro-grid { grid-template-columns: 1fr; }
  .intro-image-stack { height: 300px; margin-top: 2rem; }
  .intro-img-polaroid { width: 150px; }
  .impact-grid { grid-template-columns: 1fr; text-align: left; }
  .impact-item + .impact-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.25); }
  .about-hero-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .what-we-do-grid { grid-template-columns: 1fr; }
  .ways-grid { grid-template-columns: 1fr; }
  .programmes-grid { grid-template-columns: 1fr; }
  .programme-card:nth-child(even) { margin-top: 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:nth-child(2), .blog-card:nth-child(3) { margin-top: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .polaroid-row .polaroid { width: 100%; }
  .polaroid-row .polaroid:nth-child(2), .polaroid-row .polaroid:nth-child(3) { transform: none; margin-top: 0; }
}

@media (max-width: 700px) {
  section { padding: 3rem 0; }
  .hero-content { padding: 3rem 1.5rem 8rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 1rem 1.5rem; border-bottom: 2px solid var(--terracotta-pale); box-shadow: 0 8px 24px var(--shadow-warm); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; }
  .photo-feature { height: 320px; }
  .photo-feature-text { padding: 1.5rem; }
  h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .mission-block { padding: 2rem 1.5rem; }
  .about-stamp { display: none; }
}
