/* =====================================================
   Les Petits Cuisiniers — Comité de Montpellier
   WARM & HUMAN COMMUNITY design system
   ===================================================== */

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

:root {
  --terracotta: #D4522A;
  --terracotta-light: #E87A52;
  --cream: #FFF3E0;
  --cream-deep: #F5E6CC;
  --cream-card: #FFFAF3;
  --brown: #6B3A1F;
  --brown-mid: #9B5E35;
  --brown-light: #C49A6C;
  --text: #3D2010;
  --text-mid: #6B4423;
  --text-light: #9B6B45;
  --white: #FFFFFF;
  --shadow-warm: 0 4px 24px rgba(111, 54, 20, 0.12);
  --shadow-card: 0 8px 32px rgba(111, 54, 20, 0.15);
  --shadow-heavy: 0 16px 48px rgba(111, 54, 20, 0.22);
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 48px;
}

html { scroll-behavior: smooth; }

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

/* =====================================================
   TYPOGRAPHY
   ===================================================== */

h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  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.7rem); }
h4 { font-size: 1.15rem; }

p { line-height: 1.85; color: var(--text-mid); }
p + p { margin-top: 1.2em; }

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

/* =====================================================
   NAVIGATION
   ===================================================== */

.site-header {
  background: var(--cream-card);
  border-bottom: 2px dashed var(--cream-deep);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(111,54,20,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand img.logo-icon {
  height: 44px;
  width: auto;
}

.nav-brand img.wordmark {
  height: 32px;
  width: auto;
  /* Dark artwork on transparent bg — shown as-is on light header */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  display: block;
  padding: 0.45rem 0.85rem;
  border-radius: 50px;
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--terracotta);
  color: var(--white);
}

.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--terracotta);
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  color: var(--terracotta);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

/* =====================================================
   LAYOUT UTILITIES
   ===================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 5rem 0; }
section.tight { padding: 3rem 0; }
section.loose { padding: 7rem 0; }

.section-label {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-label.cream {
  background: var(--cream-deep);
  color: var(--terracotta);
}

/* =====================================================
   SQUIGGLE DIVIDERS
   ===================================================== */

.squiggle-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
}

.squiggle-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
  position: relative;
  background: var(--brown);
  overflow: visible;
  padding: 0;
  min-height: 620px;
}

.hero-img-wrap {
  width: 100%;
  height: 640px;
  overflow: hidden;
  position: relative;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 12, 4, 0.18) 0%,
    rgba(30, 12, 4, 0.55) 60%,
    rgba(30, 12, 4, 0.78) 100%
  );
}

.hero-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

.hero-text-inner {
  max-width: 700px;
}

.hero-tagline {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
  margin-bottom: 1rem;
}

.hero-sub {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 600px;
}

/* Pulled-up card over hero bottom */
.hero-pulled-card {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  padding: 0 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats-row {
  background: var(--cream-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-heavy);
  padding: 2.5rem 3rem;
  display: flex;
  gap: 0;
  justify-content: space-around;
  align-items: center;
  border: 3px solid var(--cream-deep);
  position: relative;
}

.hero-stats-row::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--radius-lg) + 6px);
  border: 2px dashed var(--cream-deep);
  pointer-events: none;
}

.stat-item {
  text-align: center;
  flex: 1;
  padding: 0 1rem;
}

.stat-item + .stat-item {
  border-left: 2px dashed var(--cream-deep);
}

.stat-num {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--terracotta);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 0.3rem;
  line-height: 1.3;
}

/* =====================================================
   STAMP BADGE
   ===================================================== */

.stamp-badge {
  width: 110px;
  height: 110px;
  position: relative;
  flex-shrink: 0;
}

.stamp-badge svg {
  width: 100%;
  height: 100%;
}

/* =====================================================
   POLAROID IMAGE CARDS
   ===================================================== */

.polaroid {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  overflow: visible;
  display: inline-block;
  padding: 10px 10px 36px;
  position: relative;
}

.polaroid img {
  border-radius: 8px;
  width: 100%;
  display: block;
  object-fit: cover;
}

