@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
  --teal: #65baa3;
  --teal-deep: #437c6d;
  --teal-soft: #a1d1c4;
  --teal-pale: #c5e8de;
  --ink: #555555;
  --ink-dark: #333333;
  --muted: #808080;
  --line: #d5d5d5;
  --white: #ffffff;
  --font: "Montserrat", Avenir, "Helvetica Neue", Arial, sans-serif;
  --wide: 980px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0 0 1em; }
h1, h2, h3, h4, h5 {
  margin: 0 0 .5em;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.06em;
  color: var(--ink-dark);
}
.wrap { width: min(var(--wide), calc(100% - 40px)); margin-inline: auto; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; z-index: 100; background: #fff; padding: 8px; }

/* ========== HEADER (match HEC: teal bar, white Donate, small logo) ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--teal);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.header-inner {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 84px;
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  color: inherit;
}
.brand-mark {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 5px solid #fff;
  box-shadow: 0 0 14px rgba(0,0,0,.2);
}
.brand-title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.15;
}
.brand-title span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  opacity: .92;
  margin-top: 2px;
}

.nav {
  justify-self: center;
}
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
}
.nav a {
  display: block;
  padding: 10px 12px;
  color: #fff !important;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none !important;
}
.nav a:hover,
.nav a[aria-current="page"] {
  text-decoration: underline !important;
}
.nav .has-sub { position: relative; }
.nav .sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 30;
  padding: 8px 0;
}
.nav .has-sub:hover .sub,
.nav .has-sub:focus-within .sub { display: block; }
.nav .sub a {
  color: var(--ink-dark) !important;
  text-align: left;
  padding: 9px 16px;
  white-space: nowrap;
}
.nav .sub a:hover { background: var(--teal-pale); }

.donate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 120px;
  padding: 0 18px;
  background: #fff !important;
  color: #555 !important;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-decoration: none !important;
  border: 0;
  transition: color .2s ease;
}
.donate-btn:hover { color: #808080 !important; }

.menu-toggle {
  display: none;
  background: #fff;
  border: 0;
  padding: 8px 12px;
  font: inherit;
  cursor: pointer;
  color: var(--teal-deep);
}

/* ========== HOME ========== */
.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .veil {
  position: absolute;
  inset: 0;
  background: rgba(34, 62, 54, 0.35);
}
.hero .inner {
  position: relative;
  z-index: 1;
  padding: 64px 20px;
  max-width: 760px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.08em;
  margin-bottom: 14px;
}
.hero p {
  color: rgba(255,255,255,.95);
  font-size: 17px;
  margin: 0 auto;
  max-width: 540px;
}

.about {
  padding: 72px 20px 56px;
  text-align: center;
  background: #fff;
}
.about h2 {
  font-size: 28px;
  letter-spacing: -0.1em;
  margin-bottom: 18px;
}
.about .lede {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}

.merch-banner {
  text-align: center;
  padding: 28px 20px;
  background: var(--teal-pale);
  color: var(--ink-dark);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.35;
}
.merch-banner a {
  color: var(--teal-deep);
  font-weight: 600;
}

.upcoming {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.upcoming > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.upcoming .veil {
  position: absolute;
  inset: 0;
  background: rgba(67, 124, 109, 0.55);
}
.upcoming .inner {
  position: relative;
  z-index: 1;
  padding: 48px 20px;
  max-width: 620px;
}
.upcoming h2 {
  color: #fff;
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -0.1em;
  margin-bottom: 12px;
}
.upcoming p {
  color: rgba(255,255,255,.95);
  margin-bottom: 22px;
}
.btn {
  display: inline-block;
  padding: 12px 22px;
  font: inherit;
  font-size: 14px;
  letter-spacing: 0.06em;
  border: 0;
  cursor: pointer;
  text-decoration: none !important;
}
.btn-light {
  background: #fff;
  color: var(--teal-deep);
}
.btn-light:hover { background: var(--teal-pale); }
.btn-teal {
  background: var(--teal);
  color: #fff;
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.85);
  margin-left: 8px;
}

.more-q {
  text-align: center;
  padding: 36px 20px;
  background: #fff;
}
.more-q h3 {
  font-size: 24px;
  letter-spacing: -0.1em;
  margin-bottom: 10px;
}

.mission-strip {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-decoration: none !important;
}
.mission-strip > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.mission-strip:hover > img { transform: scale(1.03); }
.mission-strip .title {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 10px 22px;
  font-size: clamp(28px, 4vw, 35px);
  font-weight: 500;
  letter-spacing: -0.08em;
  color: #fff;
  background: rgba(161, 209, 196, 0.92);
  text-align: center;
}

.faq-bar {
  text-align: center;
  padding: 26px 16px;
  background: #f5f5f5;
  color: var(--ink);
}
.faq-bar a { font-weight: 600; }

.news {
  padding: 56px 20px 72px;
  background: #fff;
}
.news > h2 {
  text-align: center;
  font-size: 32px;
  letter-spacing: -0.1em;
  text-transform: lowercase;
  margin-bottom: 36px;
}
.news-grid {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  text-decoration: none !important;
  color: inherit;
}
.news-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.news-card h3 {
  margin: 14px 0 8px;
  font-size: 18px;
  letter-spacing: -0.05em;
}
.news-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ========== INNER PAGES ========== */
.page-hero {
  position: relative;
  min-height: 200px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero .veil {
  position: absolute;
  inset: 0;
  background: rgba(67, 124, 109, 0.62);
}
.page-hero h1 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.1em;
  margin: 0;
  padding: 48px 16px;
}

.section { padding: 56px 20px; }
.section.soft { background: #f7faf9; }
.section.center { text-align: center; }
.prose { max-width: 700px; margin: 0 auto; }
.prose.left { margin: 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}
.split img { width: 100%; height: 340px; object-fit: cover; }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(980px, calc(100% - 40px));
  margin: 28px auto 0;
}
.value {
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px;
}
.value h3 { color: var(--teal-deep); font-size: 16px; }

.form-panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
  max-width: 480px;
}
.form-panel label {
  display: block;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.form-panel input,
.form-panel select,
.form-panel textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  font: inherit;
  background: #fff;
}
.days {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 6px 0 14px;
}
.days label { margin: 0; font-weight: 400; display: flex; gap: 6px; align-items: center; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 12px; }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  max-width: 720px;
  margin: 0 auto;
}
.faq summary { cursor: pointer; font-weight: 600; color: var(--ink-dark); }
.faq p { margin: 10px 0 0; color: var(--muted); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
}
.gallery-grid img { width: 100%; height: 230px; object-fit: cover; }

