/* ============================================================
   Silveira House — Shared Stylesheet
   Fonts: Fraunces (serif) | Inter (sans-serif) | JetBrains Mono
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,ital,wght@9..144,0,400;9..144,0,500;9..144,0,600;9..144,0,700;9..144,1,400;9..144,1,600&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --ink:       #1b2620;
  --forest:    #2d6b2d;
  --forest-mid:#3d8c3d;
  --clay:      #e8a200;
  --clay-soft: #f5c842;
  --paper:     #f7f3ea;
  --paper-warm:#efe6d4;
  --line:      #d8cdb4;
  --white:     #fffdf8;
  --muted:     #5a6259;
  --success:   #16a34a;
  --danger:    #dc2626;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--paper); color: var(--ink);
  font-family: 'Inter', sans-serif; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
h1, h2, h3, h4 { font-family: 'Fraunces', serif; font-weight: 600; letter-spacing: -0.01em; line-height: 1.15; }
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--clay); font-weight: 500;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--clay); color: var(--white);
  padding: 13px 26px; border-radius: 100px;
  font-weight: 600; font-size: 14.5px; border: none; cursor: pointer;
  font-family: inherit;
  transition: transform .2s ease, box-shadow .2s ease, background .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(196,98,45,.45); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--forest); color: var(--forest);
  padding: 12px 24px; border-radius: 100px;
  font-weight: 600; font-size: 14.5px; cursor: pointer;
  font-family: inherit; transition: background .2s, color .2s;
}
.btn-secondary:hover { background: var(--forest); color: var(--white); }
.btn-ghost { display: inline-flex; align-items: center; gap: 6px; color: var(--clay); font-weight: 600; font-size: 13.5px; transition: gap .2s; }
.btn-ghost:hover { gap: 10px; }

/* ── SCROLL PROGRESS ── */
#scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--clay); z-index: 9999; width: 0; transition: width .1s linear; }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(247,243,234,0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(27,38,32,.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 12px; }

.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-img { width: 52px; height: 52px; object-fit: contain; border-radius: 6px; }
.nav-logo-text { line-height: 1.2; }
.nav-logo-text strong { display: block; font-family: 'Fraunces', serif; font-size: 14px; font-weight: 700; color: var(--forest); }
.nav-logo-text small { display: block; font-size: 10px; color: var(--muted); font-weight: 500; letter-spacing: 0.01em; }

.nav-links { display: flex; align-items: center; gap: 0; list-style: none; flex: 1; justify-content: center; flex-wrap: wrap; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--ink); padding: 7px 11px; border-radius: 8px; transition: background .2s, color .2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { background: var(--paper-warm); color: var(--forest); }
.nav-links a.active { font-weight: 600; }
.nav-donate { background: var(--clay) !important; color: var(--white) !important; padding: 8px 18px !important; border-radius: 100px !important; font-weight: 600 !important; transition: background .2s, transform .15s !important; }
.nav-donate:hover { background: #a8521d !important; transform: translateY(-1px); }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link-item { display: inline-flex; align-items: center; gap: 4px; }
.nav-dropdown > .nav-link-item::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 9px; margin-left: 4px; transition: transform .2s; }
.nav-dropdown:hover > .nav-link-item::after { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 260px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 16px 40px -12px rgba(27,38,32,.18); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s, transform .2s, visibility .2s; z-index: 250; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: 10px 14px; font-size: 13px; font-weight: 500; color: var(--ink); border-radius: 8px; transition: background .15s, color .15s; }
.nav-dropdown-menu a:hover { background: var(--paper-warm); color: var(--forest); }
.nav-dropdown-menu a.active { background: var(--paper-warm); color: var(--forest); font-weight: 600; }

