/* ================================================================
   Les Petits Cuisiniers de Tours — Section de Grenoble
   Design System: Warm & Human Community
   ================================================================ */

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

:root {
  --cream:           #FFF3E0;
  --cream-light:     #FFFAF5;
  --cream-medium:    #FDEBD0;
  --cream-dark:      #EAD5BE;
  --terracotta:      #D4522A;
  --terracotta-light:#E8906E;
  --terracotta-dark: #A03D1E;
  --brown-dark:      #2C1810;
  --brown-mid:       #6B4226;
  --brown-light:     #9B7B5B;
  --warm-white:      #FEFCF8;
  --shadow:          rgba(44,24,16,.12);
  --shadow-md:       rgba(44,24,16,.18);
  --shadow-strong:   rgba(44,24,16,.24);
  --r-sm:  12px;
  --r:     24px;
  --r-lg:  32px;
  --r-xl:  48px;
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  background: var(--cream);
  color: var(--brown-dark);
  line-height: 1.7;
  font-size: 1.0625rem;
  overflow-x: hidden;
}

/* ── Typography ────────────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--brown-dark);
}
h1 { font-size: clamp(2.25rem,5vw,3.5rem); }
h2 { font-size: clamp(1.75rem,3.5vw,2.5rem); }
h3 { font-size: clamp(1.2rem,2.5vw,1.6rem); }
h4 { font-size: 1.05rem; }

p { line-height: 1.8; color: var(--brown-mid); margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

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

img { max-width: 100%; display: block; }

/* ── Layout ────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.75rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── Sticky Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--cream);
  border-bottom: 2.5px dotted var(--cream-dark);
  padding: .875rem 0;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand-lockup {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none; flex-shrink: 0;
}
.brand-lockup img.logo-icon  { height: 46px; width: auto; }
.brand-lockup img.wordmark   { height: 34px; width: auto; max-width: 220px; }

.site-nav { display: flex; align-items: center; gap: .125rem; flex-wrap: wrap; }
.site-nav a {
  color: var(--brown-dark); font-weight: 700; font-size: .9rem;
  padding: .45rem .75rem; border-radius: 999px;
  transition: background .18s, color .18s; white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active {
  background: var(--terracotta); color: #fff; text-decoration: none;
}

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

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-block; background: var(--terracotta); color: #fff;
  font-weight: 800; font-size: 1rem; padding: .875rem 2rem;
  border-radius: 9999px; border: 2.5px solid transparent; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(212,82,42,.35); text-decoration: none;
}
.btn:hover {
  background: var(--terracotta-dark); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,82,42,.45); text-decoration: none; color: #fff;
}
.btn-outline {
  background: transparent; color: var(--terracotta);
  border-color: var(--terracotta); box-shadow: none;
}
.btn-outline:hover { background: var(--terracotta); color: #fff; }
.btn-ghost-white {
  background: rgba(255,255,255,.15); color: #fff;
  border: 2.5px solid rgba(255,255,255,.6); box-shadow: none;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.28); color: #fff; text-decoration: none;
}
.btn-lg { font-size: 1.125rem; padding: 1.1rem 2.5rem; }

/* ── Section Labels (pill chips) ───────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--cream-medium); color: var(--terracotta);
  font-weight: 800; font-size: .8rem; text-transform: uppercase;
  letter-spacing: .1em; padding: .375rem 1rem; border-radius: 9999px;
  border: 2px dotted var(--terracotta-light); margin-bottom: 1.25rem;
}

/* ── Squiggle divider ──────────────────────────────────────────── */
.squiggle-wrap { width: 100%; overflow: hidden; line-height: 0; padding: .5rem 0; }
.squiggle-wrap svg { display: block; width: 100%; height: 44px; }

/* ── Stamp Badge ───────────────────────────────────────────────── */
.stamp {
  width: 128px; height: 128px; border-radius: 50%;
  border: 3.5px solid var(--terracotta);
  outline: 3px dotted var(--terracotta-light); outline-offset: 6px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: .875rem;
  background: var(--cream-light); flex-shrink: 0;
  transform: rotate(-7deg);
}
.stamp .stamp-icon  { font-size: 1.75rem; line-height: 1; margin-bottom: .2rem; }
.stamp .stamp-top   { font-size: .62rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: var(--terracotta); }
.stamp .stamp-big   { font-size: 1.5rem; font-weight: 900; color: var(--terracotta); line-height: 1; }
.stamp .stamp-sub   { font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; color: var(--brown-light); }

