/* ============================================================
   PETITS CUISINIERS DE NANTES — Warm & Human Community Design
   ============================================================ */

/* --- Variables --- */
:root {
  --cream:        #FFF3E0;
  --cream-soft:   #FFFAF5;
  --cream-dark:   #F0DCC8;
  --terra:        #D4522A;
  --terra-dark:   #B0401D;
  --terra-light:  #E8835A;
  --terra-pale:   #FAEAE2;
  --brown-dark:   #2D1B0E;
  --brown-mid:    #6B3F20;
  --brown-light:  #9B6B4A;
  --warm-white:   #FFFDF8;
  --shadow-sm:    0 2px 12px rgba(45,27,14,.10);
  --shadow:       0 4px 28px rgba(45,27,14,.13);
  --shadow-lg:    0 10px 48px rgba(45,27,14,.18);
  --r:            26px;
  --r-sm:         14px;
  --r-xl:         48px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--brown-dark);
  line-height: 1.8;
  font-size: 1rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--terra); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }
ul { list-style: none; }

/* --- Typography scale --- */
h1, h2, h3, h4, h5 { font-weight: 900; line-height: 1.18; color: var(--brown-dark); }
h1 { font-size: clamp(2.1rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.75rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.05rem; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }

.bg-cream   { background: var(--cream); }
.bg-soft    { background: var(--cream-soft); }
.bg-dark    { background: var(--cream-dark); }
.bg-terra   { background: var(--terra); }
.bg-brown   { background: var(--brown-dark); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  background: var(--warm-white);
  border-bottom: 2.5px dotted var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  gap: 1rem;
  position: relative;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo     { width: 44px; height: 44px; object-fit: contain; }
.nav__wordmark { height: 32px; width: auto; object-fit: contain; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex-wrap: wrap;
}
.nav__links a {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--brown-mid);
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active {
  background: var(--terra);
  color: #fff;
  text-decoration: none;
}
.nav__hamburger {
  display: none;
  background: none;
  border: 2px solid var(--terra);
  border-radius: 8px;
  padding: 0.35rem 0.55rem;
  cursor: pointer;
  font-size: 1.15rem;
  color: var(--terra);
  line-height: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 740px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(45,27,14,.62) 0%,
    rgba(45,27,14,.28) 45%,
    rgba(45,27,14,.58) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 1.5rem 9rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}
.hero__pill {
  display: inline-block;
  background: var(--terra);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  width: fit-content;
}
.hero__title {
  color: #fff;
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 900;
  max-width: 820px;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
  margin-bottom: 1.25rem;
}
.hero__sub {
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 580px;
  line-height: 1.75;
}

/* Overlap card — pulled upward over hero bottom */
.hero-overlap-wrap {
  position: relative;
  z-index: 10;
}
.hero-overlap {
  background: var(--warm-white);
  border-radius: var(--r);
  padding: 2.25rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 2.5px dotted var(--cream-dark);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: -72px;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-size: clamp(2.2rem,4.5vw,3.2rem);
  font-weight: 900;
  color: var(--terra);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat__lbl {
  font-size: .88rem;
  color: var(--brown-light);
  font-weight: 600;
  line-height: 1.35;
}

/* ============================================================
   SQUIGGLE DIVIDERS (inline SVG, aria-hidden)
   ============================================================ */
.squiggle-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: -1px 0;
  display: block;
}
.squiggle-wrap svg { display: block; width: 100%; }

/* Decorative squiggle under headings */
.squig-line {
  display: block;
  width: 140px;
  margin: .55rem auto 0;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-hd { text-align: center; margin-bottom: 3rem; }
.sec-hd--left { text-align: left; }
.sec-hd__eyebrow {
  display: inline-block;
  color: var(--terra);
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .65rem;
}
.sec-hd__title { margin-bottom: .5rem; }
.sec-hd__sub {
  color: var(--brown-mid);
  font-size: 1.05rem;
  max-width: 640px;
  margin: .75rem auto 0;
  line-height: 1.75;
}

/* ============================================================
   HIGHLIGHT CARDS  (staggered grid)
   ============================================================ */
.hl-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.75rem;
  align-items: start;
  margin-top: 2.5rem;
}
.hl-grid .card--hl:nth-child(2) { margin-top: 2.25rem; }
.hl-grid .card--hl:nth-child(3) { margin-top: -.75rem; }

.card--hl {
  background: var(--warm-white);
  border-radius: var(--r);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--cream-dark);
  transition: transform .2s, box-shadow .2s;
}
.card--hl:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card--hl__icon { font-size: 2.4rem; margin-bottom: .9rem; display: block; }
.card--hl__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--terra);
  margin-bottom: .6rem;
}
.card--hl__blurb {
  color: var(--brown-mid);
  font-size: .93rem;
  line-height: 1.78;
}