.member {
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid var(--line);
  padding: 28px;
  text-align: center;
  background: #fff;
}
.member .role {
  color: var(--teal);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.legal {
  border-left: 4px solid var(--teal);
  background: var(--teal-pale);
  padding: 14px 16px;
  margin: 16px 0;
}
table.info {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
table.info td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.info td:first-child { font-weight: 600; width: 34%; color: var(--ink-dark); }

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(900px, calc(100% - 40px));
  margin: 28px auto;
}
.benefit {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
  text-align: center;
}
.benefit h3 { color: var(--teal-deep); }

/* ========== FOOTER ========== */
.site-footer {
  background: #222e2a;
  color: #ddd;
  padding: 48px 0 24px;
}
.site-footer a { color: #fff; }
.foot-grid {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}
.site-footer h3 {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.logo-foot {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
  margin-bottom: 12px;
  border: 4px solid #fff;
}
.tiny {
  width: min(980px, calc(100% - 40px));
  margin: 28px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
  color: #9aa;
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }
  .brand-title { font-size: 15px; }
  .menu-toggle { display: inline-block; }
  .nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
  }
  .nav.open { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; }
  .nav .sub { position: static; display: block; box-shadow: none; background: rgba(255,255,255,.12); }
  .nav .sub a { color: #fff !important; }
  .news-grid,
  .values,
  .gallery-grid,
  .benefits,
  .split,
  .foot-grid { grid-template-columns: 1fr; }
  .hero { min-height: 52vh; }
  .mission-strip { min-height: 280px; }
}
