:root {
  --teal: #36ab9c;
  --teal-dark: #187c70;
  --teal-soft: #e4f4f1;
  --gold: #bc9c22;
  --gold-light: #e6cc66;
  --gold-soft: #f5eed6;
  --ink: #153430;
  --ink-soft: #4e6461;
  --deep: #176f66;
  --cream: #f8f6ef;
  --paper: #fffefb;
  --white: #fff;
  --line: #dfe6e3;
  --shadow: 0 22px 70px rgba(14, 58, 52, .11);
  --radius: 24px;
  --container: 1200px;
  --font-body: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Poppins", var(--font-body);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font-body); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -.035em; }
h1 em, h2 em { color: var(--teal); font-style: normal; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 10px 16px; background: var(--white); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-announcement { position: relative; z-index: 100; color: #d7e9e6; background: var(--deep); font-size: 12px; letter-spacing: .02em; }
.announcement-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; }
.announcement-inner p { display: flex; align-items: center; gap: 9px; margin: 0; font-weight: 600; }
.announcement-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 0 5px rgba(230, 204, 102, .12); }
.announcement-links { display: flex; align-items: center; gap: 26px; }
.announcement-links a { display: flex; align-items: center; gap: 7px; transition: color .2s; }
.announcement-links a:hover { color: var(--white); }
.announcement-links .icon { width: 14px; }

.site-header { position: sticky; z-index: 90; top: 0; height: 88px; background: rgba(255, 254, 251, .94); border-bottom: 1px solid rgba(21, 52, 48, .08); backdrop-filter: blur(16px); transition: box-shadow .25s, height .25s; }
.site-header.scrolled { height: 74px; box-shadow: 0 10px 35px rgba(14, 58, 52, .08); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.brand { display: flex; align-items: center; width: 190px; height: 64px; overflow: hidden; }
.brand img { width: 174px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav > ul { display: flex; align-items: center; gap: 30px; padding: 0; margin: 0; list-style: none; }
.site-nav > ul > li { position: relative; }
.site-nav > ul > li > a { position: relative; display: block; padding: 28px 0; color: #2d4844; font-weight: 600; font-size: 14px; }
.site-nav > ul > li > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--teal); transition: right .25s; }
.site-nav > ul > li > a:hover::after, .site-nav > ul > li > a[aria-current="page"]::after { right: 0; }
.site-nav a[aria-current="page"] { color: var(--teal-dark); }
.nav-submenu { position: absolute; z-index: 20; top: calc(100% - 9px); left: -20px; display: block; min-width: 190px; padding: 10px; margin: 0; background: #fff; border: 1px solid #dcebe8; border-radius: 10px; box-shadow: 0 18px 45px rgba(22,84,76,.14); list-style: none; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
.has-submenu:hover .nav-submenu, .has-submenu:focus-within .nav-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-submenu a { display: block; padding: 10px 12px; color: #45635e; border-radius: 7px; font: 600 12px var(--font-display); }
.nav-submenu a:hover, .nav-submenu a[aria-current="page"] { color: #176f66; background: #edf8f6; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid transparent; border-radius: 8px; font-weight: 700; font-size: 14px; line-height: 1; cursor: pointer; transition: transform .2s, background .2s, color .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button .icon { transition: transform .2s; }
.button:hover .icon { transform: translateX(3px); }
.button-primary { color: var(--white); background: var(--teal-dark); box-shadow: 0 12px 30px rgba(24, 124, 112, .18); }
.button-primary:hover { background: var(--deep); box-shadow: 0 14px 35px rgba(14, 58, 52, .22); }
.button-gold { color: var(--white); background: var(--gold); }
.button-gold:hover { background: #a38719; }
.nav-donate { min-height: 44px; padding: 0 18px; }
.nav-donate .icon { width: 16px; }
.button-light { color: var(--deep); background: var(--white); }
.button-outline-light { color: var(--white); border-color: rgba(255, 255, 255, .4); }
.button-outline-light:hover { color: var(--deep); background: var(--white); }
.button-ghost { color: var(--teal-dark); background: transparent; border-color: #bddbd6; }
.button-ghost:hover { background: var(--teal-soft); }
.menu-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; padding: 0; border: 0; border-radius: 8px; color: var(--deep); background: var(--teal-soft); cursor: pointer; }
.menu-toggle .icon { width: 24px; height: 24px; }
.menu-close-icon { display: none; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--teal-dark); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span { width: 24px; height: 2px; background: var(--gold); }
.eyebrow-light { color: #c7e7e2; }
.eyebrow-light > span { background: var(--gold-light); }
.hero { position: relative; min-height: calc(100vh - 126px); display: flex; align-items: center; overflow: hidden; background: linear-gradient(125deg, #fbfaf6 0%, #f2f7f5 100%); }
.hero-pattern { position: absolute; inset: 0; opacity: .45; background-image: radial-gradient(rgba(54, 171, 156, .14) 1.2px, transparent 1.2px); background-size: 26px 26px; mask-image: linear-gradient(to right, #000, transparent 48%); }
.hero-grid { position: relative; display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 72px; padding-top: 65px; padding-bottom: 80px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 640px; margin-bottom: 24px; font-size: clamp(47px, 5vw, 75px); line-height: 1.04; }
.hero-copy h1 em { display: inline-block; }
.hero-lead { max-width: 570px; margin-bottom: 32px; color: var(--ink-soft); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.text-link { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); font-weight: 700; font-size: 14px; }
.play-icon { width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid #c7d8d5; border-radius: 50%; color: var(--teal-dark); transition: background .2s, color .2s; }
.text-link:hover .play-icon { color: var(--white); background: var(--teal-dark); }
.play-icon .icon { width: 19px; }
.hero-proof { display: flex; align-items: center; gap: 18px; margin-top: 42px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-proof p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.5; }
.hero-proof strong { color: var(--ink); }
.avatar-stack { display: flex; padding-left: 9px; }
.avatar-stack img { width: 42px; height: 42px; margin-left: -9px; object-fit: cover; border: 3px solid var(--paper); border-radius: 50%; }
.hero-visual { position: relative; min-height: 610px; }
.hero-image-wrap { position: absolute; top: 0; right: 0; width: 91%; height: 570px; overflow: hidden; border-radius: 180px 16px 180px 16px; box-shadow: var(--shadow); }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13, 57, 52, .02), rgba(13, 57, 52, .15)); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 61% center; }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; padding: 15px 18px; color: var(--ink); background: rgba(255, 255, 255, .94); border: 1px solid rgba(255, 255, 255, .75); border-radius: 12px; box-shadow: 0 14px 38px rgba(14, 58, 52, .15); backdrop-filter: blur(12px); font-size: 12px; line-height: 1.35; }
.floating-card strong { display: block; font-size: 15px; }
.floating-card-top { top: 65px; left: 0; }
.floating-card-bottom { right: -10px; bottom: 12px; }
.floating-icon { width: 40px; height: 40px; display: grid; place-items: center; color: var(--white); background: var(--teal); border-radius: 50%; }
.floating-number { color: var(--gold); font-family: var(--font-display); font-size: 25px; font-weight: 800; }
.hero-shape { position: absolute; z-index: 2; border: 2px solid var(--gold-light); }
.hero-shape-one { top: 15px; right: -30px; width: 95px; height: 95px; border-radius: 50%; }
.hero-shape-two { left: 20px; bottom: 22px; width: 32px; height: 32px; background: var(--teal); border: 0; transform: rotate(18deg); }
.scroll-hint { position: absolute; z-index: 3; left: 32px; bottom: 40px; display: flex; align-items: center; gap: 12px; color: #67807d; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; transform: rotate(-90deg); transform-origin: left center; }
.scroll-hint span { width: 42px; height: 1px; background: #9db1ae; }

.intro-section { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1fr 1.15fr .58fr; gap: 65px; align-items: start; }
.section-heading h2 { margin: 0; font-size: clamp(36px, 4vw, 54px); }
.intro-content { padding-top: 9px; }
.intro-content p { color: var(--ink-soft); }
.lead-copy { color: var(--ink) !important; font-family: var(--font-display); font-size: 20px; font-weight: 600; line-height: 1.55; letter-spacing: -.02em; }
.inline-link { display: inline-flex; align-items: center; gap: 9px; padding-bottom: 3px; color: var(--teal-dark); border-bottom: 1px solid #a6d3cd; font-weight: 700; font-size: 14px; }
.inline-link .icon { width: 17px; transition: transform .2s; }
.inline-link:hover .icon { transform: translateX(4px); }
.intro-note { padding: 24px; color: var(--white); background: var(--deep); border-radius: 3px 28px 3px 28px; }
.intro-note .icon { width: 30px; height: 30px; margin-bottom: 28px; color: var(--gold-light); }
.intro-note p { margin: 0; font-family: var(--font-display); font-size: 17px; font-weight: 600; line-height: 1.55; }
.values-section { background: var(--cream); }
.heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; margin-bottom: 56px; }
.heading-row > p { max-width: 460px; margin: 0 0 5px; color: var(--ink-soft); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { position: relative; min-height: 360px; padding: 38px 34px; overflow: hidden; background: var(--white); border: 1px solid #e9ece9; transition: transform .25s, box-shadow .25s; }
.value-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.value-card.featured { color: var(--white); background: var(--deep); border-color: var(--deep); }
.value-number { position: absolute; top: 28px; right: 30px; color: #b2c0bd; font-size: 12px; font-weight: 700; }
.featured .value-number { color: #78a7a0; }
.value-icon { width: 60px; height: 60px; display: grid; place-items: center; margin-bottom: 54px; color: var(--teal-dark); background: var(--teal-soft); border-radius: 50%; }
.featured .value-icon { color: var(--deep); background: var(--gold-light); }
.value-icon .icon { width: 27px; height: 27px; }
.value-card h3 { margin-bottom: 12px; font-size: 25px; }
.value-card p { color: var(--ink-soft); font-size: 15px; }
.featured p { color: #bcd2ce; }
.value-card a { position: absolute; left: 34px; bottom: 30px; display: inline-flex; align-items: center; gap: 8px; color: var(--teal-dark); font-weight: 700; font-size: 13px; }
.featured a { color: var(--gold-light); }
.value-card a .icon { width: 16px; }
.activity-showcase { background: var(--paper); }
.activity-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.activity-feature-card { min-width: 0; }
.activity-image { position: relative; height: 330px; display: block; overflow: hidden; border-radius: 4px 35px 4px 4px; }
.activity-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13, 57, 52, .18), transparent 50%); }
.activity-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.activity-feature-card:hover .activity-image img { transform: scale(1.045); }
.activity-arrow { position: absolute; z-index: 2; right: 18px; bottom: 18px; width: 46px; height: 46px; display: grid; place-items: center; color: var(--deep); background: var(--white); border-radius: 50%; transition: color .2s, background .2s; }
.activity-feature-card:hover .activity-arrow { color: var(--white); background: var(--teal-dark); }
.activity-card-body { padding: 25px 4px 0; }
.category-tag { display: inline-flex; align-items: center; min-height: 27px; padding: 0 11px; color: var(--teal-dark); background: var(--teal-soft); border-radius: 30px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.activity-card-body h3 { margin: 12px 0 10px; font-size: 25px; }
.activity-card-body h3 a:hover { color: var(--teal-dark); }
.activity-card-body p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.impact-section { padding: 0; color: var(--white); background: var(--deep); }
.impact-grid { width: 100%; max-width: none; display: grid; grid-template-columns: 1fr 1fr; }
.impact-image { position: relative; min-height: 620px; overflow: hidden; }
.impact-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, transparent 70%, var(--deep)); }
.impact-image img { width: 100%; height: 100%; object-fit: cover; }
.impact-image-label { position: absolute; z-index: 2; left: 40px; bottom: 38px; display: flex; align-items: center; gap: 10px; padding: 11px 15px; background: rgba(13, 57, 52, .85); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.impact-image-label span { width: 8px; height: 8px; background: var(--gold-light); border-radius: 50%; }
.impact-copy { max-width: 650px; align-self: center; padding: 80px 75px; }
.impact-copy h2 { margin-bottom: 22px; font-size: clamp(38px, 4vw, 57px); }
.impact-copy h2 em { color: var(--gold-light); }
.impact-copy > p { color: #b7d0cc; }
.impact-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 42px 0; padding: 32px 0; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.impact-stats strong { display: block; color: var(--gold-light); font-family: var(--font-display); font-size: 30px; }
.impact-stats span { display: block; color: #afc8c4; font-size: 11px; line-height: 1.4; }
.news-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 25px; }
.news-main { position: relative; min-height: 535px; overflow: hidden; border-radius: 4px 38px 4px 4px; }
.news-main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7, 37, 33, .9), rgba(7,37,33,0) 65%); }
.news-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.news-main:hover img { transform: scale(1.035); }
.news-overlay { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 42px; color: var(--white); }
.news-overlay > span:first-child, .news-small span:first-child { color: var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.news-overlay h3 { max-width: 600px; margin: 10px 0 18px; font-size: 29px; }
.news-read { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; }
.news-read .icon { width: 15px; }
.news-side { display: grid; grid-template-rows: 1fr 1fr; gap: 25px; }
.news-small { display: grid; grid-template-columns: 42% 58%; overflow: hidden; background: var(--cream); border: 1px solid #ebeee9; }
.news-small img { width: 100%; height: 100%; object-fit: cover; }
.news-small > div { padding: 25px; }
.news-small h3 { margin: 8px 0 16px; font-size: 19px; line-height: 1.35; }
.news-small:hover h3 { color: var(--teal-dark); }

.page-hero { position: relative; overflow: hidden; color: var(--white); background: var(--deep); }
.page-hero-pattern { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(30deg, transparent 48%, var(--teal) 49%, var(--teal) 51%, transparent 52%), linear-gradient(150deg, transparent 48%, var(--gold) 49%, var(--gold) 51%, transparent 52%); background-size: 80px 140px; mask-image: linear-gradient(to left, #000, transparent 75%); }
.page-hero::after { content: ""; position: absolute; top: -180px; right: -140px; width: 480px; height: 480px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.page-hero-inner { position: relative; z-index: 2; min-height: 475px; display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; padding-top: 90px; padding-bottom: 70px; }
.page-hero-compact .page-hero-inner { min-height: 420px; }
.page-hero-copy { max-width: 820px; }
.page-hero-copy h1 { margin-bottom: 20px; font-size: clamp(44px, 5.2vw, 68px); }
.page-hero-copy h1 em { color: var(--gold-light); }
.page-hero-copy p { max-width: 660px; margin: 0; color: #bed2cf; font-size: 17px; }
.breadcrumbs { flex: 0 0 auto; display: flex; align-items: center; gap: 10px; padding-bottom: 10px; color: #a5c0bb; font-size: 12px; }
.breadcrumbs a:hover { color: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 95px; align-items: center; }
.story-media { position: relative; }
.story-media img { width: 100%; min-height: 590px; object-fit: cover; border-radius: 4px 45px 4px 4px; }
.story-badge { position: absolute; right: -35px; bottom: 45px; display: flex; align-items: center; gap: 15px; padding: 22px 25px; color: var(--deep); background: var(--gold-light); box-shadow: var(--shadow); }
.story-badge strong { font-family: var(--font-display); font-size: 30px; }
.story-badge span { padding-left: 15px; border-left: 1px solid rgba(13,57,52,.25); font-size: 11px; font-weight: 700; line-height: 1.4; text-transform: uppercase; }
.story-copy h2 { margin-bottom: 28px; font-size: clamp(38px, 4vw, 54px); }
.story-copy > p:not(.lead-copy) { color: var(--ink-soft); }
.signature-line { display: flex; align-items: center; gap: 16px; margin-top: 32px; }
.signature-line > span { width: 46px; height: 2px; background: var(--gold); }
.signature-line p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.45; }
.signature-line strong { color: var(--ink); }
.mission-vision-section { padding: 0 0 112px; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; }
.mission-card { position: relative; min-height: 450px; padding: 60px; overflow: hidden; color: var(--white); background: var(--deep); }
.mission-card-gold { color: var(--deep); background: var(--gold-light); }
.mission-label { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.mission-card h2 { max-width: 500px; margin: 48px 0 25px; font-size: clamp(29px, 3vw, 40px); }
.mission-card p { max-width: 510px; margin: 0; color: #bcd2ce; }
.mission-card-gold p { color: #53645c; }
.mission-mark { position: absolute; right: 40px; bottom: 32px; opacity: .12; }
.mission-mark .icon { width: 115px; height: 115px; }
.principles-section { background: var(--cream); }
.centered { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.centered .eyebrow { justify-content: center; }
.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #d8dfdc; }
.principle { padding: 38px 28px 10px; border-right: 1px solid #d8dfdc; }
.principle:last-child { border-right: 0; }
.principle > span { color: var(--gold); font-size: 11px; font-weight: 800; }
.principle h3 { margin: 48px 0 14px; font-size: 23px; }
.principle p { color: var(--ink-soft); font-size: 14px; }
.timeline-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.timeline-grid .section-heading p { max-width: 390px; margin-top: 25px; color: var(--ink-soft); }
.timeline { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.timeline li { display: grid; grid-template-columns: 62px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.timeline li > span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--teal-dark); background: var(--teal-soft); border-radius: 50%; font-weight: 800; }
.timeline h3 { margin: 0 0 6px; font-size: 20px; }
.timeline p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.activity-toolbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 48px; }
.activity-toolbar h2 { margin: 0; font-size: 37px; }
.filter-buttons { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.filter-button { min-height: 38px; padding: 0 15px; color: var(--ink-soft); background: var(--white); border: 1px solid var(--line); border-radius: 30px; font-size: 12px; font-weight: 700; cursor: pointer; transition: .2s; }
.filter-button:hover, .filter-button.active { color: var(--white); background: var(--teal-dark); border-color: var(--teal-dark); }
.activities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 24px; }
.activity-list-card { overflow: hidden; background: var(--white); border: 1px solid #e7ece9; transition: transform .25s, box-shadow .25s; }
.activity-list-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.activity-list-card.is-hidden { display: none; }
.activity-list-image { position: relative; height: 265px; overflow: hidden; }
.activity-list-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.activity-list-card:hover img { transform: scale(1.04); }
.activity-list-image .category-tag { position: absolute; left: 18px; bottom: 18px; background: rgba(255,255,255,.93); }
.activity-list-body { padding: 25px 27px 29px; }
.activity-list-body h2 { margin-bottom: 11px; font-size: 24px; }
.activity-list-body p { min-height: 72px; color: var(--ink-soft); font-size: 14px; }
.program-banner { padding: 95px 0; color: var(--white); background: var(--deep); overflow: hidden; }
.program-banner-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.program-banner-copy h2 { margin-bottom: 18px; font-size: 45px; }
.program-banner-copy p { margin-bottom: 29px; color: #bcd2ce; }
.program-banner-images { position: relative; min-height: 410px; }
.program-banner-images img:first-child { position: absolute; top: 0; left: 0; width: 70%; height: 350px; object-fit: cover; }
.program-banner-images img:last-child { position: absolute; right: 0; bottom: 0; width: 45%; height: 265px; object-fit: cover; border: 8px solid var(--deep); }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 100px; }
.faq-grid .section-heading > p { max-width: 300px; margin-top: 22px; color: var(--ink-soft); }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button { width: 100%; min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 18px 0; text-align: left; background: transparent; border: 0; font-family: var(--font-display); font-weight: 700; cursor: pointer; }
.accordion-plus { position: relative; width: 28px; height: 28px; flex: 0 0 auto; border: 1px solid #bed0cd; border-radius: 50%; }
.accordion-plus::before, .accordion-plus::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: var(--teal-dark); transform: translate(-50%, -50%); }
.accordion-plus::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .2s; }
.accordion-item button[aria-expanded="true"] .accordion-plus::after { transform: translate(-50%, -50%) rotate(0); }
.accordion-content { padding: 0 55px 25px 0; color: var(--ink-soft); font-size: 14px; }
.accordion-content p { margin: 0; }

.press-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.press-card { display: grid; grid-template-columns: 42% 58%; overflow: hidden; background: var(--cream); border: 1px solid #e4e9e6; }
.press-card-large { grid-row: span 2; display: block; }
.press-card-large > img { width: 100%; height: 340px; object-fit: cover; object-position: top; }
.press-image-small { overflow: hidden; }
.press-image-small img { width: 100%; height: 100%; object-fit: cover; }
.press-image-paper img { object-position: top; }
.press-card-body { padding: 30px; }
.press-source { color: var(--teal-dark); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.press-card h2 { margin: 12px 0; font-size: 24px; line-height: 1.25; }
.press-card-large h2 { font-size: 30px; }
.press-card p { color: var(--ink-soft); font-size: 14px; }
.gallery-section { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 260px; gap: 16px; }
.gallery-item { position: relative; grid-column: span 4; padding: 0; overflow: hidden; color: var(--white); background: var(--deep); border: 0; cursor: pointer; text-align: left; }
.gallery-item:nth-child(1), .gallery-item:nth-child(5) { grid-column: span 5; }
.gallery-item:nth-child(2), .gallery-item:nth-child(6) { grid-column: span 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,37,33,.8), transparent 60%); opacity: .8; transition: opacity .2s; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-caption { position: absolute; z-index: 2; left: 22px; bottom: 18px; display: flex; flex-direction: column; }
.gallery-caption small { color: var(--gold-light); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.gallery-caption strong { font-family: var(--font-display); font-size: 16px; }
.gallery-expand { position: absolute; z-index: 2; top: 17px; right: 17px; width: 33px; height: 33px; display: grid; place-items: center; background: rgba(255,255,255,.9); border-radius: 50%; color: var(--deep); font-size: 20px; }
.lightbox { position: fixed; z-index: 500; inset: 0; display: grid; place-items: center; padding: 60px; color: var(--white); background: rgba(5, 26, 23, .93); backdrop-filter: blur(10px); }
.lightbox[hidden] { display: none; }
.lightbox figure { max-width: 1100px; max-height: 85vh; margin: 0; }
.lightbox img { max-height: 78vh; margin: auto; object-fit: contain; }
.lightbox figcaption { margin-top: 12px; text-align: center; }
.lightbox-close { position: absolute; top: 25px; right: 30px; width: 44px; height: 44px; display: grid; place-items: center; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; cursor: pointer; }
.social-banner { padding: 80px 0; color: var(--white); background: var(--teal-dark); }
.social-banner-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.social-banner h2 { max-width: 610px; margin: 0; font-size: 38px; }
.social-banner-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.social-banner-links a { display: flex; align-items: center; gap: 9px; padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,.4); font-size: 13px; font-weight: 700; }
.social-banner-links .icon { width: 15px; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.contact-details h2 { margin-bottom: 22px; font-size: 52px; }
.contact-details > p { color: var(--ink-soft); }
.contact-methods { margin: 38px 0; border-top: 1px solid var(--line); }
.contact-methods > a { display: grid; grid-template-columns: 52px 1fr 22px; align-items: center; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-method-icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--teal-dark); background: var(--teal-soft); border-radius: 50%; }
.contact-methods small, .contact-methods strong { display: block; }
.contact-methods small { color: var(--ink-soft); font-size: 11px; }
.contact-methods strong { font-size: 15px; line-height: 1.45; }
.contact-methods > a > .icon { width: 18px; color: var(--teal-dark); }
.contact-registration { display: flex; gap: 45px; }
.contact-registration div { display: flex; flex-direction: column; }
.contact-registration span { color: var(--ink-soft); font-size: 11px; }
.contact-form-card { padding: 48px; background: var(--cream); border: 1px solid #e1e7e4; box-shadow: 0 22px 60px rgba(14,58,52,.07); }
.contact-form-heading > span { color: var(--teal-dark); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-form-heading h2 { margin: 8px 0 5px; font-size: 31px; }
.contact-form-heading p { color: var(--ink-soft); font-size: 12px; }
.contact-form { margin-top: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: block; margin-bottom: 17px; }
.contact-form label > span { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 700; }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 15px; color: var(--ink); background: var(--white); border: 1px solid #d8e0dd; border-radius: 4px; outline: 0; transition: border .2s, box-shadow .2s; }
.contact-form input { height: 50px; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(54,171,156,.12); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #93a19e; }
.honeypot { position: absolute !important; left: -9999px; }
.form-submit { border: 0; }
.form-alert { display: flex; align-items: center; gap: 10px; padding: 13px 15px; margin-top: 20px; border-radius: 4px; font-size: 13px; }
.form-alert.success { color: #176b3a; background: #e5f5ea; }
.form-alert.error { color: #8a342e; background: #f9e8e6; }
.map-section { position: relative; height: 520px; }
.map-section iframe { width: 100%; height: 100%; border: 0; filter: saturate(.75) contrast(.95); }
.map-card { position: absolute; top: 50%; left: max(24px, calc((100vw - var(--container)) / 2)); width: 340px; padding: 34px; background: var(--white); box-shadow: var(--shadow); transform: translateY(-50%); }
.map-card h2 { margin-bottom: 12px; font-size: 30px; }
.map-card p { color: var(--ink-soft); }

.prefooter { padding: 75px 0; color: var(--white); background: var(--teal-dark); }
.prefooter-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.prefooter h2 { max-width: 700px; margin: 0; font-size: clamp(31px, 4vw, 46px); }
.prefooter-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.site-footer { color: #c3d5d2; background: #082d29; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr .7fr; gap: 55px; padding-top: 75px; padding-bottom: 60px; }
.footer-about img { width: 165px; margin-bottom: 20px; padding: 7px; background: var(--white); border-radius: 5px; }
.footer-about p { max-width: 330px; font-size: 13px; }
.site-footer h3 { margin-bottom: 22px; color: var(--white); font-size: 14px; letter-spacing: 0; }
.footer-links, .footer-contact { padding: 0; margin: 0; list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-links .icon { width: 13px; color: var(--gold-light); }
.footer-contact li { display: flex; gap: 11px; margin-bottom: 17px; font-size: 13px; }
.footer-contact .icon { width: 17px; margin-top: 3px; color: var(--gold-light); }
.registration-list { margin: 0; }
.registration-list div { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.09); font-size: 12px; }
.registration-list dt { color: #8ea9a5; }
.registration-list dd { margin: 0; color: var(--white); }
.social-links { display: flex; gap: 8px; margin-top: 24px; }
.social-links a { width: 34px; height: 34px; display: grid; place-items: center; color: var(--white); border: 1px solid rgba(255,255,255,.16); border-radius: 50%; font-size: 12px; font-weight: 700; text-transform: uppercase; transition: .2s; }
.social-links a:hover { color: var(--deep); background: var(--gold-light); border-color: var(--gold-light); }
.footer-bottom { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #7f9d99; font-size: 11px; }
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

@media (max-width: 1050px) {
  .site-nav { gap: 20px; }
  .site-nav > ul { gap: 18px; }
  .hero-grid { gap: 35px; }
  .hero-visual { min-height: 530px; }
  .hero-image-wrap { height: 500px; }
  .intro-grid { grid-template-columns: .8fr 1.2fr; }
  .intro-note { grid-column: 2; }
  .story-grid, .contact-grid { gap: 55px; }
  .story-badge { right: -15px; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .principle:nth-child(2) { border-right: 0; }
  .principle:nth-child(-n+2) { border-bottom: 1px solid #d8dfdc; }
  .press-card { grid-template-columns: 1fr; }
  .press-image-small { height: 200px; }
  .footer-grid { grid-template-columns: 1.2fr .8fr 1fr; }
  .footer-grid > div:last-child { display: none; }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 38px), var(--container)); }
  .section { padding: 85px 0; }
  .site-announcement { display: none; }
  .site-header, .site-header.scrolled { height: 74px; }
  .brand { width: 165px; }
  .brand img { width: 155px; }
  .menu-toggle { display: flex; position: relative; z-index: 2; }
  .site-nav { position: fixed; inset: 74px 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 25px; padding: 35px 24px; color: var(--white); background: var(--deep); transform: translateX(100%); transition: transform .3s ease; }
  .site-nav.open { transform: translateX(0); }
  .site-nav > ul { display: block; }
  .site-nav > ul > li { border-bottom: 1px solid rgba(255,255,255,.1); }
  .site-nav > ul > li > a { padding: 14px 0; color: var(--white); font-family: var(--font-display); font-size: 18px; }
  .site-nav > ul > li > a::after { display: none; }
  .site-nav a[aria-current="page"] { color: var(--gold-light); }
  .nav-submenu { position: static; display: block; min-width: 0; padding: 0 0 10px 14px; background: transparent; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-submenu a { padding: 7px 0; color: #d3e9e5; font-size: 13px; }
  .nav-submenu a:hover, .nav-submenu a[aria-current="page"] { color: var(--gold-light); background: transparent; }
  .nav-donate { width: 100%; min-height: 52px; }
  .menu-toggle[aria-expanded="true"] .menu-open-icon { display: none; }
  .menu-toggle[aria-expanded="true"] .menu-close-icon { display: block; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 65px; padding-bottom: 85px; }
  .hero-copy { max-width: 670px; }
  .hero-visual { min-height: 500px; }
  .hero-image-wrap { width: 94%; height: 470px; }
  .scroll-hint { display: none; }
  .intro-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
  .intro-note { grid-column: 1 / -1; }
  .heading-row { align-items: flex-start; }
  .values-grid, .activity-feature-grid, .activities-grid { grid-template-columns: 1fr 1fr; }
  .value-card:last-child { grid-column: 1 / -1; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-image { min-height: 450px; }
  .impact-image::after { background: linear-gradient(to bottom, transparent 70%, var(--deep)); }
  .impact-copy { padding: 70px 40px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-side { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .news-small { grid-template-columns: 1fr; }
  .news-small img { height: 190px; }
  .page-hero-inner { min-height: 400px; align-items: flex-end; }
  .breadcrumbs { display: none; }
  .story-grid { grid-template-columns: 1fr; }
  .story-media img { min-height: 450px; }
  .mission-card { padding: 45px; }
  .timeline-grid, .program-banner-grid, .faq-grid { grid-template-columns: 1fr; gap: 55px; }
  .activity-toolbar { align-items: flex-start; flex-direction: column; }
  .filter-buttons { justify-content: flex-start; }
  .program-banner-images { min-height: 370px; }
  .press-grid { grid-template-columns: 1fr 1fr; }
  .press-card-large { grid-row: auto; grid-column: 1 / -1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 250px; }
  .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(2), .gallery-item:nth-child(5), .gallery-item:nth-child(6) { grid-column: span 1; }
  .social-banner-inner { align-items: flex-start; flex-direction: column; }
  .social-banner-links { justify-content: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-details { max-width: 600px; }
  .prefooter-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1.5fr 1fr; }
  .footer-grid > div:last-child { display: block; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 70px 0; }
  .hero-grid { padding-top: 48px; padding-bottom: 65px; }
  .hero-copy h1 { font-size: 42px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 15px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { margin-top: 30px; }
  .hero-visual { min-height: 390px; }
  .hero-image-wrap { left: 0; width: 100%; height: 370px; border-radius: 90px 8px 90px 8px; }
  .floating-card-top { top: 25px; left: -5px; }
  .floating-card-bottom { right: -4px; bottom: -4px; }
  .hero-shape-one { display: none; }
  .intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .intro-note { grid-column: auto; }
  .section-heading h2 { font-size: 37px; }
  .heading-row { display: block; margin-bottom: 38px; }
  .heading-row > p, .heading-row > .button, .heading-row > .inline-link { margin-top: 22px; }
  .values-grid, .activity-feature-grid, .activities-grid { grid-template-columns: 1fr; }
  .value-card:last-child { grid-column: auto; }
  .activity-image { height: 290px; }
  .impact-image { min-height: 330px; }
  .impact-copy { padding: 60px 22px; }
  .impact-stats { grid-template-columns: 1fr 1fr; }
  .impact-stats div:last-child { grid-column: 1 / -1; }
  .news-main { min-height: 450px; }
  .news-overlay { padding: 28px; }
  .news-overlay h3 { font-size: 24px; }
  .news-side { grid-template-columns: 1fr; }
  .page-hero-inner, .page-hero-compact .page-hero-inner { min-height: 370px; padding-top: 65px; padding-bottom: 55px; }
  .page-hero-copy h1 { font-size: 39px; }
  .story-media img { min-height: 360px; }
  .story-badge { right: -5px; bottom: 20px; }
  .mission-grid { grid-template-columns: 1fr; }
  .mission-card { min-height: 420px; padding: 38px 28px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle { border-right: 0; border-bottom: 1px solid #d8dfdc; }
  .principle:last-child { border-bottom: 0; }
  .principle h3 { margin-top: 22px; }
  .timeline-grid { gap: 40px; }
  .activity-toolbar h2 { font-size: 31px; }
  .activity-list-image { height: 280px; }
  .program-banner { padding: 70px 0; }
  .program-banner-copy h2 { font-size: 36px; }
  .program-banner-images { min-height: 300px; }
  .program-banner-images img:first-child { height: 270px; }
  .program-banner-images img:last-child { height: 190px; }
  .press-grid { grid-template-columns: 1fr; }
  .press-card-large { grid-column: auto; }
  .press-card-large > img { height: 260px; }
  .press-card-large h2 { font-size: 25px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 290px; }
  .lightbox { padding: 20px; }
  .social-banner { padding: 60px 0; }
  .social-banner h2 { font-size: 31px; }
  .contact-details h2 { font-size: 39px; }
  .contact-form-card { padding: 30px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .map-section { height: 620px; }
  .map-section iframe { height: 330px; }
  .map-card { top: auto; bottom: 20px; left: 14px; right: 14px; width: auto; transform: none; }
  .prefooter { padding: 60px 0; }
  .prefooter-actions { width: 100%; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 20px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

/* 2026 visual refresh */
.site-announcement {
  color: #28796f;
  background: #edf8f6;
  border-bottom: 1px solid rgba(54, 171, 156, .17);
}
.site-announcement a { color: #176f66; font-weight: 700; }
.site-header { background: rgba(255,255,255,.96); }
.site-nav > ul > li > a { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: .015em; }
.button { font-family: var(--font-display); font-weight: 700; }
.button-primary { background: #36ab9c; box-shadow: 0 12px 30px rgba(54,171,156,.25); }
.button-primary:hover { background: #228f82; }
.button-soft { color: #176f66; background: #e6f5f2; }
.button-soft:hover { background: #d6eee9; }

.home-slider { position: relative; height: min(790px, calc(100vh - 34px)); min-height: 680px; overflow: hidden; background: #dbece8; }
.hero-slides, .hero-slide, .hero-slide-wash { position: absolute; inset: 0; }
.hero-slide { opacity: 0; visibility: hidden; transition: opacity .75s ease, visibility .75s ease; }
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.035); transition: transform 7s ease; }
.hero-slide.active > img { transform: scale(1); }
.hero-slide-wash { background: linear-gradient(90deg, rgba(15,64,59,.78) 0%, rgba(15,64,59,.48) 44%, rgba(15,64,59,.08) 78%), linear-gradient(0deg, rgba(7,35,32,.35), transparent 45%); }
.hero-slide-content { position: absolute; z-index: 2; inset: 0; display: flex; align-items: center; height: 100%; padding-bottom: 120px; }
.hero-slide-copy { max-width: 780px; color: #fff; }
.slider-kicker { display: flex; gap: 12px; align-items: center; margin-bottom: 22px; font: 700 13px/1 var(--font-display); letter-spacing: .09em; text-transform: uppercase; }
.slider-kicker i { display: block; width: 36px; height: 2px; background: var(--gold); }
.hero-slide h1 { max-width: 760px; margin: 0 0 22px; color: #fff; font-size: clamp(48px, 6vw, 80px); line-height: 1.02; letter-spacing: -.045em; }
.hero-slide p { max-width: 630px; margin: 0; color: rgba(255,255,255,.88); font-size: 18px; line-height: 1.75; }
.hero-slide-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.hero-link { color: #fff; font: 700 14px var(--font-display); }
.hero-link span { margin-left: 8px; color: #e8c854; }
.slider-dock { position: absolute; z-index: 4; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr auto; align-items: stretch; }
.slider-progress { position: absolute; top: -3px; left: 24px; right: 24px; height: 3px; overflow: hidden; background: rgba(255,255,255,.22); }
.slider-progress span { display: block; width: 100%; height: 100%; transform-origin: left; background: var(--gold); animation: sliderProgress 6s linear; }
.slider-progress span.restart { animation: none; }
@keyframes sliderProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.slider-tabs { display: grid; grid-template-columns: repeat(4, 1fr); min-width: 0; background: rgba(255,255,255,.96); box-shadow: 0 -12px 40px rgba(16,62,58,.12); }
.slider-tab { display: grid; grid-template-columns: 48px auto 1fr; gap: 11px; align-items: center; min-width: 0; padding: 15px 18px; color: #65807c; background: transparent; border: 0; border-right: 1px solid #e5efed; text-align: left; cursor: pointer; }
.slider-tab-image { width: 48px; height: 48px; overflow: hidden; border-radius: 8px; }
.slider-tab-image img { width: 100%; height: 100%; object-fit: cover; }
.slider-tab-number { color: #a4b7b3; font: 600 11px var(--font-display); }
.slider-tab strong { overflow: hidden; color: #466560; font: 700 12px var(--font-display); text-overflow: ellipsis; white-space: nowrap; }
.slider-tab.active { background: #edf8f6; }
.slider-tab.active strong, .slider-tab.active .slider-tab-number { color: #168d80; }
.slider-controls { display: flex; align-items: center; gap: 16px; padding: 0 18px; color: #fff; background: #36ab9c; }
.slider-controls button { width: 36px; height: 36px; padding: 0; color: inherit; background: rgba(255,255,255,.12); border: 0; border-radius: 50%; font-size: 19px; cursor: pointer; }
.slider-controls span { font: 600 11px var(--font-display); letter-spacing: .06em; }
.slider-controls b { font-size: 14px; }

.home-intro-v2 { padding: 130px 0 145px; background: #fff; overflow: hidden; }
.intro-v2-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: clamp(70px, 9vw, 140px); align-items: center; }
.intro-v2-collage { position: relative; min-height: 600px; }
.intro-photo-main { position: absolute; inset: 0 14% 0 0; overflow: hidden; border-radius: 0 110px 0 0; }
.intro-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.intro-year { position: absolute; z-index: 2; top: 32px; right: 0; display: flex; gap: 12px; align-items: center; padding: 17px 20px; color: #176f66; background: #fff; box-shadow: 0 14px 38px rgba(25,91,83,.13); }
.intro-year strong { font: 700 23px var(--font-display); }
.intro-year span { padding-left: 12px; border-left: 1px solid #cfe3df; font-size: 10px; line-height: 1.4; text-transform: uppercase; }
.intro-orbit { position: absolute; right: -55px; bottom: -55px; width: 170px; height: 170px; border: 1px solid rgba(188,156,34,.32); border-radius: 50%; }
.intro-orbit::before, .intro-orbit::after { content: ''; position: absolute; border: 1px solid rgba(188,156,34,.25); border-radius: 50%; }
.intro-orbit::before { inset: 22px; } .intro-orbit::after { inset: 48px; background: var(--gold); border: 0; }
.intro-v2-copy h2 { margin: 18px 0 24px; font-size: clamp(39px, 4vw, 59px); line-height: 1.1; }
.intro-v2-copy h2 em, .section-heading h2 em, .announcement-title-row h2 em, .activity-explorer-head h2 em, .story-strip-copy h2 em { color: #36ab9c; font-family: Georgia, serif; font-weight: 400; }
.intro-v2-copy > p { color: #61736f; line-height: 1.85; }
.intro-v2-copy .intro-v2-lead { color: #294b46; font-size: 18px; font-weight: 600; }
.intro-signals { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 27px 0 31px; }
.intro-signals span { display: flex; gap: 7px; align-items: center; color: #486660; font-size: 13px; font-weight: 600; }
.intro-signals svg { width: 17px; color: #36ab9c; }

.possibilities-v2 { padding: 130px 0; background: #f5faf8; }
.heading-row { display: flex; justify-content: space-between; gap: 60px; align-items: end; margin-bottom: 55px; }
.heading-row > p { max-width: 420px; margin-bottom: 8px; color: #61736f; line-height: 1.8; }
.possibility-layout { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: repeat(2, 280px); gap: 18px; }
.possibility-layout > a { position: relative; overflow: hidden; color: #fff; background: #247f75; }
.possibility-layout img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.possibility-layout a:hover img { transform: scale(1.04); }
.possibility-main { grid-row: 1 / 3; }
.possibility-overlay { position: absolute; inset: auto 0 0; display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: end; padding: 90px 34px 32px; background: linear-gradient(transparent, rgba(10,56,51,.92)); }
.possibility-overlay > span, .possibility-side div > span { color: #e6c84f; font: 700 12px var(--font-display); }
.possibility-overlay small, .possibility-side small { display: block; margin-bottom: 4px; color: rgba(255,255,255,.7); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.possibility-overlay h3, .possibility-side h3 { margin: 0; color: #fff; font-size: 29px; }
.possibility-overlay p, .possibility-side p { margin: 7px 0 0; color: rgba(255,255,255,.78); font-size: 13px; }
.possibility-overlay > b { font-size: 23px; }
.possibility-side > div { position: absolute; inset: auto 0 0; padding: 65px 25px 24px; background: linear-gradient(transparent, rgba(10,56,51,.91)); }
.possibility-side h3 { font-size: 23px; }

.announcements-v2 { padding: 125px 0; background: #fff; }
.announcement-title-row { display: flex; justify-content: space-between; gap: 50px; align-items: end; margin-bottom: 50px; }
.live-label { display: inline-flex; gap: 9px; align-items: center; color: #288a7f; font: 700 12px var(--font-display); letter-spacing: .08em; text-transform: uppercase; }
.live-label i { width: 9px; height: 9px; background: #e1bd36; border-radius: 50%; box-shadow: 0 0 0 5px rgba(225,189,54,.16); }
.announcement-title-row h2 { margin: 16px 0 0; font-size: clamp(39px, 4.4vw, 61px); line-height: 1.05; }
.announcement-note { max-width: 370px; padding-left: 25px; border-left: 2px solid #d9eee9; }
.announcement-note p { color: #61736f; line-height: 1.7; }
.announcement-note a { color: #238f83; font-weight: 700; }
.announcement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.announcement-card { color: inherit; background: #f8faf8; transition: transform .3s ease, box-shadow .3s ease; }
.announcement-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(34,91,84,.12); }
.poster-wrap { position: relative; height: 440px; overflow: hidden; background: #edf2ef; }
.poster-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.announcement-card:hover img { transform: scale(1.025); }
.poster-wrap > span { position: absolute; top: 16px; left: 16px; padding: 7px 11px; color: #fff; background: rgba(23,111,102,.9); font: 700 10px var(--font-display); letter-spacing: .07em; text-transform: uppercase; }
.poster-wrap > b { position: absolute; right: 18px; bottom: 18px; display: grid; place-items: center; width: 76px; height: 76px; color: #fff; background: #36ab9c; border-radius: 50%; font: 700 10px/1.3 var(--font-display); text-align: center; opacity: 0; transform: scale(.8); transition: .3s ease; }
.announcement-card:hover .poster-wrap > b { opacity: 1; transform: scale(1); }
.announcement-card-body { padding: 23px 24px 27px; }
.event-date { display: flex; gap: 7px; align-items: center; color: #a18319; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.event-date svg { width: 15px; }
.announcement-card h3 { margin: 10px 0 7px; font-size: 21px; }
.announcement-card p { margin: 0; color: #71817e; font-size: 13px; }

.activity-explorer-v2 { padding: 125px 0 110px; overflow: hidden; background: #f0f8f6; }
.activity-explorer-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; }
.activity-explorer-head h2 { margin: 14px 0 0; font-size: clamp(40px, 5vw, 64px); }
.activity-rail-controls { display: flex; gap: 9px; }
.activity-rail-controls button { width: 49px; height: 49px; color: #247d73; background: #fff; border: 1px solid #d4e8e4; border-radius: 50%; font-size: 20px; cursor: pointer; transition: .2s; }
.activity-rail-controls button:hover { color: #fff; background: #36ab9c; border-color: #36ab9c; }
.home-filters { margin: 34px 0 37px; }
.activity-rail { display: grid; grid-auto-columns: minmax(310px, calc((100% - 50px) / 3)); grid-auto-flow: column; gap: 25px; overflow-x: auto; padding-bottom: 20px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: #9bcfc7 transparent; }
.rail-card { min-width: 0; background: #fff; scroll-snap-align: start; transition: opacity .25s, transform .25s; }
.rail-card.is-hidden { display: none; }
.rail-card-image { position: relative; display: block; height: 265px; overflow: hidden; }
.rail-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.rail-card:hover .rail-card-image img { transform: scale(1.045); }
.rail-card-image span { position: absolute; top: 17px; left: 17px; padding: 7px 11px; color: #176f66; background: rgba(255,255,255,.94); font: 700 10px var(--font-display); letter-spacing: .06em; text-transform: uppercase; }
.rail-card-image b { position: absolute; right: 17px; bottom: 17px; display: grid; place-items: center; width: 43px; height: 43px; color: #fff; background: #36ab9c; border-radius: 50%; }
.rail-card-body { padding: 23px 23px 27px; }
.rail-meta { display: flex; justify-content: space-between; gap: 12px; color: #9a842e; font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.rail-card h3 { margin: 11px 0 10px; font-size: 21px; line-height: 1.3; }
.rail-card h3 a { color: #214b46; }
.rail-card p { display: -webkit-box; overflow: hidden; margin: 0; color: #6e807d; font-size: 13px; line-height: 1.7; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.activity-explorer-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 25px; }
.activity-explorer-foot > span { color: #758783; font-size: 12px; }

.home-story-strip { padding: 130px 0; overflow: hidden; background: #fff; }
.story-strip-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: center; }
.story-strip-copy h2 { margin: 17px 0 24px; font-size: clamp(38px, 4vw, 57px); line-height: 1.1; }
.story-strip-copy p { color: #607470; line-height: 1.85; }
.story-strip-copy .inline-link { margin-top: 15px; }
.story-strip-images { position: relative; display: grid; grid-template-columns: 1.12fr .88fr; gap: 14px; min-height: 520px; }
.story-strip-images > img { width: 100%; height: 100%; object-fit: cover; }
.story-strip-images > img:first-child { border-radius: 80px 0 0; }
.story-strip-images > img:nth-child(2) { margin-top: 58px; height: calc(100% - 58px); }
.story-quote { position: absolute; right: 16%; bottom: -32px; max-width: 330px; padding: 25px 28px; color: #fff; background: #36ab9c; box-shadow: 0 18px 40px rgba(54,171,156,.23); }
.story-quote svg { width: 24px; color: #f1d768; }
.story-quote p { margin: 8px 0 0; font: 600 17px/1.55 var(--font-display); }

.news-v2 { padding: 125px 0; background: #f8f6ef; }
.news-v2-grid { display: grid; grid-template-columns: 1.3fr .7fr; grid-template-rows: repeat(2, 245px); gap: 20px; }
.news-v2-grid > a { position: relative; overflow: hidden; color: #fff; background: #2e746c; }
.news-v2-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-v2-grid a:hover img { transform: scale(1.035); }
.news-v2-grid a > div { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: end; padding: 30px; background: linear-gradient(transparent 20%, rgba(11,51,47,.9)); }
.news-v2-feature { grid-row: 1 / 3; }
.news-v2-grid span { color: #f0d56c; font: 700 10px var(--font-display); letter-spacing: .1em; text-transform: uppercase; }
.news-v2-grid h3 { margin: 9px 0 5px; color: #fff; font-size: 24px; line-height: 1.3; }
.news-v2-feature h3 { max-width: 600px; font-size: 31px; }
.news-v2-grid p { max-width: 550px; margin: 3px 0 13px; color: rgba(255,255,255,.76); font-size: 13px; }
.news-v2-grid b { font: 700 11px var(--font-display); }

.page-hero { background: linear-gradient(120deg, #eff9f7, #f9f7ee); }
.page-hero .reveal, .activity-detail .reveal { opacity: 1; transform: none; }
.page-hero h1 { color: #174f48; }
.page-hero p, .breadcrumbs { color: #5f7d77; }
.eyebrow-light, .page-hero .eyebrow { color: #278f83; }
.page-hero-pattern { opacity: .14; }
.mission-card, .program-banner { background: #36ab9c; }
.prefooter { background: #39aa9c; }
.site-footer { color: #41645e; background: #eaf6f3; }
.footer-about p, .footer-links a, .footer-contact a, .footer-bottom { color: #58756f; }
.site-footer h3 { color: #176f66; }
.footer-links a:hover, .footer-contact a:hover { color: #168d80; }
.footer-bottom { border-top-color: rgba(54,171,156,.18); }
.registration-list div { border-bottom-color: rgba(54,171,156,.16); }
.registration-list dt { color: #78918c; }
.registration-list dd { color: #214f48; }
.social-links a { color: #176f66; border-color: rgba(54,171,156,.28); }
.social-links a:hover { color: #fff; background: #36ab9c; border-color: #36ab9c; }

.activity-detail { padding: 105px 0 125px; background: #fff; }
.activity-detail-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(310px, .58fr); gap: 70px; align-items: start; }
.activity-detail-image { overflow: hidden; background: #eef4f2; border-radius: 4px; }
.activity-detail-image img { display: block; width: 100%; max-height: 720px; object-fit: cover; }
.activity-detail-content { position: sticky; top: 125px; }
.activity-detail-content h1, .activity-detail-content h2 { margin: 15px 0 19px; font-size: clamp(34px, 3.5vw, 50px); line-height: 1.08; }
.activity-detail-content > p { color: #647975; font-size: 16px; line-height: 1.85; }
.activity-detail-meta { margin: 31px 0; border-top: 1px solid #dcebe8; }
.activity-detail-meta div { display: grid; grid-template-columns: 95px 1fr; gap: 15px; padding: 15px 0; border-bottom: 1px solid #dcebe8; }
.activity-detail-meta dt { color: #879a96; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.activity-detail-meta dd { margin: 0; color: #244e48; font-weight: 600; }
.related-activities { padding: 105px 0; background: #f0f8f6; }
.related-activities .activity-rail { margin-top: 38px; }

@media (max-width: 1050px) {
  .home-slider { height: 720px; }
  .slider-tab { grid-template-columns: 42px 1fr; padding: 13px; }
  .slider-tab-number { display: none; }
  .intro-v2-grid, .story-strip-grid { gap: 55px; }
  .intro-v2-collage { min-height: 520px; }
  .poster-wrap { height: 380px; }
  .activity-detail-grid { gap: 45px; }
}

@media (max-width: 860px) {
  .home-slider { height: 700px; min-height: 620px; }
  .hero-slide-content { padding-bottom: 85px; }
  .slider-tabs { display: none; }
  .slider-dock { display: flex; justify-content: flex-end; }
  .slider-progress { right: 145px; left: 0; top: auto; bottom: 0; }
  .slider-controls { min-height: 64px; }
  .intro-v2-grid, .story-strip-grid, .activity-detail-grid { grid-template-columns: 1fr; }
  .intro-v2-collage { min-height: 560px; }
  .possibility-layout { grid-template-columns: 1fr 1fr; grid-template-rows: 460px 270px; }
  .possibility-main { grid-column: 1 / 3; grid-row: auto; }
  .announcement-grid { grid-template-columns: repeat(2, 1fr); }
  .announcement-card:last-child { grid-column: 1 / 3; max-width: calc(50% - 12px); }
  .activity-rail { grid-auto-columns: minmax(300px, calc((100% - 25px) / 2)); }
  .news-v2-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 430px 250px; }
  .news-v2-feature { grid-column: 1 / 3; grid-row: auto; }
  .activity-detail-content { position: static; }
}

@media (max-width: 600px) {
  .home-slider { height: 650px; min-height: 650px; }
  .hero-slide-wash { background: linear-gradient(90deg, rgba(12,60,55,.82), rgba(12,60,55,.32)), linear-gradient(0deg, rgba(8,40,36,.42), transparent); }
  .hero-slide-content { align-items: flex-end; padding-bottom: 95px; }
  .hero-slide h1 { font-size: 41px; }
  .hero-slide p { font-size: 15px; line-height: 1.65; }
  .hero-slide-actions { align-items: flex-start; flex-direction: column; gap: 17px; margin-top: 26px; }
  .home-intro-v2, .possibilities-v2, .announcements-v2, .activity-explorer-v2, .home-story-strip, .news-v2 { padding: 82px 0; }
  .intro-v2-collage { min-height: 440px; }
  .intro-photo-main { right: 8%; border-radius: 0 70px 0 0; }
  .intro-year { top: 20px; padding: 12px 14px; }
  .intro-orbit { display: none; }
  .heading-row, .announcement-title-row, .activity-explorer-head, .activity-explorer-foot { align-items: flex-start; flex-direction: column; gap: 24px; }
  .possibility-layout { display: grid; grid-template-columns: 1fr; grid-template-rows: 390px 250px 250px; }
  .possibility-main { grid-column: auto; }
  .possibility-overlay { padding: 80px 22px 23px; }
  .announcement-grid { grid-template-columns: 1fr; }
  .announcement-card:last-child { grid-column: auto; max-width: none; }
  .poster-wrap { height: auto; aspect-ratio: .82; }
  .activity-rail { grid-auto-columns: 86%; }
  .rail-card-image { height: 235px; }
  .story-strip-images { min-height: 410px; }
  .story-quote { right: 10px; bottom: -40px; max-width: 270px; padding: 19px 21px; }
  .news-v2-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: 400px 250px 250px; }
  .news-v2-feature { grid-column: auto; }
  .news-v2-feature h3 { font-size: 24px; }
  .activity-detail { padding: 75px 0 90px; }
}

/* Compact inner-page header and agenda slider */
.page-hero, .page-hero.page-hero-compact { color: #174f48; background: #fff; border-bottom: 1px solid #e4eeeb; }
.page-hero-pattern, .page-hero::after { display: none; }
.page-hero-inner, .page-hero-compact .page-hero-inner { min-height: 128px; align-items: center; padding-top: 26px; padding-bottom: 26px; }
.page-hero-copy h1 { margin: 0; font-size: clamp(25px, 3vw, 34px); letter-spacing: -.025em; }
.page-hero-copy .eyebrow, .page-hero-copy > p { display: none; }
.breadcrumbs { flex: 0 0 auto; color: #708984; font-size: 11px; }
.breadcrumbs a { color: #268e82; }

.announcements-v2 { padding: 105px 0 95px; overflow: hidden; background: #fff; }
.announcement-side { max-width: 420px; }
.announcement-side > p { margin: 0 0 20px; color: #61736f; line-height: 1.75; }
.announcement-controls { display: flex; align-items: center; gap: 12px; }
.announcement-controls button { width: 45px; height: 45px; padding: 0; color: #176f66; background: #edf8f6; border: 1px solid #d3e9e4; border-radius: 50%; font-size: 19px; cursor: pointer; }
.announcement-controls button:hover { color: #fff; background: #36ab9c; border-color: #36ab9c; }
.announcement-controls span { color: #758b86; font: 600 11px var(--font-display); letter-spacing: .06em; }
.announcement-controls b { color: #176f66; font-size: 14px; }
.announcement-grid { display: grid; grid-auto-columns: minmax(330px, calc((100% - 50px) / 3)); grid-auto-flow: column; grid-template-columns: none; gap: 25px; overflow-x: auto; padding: 2px 2px 22px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: #9bcfc7 transparent; }
.announcement-card { min-width: 0; scroll-snap-align: start; }
.poster-wrap { display: block; }
.announcement-card-body { min-height: 245px; display: flex; flex-direction: column; }
.event-date { align-items: flex-start; color: #176f66; }
.event-date > span { display: flex; flex-direction: column; gap: 2px; }
.event-date small { color: #91a39f; font: 700 9px var(--font-display); letter-spacing: .08em; }
.event-date strong { color: #a18319; font: 700 11px var(--font-display); }
.announcement-card h3 a { color: #214b46; }
.announcement-card-body > p { flex: 1; color: #6e807d; line-height: 1.65; }
.announcement-location { display: flex; gap: 7px; align-items: center; margin-top: 18px; padding-top: 16px; color: #496a64; border-top: 1px solid #dceae7; font-size: 12px; font-weight: 600; }
.announcement-location svg { width: 15px; color: #36ab9c; }

.footer-about img { width: 215px; height: auto; padding: 10px 14px; object-fit: contain; }
.footer-sub-link { padding-left: 15px; }
.footer-sub-link a { font-size: 11px; }

@media (max-width: 860px) {
  .page-hero-inner, .page-hero-compact .page-hero-inner { min-height: 112px; padding-top: 22px; padding-bottom: 22px; }
  .announcement-grid { grid-auto-columns: minmax(310px, calc((100% - 25px) / 2)); }
}

@media (max-width: 600px) {
  .page-hero-inner, .page-hero-compact .page-hero-inner { min-height: 94px; gap: 8px; padding-top: 17px; padding-bottom: 17px; }
  .page-hero-copy h1 { font-size: 24px; }
  .breadcrumbs { display: none; }
  .announcements-v2 { padding: 75px 0 68px; }
  .announcement-grid { grid-auto-columns: 88%; }
  .poster-wrap { height: auto; aspect-ratio: .78; }
  .announcement-card-body { min-height: 235px; }
}

/* Institutional, board and Ramadan pages */
.institutional-intro { background: #fff; }
.institutional-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.institutional-lead > p { margin-bottom: 35px; color: #405f59; font-size: 19px; line-height: 1.8; }
.fact-list { margin: 0; border-top: 1px solid #dce9e6; }
.fact-list div { display: grid; grid-template-columns: 150px 1fr; gap: 25px; padding: 15px 0; border-bottom: 1px solid #dce9e6; }
.fact-list dt { color: #879b97; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.fact-list dd { margin: 0; color: #214d47; font-weight: 600; }
.institutional-section { padding: 105px 0; background: #f0f8f6; }
.objective-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 45px; }
.objective-card { min-height: 290px; padding: 30px 27px; background: #fff; border-top: 3px solid #36ab9c; }
.objective-card > span { color: #bc9c22; font: 700 11px var(--font-display); }
.objective-card h3 { margin: 43px 0 15px; font-size: 20px; }
.objective-card p { margin: 0; color: #677c77; font-size: 13px; line-height: 1.75; }
.documents-section { padding: 105px 0; background: #fff; }
.documents-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.document-list { border-top: 1px solid #d9e8e5; }
.document-card { display: grid; grid-template-columns: 52px 1fr auto; gap: 18px; align-items: center; padding: 20px 8px; border-bottom: 1px solid #d9e8e5; }
.document-icon { display: grid; place-items: center; width: 48px; height: 48px; color: #fff; background: #36ab9c; border-radius: 7px; font: 700 10px var(--font-display); }
.document-card strong, .document-card small { display: block; }
.document-card strong { color: #214d47; font: 700 14px var(--font-display); }
.document-card small { margin-top: 3px; color: #8a9b98; }
.document-card > b { color: #bc9c22; font-size: 24px; }
.document-card:hover strong { color: #168d80; }

.board-section { background: #fff; }
.board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.board-card { padding-bottom: 22px; border-bottom: 1px solid #dbe9e6; }
.board-photo { position: relative; aspect-ratio: 1; overflow: hidden; margin-bottom: 23px; background: #edf4f2; }
.board-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.board-photo a { position: absolute; right: 17px; bottom: 17px; padding: 10px 13px; color: #fff; background: #36ab9c; border-radius: 6px; font-size: 11px; font-weight: 700; opacity: 0; transform: translateY(8px); transition: .3s ease; }
.board-card:hover .board-photo img { transform: scale(1.03); }
.board-card:hover .board-photo a { opacity: 1; transform: translateY(0); }
.board-card > span { color: #279286; font: 700 10px var(--font-display); letter-spacing: .09em; text-transform: uppercase; }
.board-card > h2 { margin: 7px 0 0; font-size: 25px; }
.board-policy { padding: 80px 0; background: #f0f8f6; }
.board-policy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.board-policy h2 { margin: 13px 0 0; font-size: 34px; }
.board-policy p { margin: 0; color: #607671; line-height: 1.85; }

.ramadan-intro { padding: 105px 0; background: #fff; }
.ramadan-intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 85px; align-items: center; }
.ramadan-intro-image { height: 590px; overflow: hidden; border-radius: 0 90px 0 0; }
.ramadan-intro-image img { width: 100%; height: 100%; object-fit: cover; }
.ramadan-intro-copy h2 { margin: 17px 0 25px; font-size: clamp(39px, 4.2vw, 58px); }
.ramadan-intro-copy p { color: #607671; line-height: 1.85; }
.ramadan-intro-copy .button { margin-top: 15px; }
.ramadan-program { padding: 105px 0; background: #f0f8f6; }
.ramadan-poster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.ramadan-poster { background: #fff; transition: transform .3s, box-shadow .3s; }
.ramadan-poster:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(25,83,76,.12); }
.ramadan-poster > div { position: relative; overflow: hidden; aspect-ratio: .78; background: #e8f1ef; }
.ramadan-poster img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.ramadan-poster:hover img { transform: scale(1.025); }
.ramadan-poster > div span { position: absolute; top: 15px; left: 15px; padding: 7px 10px; color: #fff; background: rgba(23,111,102,.9); font: 700 9px var(--font-display); letter-spacing: .08em; text-transform: uppercase; }
.ramadan-poster section { padding: 21px 22px 24px; }
.ramadan-poster small { color: #a18319; font-weight: 700; }
.ramadan-poster h3 { margin: 7px 0 5px; font-size: 20px; }
.ramadan-poster p { margin: 0; color: #73847f; font-size: 12px; }

@media (max-width: 900px) {
  .institutional-grid, .documents-grid, .ramadan-intro-grid { grid-template-columns: 1fr; gap: 50px; }
  .objective-grid { grid-template-columns: repeat(2, 1fr); }
  .ramadan-intro-image { height: 500px; }
  .ramadan-poster-grid { grid-template-columns: repeat(2, 1fr); }
  .board-policy-grid { gap: 45px; }
}

@media (max-width: 600px) {
  .institutional-section, .documents-section, .ramadan-intro, .ramadan-program { padding: 75px 0; }
  .objective-grid, .board-grid, .ramadan-poster-grid, .board-policy-grid { grid-template-columns: 1fr; }
  .objective-card { min-height: 235px; }
  .documents-grid { gap: 35px; }
  .document-card { grid-template-columns: 45px 1fr auto; gap: 12px; }
  .document-icon { width: 43px; height: 43px; }
  .board-grid { gap: 38px; }
  .board-photo a { opacity: 1; transform: none; }
  .board-policy { padding: 65px 0; }
  .ramadan-intro-image { height: 420px; border-radius: 0 55px 0 0; }
}

/* Content and calendar refinements */
.site-announcement { color: #344b47; background: #fff; border-bottom: 1px solid #d8e1df; }
.announcement-inner { min-height: 42px; }
.topbar-contact, .topbar-social { display: flex; align-items: center; gap: 24px; }
.topbar-contact a { display: flex; align-items: center; gap: 8px; color: #687975; font-size: 11px; }
.topbar-contact a .icon { width: 15px; color: #36ab9c; }
.topbar-contact a span { display: flex; gap: 6px; align-items: center; }
.topbar-contact small { color: #203f3a; font-size: 11px; }
.topbar-social { gap: 13px; }
.topbar-social > span { margin-right: 5px; color: #334c47; font-size: 11px; }
.topbar-social a { display: grid; place-items: center; width: 20px; height: 20px; color: #36ab9c; font-weight: 800; }
.topbar-social a:hover { color: #176f66; }

.intro-photo-mockup { background: #f4f5f1; }
.intro-photo-mockup img { object-fit: cover; object-position: center; }

.announcement-side { display: flex; flex-wrap: wrap; align-items: center; gap: 0 18px; }
.announcement-side > p { width: 100%; }
.announcement-agenda-link { display: inline-flex; gap: 8px; align-items: center; color: #176f66; font: 700 12px var(--font-display); }
.announcement-agenda-link .icon { width: 16px; }
.poster-wrap { height: 315px; }
.announcement-card-body { min-height: 300px; padding: 27px 27px 25px; }
.event-date { gap: 11px; text-transform: none; }
.event-date svg { width: 21px; height: 21px; margin-top: 3px; color: #36ab9c; }
.event-date small { color: #718984; font-size: 9px; }
.event-date strong { color: #9a7c13; font-size: 16px; line-height: 1.3; }
.announcement-card h3 { margin: 17px 0 10px; color: #183f39; font-size: 24px; line-height: 1.25; }
.announcement-card-body > p { color: #435f5a; font-size: 14px; line-height: 1.75; }
.announcement-card-meta { display: flex; justify-content: space-between; gap: 15px; align-items: center; margin-top: 20px; padding-top: 17px; color: #365d56; border-top: 1px solid #d7e7e3; font-size: 11px; font-weight: 700; }
.announcement-card-meta span { display: flex; gap: 6px; align-items: center; }
.announcement-card-meta svg { width: 15px; color: #36ab9c; }

.work-grid { display: grid; grid-template-columns: 1.12fr 1fr 1fr; grid-template-rows: repeat(2, minmax(255px, auto)); gap: 18px; }
.work-card { position: relative; padding: 31px 29px; overflow: hidden; background: #fff; border: 1px solid #dceae7; }
.work-card::after { content: ''; position: absolute; right: -35px; bottom: -35px; width: 105px; height: 105px; border: 1px solid rgba(54,171,156,.18); border-radius: 50%; }
.work-card > span, .work-card-photo div > span { color: #bc9c22; font: 700 11px var(--font-display); }
.work-card small { display: block; margin-top: 28px; color: #289286; font: 700 10px var(--font-display); letter-spacing: .09em; text-transform: uppercase; }
.work-card h3 { margin: 9px 0 14px; color: #1d4a44; font-size: 22px; }
.work-card p { margin: 0; color: #536e69; font-size: 13px; line-height: 1.75; }
.work-card a { display: inline-flex; gap: 8px; align-items: center; margin-top: 25px; color: #176f66; font-size: 12px; font-weight: 700; }
.work-card-feature { grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: flex-end; padding: 42px 38px; color: #fff; background: linear-gradient(160deg, rgba(22,111,102,.9), rgba(30,88,81,.96)), url('../images/events/activity-13.jpg') center/cover; border: 0; }
.work-card-feature > span, .work-card-feature small { color: #eed46c; }
.work-card-feature h3 { color: #fff; font-size: 34px; }
.work-card-feature p { color: rgba(255,255,255,.82); font-size: 15px; }
.work-card-feature a { color: #fff; }
.work-card-photo { padding: 0; border: 0; }
.work-card-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.work-card-photo > div { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: end; padding: 45px 28px 27px; color: #fff; background: linear-gradient(transparent, rgba(13,62,56,.95)); }
.work-card-photo small { color: #eed46c; }
.work-card-photo h3 { color: #fff; }
.work-card-photo p { color: rgba(255,255,255,.8); }

.activity-explorer-head > div:first-child { max-width: 760px; }
.activity-explorer-intro { max-width: 690px; margin: 18px 0 0; color: #476660; line-height: 1.75; }
.rail-meta span { display: flex; flex-direction: column; gap: 2px; }
.rail-meta small { color: #8ca09b; font-size: 8px; letter-spacing: .08em; }
.rail-card h3 { font-size: 22px; }
.rail-card p { color: #405e58; font-size: 13px; }

.activity-toolbar { align-items: flex-start; }
.activity-toolbar > div:first-child { max-width: 650px; }
.activity-toolbar h2 { line-height: 1.2; }
.activity-toolbar > div:first-child > p { margin: 16px 0 0; color: #4d6964; line-height: 1.75; }
.activity-list-body { padding: 27px 27px 31px; }
.activity-card-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid #dbe9e6; }
.activity-card-facts > span { display: flex; gap: 8px; align-items: flex-start; min-width: 0; }
.activity-card-facts .icon { width: 17px; margin-top: 2px; color: #36ab9c; }
.activity-card-facts span span { display: flex; min-width: 0; flex-direction: column; }
.activity-card-facts small { color: #879b96; font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.activity-card-facts strong { overflow: hidden; color: #725f17; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.activity-list-body p { color: #405e58; line-height: 1.75; }

.calendar-page { padding: 100px 0 120px; background: #f5faf8; }
.calendar-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: end; margin-bottom: 50px; }
.calendar-intro h2 { margin: 15px 0 0; font-size: clamp(39px, 4.4vw, 60px); }
.calendar-intro h2 em { color: #36ab9c; font-family: Georgia, serif; font-weight: 400; }
.calendar-intro > p { margin: 0 0 8px; color: #496862; line-height: 1.8; }
.calendar-shell { padding: 35px; background: #fff; box-shadow: 0 20px 60px rgba(24,83,76,.09); }
#sfera-calendar { --fc-border-color: #dceae7; --fc-button-bg-color: #176f66; --fc-button-border-color: #176f66; --fc-button-hover-bg-color: #36ab9c; --fc-button-hover-border-color: #36ab9c; --fc-button-active-bg-color: #36ab9c; --fc-button-active-border-color: #36ab9c; --fc-event-bg-color: #36ab9c; --fc-event-border-color: #36ab9c; --fc-today-bg-color: #f3f1df; --fc-monarch-primary: #36ab9c; --fc-monarch-primary-foreground: #fff; --fc-monarch-primary-over: #29998b; --fc-monarch-primary-down: #21877b; --fc-monarch-event: #36ab9c; --fc-monarch-event-contrast: #fff; --fc-monarch-selected: #176f66; --fc-monarch-selected-foreground: #fff; --fc-monarch-highlight: rgba(54,171,156,.12); color: #264d47; }
.fc .fc-toolbar-title { color: #183f39; font: 700 25px var(--font-display); }
.fc .fc-button { border-radius: 6px; font: 600 12px var(--font-display); text-transform: capitalize; }
.fc .fc-col-header-cell-cushion { padding: 12px 5px; color: #526f69; font-size: 11px; text-transform: uppercase; }
.fc .fc-daygrid-day-number { padding: 9px; color: #496660; font-size: 12px; }
.fc .fc-event { padding: 4px 6px; border-radius: 4px; cursor: pointer; font-size: 11px; }
.fc .fc-daygrid-event { color: #fff !important; background: #36ab9c !important; border-color: #36ab9c !important; }
.fc .fc-daygrid-event-dot { display: none; }
.fc .fc-list-event:hover td { background: #edf8f6; }
.calendar-modal-store { display: none; }
.calendar-event-modal { width: min(960px, calc(100vw - 40px)); display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; background: #fff; }
.calendar-modal-image { min-height: 580px; background: #e8f1ef; }
.calendar-modal-image img { width: 100%; height: 100%; object-fit: cover; }
.calendar-modal-content { padding: 50px 48px; }
.calendar-modal-type { color: #258e82; font: 700 10px var(--font-display); letter-spacing: .1em; text-transform: uppercase; }
.calendar-modal-content h2 { margin: 12px 0 17px; color: #173f39; font-size: 36px; }
.calendar-modal-content > p { color: #496660; line-height: 1.8; }
.calendar-modal-content dl { margin: 30px 0; border-top: 1px solid #dbe8e5; }
.calendar-modal-content dl div { display: grid; grid-template-columns: 75px 1fr; gap: 18px; padding: 13px 0; border-bottom: 1px solid #dbe8e5; }
.calendar-modal-content dt { color: #879a96; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.calendar-modal-content dd { margin: 0; color: #244f48; font-weight: 600; }
.announcements-v2 .reveal, .activities-page .reveal, .calendar-page .reveal { opacity: 1; transform: none; }
.activity-detail-content > p { color: #405e58; }
.activity-body { margin: 20px 0; color: #405e58; font-size: 15px; line-height: 1.85; }

@media (max-width: 900px) {
  .work-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .work-card-feature { grid-row: span 2; }
  .calendar-intro { grid-template-columns: 1fr; gap: 25px; }
  .calendar-event-modal { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; }
  .calendar-modal-image { min-height: 340px; }
}

@media (max-width: 600px) {
  .topbar-contact, .topbar-social { display: none; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card-feature { grid-row: auto; min-height: 410px; }
  .work-card { min-height: 245px; }
  .work-card-photo { min-height: 390px; }
  .poster-wrap { height: 285px; }
  .announcement-card-body { min-height: 315px; padding: 24px 22px; }
  .activity-explorer-intro { font-size: 14px; }
  .activity-toolbar { flex-direction: column; }
  .activity-card-facts { grid-template-columns: 1fr; }
  .calendar-page { padding: 72px 0 85px; }
  .calendar-shell { padding: 15px; }
  .fc .fc-toolbar { align-items: flex-start; flex-direction: column; gap: 12px; }
  .fc .fc-toolbar-chunk:nth-child(2) { order: -1; }
  #sfera-calendar [role="listitem"] { grid-template-columns: 68px minmax(0, 1fr) !important; }
  #sfera-calendar [role="button"] > div:last-child { align-items: flex-start !important; flex-direction: column !important; gap: 3px; min-width: 0; }
  #sfera-calendar [role="button"] > div:last-child > div { max-width: 100%; white-space: normal !important; }
  .calendar-modal-image { min-height: 270px; }
  .calendar-modal-content { padding: 31px 24px; }
  .calendar-modal-content h2 { font-size: 28px; }
}

/* September revisions */
.home-intro-v2 { padding: 88px 0 96px; }
.possibilities-v2 { padding: 88px 0; }
.announcements-v2 { padding: 78px 0 72px; }
.activity-explorer-v2 { padding: 88px 0 80px; }
.home-story-strip { padding: 88px 0 94px; }
.news-v2 { padding: 88px 0; }
.activities-page { padding-top: 82px; padding-bottom: 88px; }

.intro-photo-main { inset: 0; }
.intro-photo-main img { object-position: center; }

.announcement-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8e8e4;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(24, 83, 76, .08);
}
.announcement-card:hover { transform: translateY(-7px); box-shadow: 0 22px 48px rgba(24, 83, 76, .14); }
.poster-wrap { border-bottom: 1px solid #e1ece9; }
.announcement-card-body { min-height: 292px; padding: 27px 27px 24px; }
.announcement-card h3 { margin: 0 0 10px; }
.announcement-card-body > p { margin-bottom: 22px; }
.announcement-card-meta {
  display: grid;
  grid-template-columns: .95fr .85fr 1.2fr;
  gap: 0;
  align-items: stretch;
  margin-top: auto;
  padding-top: 18px;
}
.announcement-card-meta > span { min-width: 0; gap: 9px; align-items: flex-start; padding: 0 12px; border-left: 1px solid #dce9e6; }
.announcement-card-meta > span:first-child { padding-left: 0; border-left: 0; }
.announcement-card-meta > span:last-child { padding-right: 0; }
.announcement-card-meta > span > span { display: flex; min-width: 0; flex-direction: column; gap: 1px; }
.announcement-card-meta svg { width: 17px; height: 17px; margin-top: 2px; }
.announcement-card-meta small { color: #879b96; font: 700 8px var(--font-display); letter-spacing: .08em; text-transform: uppercase; }
.announcement-card-meta strong { overflow: hidden; color: #254f49; font: 700 10px/1.45 var(--font-display); text-overflow: ellipsis; }
.rail-card, .activity-list-card { border: 1px solid #d9e8e4; box-shadow: 0 9px 25px rgba(24, 83, 76, .06); transition: transform .3s ease, box-shadow .3s ease; }
.rail-card:hover, .activity-list-card:hover { transform: translateY(-5px); box-shadow: 0 19px 42px rgba(24, 83, 76, .12); }

#sfera-calendar [role="button"],
#sfera-calendar a[data-event-index],
#sfera-calendar .fc-event { cursor: pointer !important; }

.home-donation { padding: 0 0 88px; background: #f8f6ef; }
.home-donation-shell { position: relative; display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: center; min-height: 390px; overflow: hidden; padding: 58px 64px; color: #fff; background: linear-gradient(120deg, #176f66, #2e9d90); border-radius: 22px; box-shadow: 0 24px 60px rgba(24, 83, 76, .16); }
.home-donation-shell::before { content: ''; position: absolute; top: -150px; right: 27%; width: 350px; height: 350px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.035), 0 0 0 100px rgba(255,255,255,.025); }
.home-donation-copy { position: relative; z-index: 1; }
.donation-kicker { display: inline-flex; align-items: center; gap: 10px; color: #f2d568; font: 700 11px var(--font-display); letter-spacing: .11em; text-transform: uppercase; }
.donation-kicker::before { content: ''; width: 28px; height: 2px; background: #f2d568; }
.home-donation h2 { max-width: 650px; margin: 16px 0 18px; color: #fff; font-size: clamp(39px, 4.5vw, 62px); }
.home-donation h2 em { color: #f2d568; font-family: Georgia, serif; font-weight: 400; }
.home-donation-copy p { max-width: 650px; margin-bottom: 28px; color: rgba(255,255,255,.82); line-height: 1.8; }
.donation-qr-card { position: relative; z-index: 1; display: grid; grid-template-columns: 108px 1fr auto; gap: 17px; align-items: center; padding: 16px; color: #1e4e47; background: #fff; border-radius: 15px; box-shadow: 0 18px 44px rgba(8,48,43,.2); transition: transform .25s ease; }
.donation-qr-card:hover { transform: translateY(-4px); }
.donation-qr-card img { width: 108px; height: 108px; padding: 4px; background: #fff; }
.donation-qr-card span { display: flex; flex-direction: column; }
.donation-qr-card strong { font: 700 14px var(--font-display); }
.donation-qr-card small { margin-top: 3px; color: #718682; font-size: 10px; }
.donation-qr-card > svg { width: 20px; color: #bc9c22; }

.media-overview { padding: 82px 0 96px; background: #f5faf8; }
.media-news-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.media-news-card { display: grid; grid-template-columns: 210px minmax(0, 1fr); min-height: 280px; overflow: hidden; color: inherit; background: #fff; border: 1px solid #d9e8e4; border-radius: 13px; box-shadow: 0 9px 26px rgba(24,83,76,.07); transition: transform .3s ease, box-shadow .3s ease; }
.media-news-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(24,83,76,.13); }
.media-news-feature { grid-column: 1 / -1; grid-template-columns: 1.18fr .82fr; min-height: 460px; }
.media-news-image { position: relative; min-height: 100%; overflow: hidden; background: #e9f1ef; }
.media-news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.media-news-card:hover img { transform: scale(1.035); }
.media-news-image > span { position: absolute; top: 16px; left: 16px; padding: 7px 11px; color: #fff; background: rgba(23,111,102,.92); font: 700 9px var(--font-display); letter-spacing: .08em; text-transform: uppercase; }
.media-news-body { display: flex; flex-direction: column; justify-content: center; padding: 31px 29px; }
.media-news-feature .media-news-body { padding: 54px 50px; }
.media-news-body > small { color: #a18319; font: 700 10px var(--font-display); letter-spacing: .09em; text-transform: uppercase; }
.media-news-body h2 { margin: 10px 0 12px; color: #1d4a44; font-size: 22px; }
.media-news-feature h2 { font-size: clamp(30px, 3vw, 44px); }
.media-news-body p { margin: 0 0 22px; color: #59716c; font-size: 13px; line-height: 1.75; }
.media-news-link { display: inline-flex; gap: 8px; align-items: center; margin-top: auto; color: #168d80; font: 700 11px var(--font-display); }
.media-news-link svg { width: 16px; }

@media (max-width: 980px) {
  .home-donation-shell { gap: 35px; padding: 48px 42px; }
  .donation-qr-card { grid-template-columns: 90px 1fr; }
  .donation-qr-card img { width: 90px; height: 90px; }
  .donation-qr-card > svg { display: none; }
  .media-news-card { grid-template-columns: 170px minmax(0, 1fr); }
}

@media (max-width: 860px) {
  .site-header, .site-header.scrolled { z-index: 1000; background: #fffefb; backdrop-filter: none; }
  .header-inner { justify-content: flex-start; gap: 15px; }
  .menu-toggle { z-index: 1002; order: -1; flex: 0 0 46px; }
  .brand { margin-right: auto; }
  .site-nav {
    z-index: 1001;
    top: 74px;
    right: 0;
    bottom: auto;
    left: 0;
    height: calc(100dvh - 74px);
    overflow-y: auto;
    padding: 28px 24px 36px;
    background: #176f66;
    background-image: linear-gradient(145deg, #176f66 0%, #1b786f 100%);
    isolation: isolate;
    visibility: hidden;
    transform: translateX(-100%);
    transition: transform .3s ease, visibility .3s;
  }
  .site-nav.open { visibility: visible; transform: translateX(0); }
  .site-nav > ul { width: 100%; }
  .site-nav > ul > li > a { color: #fff; }
  .site-nav .nav-donate { flex: 0 0 auto; }
  .home-donation-shell { grid-template-columns: 1fr; }
  .donation-qr-card { max-width: 430px; }
  .media-news-grid { grid-template-columns: 1fr; }
  .media-news-feature { grid-column: auto; }
  .media-news-feature, .media-news-card { grid-template-columns: 260px minmax(0, 1fr); min-height: 300px; }
  .media-news-feature .media-news-body { padding: 35px 31px; }
}

@media (max-width: 600px) {
  .home-intro-v2, .possibilities-v2, .announcements-v2, .activity-explorer-v2, .home-story-strip, .news-v2 { padding: 60px 0; }
  .activities-page { padding-top: 60px; padding-bottom: 64px; }
  .intro-v2-collage { min-height: 420px; }
  .intro-photo-main { border-radius: 0 60px 0 0; }
  .announcement-title-row { margin-bottom: 32px; }
  .announcement-grid { grid-auto-columns: 100%; gap: 16px; padding-right: 0; padding-left: 0; }
  .announcement-card { width: 100%; }
  .poster-wrap { height: 285px; aspect-ratio: auto; }
  .announcement-card-body { min-height: 0; padding: 24px 21px 21px; }
  .announcement-card h3 { font-size: 22px; }
  .announcement-card-meta { grid-template-columns: 1fr 1fr; row-gap: 15px; }
  .announcement-card-meta > span { padding: 0 9px; }
  .announcement-card-meta > span:nth-child(3) { grid-column: 1 / -1; padding: 14px 0 0; border-top: 1px solid #dce9e6; border-left: 0; }
  .home-donation { padding: 0 0 60px; }
  .home-donation-shell { gap: 32px; min-height: 0; padding: 39px 25px; border-radius: 14px; }
  .home-donation h2 { font-size: 38px; }
  .home-donation-copy p { font-size: 14px; }
  .donation-qr-card { grid-template-columns: 82px 1fr; width: 100%; padding: 12px; }
  .donation-qr-card img { width: 82px; height: 82px; }
  .media-overview { padding: 60px 0 68px; }
  .media-news-feature, .media-news-card { display: block; min-height: 0; }
  .media-news-image { height: 235px; min-height: 0; }
  .media-news-feature .media-news-image { height: 300px; min-height: 0; }
  .media-news-feature .media-news-body, .media-news-body { padding: 26px 22px; }
  .media-news-feature h2 { font-size: 27px; }
}

/* Navigation, social icons and activity galleries */
.social-icon { display: block; width: 15px; height: 15px; }
.topbar-social a { border: 1px solid #cfe5e1; border-radius: 50%; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.topbar-social a:hover { color: #fff; background: #36ab9c; border-color: #36ab9c; transform: translateY(-2px); }
.social-links .social-icon { width: 16px; height: 16px; }

.site-nav > ul > li > a.nav-agenda {
  isolation: isolate;
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 42px;
  overflow: hidden;
  margin: 0;
  padding: 0 15px;
  color: #176f66;
  background: #dcefeb;
  border-radius: 8px;
  box-shadow: 0 7px 18px rgba(23,111,102,.09);
  transition: color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.site-nav > ul > li > a.nav-agenda::after {
  z-index: -1;
  inset: 2px;
  width: auto;
  height: auto;
  background: #f7fbfa;
  border-radius: 6px;
}
.nav-agenda .agenda-orbit { position: absolute; z-index: -2; top: 50%; left: 50%; width: 170%; aspect-ratio: 1; background: conic-gradient(from 0deg, transparent 0 70%, rgba(54,171,156,.2) 76%, #36ab9c 83%, #bc9c22 89%, transparent 96%); animation: agendaOrbit 5s linear infinite; }
.nav-agenda > .icon { position: relative; z-index: 1; width: 15px; }
.nav-agenda > span:not(.agenda-orbit) { position: relative; z-index: 1; }
.site-nav > ul > li > a.nav-agenda:hover,
.site-nav > ul > li > a.nav-agenda[aria-current="page"] { color: #fff; background: #36ab9c; box-shadow: 0 10px 24px rgba(23,111,102,.18); transform: translateY(-2px); }
.site-nav > ul > li > a.nav-agenda:hover::after,
.site-nav > ul > li > a.nav-agenda[aria-current="page"]::after { background: #21877b; }
@keyframes agendaOrbit { to { transform: translate(-50%, -50%) rotate(1turn); } }
.nav-agenda .agenda-orbit { transform: translate(-50%, -50%); }

.announcement-card { position: relative; }
.announcement-date-badge { position: absolute; z-index: 3; top: 272px; right: 22px; display: flex; width: 94px; min-height: 82px; flex-direction: column; align-items: center; justify-content: center; color: #fff; background: linear-gradient(145deg, #bc9c22, #d0ae28); border: 5px solid #fff; border-radius: 12px; box-shadow: 0 13px 28px rgba(104,82,7,.2); text-align: center; animation: dateBadgeFloat 3.8s ease-in-out infinite; }
.announcement-date-badge strong { font: 800 28px/.95 var(--font-display); letter-spacing: -.05em; }
.announcement-date-badge span { margin-top: 5px; font: 700 9px/1 var(--font-display); letter-spacing: .08em; text-transform: uppercase; }
.announcement-card-body { padding-top: 49px; }
.announcement-card-meta { grid-template-columns: .8fr 1.2fr; }
@keyframes dateBadgeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

.activity-detail-gallery { min-width: 0; }
.activity-gallery-stage { position: relative; height: auto; aspect-ratio: 4 / 3; overflow: hidden; background: #eaf2f0; border: 1px solid #d9e8e4; border-radius: 14px; box-shadow: 0 16px 45px rgba(24,83,76,.1); }
.activity-gallery-slide { position: absolute; inset: 0; display: block; opacity: 0; visibility: hidden; transform: scale(1.015); transition: opacity .45s ease, visibility .45s ease, transform .65s ease; }
.activity-gallery-slide.active { opacity: 1; visibility: visible; transform: scale(1); }
.activity-gallery-slide img { width: 100%; height: 100%; object-fit: contain; }
.activity-gallery-video { display: flex; align-items: center; justify-content: center; background: #123f39; }
.activity-gallery-video video { width: 100%; height: 100%; object-fit: contain; background: #0b2f2b; }
.activity-gallery-media-label { position: absolute; z-index: 2; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; color: #fff; background: rgba(19,69,63,.82); border-radius: 6px; backdrop-filter: blur(7px); font: 700 9px var(--font-display); letter-spacing: .08em; text-transform: uppercase; pointer-events: none; }
.activity-gallery-media-label .icon { width: 14px; }
.activity-gallery-arrow { position: absolute; z-index: 4; top: 50%; display: grid; place-items: center; width: 48px; height: 48px; padding: 0; color: #176f66; background: rgba(255,255,255,.94); border: 1px solid rgba(23,111,102,.16); border-radius: 50%; box-shadow: 0 9px 25px rgba(16,70,64,.16); cursor: pointer; transform: translateY(-50%); transition: color .2s ease, background .2s ease, transform .2s ease; }
.activity-gallery-arrow:hover { color: #fff; background: #36ab9c; transform: translateY(-50%) scale(1.06); }
.activity-gallery-prev { left: 18px; }
.activity-gallery-next { right: 18px; }
.activity-gallery-expand { position: absolute; z-index: 3; bottom: 17px; left: 17px; display: flex; gap: 7px; align-items: center; padding: 8px 11px; color: #fff; background: rgba(19,69,63,.76); border-radius: 6px; backdrop-filter: blur(7px); font: 600 9px var(--font-display); letter-spacing: .04em; text-transform: uppercase; pointer-events: none; }
.activity-gallery-expand .icon { width: 13px; }
.activity-gallery-count { position: absolute; z-index: 3; right: 17px; bottom: 17px; padding: 8px 11px; color: rgba(255,255,255,.75); background: rgba(19,69,63,.76); border-radius: 6px; backdrop-filter: blur(7px); font: 600 10px var(--font-display); letter-spacing: .06em; }
.activity-gallery-count b { color: #fff; font-size: 13px; }
.activity-gallery-thumbs { display: grid; grid-auto-columns: 88px; grid-auto-flow: column; gap: 9px; overflow-x: auto; margin-top: 13px; padding: 2px 2px 9px; scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: #9bcfc7 transparent; }
.activity-gallery-thumb { width: 88px; height: 68px; overflow: hidden; padding: 0; background: #e7efed; border: 2px solid transparent; border-radius: 7px; cursor: pointer; opacity: .65; transition: opacity .2s ease, border-color .2s ease, transform .2s ease; }
.activity-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.activity-gallery-video-thumb { display: grid; place-items: center; align-content: center; gap: 2px; color: #fff; background: linear-gradient(145deg,#123f39,#21877b); }
.activity-gallery-video-thumb .icon { width: 23px; height: 23px; }
.activity-gallery-video-thumb small { font: 700 8px var(--font-display); letter-spacing: .08em; text-transform: uppercase; }
.activity-gallery-thumb:hover { opacity: 1; transform: translateY(-2px); }
.activity-gallery-thumb.active { border-color: #36ab9c; opacity: 1; }

@media (max-width: 860px) {
  .site-nav > ul > li > a.nav-agenda { justify-content: center; margin: 13px 0; color: #176f66; }
  .site-nav > ul > li > a.nav-agenda[aria-current="page"] { color: #fff; }
  .activity-gallery-stage { height: auto; min-height: 0; }
}

@media (max-width: 600px) {
  .announcement-date-badge { top: 244px; right: 16px; width: 86px; min-height: 75px; border-width: 4px; }
  .announcement-date-badge strong { font-size: 25px; }
  .announcement-card-body { padding-top: 46px; }
  .announcement-card-meta { grid-template-columns: .8fr 1.2fr; }
  .activity-gallery-stage { height: auto; min-height: 0; border-radius: 10px; }
  .activity-gallery-arrow { width: 42px; height: 42px; }
  .activity-gallery-prev { left: 11px; }
  .activity-gallery-next { right: 11px; }
  .activity-gallery-expand { bottom: 12px; left: 12px; }
  .activity-gallery-count { right: 12px; bottom: 12px; }
  .activity-gallery-thumbs { grid-auto-columns: 72px; }
  .activity-gallery-thumb { width: 72px; height: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-agenda .agenda-orbit, .announcement-date-badge { animation: none; }
}

/* CMS-driven layout refinements */
.hide-page-hero .page-hero { display: none; }
.slider-tabs { grid-template-columns: repeat(var(--slide-count, 4), minmax(0, 1fr)); }
.poster-wrap > b { display: none; }
.announcement-card-body { display: flex; flex-direction: column; }
.announcement-card-meta { grid-template-columns: .72fr 1.28fr; align-items: start; }
.announcement-card-meta > span { justify-content: flex-start; align-items: flex-start; padding: 0; text-align: left; }
.announcement-card-meta > span + span { padding-left: 18px; border-left: 1px solid #dce9e6; }
.announcement-card-meta > span > span { align-items: flex-start; text-align: left; }
.announcement-card-meta strong { overflow: visible; text-overflow: clip; white-space: normal; }
.site-nav > ul > li > a.nav-agenda { color: #fff; background: #176f66; box-shadow: 0 9px 22px rgba(23,111,102,.2); }
.site-nav > ul > li > a.nav-agenda::after { background: #176f66; }
.site-nav > ul > li > a.nav-agenda:hover { background: #21877b; }
.site-nav > ul > li > a.nav-agenda:hover::after { background: #21877b; }

@media (max-width: 679px) {
  .site-nav > ul > li > a.nav-agenda { color: #fff; }
  .calendar-shell { padding: 8px; box-shadow: 0 12px 35px rgba(24,83,76,.08); }
  .fc .fc-list-event { cursor: pointer; }
  .fc .fc-list-event td { padding-top: 13px; padding-bottom: 13px; }
  .fc .fc-list-event-title a { display: block; padding: 3px 0; font-weight: 700; }
}

/* Activities: text and filters each get their own full-width row. */
.activities-page .activity-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  width: 100%;
  gap: 28px;
}
.activities-page .activity-toolbar > div:first-child { width: 100%; max-width: none; }
.activities-page .activity-toolbar > .filter-buttons { width: 100%; justify-content: flex-end; }

/* Announcement posters keep their complete artwork visible at every ratio. */
.announcements-v2 .poster-wrap {
  display: grid;
  place-items: center;
  height: 410px;
  padding: 12px;
  background: linear-gradient(145deg, #edf6f4, #faf8f0);
}
.announcements-v2 .poster-wrap img {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: contain;
  object-position: center;
}
.announcements-v2 .poster-type { z-index: 2; }
.announcements-v2 .announcement-date-badge { top: 367px; }
.announcement-empty { grid-column: 1 / -1; display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: 25px; align-items: center; min-height: 190px; padding: 34px 38px; background: linear-gradient(120deg,#eef8f6,#fbf8eb); border: 1px solid #d7e9e5; border-radius: 15px; }
.announcement-grid.is-empty { grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: minmax(0,1fr); overflow: visible; padding: 0; }
.announcement-empty-icon { display: grid; place-items: center; width: 70px; height: 70px; color: #fff; background: #36ab9c; border-radius: 50%; box-shadow: 0 13px 30px rgba(54,171,156,.2); }
.announcement-empty-icon .icon { width: 29px; height: 29px; }
.announcement-empty h3 { margin: 9px 0 6px; color: #174b45; font-size: 25px; }
.announcement-empty p { margin: 0; color: #607873; }

@media (max-width: 700px) {
  .activities-page .activity-toolbar > .filter-buttons { justify-content: flex-start; }
  .announcements-v2 .poster-wrap { height: 420px; }
  .announcements-v2 .announcement-date-badge { top: 381px; }
  .announcement-empty { grid-template-columns: 1fr; justify-items: start; min-height: 0; padding: 28px 24px; }
}

/* YouTube channel */
.youtube-showcase { overflow: hidden; padding: 92px 0 104px; background: #fff; }
.youtube-heading { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 38px; }
.youtube-heading h2 { margin: 13px 0 12px; font-size: clamp(35px, 4vw, 54px); }
.youtube-heading h2 em { color: #bc9c22; font-family: Georgia, serif; font-weight: 400; }
.youtube-heading p { max-width: 690px; margin: 0; color: #536f6a; line-height: 1.8; }
.youtube-heading-actions { display: flex; flex: 0 0 auto; flex-direction: column; align-items: flex-end; gap: 14px; }
.youtube-controls { display: flex; gap: 8px; }
.youtube-controls button { display: grid; place-items: center; width: 43px; height: 43px; padding: 0; color: #176f66; background: #fff; border: 1px solid #cfe4e0; border-radius: 50%; cursor: pointer; transition: .25s ease; }
.youtube-controls button:hover { color: #fff; background: #36ab9c; border-color: #36ab9c; transform: translateY(-2px); }
.youtube-follow { display: flex; gap: 9px; align-items: center; padding: 13px 18px; color: #fff; background: #176f66; border-radius: 8px; font: 700 11px var(--font-display); letter-spacing: .02em; transition: .25s ease; }
.youtube-follow:hover { background: #bc9c22; transform: translateY(-2px); }
.youtube-follow .social-icon, .youtube-follow .icon { width: 17px; height: 17px; }
.youtube-rail { display: grid; grid-auto-columns: calc((100% - 40px) / 3); grid-auto-flow: column; gap: 20px; overflow-x: auto; padding: 3px 3px 20px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: #9bcfc7 transparent; }
.youtube-card { overflow: hidden; color: #174b45; background: #fff; border: 1px solid #dce9e6; border-radius: 13px; box-shadow: 0 14px 38px rgba(24,83,76,.08); scroll-snap-align: start; transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease; }
.youtube-card:hover { border-color: #9bcfc7; box-shadow: 0 20px 44px rgba(24,83,76,.14); transform: translateY(-5px); }
.youtube-thumb { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 9; background: #e9f2f0; }
.youtube-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.youtube-card:hover .youtube-thumb img { transform: scale(1.035); }
.youtube-play { position: absolute; inset: 50% auto auto 50%; display: grid; place-items: center; width: 52px; height: 52px; color: #fff; background: rgba(23,111,102,.94); border: 3px solid rgba(255,255,255,.8); border-radius: 50%; box-shadow: 0 8px 25px rgba(7,43,39,.25); transform: translate(-50%, -50%); transition: .25s ease; }
.youtube-card:hover .youtube-play { background: #bc9c22; transform: translate(-50%, -50%) scale(1.08); }
.youtube-play .icon { width: 25px; height: 25px; }
.youtube-card-body { display: flex; min-height: 178px; flex-direction: column; align-items: flex-start; padding: 23px 24px 22px; }
.youtube-card-body small { color: #369f92; font: 700 10px var(--font-display); letter-spacing: .07em; text-transform: uppercase; }
.youtube-card-body strong { display: -webkit-box; overflow: hidden; margin: 10px 0 18px; font: 700 18px/1.45 var(--font-display); -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.youtube-card-body > span { display: flex; gap: 7px; align-items: center; margin-top: auto; color: #176f66; font: 700 10px var(--font-display); text-transform: uppercase; }
.youtube-card-body > span .icon { width: 13px; }

@media (max-width: 900px) {
  .youtube-heading { align-items: flex-start; flex-direction: column; }
  .youtube-heading-actions { width: 100%; align-items: flex-start; }
  .youtube-rail { grid-auto-columns: calc((100% - 20px) / 2); }
}
@media (max-width: 600px) {
  .youtube-showcase { padding: 60px 0 68px; }
  .youtube-heading { gap: 25px; margin-bottom: 27px; }
  .youtube-heading h2 { font-size: 37px; }
  .youtube-rail { grid-auto-columns: 86%; gap: 14px; margin-right: -20px; }
  .youtube-card-body { min-height: 160px; padding: 20px; }
}

/* Activity pages: keep visual media and long-form content in clear full-width rows. */
.activity-detail-grid { display: block; }
.activity-detail-gallery { width: min(100%, 960px); margin: 0 auto; }
.activity-detail-content { position: static; width: min(100%, 960px); margin: 54px auto 0; }
.activity-detail-content h2 { max-width: 820px; }
.activity-detail-content > p,
.activity-detail-content .activity-body { max-width: 860px; }

/* Activity metadata follows the description and uses one complete row per item. */
.activity-card-facts { grid-template-columns: minmax(0, 1fr); gap: 0; margin: 20px 0; padding: 12px 0; border-top: 1px solid #dbe9e6; border-bottom: 1px solid #dbe9e6; }
.activity-card-facts > span { width: 100%; padding: 7px 0; }
.activity-card-facts strong { overflow: visible; text-overflow: clip; white-space: normal; line-height: 1.45; }
.rail-meta { flex-direction: column; justify-content: flex-start; gap: 0; margin-top: 18px; padding-top: 12px; border-top: 1px solid #dbe9e6; }
.rail-meta > span { width: 100%; padding: 6px 0; }

@media (max-width: 600px) {
  .activity-detail { padding: 72px 0 85px; }
  .activity-detail-content { margin-top: 36px; }
}

/* Consistent activity cards, independent of title and summary length. */
.activity-list-card,
.rail-card { display: flex; height: 100%; flex-direction: column; }
.activity-list-body,
.rail-card-body { display: flex; flex: 1; flex-direction: column; }
.activity-list-body h2,
.rail-card h3 { display: -webkit-box; overflow: hidden; min-height: 3.9em; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.activity-list-body > p,
.rail-card-body > p { display: -webkit-box; overflow: hidden; min-height: 5.1em; margin-bottom: 0; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.activity-list-body > .inline-link,
.rail-card-link { align-self: flex-start; margin-top: auto; padding-top: 22px; }
.activity-card-facts,
.rail-meta { min-height: 94px; margin: 0 0 19px; padding: 11px 0; }

/* The activity heading introduces the gallery; the story starts below it. */
.activity-detail-intro { width: min(100%, 960px); margin: 0 auto 34px; }
.activity-detail-intro h2 { max-width: 880px; margin: 14px 0 0; font-size: clamp(35px, 4vw, 56px); line-height: 1.1; }
.activity-detail-content { margin-top: 42px; }
.activity-detail-content .activity-detail-lead { margin-top: 0; color: #405e58; font-size: 18px; line-height: 1.85; }
.activity-detail { padding-top: 64px; }

@media (max-width: 860px) {
  .site-nav > ul > li > a.nav-agenda,
  .site-nav > ul > li > a.nav-agenda:hover,
  .site-nav > ul > li > a.nav-agenda[aria-current="page"] { color: #176f66; background: #fff; border: 1px solid rgba(255,255,255,.72); box-shadow: 0 10px 26px rgba(7,51,46,.18); }
  .site-nav > ul > li > a.nav-agenda::after,
  .site-nav > ul > li > a.nav-agenda:hover::after,
  .site-nav > ul > li > a.nav-agenda[aria-current="page"]::after { background: #fff; }
}

@media (max-width: 600px) {
  .activity-detail-intro { margin-bottom: 25px; }
  .activity-detail-intro h2 { font-size: 32px; }
  .activity-detail-content { margin-top: 30px; }
}