/* ── Dotted HR ─────────────────────────────────────────────────── */
.dotted-rule { border: none; border-top: 2.5px dotted var(--cream-dark); margin: 2.5rem 0; }

/* ── Polaroid card ─────────────────────────────────────────────── */
.polaroid {
  background: #fff; padding: 11px 11px 44px;
  box-shadow: 5px 10px 32px var(--shadow-strong);
  border-radius: 3px; position: relative; flex-shrink: 0;
}
.polaroid img {
  display: block; width: 100%; object-fit: cover;
  border-radius: 2px; height: 220px;
}
.polaroid .polaroid-cap {
  position: absolute; bottom: 10px; left: 11px; right: 11px;
  text-align: center; font-size: .78rem; color: var(--brown-light);
  font-style: italic; font-weight: 600;
}

/* ── Hero ──────────────────────────────────────────────────────── */
.hero-wrap { position: relative; }
.hero {
  position: relative; min-height: 700px; overflow: hidden;
  background: var(--brown-dark);
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(44,24,16,.06) 0%,
    rgba(44,24,16,.22) 45%,
    rgba(44,24,16,.7)  100%);
}
.hero-content {
  position: relative; z-index: 2;
  min-height: 700px; display: flex; flex-direction: column;
  justify-content: flex-start;
  padding-top: 5.5rem; padding-bottom: 9rem;
  max-width: 1200px; margin: 0 auto;
  padding-left: 1.75rem; padding-right: 1.75rem;
}
.hero-content .section-label {
  background: rgba(255,255,255,.18); color: #fff;
  border-color: rgba(255,255,255,.35);
}
.hero-content h1 {
  color: #fff; max-width: 640px;
  text-shadow: 0 2px 18px rgba(0,0,0,.3);
  margin-bottom: 1.25rem;
}
.hero-content > p {
  color: rgba(255,255,255,.9); max-width: 520px;
  font-size: 1.1rem; line-height: 1.75;
  text-shadow: 0 1px 8px rgba(0,0,0,.2);
  margin-bottom: 2.5rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* pullup card below hero */
.hero-pullup {
  margin-top: -72px; position: relative; z-index: 10;
}
.hero-pullup .container { display: flex; justify-content: flex-end; }
.pullup-card {
  background: var(--warm-white); border-radius: var(--r);
  padding: 2rem 2.5rem; max-width: 700px; width: 100%;
  box-shadow: 0 8px 52px var(--shadow-strong);
  border: 2px dotted var(--cream-dark);
}
.pullup-card .stat-row { display: flex; gap: 2rem; flex-wrap: wrap; }
.pullup-card .stat-item { flex: 1; min-width: 130px; }
.pullup-card .stat-num {
  display: block; font-size: 2.25rem; font-weight: 900;
  color: var(--terracotta); line-height: 1; margin-bottom: .3rem;
}
.pullup-card .stat-label {
  font-size: .875rem; color: var(--brown-light);
  font-weight: 600; line-height: 1.35;
}

/* ── Impact strip ──────────────────────────────────────────────── */
.impact-strip { background: var(--terracotta); padding: 3.5rem 0; }
.impact-strip .container {
  display: flex; justify-content: space-around;
  align-items: center; gap: 2rem; flex-wrap: wrap;
}
.impact-item { text-align: center; color: #fff; }
.impact-item .stat-num {
  font-size: clamp(2.5rem,5vw,3.5rem); font-weight: 900;
  line-height: 1; display: block;
}
.impact-item .stat-label {
  font-size: .95rem; opacity: .92; font-weight: 600;
  margin-top: .3rem; display: block;
}

/* ── Home intro 2-col ──────────────────────────────────────────── */
.home-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4.5rem; align-items: center;
}
.home-intro-text .lead {
  font-size: 1.1rem; color: var(--brown-mid); line-height: 1.8;
  margin-bottom: 2rem;
}
.polaroid-wrap {
  position: relative; padding: 1.5rem 2rem 2rem 1.5rem;
  display: flex; justify-content: center;
}
.polaroid-wrap .polaroid {
  width: 100%; max-width: 380px;
  transform: rotate(2.5deg);
}
.polaroid-wrap .polaroid img { height: 280px; }
.polaroid-wrap .stamp {
  position: absolute; bottom: 10px; right: 10px;
}

/* ── Highlights staggered ──────────────────────────────────────── */
.highlights-title { text-align: center; margin-bottom: 3.5rem; }
.highlights-title h2 { margin-bottom: .75rem; }
.highlights-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; align-items: start;
}
.hl-card {
  background: var(--warm-white); border-radius: var(--r);
  padding: 2.25rem; box-shadow: 4px 8px 36px var(--shadow);
  border: 2px solid var(--cream-dark);
  transition: transform .22s, box-shadow .22s;
}
.hl-card:hover { transform: translateY(-5px); box-shadow: 6px 18px 52px var(--shadow-md); }
.hl-card:nth-child(2) { margin-top: 3rem; }
.hl-card:nth-child(3) { margin-top: -1.5rem; }
.hl-card .hl-icon { font-size: 2.75rem; margin-bottom: 1rem; display: block; }
.hl-card h3 { color: var(--terracotta-dark); margin-bottom: .75rem; }

