/* ============================================================
   LES PETITS CUISINIERS DE RENNES — SHARED STYLESHEET
   Warm & Human Community Archetype
   ============================================================ */

:root {
  --cream:         #FFF3E0;
  --cream-light:   #FFFAF5;
  --cream-deep:    #F0DEC8;
  --cream-border:  #E8CEAE;
  --terra:         #D4522A;
  --terra-dk:      #A83E1C;
  --terra-lt:      #E8896A;
  --terra-pale:    #FAE8DF;
  --terra-bg:      #FDF0E9;
  --warm-brown:    #5C2D1C;
  --warm-mid:      #8B4A30;
  --text-dark:     #2C1810;
  --text-body:     #4A2C1E;
  --text-mid:      #7A4A35;
  --text-light:    #A86C55;
  --white:         #FFFFFF;
  --radius-sm:     12px;
  --radius-md:     24px;
  --radius-lg:     36px;
  --radius-xl:     52px;
  --shadow-soft:   0 4px 20px rgba(44,24,16,.08);
  --shadow-card:   0 8px 40px rgba(44,24,16,.13);
  --shadow-lift:   0 20px 60px rgba(44,24,16,.18);
  --font: system-ui,-apple-system,"Segoe UI","Helvetica Neue",Arial,sans-serif;
}

/* ---- Reset ---- */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--font);
  background: var(--cream-light);
  color: var(--text-body);
  line-height: 1.78;
  font-size: 1rem;
  overflow-x: hidden;
}
img { max-width:100%; display:block; }
a { color:var(--terra); text-decoration:none; }
a:hover { text-decoration:underline; }
ul { list-style:none; }
p { margin-bottom:.9em; }
p:last-child { margin-bottom:0; }

h1,h2,h3,h4 {
  font-family: var(--font);
  color: var(--text-dark);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(2rem,5vw,3.5rem); }
h2 { font-size: clamp(1.55rem,3.5vw,2.4rem); }
h3 { font-size: clamp(1.15rem,2.5vw,1.5rem); }
h4 { font-size: 1.05rem; }

/* ---- Utility Container ---- */
.container { max-width:1160px; margin:0 auto; padding:0 1.5rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--cream);
  border-bottom: 2px dotted var(--terra-lt);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 18px rgba(44,24,16,.07);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: .8rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-lockup:hover { text-decoration:none; }
.brand-logo {
  height: 48px;
  width: auto;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(44,24,16,.12);
}
.brand-wordmark {
  height: 34px;
  width: auto;
  /* dark artwork on transparent — fine on cream header */
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
  margin-left: auto;
}
.nav-links li a {
  color: var(--text-body);
  font-weight: 700;
  font-size: .9rem;
  padding: .45rem .9rem;
  border-radius: 50px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-links li a:hover { background:var(--terra-bg); color:var(--terra-dk); text-decoration:none; }
.nav-links li a.nav-cta {
  background: var(--terra);
  color: var(--white);
  padding: .5rem 1.3rem;
}
.nav-links li a.nav-cta:hover { background:var(--terra-dk); }
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 2px solid var(--terra);
  color: var(--terra);
  font-size: 1.25rem;
  border-radius: 8px;
  padding: .28rem .6rem;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--warm-brown);
  color: var(--cream);
  padding: 3.5rem 1.5rem 1.5rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr 160px;
  gap: 3rem;
  align-items: start;
}
.footer-brand { display:flex; flex-direction:column; gap:.9rem; }
.footer-logo {
  height: 56px;
  width: auto;
  border-radius: 50%;
  border: 3px solid var(--terra-lt);
}
.footer-wordmark {
  height: 28px;
  width: auto;
  filter: invert(1) brightness(10);
}
.footer-info p {
  font-size: .88rem;
  line-height: 1.65;
  margin-bottom: .4rem;
  color: var(--cream);
  opacity: .9;
}
.footer-info a { color:var(--terra-lt); }
.footer-info a:hover { color:var(--cream); text-decoration:none; }
.footer-nav { display:flex; flex-direction:column; gap:.55rem; }
.footer-nav a {
  color: rgba(255,243,224,.75);
  font-size: .88rem;
  font-weight: 600;
  transition: color .2s;
}
.footer-nav a:hover { color:var(--terra-lt); text-decoration:none; }
.footer-bottom {
  max-width: 1160px;
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  text-align: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: .85rem 2.1rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn:hover { transform:translateY(-3px); text-decoration:none; }
.btn--primary {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 4px 22px rgba(212,82,42,.3);
}
.btn--primary:hover { background:var(--terra-dk); box-shadow:0 8px 32px rgba(212,82,42,.4); }
.btn--outline {
  background: transparent;
  color: var(--terra);
  border: 2.5px solid var(--terra);
}
.btn--outline:hover { background:var(--terra-bg); }
.btn--cream {
  background: var(--cream);
  color: var(--terra-dk);
  font-weight: 800;
}
.btn--cream:hover { background:var(--white); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 5rem 1.5rem; }
.section--cream  { background: var(--cream); }
.section--sand   { background: var(--cream-deep); }
.section--terra  { background: var(--terra-bg); }
.section--white  { background: var(--cream-light); }
.section--dark   { background: var(--warm-brown); color:var(--cream); }

.section-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: .7rem;
}
.section--dark .section-eyebrow { color:var(--terra-lt); }
.section-title { margin-bottom: 1.2rem; }
.section-lead {
  font-size: 1.12rem;
  line-height: 1.82;
  color: var(--text-body);
  max-width: 680px;
}