.polaroid-caption {
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  font-style: italic;
  letter-spacing: 0.02em;
}

.polaroid.tilt-left { transform: rotate(-3.5deg); }
.polaroid.tilt-right { transform: rotate(2.8deg); }
.polaroid.tilt-sm-left { transform: rotate(-1.5deg); }
.polaroid.tilt-sm-right { transform: rotate(1.8deg); }

/* =====================================================
   CARDS
   ===================================================== */

.card {
  background: var(--cream-card);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 2px solid var(--cream-deep);
  box-shadow: var(--shadow-warm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.card-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.card h3 {
  margin-bottom: 0.75rem;
  color: var(--terracotta);
}

/* Dotted border variant */
.card.dotted {
  border: 2px dashed var(--brown-light);
}

/* =====================================================
   PHOTO GRID — scrapbook
   ===================================================== */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.photo-grid .polaroid:nth-child(2) { margin-top: 2.5rem; }
.photo-grid .polaroid:nth-child(3) { margin-top: -1rem; }

.photo-round {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 5px solid var(--white);
}

.photo-round img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =====================================================
   FULL-BLEED PHOTO BANNER
   ===================================================== */

.photo-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.photo-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,82,42,0.55) 0%, rgba(30,12,4,0.4) 100%);
}

.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.banner-content h2 {
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  max-width: 700px;
}

.banner-content p {
  color: rgba(255,255,255,0.9);
  margin-top: 1rem;
  max-width: 560px;
}

/* =====================================================
   HIGHLIGHTS GRID
   ===================================================== */

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .highlights-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   INTRO SPLIT
   ===================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split.flip { direction: rtl; }
.split.flip > * { direction: ltr; }

@media (max-width: 768px) {
  .split, .split.flip {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2.5rem;
  }
}

/* =====================================================
   STAGGERED CARD ROW
   ===================================================== */

.stagger-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.stagger-row .card:nth-child(2) { margin-top: 2.5rem; }
.stagger-row .card:nth-child(3) { margin-top: 1rem; }

@media (max-width: 900px) {
  .stagger-row {
    flex-direction: column;
  }
  .stagger-row .card:nth-child(2),
  .stagger-row .card:nth-child(3) { margin-top: 0; }
}

/* =====================================================
   CREAM BAND (background sections)
   ===================================================== */

.bg-cream { background: var(--cream); }
.bg-cream-deep { background: var(--cream-deep); }
.bg-terracotta { background: var(--terracotta); }
.bg-brown { background: var(--brown); }
.bg-white { background: var(--white); }

.bg-terracotta h1,
.bg-terracotta h2,
.bg-terracotta h3,
.bg-terracotta h4,
.bg-terracotta p,
.bg-brown h1,
.bg-brown h2,
.bg-brown h3,
.bg-brown h4 {
  color: var(--white);
}

.bg-terracotta p, .bg-brown p {
  color: rgba(255,255,255,0.88);
}

/* =====================================================
   PROGRAMME CARDS
   ===================================================== */

.programme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .programme-grid { grid-template-columns: 1fr; }
}

.prog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  border: 2px solid var(--cream-deep);
  display: flex;
  flex-direction: column;
}

.prog-card-head {
  background: var(--cream-deep);
  padding: 1.5rem 2rem;
  border-bottom: 2px dashed var(--brown-light);
}

.prog-card-head .card-icon { margin-bottom: 0.5rem; }
.prog-card-head h3 { color: var(--brown); font-size: 1.25rem; }
.prog-card-head p { color: var(--text-mid); font-size: 0.95rem; margin-top: 0.4rem; }

.prog-card-body {
  padding: 1.5rem 2rem;
  flex: 1;
}

.prog-card-body p { font-size: 0.95rem; }

/* =====================================================
   TRUSTEES
   ===================================================== */

.trustees-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trustee-card {
  flex: 1;
  min-width: 160px;
  background: var(--white);
  border: 2px solid var(--cream-deep);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-warm);
}

.trustee-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.8rem;
  border: 3px solid var(--terracotta);
}