/* ── Photo banner full-bleed ───────────────────────────────────── */
.photo-banner { position: relative; height: 420px; overflow: hidden; }
.photo-banner img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}
.photo-banner-overlay {
  position: absolute; inset: 0;
  background: rgba(44,24,16,.52);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.photo-banner-overlay .inner {
  max-width: 620px; padding: 0 2rem;
}
.photo-banner-overlay h2 {
  color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.3);
  margin-bottom: 1.25rem;
}
.photo-banner-overlay p {
  color: rgba(255,255,255,.88); margin-bottom: 1.75rem;
  font-size: 1.0625rem;
}

/* card pulled up over the photo banner */
.banner-pullup {
  margin-top: -64px; position: relative; z-index: 10;
}
.banner-pullup .container { display: flex; justify-content: center; }
.banner-pullup-card {
  background: var(--warm-white); border-radius: var(--r);
  padding: 2.25rem 3rem; max-width: 740px; width: 100%;
  box-shadow: 0 8px 52px var(--shadow-strong);
  border: 2.5px dotted var(--cream-dark);
  text-align: center;
}
.banner-pullup-card h3 { margin-bottom: .75rem; }

/* ── CTA box ───────────────────────────────────────────────────── */
.cta-box {
  background: var(--cream-medium); border-radius: var(--r-lg);
  padding: 4rem; text-align: center;
  border: 3px dotted var(--terracotta-light);
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(212,82,42,.06); pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute; bottom: -60px; left: -30px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(212,82,42,.05); pointer-events: none;
}
.cta-box h2 { margin-bottom: 1rem; }
.cta-box p  { max-width: 520px; margin: 0 auto 2rem; font-size: 1.0625rem; }

/* ── Page banner (inner pages) ─────────────────────────────────── */
.page-banner {
  background: var(--terracotta); padding: 5rem 0 4rem;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; top: -70px; right: -70px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,.08); pointer-events: none;
}
.page-banner::after {
  content: ''; position: absolute; bottom: -80px; left: 8%;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.06); pointer-events: none;
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; }
.page-banner p  { color: rgba(255,255,255,.88); max-width: 560px; font-size: 1.0625rem; margin-top: .75rem; }
.page-banner .section-label {
  background: rgba(255,255,255,.18); color: #fff;
  border-color: rgba(255,255,255,.35);
}

/* ── Page photo banner (with full image) ───────────────────────── */
.page-photo-banner {
  position: relative; height: 380px; overflow: hidden;
}
.page-photo-banner img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.page-photo-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(44,24,16,.72) 0%, rgba(44,24,16,.35) 100%);
  display: flex; align-items: flex-end; padding-bottom: 2.5rem;
}
.page-photo-banner-overlay .container h1 { color: #fff; }
.page-photo-banner-overlay .container .section-label {
  background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.4);
}

/* ── Split 2-col (text + image) ────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split.flip { direction: rtl; }
.split.flip > * { direction: ltr; }
.split-img {
  border-radius: var(--r); width: 100%; aspect-ratio: 4/3;
  object-fit: cover; box-shadow: 8px 16px 52px var(--shadow-strong);
}

/* ── About sections ────────────────────────────────────────────── */
.about-story-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: start;
}
.story-text p { margin-bottom: 1.5rem; font-size: 1.05rem; }
.story-text p:last-child { margin-bottom: 0; }