/* ============================================================
   SQUIGGLE DIVIDER
   ============================================================ */
.squiggle-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 2rem 0;
  text-align: center;
}
.squiggle-divider svg { display:block; width:100%; max-height:50px; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--terra-bg) 0%, var(--cream) 100%);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  border-bottom: 3px dotted var(--terra-lt);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 220px; height: 220px;
  background: var(--terra);
  opacity: .05;
  border-radius: 50%;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -30px; left: -30px;
  width: 140px; height: 140px;
  background: var(--terra);
  opacity: .04;
  border-radius: 50%;
}
.page-header h1 { margin-bottom:.75rem; position:relative; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--text-dark);
}
.hero-img {
  width: 100%;
  height: 68vh;
  min-height: 440px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  opacity: .9;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,24,16,.1) 0%, rgba(44,24,16,.55) 100%);
}

/* Overlapping card pulled up from below over hero bottom */
.hero-overlap-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -100px;
  padding: 0 1.5rem 0;
  display: flex;
  justify-content: center;
}
.hero-overlap-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.75rem 3.5rem;
  box-shadow: var(--shadow-lift);
  max-width: 900px;
  width: 100%;
  border: 2.5px dotted var(--terra-lt);
  display: flex;
  gap: 3rem;
  align-items: center;
}
.hero-overlap-stamp { flex-shrink: 0; }
.hero-overlap-content h2 { margin-bottom: .75rem; }
.hero-overlap-content p {
  color: var(--text-body);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.75;
}
.hero-btn-row { display:flex; gap:1rem; flex-wrap:wrap; }

/* ============================================================
   STAMP BADGE
   ============================================================ */
.stamp-badge {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 1rem;
  border: 3.5px dashed rgba(255,255,255,.55);
  outline: 3.5px solid var(--terra);
  outline-offset: 4px;
  box-shadow: 0 4px 18px rgba(212,82,42,.35);
  line-height: 1.5;
  flex-shrink: 0;
  position: relative;
}

.stamp-badge--lg {
  width: 150px;
  height: 150px;
  font-size: .82rem;
}

/* ============================================================
   PHOTO POLAROID CARDS
   ============================================================ */
.polaroid {
  background: var(--white);
  padding: 1rem 1rem 2.75rem;
  box-shadow: var(--shadow-card);
  display: inline-block;
  border-radius: 6px;
}
.polaroid img {
  border-radius: 4px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.polaroid-caption {
  text-align: center;
  font-size: .82rem;
  color: var(--text-mid);
  font-weight: 700;
  margin-top: .85rem;
  font-style: italic;
}
.polaroid--l  { transform: rotate(-3.5deg); }
.polaroid--r  { transform: rotate(2.8deg); }
.polaroid--t  { transform: rotate(-1.5deg); }

.polaroid-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 2.5rem 1rem;
}
.polaroid-row .polaroid { width: 270px; }
.polaroid-row .polaroid:nth-child(2) { margin-top: 40px; }
.polaroid-row .polaroid:nth-child(3) { margin-top: 15px; }

/* ============================================================
   ROUNDED PHOTO CARD
   ============================================================ */
