/* ============================================================
   ROLDUC – Shared CSS (alle paginas)
   max-width: 1200px | responsive: 1024 / 768 / 480px
   ============================================================ */

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

:root {
  --navy:       #1B2A4A;
  --gold:       #C8A96E;
  --gold-light: #EAD9B8;
  --cream:      #F7F5F0;
  --muted:      #6B7280;
  --white:      #ffffff;
  --border:     #e5e1d8;
  --text-body:  #4a5568;
}

body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--navy); }
img  { max-width: 100%; display: block; }

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

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 38px; height: 38px; background: var(--navy);
  border-radius: 5px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .logo-sub  { font-family: 'Playfair Display', serif; font-size: 11px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.logo-text .logo-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; color: var(--navy); }

.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links li { position: relative; }
.nav-links a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active { font-weight: 500; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 7px 18px !important; border-radius: 5px; font-weight: 500 !important; border-bottom: none !important; }

/* dropdown (subpagina's) — klik-gestuurd openklap-menu; de ouderpagina zelf is
   geen link, alleen een toggle voor het submenu */
.nav-parent-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: inherit; font-size: 14px; color: var(--muted); transition: color .15s;
}
.nav-parent-toggle:hover, .nav-parent-toggle.active { color: var(--navy); }
.nav-parent-toggle.active { font-weight: 500; }
.nav-parent-toggle svg { transition: transform .15s; flex-shrink: 0; }
.nav-links li.has-dropdown.open .nav-parent-toggle svg { transform: rotate(180deg); }
.nav-dropdown {
  display: none; position: absolute; top: 100%; left: -1rem;
  min-width: 200px; margin-top: .75rem; padding: .5rem 0;
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  box-shadow: 0 12px 28px rgba(27,42,74,.1); list-style: none; z-index: 10;
}
.nav-links li.has-dropdown.open .nav-dropdown { display: block; }
.nav-dropdown a { display: block; padding: .5rem 1.25rem; font-size: 13.5px; color: var(--muted); border-bottom: none; white-space: nowrap; }
.nav-dropdown a:hover { background: var(--cream); color: var(--navy); }

.nav-drawer-parent { display: block; font-size: 15px; font-weight: 500; color: var(--navy); padding: .4rem 0 0; }
.nav-drawer-sub { padding-left: 1.25rem !important; font-size: 14px !important; }

.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: .2s; }