.polaroid-cluster {
  position: relative; padding: 2rem 1.5rem 3rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.polaroid-cluster .pol-a { transform: rotate(-3.5deg); align-self: flex-start; width: 88%; }
.polaroid-cluster .pol-b { transform: rotate(2.5deg); align-self: flex-end; width: 80%; margin-top: -3rem; }
.polaroid-cluster .pol-a img,
.polaroid-cluster .pol-b img { height: 200px; }

/* ── Mission box ───────────────────────────────────────────────── */
.mission-box {
  background: var(--terracotta); border-radius: var(--r-lg);
  padding: 4rem; position: relative; overflow: hidden;
}
.mission-box::before {
  content: '\201C'; position: absolute; top: -30px; left: 20px;
  font-size: 14rem; font-weight: 900; font-family: Georgia,serif;
  color: rgba(255,255,255,.1); line-height: 1; pointer-events: none;
}
.mission-box h2 { color: #fff; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.mission-box p  {
  color: rgba(255,255,255,.95); font-size: 1.075rem;
  line-height: 1.8; position: relative; z-index: 1; margin-bottom: 1.25rem;
}
.mission-box p:last-child { margin-bottom: 0; }

/* ── Trustees ──────────────────────────────────────────────────── */
.trustees-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.trustee-card {
  background: var(--warm-white); border-radius: var(--r);
  padding: 1.75rem 2rem; box-shadow: 4px 8px 28px var(--shadow);
  border: 2px dotted var(--cream-dark);
}
.trustee-card h4 { margin-bottom: .3rem; }
.trustee-card .role { color: var(--terracotta); font-weight: 700; font-size: .9375rem; }

/* ── Programmes ────────────────────────────────────────────────── */
.programmes-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 2rem; align-items: start;
}
.prog-card {
  background: var(--warm-white); border-radius: var(--r);
  padding: 2.25rem; box-shadow: 4px 8px 32px var(--shadow);
  border-left: 5px solid var(--terracotta);
  transition: transform .22s;
}
.prog-card:hover { transform: translateY(-4px); }
.prog-card:nth-child(even) { margin-top: 2.5rem; }
.prog-card .prog-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.prog-card h3 { margin-bottom: .75rem; }
.prog-detail {
  background: var(--cream-medium); border-radius: var(--r-sm);
  padding: 1rem 1.25rem; margin-top: 1rem;
  font-size: .875rem; color: var(--brown-light); line-height: 1.7;
  border: 1.5px dotted var(--terracotta-light);
}

/* ── What we do text ───────────────────────────────────────────── */
.what-text p { margin-bottom: 1.5rem; font-size: 1.05rem; }
.what-text p:last-child { margin-bottom: 0; }

/* ── Ways / Get Involved ───────────────────────────────────────── */
.ways-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; align-items: start;
}
.way-card {
  background: var(--warm-white); border-radius: var(--r);
  padding: 2.25rem; box-shadow: 4px 8px 32px var(--shadow);
  border-top: 5px solid var(--terracotta);
  text-align: center; transition: transform .22s;
}
.way-card:hover { transform: translateY(-5px); }
.way-card:nth-child(2) { margin-top: 2.5rem; }
.way-card .way-icon { font-size: 3rem; margin-bottom: 1.25rem; display: block; }
.way-card h3 { margin-bottom: .75rem; }

/* ── Blog listing ──────────────────────────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; align-items: start;
}
.blog-card {
  background: var(--warm-white); border-radius: var(--r);
  overflow: hidden; box-shadow: 4px 8px 32px var(--shadow);
  transition: transform .22s, box-shadow .22s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 8px 22px 52px var(--shadow-md); }
.blog-card:nth-child(2) { margin-top: 2.5rem; }
.blog-card:nth-child(3) { margin-top: -.75rem; }
.blog-card-img {
  width: 100%; height: 220px; object-fit: cover; display: block;
  border-radius: 0;
}
.blog-card-body { padding: 1.75rem; }
.blog-card-body h3 { margin-bottom: .625rem; font-size: 1.1rem; line-height: 1.35; }
.blog-card-body .dek { font-size: .9375rem; margin-bottom: 1.25rem; line-height: 1.6; }
.read-more { font-weight: 800; color: var(--terracotta); font-size: .9375rem; }
.read-more:hover { text-decoration: underline; }

/* ── Article ───────────────────────────────────────────────────── */
.article-wrap { max-width: 780px; margin: 0 auto; padding: 3.5rem 1.75rem 5rem; }
.article-hero-img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: var(--r); margin-bottom: 2.75rem;
  box-shadow: 0 8px 44px var(--shadow-strong);
}
.article-back {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .9rem; color: var(--terracotta);
  margin-bottom: 1.75rem;
}
.article-wrap h1 { margin-bottom: 1rem; }
.article-dek {
  font-size: 1.1875rem; color: var(--brown-light); line-height: 1.65;
  margin-bottom: 2.5rem; padding-bottom: 1.75rem;
  border-bottom: 2.5px dotted var(--cream-dark);
}
.article-body p { margin-bottom: 1.5rem; font-size: 1.05rem; }

