:root {
  --ink: #10263f;
  --muted: #5f7184;
  --paper: #f7f4ed;
  --surface: #ffffff;
  --soft: #edf5f2;
  --line: #dde6e9;
  --teal: #08766f;
  --blue: #145184;
  --gold: #d69a2d;
  --coral: #c85b46;
  --plum: #583f64;
  --shadow: 0 22px 70px rgba(16, 38, 63, 0.13);
  --radius: 8px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--surface);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 10px 32px rgba(16, 38, 63, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: inherit;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(16, 38, 63, 0.22));
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  width: 48px;
  height: 48px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  background: rgba(20, 81, 132, 0.09);
}

.site-nav .nav-donate {
  margin-left: 8px;
  color: var(--surface);
  background: var(--coral);
  box-shadow: 0 12px 30px rgba(200, 91, 70, 0.3);
}

.site-nav .nav-donate:hover {
  background: #b84f3d;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 128px clamp(20px, 6vw, 76px) 38px;
  color: var(--surface);
  isolation: isolate;
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 76px) 76px;
  color: var(--surface);
  isolation: isolate;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--ink);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 23, 38, 0.9), rgba(8, 23, 38, 0.54) 56%, rgba(8, 23, 38, 0.25)),
    linear-gradient(0deg, rgba(8, 23, 38, 0.72), rgba(8, 23, 38, 0.08));
}

.page-hero-content {
  width: min(940px, 100%);
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--ink);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 26%, rgba(214, 154, 45, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(8, 23, 38, 0.9), rgba(8, 23, 38, 0.62) 48%, rgba(8, 23, 38, 0.28)),
    linear-gradient(0deg, rgba(8, 23, 38, 0.84), rgba(8, 23, 38, 0.04) 58%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 74px);
  align-items: end;
  width: min(1220px, 100%);
  margin: 0 auto 118px;
}

.hero-content {
  width: min(820px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3rem, 7.8vw, 6.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.62;
}

.hero-actions,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--surface);
  background: var(--coral);
  box-shadow: 0 18px 40px rgba(200, 91, 70, 0.34);
}

.button.primary.dark {
  background: var(--ink);
  box-shadow: 0 18px 40px rgba(16, 38, 63, 0.22);
}

.button.secondary {
  color: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-panel,
.hero-event,
.quote-card {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-panel {
  padding: 24px;
}

.hero-panel img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 18px;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.hero-stats div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats strong,
.quick-actions strong {
  display: block;
}

.hero-stats strong {
  font-size: 1.55rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  line-height: 1.25;
}

.hero-event {
  position: absolute;
  left: clamp(20px, 6vw, 76px);
  right: clamp(20px, 6vw, 76px);
  bottom: 32px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 22px;
}

.hero-event span,
.tag,
.news-list span,
.cause-grid span {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-event strong {
  font-size: 1.12rem;
}

.hero-event p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.hero-event a {
  color: var(--surface);
  font-weight: 900;
  text-underline-offset: 4px;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.quick-actions a {
  min-height: 166px;
  padding: 30px clamp(20px, 4vw, 44px);
  color: var(--surface);
  text-decoration: none;
  background: var(--ink);
  transition: background 160ms ease, transform 160ms ease;
}

.quick-actions a:nth-child(2) {
  background: var(--teal);
}

.quick-actions a:nth-child(3) {
  background: var(--plum);
}

.quick-actions a:hover {
  transform: translateY(-3px);
}

.quick-actions span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.quick-actions strong {
  margin-top: 14px;
  font-size: clamp(1.18rem, 2.2vw, 1.85rem);
  line-height: 1.18;
}

.section {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 6vw, 76px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(170px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  width: min(1220px, 100%);
  margin: 0 auto 42px;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
  margin-inline: auto;
}

.section-heading h2,
.donate-band h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.7vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.intro-text {
  max-width: 620px;
}

.intro-text p {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.34em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 5px var(--paper);
}

.intro-media {
  position: relative;
}

.intro-image,
.cause-grid article,
.event-card,
.news-list article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.intro-image {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.quote-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: -34px;
  padding: 22px;
  color: var(--surface);
  background: rgba(16, 38, 63, 0.88);
}

.quote-card strong {
  display: block;
  font-size: 1.18rem;
}

.quote-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.causes,
.leadership {
  background: var(--surface);
}

.cause-grid,
.leader-grid,
.news-list,
.events-grid,
.gallery-grid,
.contact-grid {
  width: min(1220px, 100%);
  margin: 0 auto;
}

.cause-grid,
.leader-grid,
.news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.cause-grid article {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cause-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 80px rgba(16, 38, 63, 0.18);
}

.cause-grid img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.cause-grid article div {
  padding: 24px;
}

.cause-grid h3 {
  margin: 10px 0 10px;
  font-size: 1.45rem;
}

.cause-grid p,
.news-list p,
.event-card p,
.donate-band p,
.contact-card p {
  color: var(--muted);
  line-height: 1.65;
}

.events-section {
  background: var(--soft);
}

.featured-event-section {
  background: var(--paper);
}

.events-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 22px;
}

.featured-event-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  width: min(1220px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.featured-event-panel > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  background: var(--soft);
}

.featured-event-panel > div {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 58px);
}

.featured-event-panel h2 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
}

.featured-event-panel p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.featured-event-panel dl,
.event-list-card dl {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.featured-event-panel dt,
.event-list-card dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.featured-event-panel dd,
.event-list-card dd {
  margin: 4px 0 0;
  font-weight: 850;
}

.event-browser-section {
  background: var(--surface);
}

.live-events-section {
  background: var(--paper);
}

.facebook-events-card {
  display: grid;
  justify-items: center;
  gap: 20px;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.facebook-events-card p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  text-align: center;
  line-height: 1.65;
}

.facebook-events-button {
  width: fit-content;
  margin: 0 auto;
}

.event-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 240px) minmax(160px, 220px) auto;
  gap: 14px;
  align-items: end;
  width: min(1220px, 100%);
  margin: 0 auto 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbfb;
}

.event-toolbar label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-toolbar input,
.event-toolbar select {
  min-height: 46px;
  width: 100%;
  border: 1px solid #c7d1d6;
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
  background: var(--surface);
}

.event-toolbar input:focus,
.event-toolbar select:focus {
  outline: 3px solid rgba(8, 118, 111, 0.18);
  border-color: var(--teal);
}

.event-count {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--surface);
  font-weight: 900;
  white-space: nowrap;
  background: var(--ink);
}