.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: var(--ink); font-size: 22px; line-height: 1; }
.mobile-nav { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--line); padding: 16px 24px 20px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 0; font-size: 15px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .nav-donate { margin-top: 12px; text-align: center; padding: 12px 20px !important; border-bottom: none !important; background: var(--clay) !important; color: var(--white) !important; border-radius: 100px !important; }
.mobile-nav .nav-dropdown-toggle { display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.mobile-nav .nav-dropdown-toggle .arrow { transition: transform .2s; }
.mobile-nav .nav-dropdown-toggle.open .arrow { transform: rotate(180deg); }
.mobile-nav .nav-submenu { display: none; flex-direction: column; padding-left: 16px; }
.mobile-nav .nav-submenu.open { display: flex; }
.mobile-nav .nav-submenu a { font-size: 14px; color: var(--muted); border-bottom: 1px solid var(--line); padding: 10px 0; }

/* WhatsApp */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 52px; height: 52px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 6px 20px rgba(37,211,102,.4); transition: transform .2s, box-shadow .2s; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.55); }

/* Logo — remove white background via blend mode */
img[src*="sh_logo"] { mix-blend-mode: multiply; border-radius: 0 !important; background: transparent; }

/* ── JUSTIFIED TEXT (desktop only, left on mobile) ── */
.text-justify-desktop { text-align: justify; }
@media (max-width: 768px) {
  .text-justify-desktop { text-align: left; }
}

/* ── HERO ── */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.hero-slider { position: absolute; inset: 0; background: var(--forest); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; opacity: 0.52; }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(45,107,45,.88) 0%, rgba(45,107,45,.42) 55%, rgba(45,107,45,.1) 100%); }
.hero-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); border: 1.5px solid rgba(255,255,255,.6); cursor: pointer; transition: background .3s, transform .3s; padding: 0; }
.hero-dot.active { background: var(--clay); border-color: var(--clay); transform: scale(1.35); }
/* Legacy hero-bg fallback */
.hero-bg { position: absolute; inset: 0; background: var(--forest); }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.52; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(45,107,45,.88) 0%, rgba(45,107,45,.42) 55%, rgba(45,107,45,.1) 100%); }
.hero-content { position: relative; z-index: 2; padding: 100px 0 80px; max-width: 660px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.14); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.22); border-radius: 100px; padding: 6px 14px 6px 8px; margin-bottom: 28px; }
.hero-badge .dot { width: 28px; height: 28px; border-radius: 50%; background: var(--clay); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700; }
.hero-badge span { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.9); }
.hero h1 { font-size: clamp(36px, 5.5vw, 66px); color: var(--white); margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--clay-soft); }
.hero p { font-size: 17px; color: rgba(255,255,255,.85); max-width: 500px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn-secondary { border-color: rgba(255,255,255,.45); color: var(--white); }
.hero-actions .btn-secondary:hover { background: rgba(255,255,255,.14); color: var(--white); }

/* ── TICKER ── */
.ticker-band { background: var(--forest); padding: 13px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: ticker-scroll 38s linear infinite; }
.ticker-item { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.07em; color: var(--paper-warm); padding: 0 26px; display: inline-flex; align-items: center; gap: 10px; }
.ticker-item::before { content: '◆'; color: var(--clay-soft); font-size: 8px; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STATS BAR ── */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--line); }
.stats-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 28px 32px; border-right: 1px solid var(--line); }
.stat-item:last-child { border-right: none; }
.stat-item strong { display: block; font-family: 'Fraunces', serif; font-size: clamp(28px, 3vw, 42px); color: var(--forest); line-height: 1; }
.stat-item span { font-size: 13px; color: var(--muted); margin-top: 5px; display: block; }

/* ── SECTIONS ── */
section { padding: 88px 0; }
.section-head { margin-bottom: 52px; }
.section-head .eyebrow { margin-bottom: 12px; }
.section-head h2 { font-size: clamp(26px, 3.2vw, 40px); color: var(--forest); max-width: 640px; margin-bottom: 14px; }
.section-head p { font-size: 15.5px; color: var(--muted); max-width: 500px; }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }

/* ── PROGRAMME CARDS ── */
.programmes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.programme-card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 36px 32px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s; display: flex; flex-direction: column; }
.programme-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px -16px rgba(31,77,58,.22); border-color: var(--forest); }
.programme-number { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--clay); font-weight: 700; letter-spacing: 0.08em; margin-bottom: 16px; }
.programme-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--paper-warm); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.programme-card h3 { font-size: 20px; color: var(--forest); margin-bottom: 12px; }
.programme-card p { font-size: 14.5px; color: var(--muted); flex: 1; margin-bottom: 24px; }

/* ── NEWS GRID ── */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s; }
.news-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px -12px rgba(27,38,32,.18); }
.news-card-img { aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--forest); }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.news-card:hover .news-card-img img { transform: scale(1.04); }
.news-card-tag { position: absolute; top: 12px; left: 12px; background: var(--white); color: var(--forest); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 10px; border-radius: 100px; }
.news-card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.news-card-date { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #8a8470; margin-bottom: 10px; }
.news-card-body h3 { font-size: 17px; color: var(--ink); margin-bottom: 10px; line-height: 1.35; }
.news-card-body p { flex: 1; }
.news-card-body .btn-ghost { margin-top: auto; }

/* ── FILTER CHIPS ── */
.filter-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 4px 0;
}
.filter-chip {
  display: inline-flex; align-items: center;
  padding: 9px 20px; border-radius: 100px;
  background: var(--white); border: 1.5px solid var(--line);
  color: var(--muted); font-family: 'Inter', sans-serif;
  font-size: 13.5px; font-weight: 600; cursor: pointer;
  transition: all .22s ease; white-space: nowrap;
  box-shadow: 0 1px 3px rgba(27,38,32,.04);
}
.filter-chip:hover {
  border-color: var(--forest); color: var(--forest);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -4px rgba(45,107,45,.18);
}
.filter-chip.active {
  background: var(--forest); color: var(--white);
  border-color: var(--forest);
  box-shadow: 0 6px 16px -4px rgba(45,107,45,.3);
}
.filter-chip.active:hover { transform: translateY(-1px); }

/* ── FEATURED ARTICLE ── */
.news-featured {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 22px; overflow: hidden; margin-bottom: 40px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.news-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px -16px rgba(27,38,32,.18);
}
.news-featured-img {
  position: relative; min-height: 340px;
  overflow: hidden; background: var(--forest);
}
.news-featured-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.news-featured:hover .news-featured-img img { transform: scale(1.03); }
.news-featured-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--white); color: var(--forest);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  padding: 5px 14px; border-radius: 100px;
}
.news-featured-body {
  padding: 40px 40px 36px;
  display: flex; flex-direction: column; justify-content: center;
}
.news-featured-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--clay);
  font-weight: 500; margin-bottom: 14px;
}
.news-featured-body h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--forest); line-height: 1.2;
  margin-bottom: 16px;
}
.news-featured-body p {
  font-size: 15.5px; color: var(--muted);
  line-height: 1.75; margin-bottom: 28px;
}
.news-readmore {
  align-self: flex-start;
}

/* ── NEWS CARD BUTTON ── */
.news-card-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto; padding: 0;
  background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  color: var(--clay); font-weight: 600; font-size: 13.5px;
  transition: gap .2s ease, color .2s ease;
}
.news-card-btn:hover { gap: 10px; color: var(--forest); }
.news-card-btn i { font-size: 11px; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 12px; }
.gallery-item { border-radius: 14px; overflow: hidden; position: relative; cursor: pointer; background: var(--forest); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(8) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease, opacity .3s; }
.gallery-item:hover img { transform: scale(1.06); opacity: .88; }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,38,32,.7) 0%, transparent 55%); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 14px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-size: 12.5px; font-weight: 500; color: var(--white); }