.photo-rounded {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: block;
}
.photo-rounded img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   PHOTO BAND (full-bleed)
   ============================================================ */
.photo-band {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}
.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.photo-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44,24,16,.6) 0%, transparent 65%);
  display: flex;
  align-items: center;
  padding: 2.5rem 4rem;
}
.photo-band-text { color:var(--white); max-width:460px; }
.photo-band-text h2 { color:var(--white); margin-bottom:.75rem; }
.photo-band-text p { color:rgba(255,255,255,.88); font-size:1.05rem; line-height:1.75; }

/* ============================================================
   SPLIT LAYOUT
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-text h2 { margin-bottom: 1.25rem; }

/* ============================================================
   HIGHLIGHT CARDS (homepage)
   ============================================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.highlight-card {
  background: var(--cream-light);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow-soft);
  transition: transform .25s, box-shadow .25s;
}
.highlight-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-card); }
.highlight-card:nth-child(2) { margin-top: 2.5rem; }
.highlight-icon { font-size:2.5rem; margin-bottom:1rem; display:block; }
.highlight-card h3 { color:var(--terra-dk); margin-bottom:.65rem; }
.highlight-card p { font-size:.95rem; line-height:1.78; }

/* ============================================================
   IMPACT STATS
   ============================================================ */
.impact-bar {
  background: var(--terra);
  color: var(--white);
  padding: 4rem 1.5rem;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.impact-stat {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  display: block;
  color: var(--cream);
  line-height: 1;
  margin-bottom: .5rem;
}
.impact-label {
  font-size: .88rem;
  font-weight: 700;
  color: rgba(255,243,224,.8);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ============================================================
   PROGRAMME CARDS
   ============================================================ */
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.programme-card {
  background: var(--cream-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--cream-border);
  transition: transform .25s, box-shadow .25s;
}
.programme-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-card); }
.programme-card:nth-child(2) { margin-top: 2.5rem; }
.programme-card:nth-child(4) { margin-top: 2.5rem; }
.programme-head {
  background: var(--terra-bg);
  padding: 1.75rem;
  border-bottom: 2px dotted var(--terra-lt);
}
.programme-icon { font-size:2.25rem; margin-bottom:.65rem; display:block; }
.programme-head h3 { color:var(--terra-dk); margin-bottom:.5rem; }
.programme-head p { font-size:.92rem; font-style:italic; color:var(--text-body); margin-bottom:0; }
.programme-body { padding:1.75rem; font-size:.95rem; line-height:1.8; }

/* ============================================================
   WAY CARDS (Get Involved)
   ============================================================ */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.way-card {
  background: var(--cream-light);
  border-radius: var(--radius-md);
  padding: 2.5rem 2.25rem;
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.way-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-card); }
.way-card:nth-child(2) { margin-top: 2.5rem; }
.way-card::after {
  content: '';
  position: absolute;
  bottom: -24px; right: -24px;
  width: 110px; height: 110px;
  background: var(--terra);
  opacity: .055;
  border-radius: 50%;
}
.way-icon { font-size:3rem; margin-bottom:1rem; display:block; }
.way-card h3 { color:var(--terra-dk); margin-bottom:.75rem; font-size:1.3rem; }
.way-card p { font-size:.95rem; line-height:1.8; }

/* ============================================================
   ARTICLE CARDS (Blog)
   ============================================================ */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.article-card {
  background: var(--cream-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--cream-border);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.article-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-card); }