.event-list {
  display: grid;
  gap: 18px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.event-list-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 48px rgba(16, 38, 63, 0.1);
}

.event-list-card > img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  background: var(--soft);
}

.event-list-card > div {
  padding: clamp(22px, 4vw, 34px);
}

.event-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.event-card-meta span {
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
  background: var(--soft);
}

.event-list-card[data-status="past"] {
  opacity: 0.82;
}

.event-list-card h3 {
  margin: 14px 0 10px;
  font-size: clamp(1.45rem, 2.8vw, 2.45rem);
  line-height: 1.05;
}

.event-list-card p {
  color: var(--muted);
  line-height: 1.65;
}

.event-unavailable {
  color: var(--coral);
  font-weight: 900;
}

.event-empty {
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  background: var(--paper);
}

.event-empty h3 {
  margin: 0 0 8px;
  font-size: 1.8rem;
}

.event-empty p {
  margin: 0;
  color: var(--muted);
}

.event-card {
  overflow: hidden;
}

.event-card.featured {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
}

.event-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  background: #dfe8ea;
}

.event-card div {
  padding: 30px;
}

.event-card h3,
.news-list h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.7vw, 2.2rem);
  line-height: 1.08;
}

.event-card dl {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.event-card dl div {
  padding: 0;
}

.event-card dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.event-card dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.text-link {
  color: var(--blue);
  font-weight: 950;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

button.text-link {
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  background: transparent;
}

.attend-link {
  display: inline-flex;
  width: fit-content;
}

.tag.muted,
.expired {
  color: var(--coral);
}

.news-section {
  background: var(--paper);
}

.news-list article {
  padding: 30px;
}

.facebook-news-section {
  background: var(--paper);
}

.facebook-news-layout {
  display: grid;
  grid-template-columns: minmax(320px, 540px) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: start;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.facebook-feed-card,
.facebook-news-info {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.facebook-feed-card {
  overflow: hidden;
  padding: 14px;
  width: 100%;
}

.facebook-feed-card iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 760px;
  margin: 0 auto;
  border: 0;
}

.facebook-news-info {
  padding: clamp(26px, 5vw, 48px);
}

.facebook-news-info h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1;
}

.facebook-news-info p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.about-story-section {
  background: var(--paper);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 6vw, 78px);
  width: min(1220px, 100%);
  margin: 0 auto;
}

.about-story-grid h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.8vw, 4.3rem);
  line-height: 1;
}

.about-story-copy {
  display: grid;
  gap: 14px;
}

.about-story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.about-story-copy h3 {
  margin: 12px 0 0;
  font-size: 1.35rem;
}

.about-photo-section {
  background: var(--surface);
}

.about-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 18px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.about-photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-photo-grid img:nth-child(2) {
  grid-row: span 2;
}

.about-photo-grid div {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.about-photo-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.about-photo-grid p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.about-values-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.about-values-band div {
  min-height: 230px;
  padding: clamp(28px, 5vw, 48px);
  color: var(--surface);
  background: var(--ink);
}

.about-values-band div:nth-child(2) {
  background: var(--teal);
}

.about-values-band div:nth-child(3) {
  background: var(--plum);
}

.about-values-band span {
  color: var(--gold);
  font-weight: 950;
}

.about-values-band strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1;
}