/* ── LIGHTBOX ── */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(27,38,32,.92); backdrop-filter: blur(8px); z-index: 600; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox-inner { max-width: 900px; width: 100%; text-align: center; }
.lightbox-inner img { max-width: 100%; max-height: 80vh; border-radius: 14px; object-fit: contain; margin: 0 auto; box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.lightbox-caption { margin-top: 18px; }
.lightbox-caption p { font-family: 'Fraunces', serif; font-size: 18px; color: var(--white); margin-bottom: 4px; }
.lightbox-caption small { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clay-soft); }
.lightbox-close { position: absolute; top: 24px; right: 28px; background: rgba(255,255,255,.12); border: none; border-radius: 50%; width: 44px; height: 44px; cursor: pointer; color: var(--white); font-size: 18px; display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s; }
.lightbox-close:hover { background: rgba(255,255,255,.24); transform: rotate(90deg); }

/* ── GALLERY PAGE ── */
.gallery-page-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 14px; }
.gallery-page-grid .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-page-grid .gallery-item:nth-child(6) { grid-column: span 2; }
@media (max-width: 1024px) {
  .gallery-page-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-page-grid .gallery-item:nth-child(1) { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery-page-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .gallery-page-grid .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
}

/* ── IMPACT STRIP ── */
.impact-strip { background: var(--forest); border-radius: 24px; padding: 60px 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: start; }
.impact-item strong { display: block; font-family: 'Fraunces', serif; font-size: clamp(34px, 4vw, 50px); color: var(--clay-soft); line-height: 1; margin-bottom: 8px; }
.impact-item span { font-size: 13.5px; color: rgba(247,243,234,.75); }

/* ── TESTIMONIAL ── */
.testimonial-block { text-align: center; max-width: 780px; margin: 0 auto; }
.testimonial-block blockquote { font-family: 'Fraunces', serif; font-style: italic; font-size: clamp(19px, 2.6vw, 28px); color: var(--forest); line-height: 1.5; margin-bottom: 24px; }
.testimonial-block cite { font-style: normal; font-size: 14px; color: var(--muted); font-weight: 600; }

/* ── CTA CARDS ── */
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cta-card { border-radius: 22px; padding: 46px 40px; }
.cta-card.dark { background: var(--clay); color: var(--white); }
.cta-card.light { background: var(--white); border: 1px solid var(--line); }
.cta-card h3 { font-size: 24px; margin-bottom: 14px; }
.cta-card.dark h3 { color: var(--white); }
.cta-card.light h3 { color: var(--forest); }
.cta-card p { font-size: 15px; opacity: .88; margin-bottom: 28px; max-width: 360px; }

/* ── TIMELINE ── */
.timeline-item { display: grid; grid-template-columns: 100px 1fr; gap: 28px; margin-bottom: 28px; }
.timeline-year { font-family: 'Fraunces', serif; font-size: 22px; color: var(--clay); font-weight: 600; padding-top: 6px; }
.timeline-content { padding: 26px 30px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.timeline-content h4 { font-size: 17px; color: var(--forest); margin-bottom: 8px; }
.timeline-content p { font-size: 14px; color: var(--muted); }

/* ── VALUES PILLARS ── */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.pillar { background: var(--white); padding: 38px 30px; }
.pillar-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--paper-warm); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.pillar h3 { font-size: 18px; color: var(--forest); margin-bottom: 10px; }
.pillar p { font-size: 14.5px; color: var(--muted); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: clamp(26px, 3vw, 36px); color: var(--forest); margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--muted); margin-bottom: 32px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--paper-warm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.contact-detail-text strong { display: block; font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-detail-text a, .contact-detail-text span { font-size: 14.5px; color: var(--ink); display: block; }
.contact-detail-text a:hover { color: var(--clay); }

/* ── FORMS ── */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 36px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font-size: 14.5px; font-family: inherit; color: var(--ink); background: var(--white); outline: none; transition: border-color .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--forest); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { display: none; background: #dcfce7; border: 1px solid #86efac; border-radius: 10px; padding: 18px 22px; color: #15803d; font-size: 15px; margin-top: 16px; }

/* ── CONTACT SEND BUTTONS ── */
.contact-send-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.contact-send-btn { flex: 1 1 200px; justify-content: center; }
.contact-send-btn[data-send="gmail"] { background: #ea4335; border-color: #ea4335; }
.contact-send-btn[data-send="gmail"]:hover { background: #d33b2e; border-color: #d33b2e; }
.contact-send-btn[data-send="outlook"] { background: #0078d4; border-color: #0078d4; }
.contact-send-btn[data-send="outlook"]:hover { background: #006abf; border-color: #006abf; }
.contact-send-hint { font-size: 13.5px; color: var(--muted); margin: 14px 0 0; line-height: 1.5; }
.contact-fallback { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line); }
.contact-fallback-btn { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--forest); color: var(--forest); background: transparent; padding: 11px 22px; border-radius: 100px; font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; width: 100%; justify-content: center; transition: background .2s, color .2s; }
.contact-fallback-btn:hover { background: var(--forest); color: var(--white); }
.form-error { display: none; background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; padding: 14px 16px; border-radius: 8px; margin-top: 16px; font-size: 14px; }

/* ── DONATE ── */
.amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.amount-btn { border: 1.5px solid var(--line); background: var(--white); border-radius: 10px; padding: 14px; font-size: 16px; font-weight: 600; cursor: pointer; font-family: inherit; color: var(--ink); transition: border-color .2s, background .2s, color .2s; }
.amount-btn:hover { border-color: var(--forest); color: var(--forest); }
.amount-btn.selected { background: var(--forest); color: var(--white); border-color: var(--forest); }
.freq-tabs { display: flex; gap: 8px; margin-bottom: 24px; }
.freq-tab { flex: 1; padding: 10px; border: 1.5px solid var(--line); border-radius: 8px; background: var(--white); cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 600; color: var(--muted); transition: all .2s; }
.freq-tab.active { background: var(--forest); color: var(--white); border-color: var(--forest); }
.desig-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.desig-btn { border: 1.5px solid var(--line); background: var(--white); border-radius: 8px; padding: 10px 14px; font-size: 13px; font-weight: 500; cursor: pointer; font-family: inherit; color: var(--ink); text-align: left; transition: border-color .2s, background .2s; }
.desig-btn:hover { border-color: var(--forest); }
.desig-btn.selected { background: var(--paper-warm); border-color: var(--forest); color: var(--forest); }
.donate-steps { display: flex; gap: 0; margin-bottom: 32px; }
.donate-step { flex: 1; padding: 10px 0; border-bottom: 2px solid var(--line); font-size: 12px; font-weight: 600; color: var(--muted); text-align: center; }
.donate-step.active { border-color: var(--clay); color: var(--clay); }
.donate-step.done { border-color: var(--success); color: var(--success); }

/* ── PAGE HERO ── */
.page-hero { background: var(--forest); color: var(--white); padding: 72px 0 60px; }
.page-hero .eyebrow { color: var(--clay-soft); margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(30px, 4vw, 52px); color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 16px; opacity: .82; max-width: 580px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 8px; }

/* Tags */
.tag { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.02em; }
.tag-green { background: #dcfce7; color: #15803d; }
.tag-clay  { background: #fef0e7; color: #c4622d; }
.tag-blue  { background: #dbeafe; color: #1d4ed8; }
.tag-gold  { background: #fef9c3; color: #92400e; }
.tag-gray  { background: #f3f4f6; color: #6b7280; }

/* Map */
.map-wrapper { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); }
.map-wrapper iframe { display: block; width: 100%; height: 380px; border: none; }

/* ── FOOTER ── */
footer { background: var(--ink); color: var(--paper-warm); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-logo img { width: 44px; height: 44px; object-fit: contain; border-radius: 4px; }
.footer-brand-logo span { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 700; color: var(--paper); }
.footer-brand p { font-size: 13.5px; color: #9aa49c; max-width: 280px; line-height: 1.65; }
.footer-col h4 { font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--clay-soft); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 14px; color: #c5ccc2; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 13px; color: #6d7870; flex-wrap: wrap; gap: 16px; }
.footer-bottom a { color: #6d7870; margin-left: 20px; transition: color .2s; }
.footer-bottom a:hover { color: var(--paper); }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 14px; color: #9aa49c; transition: background .2s, border-color .2s, color .2s; }
.social-btn:hover { background: var(--clay); border-color: var(--clay); color: var(--white); }

/* ── PARTNERS / VOLUNTEER GRIDS ── */
.partner-types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.partner-logos-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.volunteer-roles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.partner-logo-card { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 24px 16px; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 13px; font-weight: 600; color: var(--forest); min-height: 84px; }
.volunteer-role-card { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.volunteer-role-icon { width: 40px; height: 40px; border-radius: 10px; background: #dcfce7; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--forest); margin-bottom: 14px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .programmes-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .impact-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .conferencing-grid { grid-template-columns: 1fr 1fr !important; }
  .photo-strip-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .news-featured { grid-template-columns: 1fr; }
  .news-featured-img { min-height: 260px; }
  .news-featured-body { padding: 32px 32px 30px; }
  .partner-types-grid { grid-template-columns: 1fr 1fr; }
  .partner-logos-grid { grid-template-columns: repeat(4, 1fr); }
  .volunteer-roles-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .wrap { padding: 0 18px; }
  section { padding: 60px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .hero-content { padding: 70px 0 56px; }
  .news-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .impact-strip { grid-template-columns: 1fr 1fr; padding: 36px 24px; border-radius: 16px; }
  .cta-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 72px 1fr; gap: 20px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .partner-types-grid { grid-template-columns: 1fr 1fr; }
  .partner-logos-grid { grid-template-columns: repeat(3, 1fr); }
  .volunteer-roles-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .about-split { grid-template-columns: 1fr !important; gap: 32px !important; }
  .about-split > div:first-child { order: 2; }
  .about-split > div:last-child { order: 1; }
  .about-split p { font-size: 15px !important; line-height: 1.75 !important; }
  .conferencing-grid { grid-template-columns: 1fr !important; }
  .photo-strip-grid { grid-template-columns: 1fr 1fr !important; }
  .news-featured { grid-template-columns: 1fr; }
  .news-featured-img { min-height: 220px; }
  .news-featured-body { padding: 28px 24px 26px; }
  .news-featured-body h2 { font-size: 22px; }
  .filter-chips {
    flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .filter-chips::-webkit-scrollbar { display: none; }
  .filter-chip { flex-shrink: 0; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .impact-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 18px 16px; }
  .partner-types-grid { grid-template-columns: 1fr; }
  .partner-logos-grid { grid-template-columns: 1fr 1fr; }
  .volunteer-roles-grid { grid-template-columns: 1fr; }
}

/* ── NEWS MODAL ── */
.modal-sh { display: none; position: fixed; inset: 0; background: rgba(27,38,32,.65); backdrop-filter: blur(6px); z-index: 500; align-items: center; justify-content: center; padding: 20px; }
.modal-sh.open { display: flex; }
.modal-box { background: var(--white); border-radius: 22px; max-width: 680px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: 0 32px 80px -16px rgba(27,38,32,.38); }
.modal-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 22px 22px 0 0; }
.modal-body { padding: 32px 36px 40px; }
.modal-tag { display: inline-block; background: var(--paper-warm); color: var(--forest); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; padding: 4px 12px; border-radius: 100px; margin-bottom: 14px; }
.modal-date { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); margin-bottom: 12px; }
.modal-body h2 { font-size: clamp(20px, 2.4vw, 26px); color: var(--forest); margin-bottom: 16px; line-height: 1.25; }
.modal-body p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.modal-close { float: right; background: var(--paper-warm); border: none; border-radius: 50%; width: 34px; height: 34px; cursor: pointer; color: var(--forest); font-size: 15px; display: flex; align-items: center; justify-content: center; transition: background .2s; margin: -6px -6px 0 0; }
.modal-close:hover { background: var(--line); }
@media (max-width: 600px) { .modal-body { padding: 22px 20px 28px; } }