/* mobile nav drawer */
.nav-drawer {
  display: none; flex-direction: column; gap: .5rem;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a { font-size: 15px; color: var(--muted); text-decoration: none; padding: .4rem 0; border-bottom: .5px solid var(--border); }
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a.nav-cta { background: var(--gold); color: var(--navy); padding: .5rem 1rem; border-radius: 5px; font-weight: 500; margin-top: .5rem; border-bottom: none; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 5rem 2rem 6rem;
  position: relative; overflow: hidden; text-align: center;
}
.hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 56px; background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-eyebrow { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 500; }
.gold-line    { width: 48px; height: 2px; background: var(--gold); margin: 0 auto 2rem; }
.hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 56px);
  font-weight: 500; color: var(--white); line-height: 1.15;
  margin: 0 auto 1.25rem; max-width: 700px;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero .hero-sub { font-size: 17px; color: #a8b4c8; max-width: 520px; margin: 0 auto 2.25rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary  { background: var(--gold); color: var(--navy); padding: 11px 28px; border-radius: 5px; font-size: 14px; font-weight: 500; text-decoration: none; }
.btn-outline  { border: 1px solid rgba(200,169,110,.4); color: var(--gold-light); padding: 11px 28px; border-radius: 5px; font-size: 14px; text-decoration: none; }

/* ── PILLARS ── */
.pillars { padding: 4rem 2rem 3rem; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar  { background: var(--white); border: .5px solid var(--border); border-radius: 10px; padding: 1.75rem; border-top: 3px solid var(--gold); }
a.pillar { display: block; text-decoration: none; color: inherit; transition: box-shadow .15s; }
a.pillar:hover { box-shadow: 0 6px 20px rgba(0,0,0,.06); }
.pillar-icon { width: 42px; height: 42px; background: #F7F3EC; border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.pillar-icon i { font-size: 20px; color: var(--gold); }
.pillar h3 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 500; margin-bottom: .5rem; }
.pillar p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── GENERIC SECTION ── */
.section { padding: 3rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: .5rem; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 500; }
.section-header a  { font-size: 13px; color: var(--gold); text-decoration: none; white-space: nowrap; }

/* ── NEWS GRID ── */
.news-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1.5rem; }
.news-card { background: var(--white); border: .5px solid var(--border); border-radius: 10px; overflow: hidden; text-decoration: none; display: block; transition: border-color .15s; }
.news-card:hover { border-color: var(--gold); }
.news-card:hover .news-card-title { color: var(--gold); }
.news-card-img { display: flex; align-items: center; justify-content: center; }
.news-card-img.candles   { background: #2a1f0e; height: 200px; }
.news-card-img.icon-only { background: #f0ece4; height: 150px; }
.news-card-img i { font-size: 36px; color: var(--gold); opacity: .6; }
.news-card-body { padding: 1.25rem; }
.news-date { font-size: 11px; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .4rem; font-weight: 500; }
.news-card-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 500; color: var(--navy); line-height: 1.35; margin-bottom: .5rem; transition: color .15s; }
.news-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.news-card.featured .news-card-body  { padding: 1.75rem; }
.news-card.featured .news-card-title { font-size: 21px; margin-bottom: .75rem; }
.news-card.featured .news-card-img.candles { height: 240px; }

/* candles */
.candle-group { display: flex; gap: 12px; align-items: flex-end; }
.candle { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.flame { width: 7px; height: 12px; background: #f5c842; border-radius: 50% 50% 30% 30%; box-shadow: 0 0 8px 3px rgba(245,200,66,.4); }
.wick  { width: 1px; height: 4px; background: #555; }
.wax   { width: 13px; border-radius: 2px; background: linear-gradient(to right, #e8d5b7, #d4b98a); }

/* ── GALLERY ── */
.gallery-band { padding: 0 2rem 3rem; max-width: 1200px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 160px 160px;
  gap: 8px;
}
.gallery-cell { border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.gallery-cell i { font-size: 28px; opacity: .22; color: var(--white); }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; transition: opacity .15s; }
.gallery-cell img:hover { opacity: .85; }
.gc-stone { background: #2e3a4e; }
.gc-warm  { background: #3d2a18; }
.gc-mid   { background: #243044; }
.gc-light { background: #f0ece4; }
.gc-light i { color: var(--gold); opacity: .5; }
/* layout: big cell spans col 1-2, rows 1-2 */
.gallery-cell.hero-cell { grid-column: 1 / 3; grid-row: 1 / 3; }

/* ── PHOTO GALLERY (pagina's / nieuws, geüploade afbeeldingen) ── */
/* Staat naast de tekst wanneer .detail-layout--with-gallery actief is */
.detail-layout { display: flex; gap: 2.5rem; align-items: flex-start; flex-wrap: wrap; }
.detail-layout .detail-text { flex: 1 1 480px; min-width: 0; }
.detail-layout .photo-gallery { flex: 1 1 320px; max-width: 380px; }

.photo-gallery {
  display: grid; grid-template-columns: 1fr; gap: 10px;
  margin: 1.5rem 0;
}
.photo-gallery img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 8px; border: 1px solid var(--border);
  cursor: zoom-in; transition: opacity .15s;
}
.photo-gallery img:hover { opacity: .85; }
/* Zonder tekst ernaast (bv. losstaand) mag de galerij breder in meerdere kolommen */
.photo-gallery--grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 640px) { .photo-gallery--grid { grid-template-columns: repeat(2, 1fr); } }

/* ── LIGHTBOX ── */
.lightbox-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(15, 20, 32, .92);
  align-items: center; justify-content: center; padding: 3rem 1.5rem;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 100%; max-height: 100%; border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.lightbox-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  background: none; border: none; color: var(--white);
  font-size: 34px; line-height: 1; cursor: pointer; opacity: .8;
}
.lightbox-close:hover { opacity: 1; }

/* ── CALENDAR ── */
.calendar-section { background: var(--white); border-top: .5px solid var(--border); border-bottom: .5px solid var(--border); padding: 3rem 2rem; }
.calendar-inner   { max-width: 1200px; margin: 0 auto; }
.events-list { display: flex; flex-direction: column; }
.event-row { display: flex; align-items: center; gap: 1.5rem; padding: 1.1rem 0; border-bottom: .5px solid var(--border); }
.event-row:last-child { border-bottom: none; }
a.event-row { text-decoration: none; color: inherit; transition: opacity .15s; }
a.event-row:hover { opacity: .75; }
.event-date-block { min-width: 56px; text-align: center; background: #F7F3EC; border-radius: 7px; padding: 9px 8px; border-top: 2px solid var(--gold); flex-shrink: 0; }
.event-date-block .day   { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 500; color: var(--navy); line-height: 1; }
.event-date-block .month { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; font-weight: 500; }
.event-info { flex: 1; }
.event-info h4 { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 3px; }
.event-info p  { font-size: 13px; color: var(--muted); }
.event-tag { font-size: 11px; padding: 4px 12px; border-radius: 20px; font-weight: 500; white-space: nowrap; }
.tag-liturgy { background: #EAD9B8; color: #7a5a1e; }
.tag-open    { background: #dce8f5; color: #1B4A7a; }
.tag-studie  { background: #e8f0e0; color: #2d5a14; }

/* ── TESTIMONIAL ── */
.testimonial-band { background: var(--navy); padding: 4rem 2rem; }
.testimonial-inner { max-width: 800px; margin: 0 auto; display: flex; gap: 2.5rem; align-items: flex-start; }
.testimonial-avatar { min-width: 78px; height: 78px; border-radius: 50%; background: #2e3d5a; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 500; color: var(--gold); flex-shrink: 0; overflow: hidden; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: .8rem; }
.testimonial-stars i { font-size: 14px; color: var(--gold); }
.testimonial-body blockquote { font-family: 'Playfair Display', serif; font-size: 20px; font-style: italic; color: var(--white); line-height: 1.6; margin-bottom: 1rem; }
.testimonial-meta { font-size: 13px; color: #a8b4c8; }
.testimonial-meta strong { color: var(--gold-light); font-weight: 500; }
.testimonial-dots { display: flex; gap: 6px; margin-top: 1.25rem; }
.tdot { width: 6px; height: 6px; border-radius: 50%; background: rgba(200,169,110,.3); }
.tdot.active { background: var(--gold); width: 22px; border-radius: 3px; }

/* ── DONATE ── */
.donate-section { padding: 3rem 2rem; max-width: 1200px; margin: 0 auto; }
.donate-card { background: var(--navy); border-radius: 14px; padding: 3rem; display: flex; gap: 3rem; align-items: center; }
.donate-text { flex: 1; }
.donate-text h2 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 500; color: var(--white); margin-bottom: .85rem; }
.donate-text p  { font-size: 14px; color: #a8b4c8; line-height: 1.7; margin-bottom: 1.5rem; }
.donate-amounts { display: flex; gap: 8px; margin-bottom: 1.4rem; flex-wrap: wrap; }
.amt-btn { padding: 8px 20px; border-radius: 5px; font-size: 14px; font-weight: 500; border: 1px solid rgba(200,169,110,.4); color: var(--gold-light); cursor: pointer; background: transparent; font-family: 'Inter', sans-serif; transition: .15s; }
.amt-btn:hover, .amt-btn.active { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.donate-cta { background: var(--gold); color: var(--navy); padding: 12px 30px; border-radius: 5px; font-size: 14px; font-weight: 500; text-decoration: none; display: inline-block; border: none; cursor: pointer; font-family: 'Inter', sans-serif; }
.donate-instructions { margin-top: 1.25rem; padding: 1.25rem; background: rgba(255,255,255,.06); border-radius: 9px; border-left: 2px solid var(--gold); }
.donate-qr { background: #fff; padding: 8px; border-radius: 8px; display: inline-block; line-height: 0; }
.donate-qr img { display: block; width: 140px; height: 140px; }
.donate-impact { display: flex; flex-direction: column; gap: 1rem; min-width: 200px; }
.impact-item { background: rgba(255,255,255,.06); border-radius: 9px; padding: 1.1rem 1.25rem; border-left: 2px solid var(--gold); }
.impact-item .num   { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 500; color: var(--gold); }
.impact-item .label { font-size: 12px; color: #a8b4c8; margin-top: 3px; }

/* ── QUOTE BAND ── */
.quote-band { background: #111a2e; padding: 3.5rem 2rem; text-align: center; }
.quote-band blockquote { font-family: 'Playfair Display', serif; font-size: 24px; font-style: italic; color: var(--white); max-width: 640px; margin: 0 auto .85rem; line-height: 1.5; }
.quote-band cite { font-size: 12px; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; font-style: normal; }

/* ── NIEUWS OVERZICHT (nieuws.html) ── */
.page-hero { background: var(--navy); padding: 3rem 2rem 4rem; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 44px; background: var(--cream); clip-path: ellipse(55% 100% at 50% 100%); }
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero-eyebrow { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; font-weight: 500; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 40px); font-weight: 500; color: var(--white); line-height: 1.2; margin-bottom: .6rem; }
.page-hero p  { font-size: 15px; color: #a8b4c8; max-width: 480px; line-height: 1.65; }

.filter-bar { padding: 1.75rem 2rem .75rem; max-width: 1200px; margin: 0 auto; display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn { padding: 6px 16px; border-radius: 20px; font-size: 13px; border: .5px solid var(--border); background: var(--white); color: var(--muted); cursor: pointer; font-family: 'Inter', sans-serif; transition: .15s; }
.filter-btn:hover { border-color: var(--gold); color: var(--navy); }
.filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.featured-post { margin: 0 2rem 1.5rem; max-width: 1200px; margin-left: auto; margin-right: auto; background: var(--white); border: .5px solid var(--border); border-radius: 12px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; text-decoration: none; transition: border-color .15s; }
.featured-post:hover { border-color: var(--gold); }
.featured-post:hover .fp-title { color: var(--gold); }
.fp-img { background: var(--navy); min-height: 280px; display: flex; align-items: center; justify-content: center; }
.fp-img.warm { background: #2a1f0e; }
.fp-img i { font-size: 56px; color: var(--gold); opacity: .35; }
.fp-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.fp-badge { display: inline-block; font-size: 11px; padding: 4px 12px; border-radius: 20px; margin-bottom: .9rem; font-weight: 500; }
.badge-gemeenschap { background: #EAD9B8; color: #7a5a1e; }
.badge-liturgie    { background: #dce8f5; color: #1B4A7a; }
.badge-studie      { background: #e8f0e0; color: #2d5a14; }
.badge-nieuws      { background: #f0ece4; color: #4a3a20; }
.fp-date  { font-size: 12px; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .65rem; font-weight: 500; }
.fp-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 500; color: var(--navy); line-height: 1.3; margin-bottom: .85rem; transition: color .15s; }
.fp-excerpt { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 1.4rem; }
.read-more { font-size: 13px; color: var(--gold); font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }

.posts-section { padding: 1rem 2rem 2rem; max-width: 1200px; margin: 0 auto; }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.post-card { background: var(--white); border: .5px solid var(--border); border-radius: 10px; overflow: hidden; text-decoration: none; display: block; transition: border-color .15s; }
.post-card:hover { border-color: var(--gold); }
.post-card:hover .pc-title { color: var(--gold); }
.pc-img { height: 150px; display: flex; align-items: center; justify-content: center; }
.pc-img.col-warm  { background: #2a1f0e; }
.pc-img.col-navy  { background: #1B2A4A; }
.pc-img.col-stone { background: #2e3a4e; }
.pc-img.col-cream { background: #f0ece4; }
.pc-img i { font-size: 32px; color: var(--gold); opacity: .45; }
.pc-img.col-cream i { opacity: .6; }
.pc-body { padding: 1.1rem 1.25rem; }
.pc-date  { font-size: 11px; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .4rem; font-weight: 500; }
.pc-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 500; color: var(--navy); line-height: 1.35; margin-bottom: .45rem; transition: color .15s; }
.pc-excerpt { font-size: 13px; color: var(--muted); line-height: 1.6; }
.pc-footer { padding: .75rem 1.25rem 1rem; }
.pc-tag { font-size: 11px; padding: 3px 10px; border-radius: 12px; font-weight: 500; }

.pagination { padding: .5rem 2rem 3rem; max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; gap: 6px; }
.pg-btn { width: 36px; height: 36px; border-radius: 5px; border: .5px solid var(--border); background: var(--white); font-size: 13px; color: var(--muted); cursor: pointer; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: .15s; }
.pg-btn:hover { border-color: var(--gold); color: var(--navy); }
.pg-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── DETAIL PAGE ── */
.detail-back { padding: 1.5rem 2rem 0; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gold); text-decoration: none; font-weight: 500; }
.detail-back i { font-size: 16px; }
.detail-hero { min-height: 320px; display: flex; align-items: center; justify-content: center; margin: 1.25rem 2rem 0; max-width: 1200px; margin-left: auto; margin-right: auto; border-radius: 12px; overflow: hidden; background: var(--navy); }
.detail-hero i { font-size: 80px; color: var(--gold); opacity: .18; }
.detail-hero.warm  { background: #2a1f0e; }
.detail-hero.stone { background: #2e3a4e; }
.detail-hero.cream { background: #f0ece4; }
.detail-hero.cream i { opacity: .45; }

.detail-content { max-width: 800px; margin: 0 auto; padding: 2.25rem 2rem 1rem; }
.detail-content.has-gallery { max-width: 1100px; }
.detail-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 1.1rem; flex-wrap: wrap; }
.detail-date   { font-size: 12px; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; font-weight: 500; }
.detail-author { font-size: 12px; color: var(--muted); }
.detail-content h1   { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3.5vw, 34px); font-weight: 500; color: var(--navy); line-height: 1.25; margin-bottom: 1.35rem; }
.detail-content .lead { font-size: 17px; color: var(--text-body); line-height: 1.75; margin-bottom: 1.35rem; font-style: italic; border-left: 3px solid var(--gold); padding-left: 1.1rem; }
.detail-content p    { font-size: 15px; color: var(--text-body); line-height: 1.8; margin-bottom: 1.1rem; }
.detail-content h2   { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 500; color: var(--navy); margin: 1.75rem 0 .85rem; }
.detail-divider      { border: none; border-top: .5px solid var(--border); margin: 2.5rem 0; }

.related-section { padding: 0 2rem 3rem; max-width: 1200px; margin: 0 auto; }
.related-section h3  { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 500; color: var(--navy); margin-bottom: 1.1rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.related-card { background: var(--white); border: .5px solid var(--border); border-radius: 9px; padding: 1.1rem 1.25rem; text-decoration: none; display: block; transition: border-color .15s; }
.related-card:hover { border-color: var(--gold); }
.related-card:hover .rc-title { color: var(--gold); }
.rc-date  { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .4rem; font-weight: 500; }
.rc-title { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 500; color: var(--navy); line-height: 1.35; transition: color .15s; }

/* ── FOOTER ── */
footer { background: #0d1526; color: #7a8ba8; padding: 2.5rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 13px; }
footer span { color: var(--gold); }

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

/* Tablet landscape – 1024px */
@media (max-width: 1024px) {
  .news-grid    { grid-template-columns: 1fr 1fr; }
  .news-card.featured { grid-column: 1 / -1; }
  .news-card.featured .news-card-img.candles { height: 200px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 160px 160px; }
  .gallery-cell.hero-cell { grid-column: 1 / 3; grid-row: 1 / 3; }
  .donate-card  { flex-direction: column; gap: 2rem; }
  .donate-impact { flex-direction: row; min-width: unset; }
  .impact-item  { flex: 1; }
  .featured-post { grid-template-columns: 1fr 1fr; }
  .posts-grid   { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Tablet portrait – 768px */
@media (max-width: 768px) {
  .nav-links    { display: none; }
  .nav-hamburger { display: block; }

  .hero { padding: 3.5rem 1.5rem 4.5rem; }
  .hero h1 { font-size: 32px; }
  .hero .hero-sub { font-size: 15px; }

  .pillars { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; }

  .section { padding: 2rem 1.5rem; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card.featured .news-card-img.candles { height: 180px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-cell.hero-cell { grid-column: 1 / 3; min-height: 180px; }
  .gallery-cell { min-height: 120px; }

  .featured-post { grid-template-columns: 1fr; }
  .fp-img { min-height: 200px; }
  .fp-body { padding: 1.75rem; }
  .fp-title { font-size: 20px; }

  .posts-grid { grid-template-columns: 1fr; }
  .filter-bar { padding: 1.25rem 1.5rem .5rem; }
  .posts-section { padding: 1rem 1.5rem 2rem; }

  .testimonial-inner { flex-direction: column; gap: 1.25rem; }
  .testimonial-avatar { width: 60px; height: 60px; font-size: 20px; }

  .donate-card { padding: 2rem; flex-direction: column; }
  .donate-impact { flex-direction: column; }

  .detail-hero { margin: 1rem 1.5rem 0; min-height: 200px; }
  .detail-content { padding: 1.75rem 1.5rem 1rem; }
  .related-grid { grid-template-columns: 1fr; }
  .related-section { padding: 0 1.5rem 2.5rem; }

  .calendar-section { padding: 2rem 1.5rem; }
  .event-tag { display: none; }

  .footer-inner { flex-direction: column; text-align: center; gap: .75rem; }
}

/* Mobile – 480px */
@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .hero .hero-sub { font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-cell.hero-cell { grid-column: 1 / 3; }

  .page-hero h1 { font-size: 26px; }

  .donate-amounts { gap: 6px; }
  .amt-btn { padding: 7px 14px; font-size: 13px; }

  .posts-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