/* ============================================================
   POLAROID CLUSTER
   ============================================================ */
.polaroid-cluster {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2.5rem 0 1rem;
}
.polaroid {
  background: #fff;
  padding: .85rem .85rem 2.4rem;
  box-shadow: 0 8px 36px rgba(45,27,14,.16);
  border-radius: 3px;
  max-width: 260px;
  flex-shrink: 0;
  transition: transform .25s;
}
.polaroid:nth-child(1) { transform: rotate(-3.2deg); }
.polaroid:nth-child(2) { transform: rotate(1.8deg);  margin-top: -1.2rem; }
.polaroid:nth-child(3) { transform: rotate(-1.1deg); margin-top: 1.8rem; }
.polaroid:hover { transform: rotate(0deg) scale(1.04); }
.polaroid__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 1px;
}
.polaroid__cap {
  text-align: center;
  font-size: .83rem;
  color: var(--brown-mid);
  margin-top: .65rem;
  font-style: italic;
  line-height: 1.4;
}

/* ============================================================
   STAMP BADGE
   ============================================================ */
.stamp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
  font-weight: 900;
  font-size: .72rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 1rem;
  line-height: 1.35;
  box-shadow: var(--shadow);
  border: 5px dashed rgba(255,255,255,.45);
  flex-shrink: 0;
}

/* ============================================================
   SPLIT LAYOUT (image + text)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split--rev { direction: rtl; }
.split--rev > * { direction: ltr; }
.split__img {
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

/* ============================================================
   PHOTO BANNER (full-bleed)
   ============================================================ */
.photo-banner {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.photo-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.photo-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,27,14,.5);
}
.photo-banner__body {
  position: relative;
  z-index: 2;
  padding: 3.5rem 1.5rem;
  text-align: center;
  width: 100%;
}
.photo-banner__body h2 { color: #fff; margin-bottom: 1rem; }
.photo-banner__body p  { color: rgba(255,255,255,.88); font-size: 1.08rem; max-width: 620px; margin: 0 auto; line-height: 1.75; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--terra);
  border-radius: var(--r-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.cta-band::before { width: 260px; height: 260px; top: -60px; right: -60px; }
.cta-band::after  { width: 180px; height: 180px; bottom: -50px; left: -40px; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,.88); margin-bottom: 1.75rem; font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-weight: 800;
  padding: .82rem 2.2rem;
  border-radius: 999px;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: transform .18s, box-shadow .18s, background .18s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.2); text-decoration: none; }
