:root {
  --purple: #6e1654;
  --purple-dark: #4b0d39;
  --red: #bc1e23;
  --light-green: #91bb40;
  --dark-green: #0c512a;
  --dark-green-2: #083f22;
  --ink: #18211d;
  --muted: #5f6f66;
  --line: #e4e9e4;
  --soft: #f6f8f4;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(18, 47, 29, 0.12);
  --radius: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  text-rendering: geometricPrecision;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 12px; top: 12px; transform: translateY(-150%); background: var(--purple); color: white; padding: 10px 14px; border-radius: 10px; z-index: 50; }
.skip-link:focus { transform: translateY(0); }

.top-bar {
  background: linear-gradient(90deg, var(--dark-green), var(--dark-green-2));
  color: #fff;
  font-size: 14px;
}
.top-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  white-space: nowrap;
  overflow-x: auto;
}
.top-link { display: inline-flex; align-items: center; gap: 7px; opacity: 0.96; transition: opacity .2s ease, color .2s ease; }
.top-link:hover { opacity: 1; color: #dceeb1; }
.top-link--facebook span { display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: #1673d3; font-weight: 800; }
.top-link--npo { font-weight: 800; margin-left: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228,233,228,.85);
}
.site-header__inner { min-height: 94px; display: flex; align-items: center; gap: 28px; }
.brand { flex: 0 0 auto; }
.brand img { width: clamp(210px, 23vw, 320px); height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); margin-left: auto; font-size: 13px; text-transform: uppercase; font-weight: 800; letter-spacing: .02em; }
.site-nav a { position: relative; padding: 34px 0; }
.site-nav a::after { content: ""; position: absolute; left: 0; bottom: 24px; width: 0; height: 3px; background: var(--purple); border-radius: 10px; transition: width .22s ease; }
.site-nav a:hover::after, .site-nav a.is-active::after { width: 100%; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; margin-left: auto; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px auto; border-radius: 4px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 850;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .015em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,.15); }
.button--purple { background: var(--purple); color: #fff; }
.button--red { background: var(--red); color: #fff; }
.button--green { background: var(--dark-green); color: #fff; }
.button--outline-light { color: #fff; border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.08); }
.button--outline-light:hover { background: rgba(255,255,255,.18); }
.header-donate { flex: 0 0 auto; }

.hero { position: relative; min-height: 560px; display: grid; align-items: center; overflow: hidden; color: white; }
.hero__image {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(5, 19, 11, .86) 0%, rgba(8, 26, 15, .58) 43%, rgba(8, 26, 15, .18) 100%), url('assets/images/zen-2.jpg');
  background-position: center center;
  background-size: cover;
  transform: scale(1.01);
}
.hero__content { position: relative; padding: 80px 0 86px; }
.hero__copy { width: min(650px, 100%); }
.eyebrow, .section-kicker {
  margin: 0 0 8px;
  color: var(--purple);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 13px;
}
.hero .eyebrow { color: #fff; opacity: .85; }
.hero h1 { margin: 0; font-size: clamp(44px, 6vw, 72px); line-height: .98; letter-spacing: -.055em; font-weight: 950; }
.hero h1 span { color: var(--light-green); font-style: italic; letter-spacing: -.04em; }
.hero__intro { max-width: 525px; margin: 24px 0 10px; font-size: clamp(16px, 1.7vw, 19px); }
.hero__support { margin: 0 0 24px; font-size: clamp(17px, 2vw, 21px); }
.hero__support strong { color: var(--light-green); font-size: 1.22em; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 8px 24px rgba(0,0,0,.035); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 118px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: background .18s ease, transform .18s ease;
}
.trust-card:nth-child(4n) { border-right: 0; }
.trust-card:hover { background: #fbfcfa; }
.trust-card--link:hover { transform: translateY(-1px); }
.trust-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: #fff; font-size: 25px; font-weight: 900; }
.trust-icon--green { background: var(--dark-green); }
.trust-icon--red { background: var(--red); }
.trust-icon--purple { background: var(--purple); }
.trust-card strong { display: block; line-height: 1; font-size: 28px; margin-bottom: 5px; color: var(--ink); }
.trust-card span:not(.trust-icon) { display: block; color: var(--dark-green); text-transform: uppercase; font-size: 13px; font-weight: 900; }
.trust-card small { display: block; color: var(--muted); margin-top: 2px; }
.trust-card--secondary { min-height: 100px; }
.trust-card--secondary strong { font-size: 30px; }
.trust-card--secondary span:not(.trust-icon) { color: var(--purple); }

.section { padding: 72px 0; }
.about-section { background: linear-gradient(180deg, #fff 0%, #fbfcfa 100%); }
.about-layout { display: grid; grid-template-columns: 1.18fr .84fr .48fr; gap: 34px; align-items: center; }
.about-image-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--soft); min-height: 430px; }
.about-image-card img { width: 100%; height: 100%; object-fit: cover; }
.about-copy h2, .section-heading h2 { margin: 0 0 18px; font-size: clamp(32px, 4vw, 46px); line-height: 1.05; letter-spacing: -.04em; color: var(--dark-green); }
.about-copy p { color: #34483b; font-size: 16px; margin: 0 0 14px; }
.about-copy .button { margin-top: 10px; }
.hint { font-size: 13px !important; color: var(--muted) !important; margin-top: 12px !important; }
.gallery-stack { position: relative; }
.gallery-window { display: grid; gap: 12px; }
.gallery-window img { width: 100%; height: 134px; object-fit: cover; border-radius: 12px; box-shadow: 0 10px 24px rgba(0,0,0,.12); transition: opacity .25s ease, transform .25s ease; }
.gallery-button { position: absolute; top: 50%; translate: 0 -50%; width: 36px; height: 36px; border-radius: 50%; border: 0; background: #fff; color: var(--purple); font-size: 28px; box-shadow: 0 8px 22px rgba(0,0,0,.14); cursor: pointer; z-index: 2; }
.gallery-button--prev { left: -18px; }
.gallery-button--next { right: -18px; }
.gallery-dots { display: flex; justify-content: center; gap: 7px; margin-top: 12px; }
.gallery-dots span { width: 8px; height: 8px; border-radius: 50%; background: #d6dfd7; }
.gallery-dots span.is-active { background: var(--purple); }

.programmes-section { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading--centre { text-align: center; max-width: 760px; margin: 0 auto 34px; }
.section-heading--centre h2 { color: var(--ink); }
.programme-grid { display: grid; grid-template-columns: repeat(9, 1fr); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; box-shadow: 0 12px 35px rgba(0,0,0,.05); }
.programme-card { min-height: 150px; padding: 22px 12px; display: grid; place-items: center; text-align: center; border-right: 1px solid var(--line); transition: transform .18s ease, background .18s ease; }
.programme-card:last-child { border-right: 0; }
.programme-card:hover { transform: translateY(-3px); background: #fbfcfa; }
.programme-icon { font-size: 42px; line-height: 1; margin-bottom: 12px; }
.programme-icon--purple { color: var(--purple); }
.programme-icon--red { color: var(--red); }
.programme-icon--green { color: var(--dark-green); }
.programme-card h3 { margin: 0; font-size: 15px; line-height: 1.2; }

.newsletters-section { background: var(--soft); }
.section-heading--split { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 32px; }
.section-heading--split h2 { color: var(--ink); max-width: 700px; }
.section-summary { margin: 0; color: var(--muted); max-width: 380px; }
.newsletter-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.newsletter-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: 0 12px 34px rgba(0,0,0,.06); transition: transform .18s ease, box-shadow .18s ease; }
.newsletter-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(0,0,0,.12); }
.newsletter-card img { width: 100%; height: 218px; object-fit: cover; object-position: top center; background: #fff; }
.newsletter-card__body { padding: 16px; }
.newsletter-card__body span { display: inline-flex; color: var(--purple); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
.newsletter-card__body h3 { margin: 6px 0 12px; font-size: 20px; }
.newsletter-card__body a { color: var(--purple); font-weight: 900; text-transform: uppercase; font-size: 13px; }
.newsletter-card__body button { width: 100%; border: 0; border-radius: 8px; background: #e8ece8; color: #87928a; min-height: 44px; text-transform: uppercase; font-weight: 850; }
.newsletter-card--placeholder { display: flex; flex-direction: column; justify-content: stretch; }
.placeholder-icon { height: 218px; display: grid; place-items: center; background: linear-gradient(145deg, #f1f4f1, #fff); color: #8a938e; font-size: 52px; }

.cta-band { background: linear-gradient(110deg, var(--dark-green), #0f672f); color: #fff; padding: 36px 0; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 95% 30%, rgba(145,187,64,.28), transparent 28%); pointer-events: none; }
.cta-band__inner { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; align-items: center; }
.cta-band h2 { margin: 0 0 6px; font-size: clamp(28px, 4vw, 42px); line-height: 1; letter-spacing: -.035em; }
.cta-band p { margin: 0; opacity: .93; max-width: 520px; }
.cta-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.cta-actions a { min-height: 92px; display: grid; place-items: center; text-align: center; color: #fff; font-weight: 900; text-transform: uppercase; border-left: 1px solid rgba(255,255,255,.24); transition: background .18s ease; }
.cta-actions a:hover { background: rgba(255,255,255,.08); }
.cta-actions span { display: block; font-size: 34px; line-height: 1; margin-bottom: 6px; color: #e4f2b7; }

.site-footer { background: linear-gradient(160deg, #0b4f2a, #07381f); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1.1fr 1.1fr; gap: 42px; padding: 58px 0 44px; }
.footer-brand img { width: 260px; max-width: 100%; filter: drop-shadow(0 10px 18px rgba(0,0,0,.18)); }
.footer-brand p { margin: 18px 0 18px; color: rgba(255,255,255,.83); max-width: 300px; }
.footer-facebook { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 0 14px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; font-weight: 800; }
.footer-panel { border-left: 1px solid rgba(255,255,255,.18); padding-left: 28px; }
.footer-panel h2 { margin: 0 0 2px; font-size: 18px; text-transform: uppercase; letter-spacing: .04em; }
.footer-subtitle { color: #d8ebaa; margin: 0 0 16px; font-weight: 800; }
.footer-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; color: rgba(255,255,255,.88); }
.footer-list li { display: grid; gap: 3px; }
.footer-list span { display: block; color: #d8ebaa; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.footer-list a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.footer-list--plain li { font-size: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); background: rgba(0,0,0,.12); }
.footer-bottom__inner { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.82); font-size: 13px; }
.footer-bottom p { margin: 0; }

.modal {
  width: min(920px, calc(100% - 32px));
  border: 0;
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 28px 80px rgba(0,0,0,.35);
}
.modal::backdrop { background: rgba(10, 21, 15, .62); backdrop-filter: blur(4px); }
.modal__header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 30px 18px; border-bottom: 1px solid var(--line); }
.modal__header h2 { margin: 0; font-size: clamp(24px, 3vw, 34px); letter-spacing: -.035em; }
.modal__header h2 span { color: var(--purple); }
.modal__header button { width: 42px; height: 42px; border: 0; border-radius: 50%; background: #f1f4f1; font-size: 28px; cursor: pointer; }
.modal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 26px 30px 30px; }
.modal-grid article { border: 1px solid var(--line); border-radius: 14px; padding: 22px; background: #fff; }
.modal-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: #fff; margin-bottom: 12px; font-size: 22px; }
.modal-icon--purple { background: var(--purple); }
.modal-icon--red { background: var(--red); }
.modal-icon--green { background: var(--dark-green); }
.modal-grid h3 { margin: 0 0 10px; color: var(--purple); font-size: 17px; }
.modal-grid p { margin: 0; color: #425247; font-size: 14px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .site-header__inner { min-height: 82px; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 1px); display: none; flex-direction: column; align-items: stretch; gap: 0; background: white; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); padding: 12px; }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 10px; }
  .site-nav a::after { bottom: 7px; }
  .header-donate { margin-left: 0; }
  .about-layout { grid-template-columns: 1fr; }
  .gallery-window { grid-template-columns: repeat(3, 1fr); }
  .gallery-window img { height: 190px; }
  .gallery-button--prev { left: 8px; }
  .gallery-button--next { right: 8px; }
  .programme-grid { grid-template-columns: repeat(3, 1fr); }
  .programme-card { border-bottom: 1px solid var(--line); }
  .newsletter-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .top-bar__inner { gap: 16px; justify-content: start; }
  .site-header__inner { gap: 12px; }
  .brand img { width: 190px; }
  .header-donate { display: none; }
  .hero { min-height: 610px; }
  .hero__image { background-position: center center; }
  .hero__content { padding: 70px 0; }
  .hero__actions .button { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card { border-right: 0; min-height: 98px; }
  .section { padding: 52px 0; }
  .about-image-card { min-height: 300px; }
  .gallery-window { grid-template-columns: 1fr; }
  .gallery-window img { height: 220px; }
  .programme-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-grid { grid-template-columns: 1fr; }
  .newsletter-card img, .placeholder-icon { height: 260px; }
  .section-heading--split { display: block; }
  .cta-band__inner { grid-template-columns: 1fr; }
  .cta-actions { grid-template-columns: repeat(2, 1fr); }
  .cta-actions a { border: 1px solid rgba(255,255,255,.18); }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-panel { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,.18); padding-top: 24px; }
  .footer-bottom__inner { display: grid; padding: 18px 0; }
  .modal-grid { grid-template-columns: 1fr; padding: 20px; }
  .modal__header { padding: 22px 20px 14px; }
}
