:root {
  --orange: #e85d04;
  --orange-light: #ff8c42;
  --orange-deep: #c2410c;
  --orange-pale: #fff4ed;
  --grey-50: #fafafa;
  --grey-100: #f4f4f5;
  --grey-200: #e4e4e7;
  --grey-400: #a1a1aa;
  --grey-600: #52525b;
  --grey-800: #27272a;
  --grey-900: #18181b;
  --white: #ffffff;
  --text: #27272a;
  --text-muted: #71717a;
  --nav-h: 72px;
  --announce-h: 40px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  font-size: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.announcement {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--announce-h);
  background: var(--orange-deep);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 1rem;
  text-align: center;
}
.announcement a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-header {
  position: fixed;
  top: var(--announce-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--grey-900);
  flex-shrink: 0;
}
.brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.brand span {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-item {
  position: relative;
}
.nav-item > a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--grey-800);
  text-decoration: none;
  border-radius: var(--radius);
}
.nav-item > a:hover { color: var(--orange); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0.5rem);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  pointer-events: none;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0.25rem);
  pointer-events: auto;
}
.nav-dropdown a {
  display: block;
  padding: 0.55rem 0.75rem;
  font-size: 0.8125rem;
  color: var(--grey-600);
  text-decoration: none;
  border-radius: var(--radius);
}
.nav-dropdown a:hover {
  background: var(--orange-pale);
  color: var(--orange-deep);
}

.nav-flat-link {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--grey-800);
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
}
.nav-flat-link:hover { color: var(--orange); }

.btn-donate-nav {
  margin-left: 0.5rem;
  padding: 0.55rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-donate-nav:hover { background: var(--orange-deep); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--grey-800);
}

.mobile-drawer {
  display: none;
}

main { padding-top: calc(var(--announce-h) + var(--nav-h)); }

.hero {
  position: relative;
  min-height: calc(100vh - var(--announce-h) - var(--nav-h));
  min-height: min(720px, calc(100dvh - var(--announce-h) - var(--nav-h)));
  display: flex;
  align-items: flex-end;
  padding: 4rem 1.5rem 5rem;
  background:
    linear-gradient(180deg, rgba(24,24,27,0.35) 0%, rgba(24,24,27,0.75) 100%),
    url("/images/a8c2df1b-13cf-4e82-b05b-d0048b2dc589.JPG") center/cover no-repeat;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 1.08;
  color: var(--white);
  max-width: 18ch;
  margin-bottom: 1.5rem;
}
.hero h1 .line { display: block; }
.hero h1 em {
  font-style: normal;
  color: var(--orange-light);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.btn-primary {
  padding: 0.9rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-1px); }
.btn-outline-light {
  padding: 0.9rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }

.section {
  padding: 4.5rem 1.5rem;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-kicker {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--grey-900);
  margin-bottom: 1rem;
  max-width: 28ch;
}
.section-lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 56ch;
  margin-bottom: 2rem;
}

.band-grey { background: var(--grey-100); }
.band-dark {
  background: var(--grey-900);
  color: var(--grey-100);
}
.band-dark .section-title { color: var(--white); }
.band-dark .section-lead { color: var(--grey-400); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}
.mission-copy p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 1rem;
}
.mission-copy p strong { color: var(--text); }
.mission-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.mission-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-200);
}
.stat strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  color: var(--orange);
  line-height: 1.1;
}
.stat span { font-size: 0.875rem; color: var(--text-muted); }

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.band-grey .pillar { background: var(--white); }
.pillar:hover {
  border-color: var(--orange-light);
  box-shadow: var(--shadow);
}
.pillar h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.pillar p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.pillar a {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
}
.pillar a:hover { text-decoration: underline; }

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.event-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.event-card .thumb {
  height: 160px;
  background: var(--grey-200) center/cover no-repeat;
}
.event-card .body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.event-card .date {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-bottom: 0.35rem;
}
.event-card h3 { font-size: 1.0625rem; margin-bottom: 0.35rem; }
.event-card .meta { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1rem; }
.event-card .btn-link {
  margin-top: auto;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--grey-900);
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  align-self: flex-start;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.story-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  min-height: 220px;
}
.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.story-card:hover img { transform: scale(1.04); }
.story-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(24,24,27,0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.story-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}

.news-list {
  margin-top: 2rem;
  border-top: 1px solid var(--grey-200);
}
.news-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--grey-200);
  text-decoration: none;
  color: inherit;
}
.news-item:hover h4 { color: var(--orange); }
.news-item h4 { font-size: 1rem; font-weight: 600; transition: color 0.2s; }
.news-item time { font-size: 0.8125rem; color: var(--text-muted); flex-shrink: 0; }

.volunteer-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.form-group { margin-bottom: 1.15rem; }
.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--orange-light);
  outline-offset: 0;
  border-color: var(--orange);
}
.form-submit {
  padding: 0.85rem 2rem;
  font-weight: 700;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
}
.form-submit:hover { background: var(--orange-deep); }

.footer-cta {
  text-align: center;
  padding: 4rem 1.5rem;
}
.footer-cta h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.25rem;
}

.site-footer {
  background: var(--grey-900);
  color: var(--grey-400);
  padding: 3rem 1.5rem 2rem;
  font-size: 0.875rem;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand img { height: 48px; margin-bottom: 1rem; opacity: 0.95; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col a {
  display: block;
  padding: 0.35rem 0;
  color: var(--grey-400);
  text-decoration: none;
}
.footer-col a:hover { color: var(--orange-light); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-800);
  text-align: center;
  font-size: 0.8125rem;
}

.sticky-donate {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 999;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
.sticky-donate.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 1024px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-primary { display: none; }
  .menu-toggle { display: flex; }
  .mobile-drawer {
    display: block;
    position: fixed;
    top: calc(var(--announce-h) + var(--nav-h));
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 1.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .mobile-drawer.open { transform: translateX(0); }
  .mobile-drawer .block { margin-bottom: 1.5rem; }
  .mobile-drawer .block h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
  }
  .mobile-drawer a {
    display: block;
    padding: 0.6rem 0;
    color: var(--grey-900);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--grey-100);
  }
  .mobile-drawer .btn-donate-nav {
    margin: 1rem 0 0;
    width: 100%;
    text-align: center;
    padding: 0.85rem;
  }
  .mission-grid,
  .volunteer-section { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .pillars { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-bottom: 3.5rem; }
}

.page-hero {
  padding: 3rem 1.5rem 4rem;
  background: linear-gradient(135deg, var(--grey-900) 0%, #2d2d33 100%);
  color: var(--white);
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  max-width: 22ch;
}
.page-hero .page-lead {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--grey-400);
  max-width: 52ch;
}
.page-hero .scroll-hint {
  display: inline-block;
  margin-top: 2.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-light);
  text-decoration: none;
}
.page-hero .scroll-hint:hover { text-decoration: underline; }

.prose-block p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 65ch;
}
.prose-block p strong { color: var(--text); }
.prose-block h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.65rem;
  margin: 2.5rem 0 1rem;
  color: var(--grey-900);
}
.prose-block h2:first-child { margin-top: 0; }

.join-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.join-tabs button {
  padding: 0.5rem 1.1rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}
.join-tabs button[aria-selected="true"] {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.join-panel[hidden] { display: none; }

.contact-card {
  background: var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--grey-200);
}
.contact-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.contact-card p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.9375rem; }
.contact-card a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}
.contact-card a:hover { text-decoration: underline; }

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.footer-social a {
  font-weight: 600;
  color: var(--grey-400);
  text-decoration: none;
}
.footer-social a:hover { color: var(--orange-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