.article-card:nth-child(2) { margin-top: 2rem; }
.article-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.article-card-body { padding:1.75rem; flex:1; display:flex; flex-direction:column; }
.article-tag {
  font-size: .73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--terra);
  margin-bottom: .55rem;
}
.article-card-body h3 { font-size:1.12rem; margin-bottom:.6rem; line-height:1.35; }
.article-card-body h3 a { color:var(--text-dark); }
.article-card-body h3 a:hover { color:var(--terra); text-decoration:none; }
.article-card-body p { font-size:.92rem; line-height:1.72; color:var(--text-mid); flex:1; }
.read-more {
  margin-top: 1.25rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.read-more:hover { text-decoration:underline; }

/* ============================================================
   ARTICLE FULL PAGE
   ============================================================ */
.article-hero-img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.article-wrap {
  max-width: 740px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}
.article-back {
  font-size: .88rem;
  font-weight: 700;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-bottom: 1.75rem;
}
.article-back:hover { text-decoration:underline; }
.article-wrap h1 { margin-bottom: .8rem; }
.article-dek {
  font-size: 1.15rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 2.25rem;
  padding-bottom: 2rem;
  border-bottom: 2px dotted var(--terra-lt);
}
.article-content p { font-size:1.05rem; line-height:1.88; margin-bottom:1.5em; }
.article-content strong { color:var(--text-dark); font-weight:800; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  border: 2.5px dotted var(--terra-lt);
  box-shadow: var(--shadow-card);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 2px solid var(--cream-border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font);
  font-size: 1rem;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { outline:none; border-color:var(--terra); }
.form-group textarea { height:160px; resize:vertical; }

/* ============================================================
   TRUSTEES
   ============================================================ */
.trustee-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.trustee-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  border: 2px dotted var(--terra-lt);
  flex: 1;
  min-width: 190px;
}
.trustee-name { font-weight: 800; font-size:1.05rem; color:var(--text-dark); margin-bottom:.35rem; }
.trustee-role {
  font-size: .82rem;
  color: var(--terra);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ============================================================
   DOTTED BOX
   ============================================================ */
.dotted-box {
  border: 2.5px dotted var(--terra-lt);
  border-radius: var(--radius-md);
  padding: 2.25rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--terra);
  padding: 5rem 1.5rem;
  text-align: center;
}
.cta-section h2 { color:var(--white); margin-bottom:1.25rem; }
.cta-section p { color:rgba(255,243,224,.88); font-size:1.1rem; max-width:580px; margin:0 auto 2.25rem; }

/* ============================================================
   SCRAPBOOK BAND
   ============================================================ */
.scrap-band {
  display: inline-block;
  background: var(--terra);
  color: var(--white);
  padding: .35rem 1.2rem;
  border-radius: 4px;
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  transform: rotate(-1.2deg);
}

/* ============================================================
   STORY SECTION
   ============================================================ */
.story-section {
  background: var(--cream-deep);
  border-radius: var(--radius-md);
  padding: 3rem;
  border-left: 6px solid var(--terra);
  position: relative;
  overflow: hidden;
}
.story-section::before {
  content: '«';
  position: absolute;
  top: -.2rem; left: 1.5rem;
  font-size: 8rem;
  color: var(--terra);
  opacity: .1;
  font-weight: 900;
  line-height: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .highlight-card:nth-child(2) { margin-top: 0; }
  .programmes-grid { grid-template-columns: 1fr; }
  .programme-card:nth-child(2) { margin-top: 0; }
  .programme-card:nth-child(4) { margin-top: 0; }
}

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap:2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap:2rem; }
  .impact-grid { grid-template-columns: 1fr; gap:2rem; }
  .hero-overlap-card { flex-direction:column; gap:1.5rem; padding:2rem; }
  .ways-grid { grid-template-columns: 1fr; }
  .way-card:nth-child(2) { margin-top:0; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .article-card:nth-child(2) { margin-top:0; }
  .photo-band { height:320px; }
  .photo-band-overlay { padding:2rem; }
}

@media (max-width: 640px) {
  .nav-links { display:none; flex-direction:column; width:100%; }
  .nav-links.open { display:flex; }
  .nav-toggle { display:block; }
  .nav-inner { flex-wrap:wrap; position:relative; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    padding: 1rem 1.5rem 1.25rem;
    border-top: 2px dotted var(--terra-lt);
    box-shadow: 0 8px 24px rgba(44,24,16,.12);
    z-index: 300;
  }
  .nav-links li a { padding:.6rem .4rem; display:block; }
  .hero-img { height:52vh; min-height:300px; }
  .hero-overlap-wrapper { margin-top:-60px; padding:0 1rem; }
  .hero-overlap-card { padding:1.5rem 1.25rem; }
  .section { padding:3rem 1rem; }
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-card:nth-child(2) { margin-top:0; }
  .articles-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .polaroid-row .polaroid { width:220px; }
  .photo-band { height:240px; }
  .photo-band-overlay { padding:1.5rem; }
  .article-hero-img { height:240px; }
  .contact-form { padding:1.5rem; }
  .story-section { padding:2rem; }
  .cta-section { padding:3.5rem 1rem; }
  .trustee-row { flex-direction:column; }
  .hero-btn-row { flex-direction:column; }
}