.btn--white  { background: #fff; color: var(--terra); }
.btn--terra  { background: var(--terra); color: #fff; }
.btn--terra:hover { background: var(--terra-dark); }
.btn--outline {
  background: transparent;
  color: var(--terra);
  border: 2.5px solid var(--terra);
}
.btn--outline:hover { background: var(--terra); color: #fff; }

/* ============================================================
   PROGRAMME CARDS
   ============================================================ */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.prog-card {
  background: var(--warm-white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
}
.prog-card__head {
  background: var(--terra);
  padding: 1.4rem 1.75rem;
  display: flex;
  align-items: center;
  gap: .9rem;
}
.prog-card__icon  { font-size: 1.85rem; line-height: 1; }
.prog-card__title { color: #fff; font-size: 1.08rem; font-weight: 800; line-height: 1.25; }
.prog-card__body  { padding: 1.5rem 1.75rem 1.75rem; flex: 1; }
.prog-card__blurb { font-weight: 700; color: var(--terra); font-size: .92rem; margin-bottom: .7rem; }
.prog-card__detail { color: var(--brown-mid); font-size: .93rem; line-height: 1.78; }

/* ============================================================
   TRUSTEE CARDS
   ============================================================ */
.trustees-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.trustee {
  background: var(--warm-white);
  border-radius: var(--r);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2.5px dotted var(--terra);
  flex: 1;
  min-width: 190px;
  max-width: 260px;
}
.trustee__avatar {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.trustee__name { font-weight: 800; font-size: .98rem; margin-bottom: .25rem; }
.trustee__role { font-size: .83rem; color: var(--terra); font-weight: 700; }

/* ============================================================
   MISSION BLOCK
   ============================================================ */
.mission-block {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: var(--warm-white);
  border-radius: var(--r);
  padding: 2.75rem 3rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--cream-dark);
}
.mission-block__text {
  flex: 1;
  font-size: 1.04rem;
  color: var(--brown-mid);
  font-style: italic;
  line-height: 1.85;
}

/* ============================================================
   WAYS TO HELP
   ============================================================ */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.way-card {
  background: var(--warm-white);
  border-radius: var(--r);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--terra);
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.way-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.way-card__icon  { font-size: 2.8rem; margin-bottom: .9rem; display: block; }
.way-card__title { font-size: 1.1rem; font-weight: 800; margin-bottom: .75rem; }
.way-card__blurb { color: var(--brown-mid); font-size: .93rem; line-height: 1.78; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.blog-card {
  background: var(--warm-white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card__img  { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-card__body { padding: 1.4rem 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__title { font-size: 1rem; font-weight: 800; margin-bottom: .5rem; line-height: 1.3; color: var(--brown-dark); }
.blog-card__dek   { font-size: .9rem; color: var(--brown-mid); line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.blog-card__link  { color: var(--terra); font-weight: 700; font-size: .88rem; }

/* ============================================================
   ARTICLE PAGES
   ============================================================ */
.art-header { background: var(--cream-dark); padding: 4rem 0 3rem; }
.art-header__back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--terra);
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 1.5rem;
}
.art-header__eyebrow {
  display: block;
  color: var(--terra);
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.art-header__title {
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  max-width: 780px;
  margin-bottom: 1rem;
}
.art-header__dek {
  font-size: 1.1rem;
  color: var(--brown-mid);
  max-width: 680px;
  line-height: 1.72;
}

.art-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  font-size: 1.04rem;
  line-height: 1.88;
  color: var(--brown-dark);
}
.art-body p   { margin-bottom: 1.5rem; }
.art-body h3  { margin: 2.25rem 0 .9rem; color: var(--terra); }
.art-body strong { color: var(--terra-dark); font-weight: 800; }

.art-img {
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  margin: 2rem 0;
}

/* Polaroid for article hero */
.art-polaroid-wrap {
  display: flex;
  justify-content: center;
  padding: 2rem 1.5rem 0;
}
.art-polaroid {
  background: #fff;
  padding: .9rem .9rem 2.8rem;
  box-shadow: 0 10px 44px rgba(45,27,14,.18);
  border-radius: 3px;
  max-width: 480px;
  width: 100%;
  transform: rotate(-1.2deg);
}
.art-polaroid img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 1px;
}
.art-polaroid__cap {
  text-align: center;
  font-size: .85rem;
  color: var(--brown-mid);
  margin-top: .8rem;
  font-style: italic;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-box {
  background: var(--warm-white);
  border-radius: var(--r);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 2.5px dotted var(--cream-dark);
}
.ci-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.ci-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.ci-label { font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--terra); margin-bottom: .2rem; }
.ci-val   { font-size: .92rem; color: var(--brown-mid); }
.ci-val a { color: var(--terra); font-weight: 600; word-break: break-all; }

.form-field { margin-bottom: 1.2rem; }
.form-field label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: .35rem; color: var(--brown-dark); }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 2px solid var(--cream-dark);
  border-radius: var(--r-sm);
  padding: .72rem 1rem;
  font-family: inherit;
  font-size: .98rem;
  background: var(--warm-white);
  color: var(--brown-dark);
  transition: border-color .18s;
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--terra); }
.form-field textarea { min-height: 130px; resize: vertical; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--brown-dark); color: rgba(255,255,255,.78); padding: 4.5rem 0 2rem; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand { display: flex; align-items: center; gap: .65rem; margin-bottom: 1rem; }
.footer__logo     { width: 44px; height: 44px; object-fit: contain; filter: brightness(0) invert(1); }
.footer__wordmark { height: 28px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.footer__desc { font-size: .88rem; line-height: 1.72; color: rgba(255,255,255,.65); margin-bottom: 1rem; }
.footer__emails a {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: .84rem;
  word-break: break-all;
  transition: color .18s;
  margin-bottom: .3rem;
}
.footer__emails a:hover { color: #fff; text-decoration: none; }
.footer__heading { font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--terra-light); margin-bottom: 1rem; }
.footer__links li + li { margin-top: .45rem; }
.footer__links a { color: rgba(255,255,255,.65); font-size: .88rem; transition: color .18s; }
.footer__links a:hover { color: #fff; text-decoration: none; }
.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: .8rem;
  color: rgba(255,255,255,.45);
}

/* ============================================================
   MISC COMPONENTS
   ============================================================ */
.dotted-rule { border: none; border-top: 2.5px dotted var(--cream-dark); margin: 2.5rem 0; }

.intro-text {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.07rem;
  line-height: 1.85;
  color: var(--brown-mid);
}

.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,27,14,.72) 0%, rgba(45,27,14,.18) 60%);
}
.page-hero__body {
  position: relative;
  z-index: 2;
  padding: 2.5rem 1.5rem 3rem;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}
.page-hero__eyebrow {
  display: block;
  color: rgba(255,255,255,.8);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .65rem;
}
.page-hero__title { color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.4); }

/* Text page header (no photo) */
.text-header {
  background: var(--cream-dark);
  padding: 4rem 0 3.5rem;
  text-align: center;
}
.text-header__eyebrow {
  display: block;
  color: var(--terra);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

/* Inline squiggle accent */
.squig-accent { color: var(--terra); }

/* ============================================================
   ABOUT PAGE — story pull-quote
   ============================================================ */
.pull-quote {
  border-left: 5px solid var(--terra);
  padding: 1.25rem 1.75rem;
  background: var(--terra-pale);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 2rem 0;
  font-size: 1.08rem;
  color: var(--brown-mid);
  font-style: italic;
  line-height: 1.8;
}

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

  .split, .split--rev { grid-template-columns: 1fr; direction: ltr; }
  .hero-overlap { grid-template-columns: 1fr; text-align: center; }

  .prog-grid  { grid-template-columns: 1fr; }
  .ways-grid  { grid-template-columns: 1fr; }
  .blog-grid  { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-wrap  { grid-template-columns: 1fr; }
  .mission-block { flex-direction: column; text-align: center; }
}

@media (max-width: 660px) {
  .section { padding: 3.5rem 0; }
  .hero { min-height: 580px; }
  .hero__content { padding-bottom: 7rem; }
  .hero-overlap { margin-top: -52px; }

  .polaroid-cluster { gap: 1rem; }
  .polaroid { max-width: 200px; }
  .polaroid:nth-child(1),
  .polaroid:nth-child(2),
  .polaroid:nth-child(3) { transform: none; margin-top: 0; }

  .cta-band { padding: 2.5rem 1.5rem; border-radius: var(--r); }

  .nav__links { display: none; }
  .nav__hamburger { display: block; }

  .trustees-wrap { flex-direction: column; align-items: center; }
  .trustee { max-width: 320px; width: 100%; }

  .art-polaroid { transform: none; }

  h1 { font-size: 2rem; }
  .hero__title { font-size: 2rem; }

  .footer__bottom { flex-direction: column; text-align: center; }
}

/* Mobile nav open state */
.nav__links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--warm-white);
  border-top: 2px solid var(--cream-dark);
  border-bottom: 2px solid var(--cream-dark);
  padding: 1rem 1.5rem;
  gap: .25rem;
  z-index: 300;
  box-shadow: 0 8px 24px rgba(45,27,14,.12);
}
.nav__links.open a { border-radius: 8px; padding: .55rem 1rem; }