/* ── Contact ───────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-info h3 { margin-bottom: 1rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: .75rem;
  margin-bottom: 1rem; font-size: .9375rem;
}
.contact-detail .ci-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: .1rem; }
.contact-detail a { color: var(--terracotta); word-break: break-all; }

.contact-form {
  background: var(--warm-white); border-radius: var(--r);
  padding: 2.75rem; box-shadow: 4px 8px 36px var(--shadow);
  border: 2px dotted var(--cream-dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-weight: 700; font-size: .9375rem;
  margin-bottom: .5rem; color: var(--brown-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .875rem 1.125rem;
  border: 2px solid var(--cream-dark); border-radius: var(--r-sm);
  background: #fff; font-family: inherit; font-size: 1rem;
  color: var(--brown-dark); transition: border-color .2s, box-shadow .2s;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(212,82,42,.15);
}
.form-group textarea { height: 150px; resize: vertical; }

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer { background: var(--brown-dark); padding: 4.5rem 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .logo-wrap { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.footer-brand .logo-wrap img.logo-icon { height: 42px; width: auto; filter: brightness(0) invert(1); }
.footer-brand .logo-wrap img.wordmark  { height: 30px; width: auto; max-width: 200px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.65; margin-bottom: .5rem; }

.footer-col h4 {
  color: rgba(255,255,255,.5); font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { color: rgba(255,255,255,.72); font-size: .9375rem; transition: color .2s; }
.footer-col a:hover { color: var(--terracotta-light); text-decoration: none; }
.footer-col .eml { font-size: .8125rem; word-break: break-all; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
  font-size: .8125rem; color: rgba(255,255,255,.4);
}

/* ── Dot-grid accent bg ────────────────────────────────────────── */
.bg-dots {
  background-image: radial-gradient(circle, rgba(212,82,42,.12) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* ── Accent stripe ─────────────────────────────────────────────── */
.stripe-top { border-top: 5px solid var(--terracotta); }

/* ── Text-center utility ───────────────────────────────────────── */
.tc { text-align: center; }
.mb0 { margin-bottom: 0 !important; }
.mt-neg { margin-top: -1.5rem; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .trustees-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 860px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .hl-card:nth-child(2) { margin-top: 0; }
  .hl-card:nth-child(3) { margin-top: 0; }

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

  .about-story-grid { grid-template-columns: 1fr; gap: 2rem; }

  .programmes-grid { grid-template-columns: 1fr; }
  .prog-card:nth-child(even) { margin-top: 0; }

  .ways-grid { grid-template-columns: 1fr; }
  .way-card:nth-child(2) { margin-top: 0; }

  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:nth-child(2) { margin-top: 0; }
  .blog-card:nth-child(3) { margin-top: 0; }

  .home-intro-grid { grid-template-columns: 1fr; gap: 2rem; }

  .trustees-grid { grid-template-columns: 1fr; }

  .banner-pullup-card { padding: 2rem; }
  .cta-box { padding: 2.75rem 2rem; }
  .mission-box { padding: 3rem 2rem; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.125rem; }

  .site-nav {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 2px dotted var(--cream-dark);
    padding: 1rem 1.25rem; gap: .25rem; align-items: stretch;
  }
  .site-nav.open { display: flex; }
  .site-nav a { border-radius: var(--r-sm); }
  .nav-toggle { display: flex; }
  .site-header { position: sticky; }

  .hero { min-height: 580px; }
  .hero-content { min-height: 580px; padding-top: 3.5rem; padding-bottom: 7rem; }
  .hero-content h1 { font-size: 2rem; }

  .hero-pullup { margin-top: -52px; }
  .pullup-card { padding: 1.5rem; }
  .pullup-card .stat-row { gap: 1rem; }

  .photo-banner { height: 260px; }
  .page-photo-banner { height: 240px; }

  .banner-pullup { margin-top: -44px; }
  .banner-pullup-card { padding: 1.5rem; }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section { padding: 3rem 0; }
  .section-sm { padding: 2rem 0; }

  .article-hero-img { height: 260px; }
  .article-wrap { padding: 2.5rem 1.125rem 4rem; }

  .cta-box { padding: 2.25rem 1.25rem; }
  .contact-form { padding: 1.75rem; }

  .polaroid-cluster .pol-a,
  .polaroid-cluster .pol-b { transform: none; margin-top: 0; width: 100%; }
  .polaroid-cluster { padding: 1rem; }

  .impact-strip .container { flex-direction: column; gap: 1.5rem; }
  .page-banner { padding: 3.5rem 0 3rem; }

  .trustees-grid { grid-template-columns: 1fr; }
}