.trustee-card h4 { font-size: 1rem; color: var(--text); margin-bottom: 0.2rem; }
.trustee-card p { font-size: 0.85rem; color: var(--terracotta); font-weight: 700; }

/* =====================================================
   BLOG CARDS
   ===================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--cream-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  border: 2px solid var(--cream-deep);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.4s;
  display: block;
}

.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 1.2rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--terracotta);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

.read-more:hover { text-decoration: underline; }

/* =====================================================
   ARTICLE
   ===================================================== */

.article-hero {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-heavy);
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
}

.article-body h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.article-dek {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px dashed var(--cream-deep);
}

.article-body p {
  margin-bottom: 1.4em;
}

.article-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212,82,42,0.35);
}

.btn-primary:hover {
  background: var(--terracotta-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,82,42,0.45);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
}

.btn-outline:hover {
  background: var(--terracotta);
  color: var(--white);
  text-decoration: none;
}

.btn-white {
  background: var(--white);
  color: var(--terracotta);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-lg {
  padding: 1.1rem 2.8rem;
  font-size: 1.05rem;
}

/* =====================================================
   CONTACT FORM
   ===================================================== */

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border: 2px solid var(--cream-deep);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--terracotta);
}

.form-group textarea { resize: vertical; min-height: 130px; }

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

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* =====================================================
   CTA BAND
   ===================================================== */

.cta-band {
  background: var(--terracotta);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -40px;
  width: 280px; height: 280px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-band p {
  color: rgba(255,255,255,0.88);
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.cta-band .btn { position: relative; z-index: 1; }

/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
  background: var(--brown);
  color: rgba(255,255,255,0.85);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.footer-brand img.logo-icon {
  height: 40px;
  width: auto;
  /* Logo on dark footer */
  filter: brightness(0) invert(1);
}

.footer-brand img.wordmark {
  height: 28px;
  width: auto;
  /* Wordmark (dark artwork) on dark footer — invert to white */
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col p, .footer-col a {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li + li { margin-top: 0.5rem; }

.footer-col a {
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
}

/* =====================================================
   DOTTED BORDER SECTION
   ===================================================== */

.dotted-box {
  border: 2px dashed var(--brown-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  background: var(--cream-card);
}

/* =====================================================
   PAGE HEADER BAND
   ===================================================== */

.page-header {
  background: var(--cream-deep);
  padding: 4rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border: 3px dashed var(--cream-deep);
  border-radius: 50%;
  opacity: 0.6;
}

.page-header h1 { margin-bottom: 0.75rem; }
.page-header p { color: var(--text-mid); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* =====================================================
   ABOUT STORY
   ===================================================== */

.story-block {
  position: relative;
  padding-left: 2.5rem;
}

.story-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--terracotta), var(--cream-deep));
  border-radius: 4px;
}

/* =====================================================
   GET INVOLVED — ways
   ===================================================== */

.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .ways-grid { grid-template-columns: 1fr; }
}

.way-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px dashed var(--cream-deep);
  box-shadow: var(--shadow-warm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.way-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.way-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.way-card h3 { color: var(--terracotta); margin-bottom: 0.8rem; }

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .hero-img-wrap { height: 480px; }
  .hero-text { padding: 2rem 1.5rem 4rem; }

  .hero-stats-row {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
  }

  .stat-item + .stat-item {
    border-left: none;
    border-top: 2px dashed var(--cream-deep);
    padding-top: 1.5rem;
  }

  .hero-pulled-card { margin-top: -60px; padding: 0 1rem; }

  .nav-links { display: none; flex-direction: column; width: 100%; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.6rem 1rem; border-radius: 8px; }
  .nav-toggle { display: block; }
  .nav-inner { flex-wrap: wrap; }

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

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

  .photo-banner { height: 280px; }

  .article-hero { height: 260px; border-radius: var(--radius-md); }

  .page-header { padding: 3rem 1.5rem 4rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .container-narrow { padding: 0 1.25rem; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .btn-lg { padding: 0.9rem 1.8rem; }
}