.about-values-band p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.about-programs-section,
.about-vision-section,
.about-leadership-preview {
  background: var(--surface);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.vision-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbfb;
  box-shadow: 0 14px 42px rgba(16, 38, 63, 0.08);
}

.vision-grid span {
  color: var(--gold);
  font-weight: 950;
}

.vision-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.about-program-grid,
.about-board-preview {
  display: grid;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.about-program-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.about-program-grid article,
.about-board-preview article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 48px rgba(16, 38, 63, 0.1);
}

.about-program-grid img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
}

.about-program-grid article div {
  padding: 24px;
}

.about-program-grid h3,
.about-board-preview h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.about-program-grid p,
.about-board-preview p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.about-board-preview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.about-board-preview article {
  padding: 14px 14px 18px;
}

.about-board-preview img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.about-board-preview h3 {
  margin-top: 14px;
}

.about-leadership-link {
  width: fit-content;
  margin: 28px auto 0;
}

.about-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(58px, 8vw, 92px) clamp(20px, 6vw, 76px);
  color: var(--surface);
  background:
    linear-gradient(120deg, rgba(8, 118, 111, 0.96), rgba(16, 38, 63, 0.94)),
    var(--teal);
}

.about-cta-band > div:first-child {
  width: min(820px, 100%);
}

.about-cta-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1;
}

.about-cta-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button.secondary.ink {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.62);
}

.text-link.light {
  display: inline-block;
  margin-top: 12px;
  color: var(--surface);
}

.leadership {
  padding-top: clamp(72px, 9vw, 118px);
}

.leader-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.leader-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 14px 18px;
  background: #f9fbfb;
  box-shadow: 0 16px 46px rgba(16, 38, 63, 0.09);
}

.leader-grid article::before {
  content: "";
  display: block;
  height: 3px;
  margin: -12px -12px 12px;
  background: var(--teal);
}

.leader-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
  background: var(--soft);
}

.leader-grid h3 {
  margin: 14px 0 4px;
  font-size: 1.15rem;
}

.leader-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.donate-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 32px;
  align-items: center;
  padding: clamp(58px, 8vw, 92px) clamp(20px, 6vw, 76px);
  color: var(--surface);
  background:
    linear-gradient(120deg, rgba(8, 118, 111, 0.96), rgba(16, 38, 63, 0.94)),
    var(--teal);
}

.donate-band > div {
  width: min(860px, 100%);
}

.donate-band .eyebrow,
.donate-band p {
  color: rgba(255, 255, 255, 0.86);
}

.donate-actions {
  justify-self: end;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.donate-actions .button {
  width: 100%;
}

.donate-actions span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.45;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr 1fr;
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  border-radius: var(--radius);
  object-fit: cover;
}

.gallery-grid img:first-child {
  grid-row: span 2;
  height: 530px;
}

.contact-section {
  background: #f0ece3;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
}

.contact-card,
.contact-form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-card {
  padding: clamp(24px, 4vw, 42px);
}

.contact-card h3,
.contact-form-heading h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 1.05;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  background: #f9fbfb;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.contact-methods a:hover {
  border-color: rgba(8, 118, 111, 0.4);
  background: var(--soft);
  transform: translateY(-2px);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--surface);
  background: var(--teal);
}

.contact-icon svg,
.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-methods strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-methods em {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--surface);
  font-weight: 900;
  text-decoration: none;
}

.social-link.facebook {
  background: #145184;
}

.social-link.youtube {
  background: #c4302b;
}

.social-link.tiktok {
  background: #111827;
}

.contact-form-card {
  overflow: hidden;
}

.contact-form-heading {
  display: grid;
  gap: 10px;
  padding: clamp(24px, 4vw, 34px);
  border-bottom: 1px solid var(--line);
  background: #f9fbfb;
}

.contact-form-card iframe {
  display: block;
  width: 100%;
  height: min(80vh, 820px);
  min-height: 720px;
  border: 0;
}

.site-footer {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 46px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.site-footer p {
  max-width: 620px;
  margin: 0;
}

.modal-backdrop {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 23, 38, 0.68);
  backdrop-filter: blur(10px);
}

.modal-backdrop[hidden] {
  display: none;
}

.attend-modal {
  position: relative;
  width: min(560px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 38px);
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(8, 23, 38, 0.35);
}

.donation-modal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  width: min(1040px, 100%);
  max-height: min(860px, calc(100vh - 40px));
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 30px);
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(8, 23, 38, 0.35);
}

.donation-modal-heading {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: calc(var(--radius) - 2px);
  padding: clamp(22px, 4vw, 34px);
  color: var(--surface);
  background:
    linear-gradient(145deg, rgba(8, 118, 111, 0.94), rgba(16, 38, 63, 0.96)),
    var(--teal);
}

.donation-modal-heading .eyebrow,
.donation-modal-heading p {
  color: rgba(255, 255, 255, 0.82);
}

.donation-modal-heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
}

.donation-modal-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  line-height: 1.65;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  background: var(--surface);
}

.attend-modal h2 {
  margin: 0;
  padding-right: 34px;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1;
}

.modal-event-name {
  margin: 12px 0 24px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}

.google-form-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbfb;
}

.google-form-frame iframe {
  display: block;
  width: 100%;
  height: min(68vh, 680px);
  min-height: 560px;
  border: 0;
}

.zeffy-form-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbfb;
}

.zeffy-form-frame iframe {
  display: block;
  width: 100%;
  height: min(74vh, 760px);
  min-height: 640px;
  border: 0;
}

.modal-form-link {
  width: 100%;
  margin-top: 14px;
}

.donation-modal .modal-form-link {
  grid-column: 2;
  margin-top: -8px;
}

.attend-form {
  display: grid;
  gap: 16px;
}

.attend-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 850;
}

.attend-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #c7d1d6;
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--surface);
}

.attend-form input:focus {
  outline: 3px solid rgba(8, 118, 111, 0.18);
  border-color: var(--teal);
}

.checkbox-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbfb;
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.checkbox-field span {
  color: var(--ink);
  line-height: 1.45;
}

.modal-success {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(8, 118, 111, 0.25);
  border-radius: var(--radius);
  background: var(--soft);
}

.modal-success strong {
  display: block;
  color: var(--teal);
  font-size: 1.15rem;
}

.modal-success p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1060px) {
  .hero-inner {
    grid-template-columns: 1fr;
    margin-bottom: 150px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .section-heading,
  .intro-grid,
  .events-grid,
  .event-card.featured,
  .featured-event-panel,
  .facebook-news-layout,
  .about-story-grid,
  .about-photo-grid,
  .about-program-grid,
  .about-board-preview,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .vision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-photo-grid img:nth-child(2) {
    grid-row: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    grid-row: auto;
    height: 230px;
  }

  .donation-modal {
    grid-template-columns: 1fr;
  }

  .donation-modal .modal-form-link {
    grid-column: auto;
    margin-top: -8px;
  }

  .donation-modal-heading {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 14px;
    right: 14px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .site-nav .nav-donate {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: 920px;
    padding: 110px 20px 26px;
  }

  .hero-inner {
    margin-bottom: 224px;
  }

  .hero-panel {
    display: none;
  }

  .hero-event {
    left: 20px;
    right: 20px;
    bottom: 26px;
    width: auto;
    grid-template-columns: 1fr;
  }

  .quick-actions,
  .cause-grid,
  .news-list,
  .about-values-band,
  .donate-band,
  .about-cta-band,
  .event-toolbar,
  .event-list-card {
    grid-template-columns: 1fr;
  }

  .leader-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .leader-grid article {
    padding: 10px 10px 12px;
  }

  .leader-grid article::before {
    margin: -10px -10px 10px;
  }

  .leader-grid img {
    aspect-ratio: 1;
  }

  .leader-grid h3 {
    margin-top: 10px;
    font-size: 0.98rem;
  }

  .leader-grid p {
    font-size: 0.82rem;
  }

  .quick-actions a {
    min-height: 132px;
  }

  .intro-image {
    min-height: 280px;
  }

  .quote-card {
    position: static;
    margin-top: 14px;
    background: var(--ink);
  }

  .event-card img {
    min-height: 280px;
  }

  .facebook-feed-card iframe {
    min-height: 680px;
  }

  .facebook-feed-card {
    padding: 8px;
  }

  .contact-form-card iframe {
    min-height: 680px;
  }

  .donation-modal {
    padding: 14px;
  }

  .zeffy-form-frame iframe {
    height: 690px;
    min-height: 690px;
  }

  .about-board-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .vision-grid,
  .about-program-grid {
    grid-template-columns: 1fr;
  }

  .about-board-preview article {
    padding: 10px 10px 12px;
  }

  .about-board-preview img {
    aspect-ratio: 1;
  }

  .about-cta-actions .button {
    width: 100%;
  }

  .page-hero {
    min-height: 520px;
    padding: 126px 20px 58px;
  }

  .featured-event-panel > img,
  .event-list-card > img {
    min-height: 280px;
  }

  .event-count {
    justify-content: flex-start;
    border-radius: var(--radius);
  }

  .donate-actions {
    justify-self: stretch;
  }

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

@media (max-width: 460px) {
  h1 {
    font-size: 2.7rem;
  }

  .hero-actions .button,
  .donate-band .button {
    width: 100%;
  }

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