:root {
  --cream: #fcfaf6;
  --paper: #fffdf9;
  --nav-bg: #e7efe6;
  --footer-bg: #e1ebdf;
  --ink: #231f20;
  --muted: #655f62;
  --red: #b32531;
  --green: #2f8450;
  --gold: #debb70;
  --gold-light: #f5edda;
  --line: #e8dfd6;
  --shadow: 0 20px 50px rgba(35, 31, 32, 0.08);
  --shadow-sm: 0 4px 16px rgba(35, 31, 32, 0.06);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

.bg-shape {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 10% 5%, rgba(179, 37, 49, 0.035), rgba(255, 255, 255, 0) 42%);
  z-index: -1;
}

main {
  padding-top: 0;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(35, 31, 32, 0.06);
}

.nav-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-block;
  text-decoration: none;
  color: #1f1a1b;
  font-family: "Satisfy", cursive;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.05;
  white-space: nowrap;
}

nav {
  display: inline-flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--ink);
  text-decoration: none;
  font-family: "Satisfy", cursive;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

nav a:hover {
  color: var(--red);
}

.translate-btn {
  border: 1px solid rgba(35, 31, 32, 0.2);
  border-radius: 999px;
  padding: 0.36rem 0.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #fff;
}

.translate-btn:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

/* ── Hamburger toggle ── */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  z-index: 30;
}

.nav-toggle-bar {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 300ms ease, opacity 300ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── Hero ── */

.hero-wrap {
  position: relative;
  background: url("assets/images/events/summer-4.jpg") center top / cover no-repeat fixed;
  overflow: hidden;
}

.hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(35, 31, 32, 0.88) 0%,
    rgba(35, 31, 32, 0.72) 45%,
    rgba(35, 31, 32, 0.32) 75%,
    rgba(35, 31, 32, 0.18) 100%
  );
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0 4.5rem;
}

.hero-copy {
  color: #fff;
}

.hero-copy .eyebrow {
  color: var(--gold);
}

.hero-copy h1 {
  color: #fff;
}

.hero-copy > p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 54ch;
}

.hero-badge {
  width: min(420px, 38vw);
  height: auto;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hero-stats {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-stats li {
  text-align: center;
}

.hero-stats .stat-number {
  display: block;
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}

.hero-stats .stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.2rem;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.eyebrow {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--red);
  margin: 0 0 0.7rem;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(1.75rem, 3.8vw, 2.9rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  margin-bottom: 0.7rem;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ── Buttons ── */

.btn {
  text-decoration: none;
  font-weight: 800;
  padding: 0.74rem 1rem;
  border-radius: 999px;
  transition: transform 160ms ease, box-shadow 160ms ease;
  display: inline-block;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-donate {
  background: var(--red);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(179, 37, 49, 0.35);
}

.btn-donate:hover {
  box-shadow: 0 6px 28px rgba(179, 37, 49, 0.5);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn-outline {
  border: 2px solid var(--red);
  background: transparent;
  color: var(--red);
}

.btn-outline:hover {
  background: var(--red);
  color: #fff;
}

/* ── Sections ── */

.section {
  padding: 3.5rem 0;
  border-top: 3px solid var(--line);
}

.section:first-of-type {
  border-top: none;
}

.section-cream {
  background: var(--cream);
}

.section-white {
  background: #fff;
}

.section-green {
  background: linear-gradient(170deg, rgba(240, 246, 242, 0.92), rgba(236, 243, 238, 0.78));
}

.alt {
  background: linear-gradient(170deg, rgba(240, 246, 242, 0.92), rgba(236, 243, 238, 0.78));
}

.section-head {
  margin-bottom: 1.6rem;
}

.lede {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

/* ── Cards ── */

.cards {
  display: grid;
  gap: 1rem;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--paper);
  border: 2px solid rgba(47, 132, 80, 0.35);
  border-left: 6px solid var(--green);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.card p {
  margin: 0;
}

.card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.card li {
  margin-bottom: 0.25rem;
}

/* ── Mission ── */

.mission-about {
  padding: 1.2rem 0;
}

.mission-about h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.mission-about p {
  margin: 0 0 0.5rem;
  color: var(--muted);
  max-width: 48ch;
}

.mission-about p:last-child {
  margin-bottom: 0;
}

.support-card {
  display: grid;
  gap: 0.85rem;
  background: #fff;
  border: none;
  border-top: 5px solid var(--gold);
  border-left: none;
  box-shadow: var(--shadow);
}

.camp-gallery-strip {
  margin-top: 2rem;
}

.camp-gallery-strip h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.camp-gallery-strip > p {
  color: var(--muted);
  margin: 0 0 0.8rem;
}

.support-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.support-gallery a {
  display: block;
  text-decoration: none;
  transition: transform 140ms ease;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.support-gallery a:hover {
  transform: translateY(-3px);
}

.support-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-sm);
}

.partner-logo-wrap {
  border-radius: 12px;
  padding: 0.8rem;
  background: linear-gradient(135deg, rgba(179, 37, 49, 0.9), rgba(47, 132, 80, 0.92));
}

.partner-logo-wrap img {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: block;
}

/* ── Events ── */

.event-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.event-feature-reverse .event-feature-media {
  order: 2;
}

.event-feature-media {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 360px;
}

.event-feature-content {
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-feature-content h3 {
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
  color: var(--red);
  letter-spacing: 0.5px;
}

.event-feature-content > p {
  margin: 0;
  color: var(--ink, #333);
  line-height: 1.55;
}

.event-feature-details {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0.25rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

.event-feature-details li {
  padding-left: 1.1rem;
  position: relative;
}

.event-feature-details li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.event-feature-cta-lead {
  margin-top: 1rem;
  font-weight: 700;
}

.event-feature .btn-primary {
  margin-top: 0.6rem;
  align-self: flex-start;
}

.event-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.event-list li:last-child {
  border-bottom: none;
}

.event-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 0.6rem;
  vertical-align: middle;
}

.contribution-grid {
  margin-top: 1rem;
}

.contribute-card {
  background: var(--cream);
  border: none;
  border-left: none;
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.contribute-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contribute-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.contribute-card li {
  margin-bottom: 0.3rem;
  color: var(--muted);
}

/* ── Membership ── */

.membership-cards .card {
  background: #fff;
  border: 2px solid var(--line);
  border-top: 5px solid var(--green);
  border-left: 2px solid var(--line);
  border-radius: var(--radius-md);
}

.membership-cards .flag-green {
  border-top-color: var(--green);
}

.membership-cards .flag-white {
  border-top-color: #ccc;
}

.membership-cards .flag-red {
  border-top-color: var(--red);
}

.membership-cta {
  margin-top: 1.5rem;
  text-align: center;
}

/* ── Leadership ── */

.officers {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1rem;
}

.officers li {
  background: #fff;
  border: none;
  border-bottom: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.8rem;
}

.officers li strong {
  color: var(--red);
}

/* ── Connect ── */

.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.connect-info .section-head {
  margin-bottom: 1rem;
}

.action-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.action-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  padding: 1rem;
  border-radius: var(--radius-md);
  transition: transform 160ms ease, box-shadow 160ms ease;
  font-weight: 700;
  font-size: 0.95rem;
}

.action-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.action-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.action-card--donate {
  background: rgba(179, 37, 49, 0.06);
  color: var(--red);
}

.action-card--donate .action-card-icon {
  background: var(--red);
  color: #fff;
}

.action-card--membership {
  background: rgba(47, 132, 80, 0.06);
  color: var(--green);
}

.action-card--membership .action-card-icon {
  background: var(--green);
  color: #fff;
}

.action-card--facebook {
  background: rgba(24, 119, 242, 0.06);
  color: #1877f2;
}

.action-card--facebook .action-card-icon {
  background: #1877f2;
  color: #fff;
}

.action-card--instagram {
  background: rgba(193, 53, 132, 0.07);
  color: #c13584;
}

.action-card--instagram .action-card-icon {
  background: #c13584;
  color: #fff;
  font-size: 0.95rem;
}

.action-card--email {
  background: rgba(222, 187, 112, 0.12);
  color: var(--ink);
}

.action-card--email .action-card-icon {
  background: var(--gold);
  color: var(--ink);
}

.donate-panel {
  background: var(--red);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.donate-panel h3 {
  color: #fff;
  font-size: 1.6rem;
}

.donate-panel p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 36ch;
}

.donate-panel .btn {
  background: #fff;
  color: var(--red);
  font-weight: 800;
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}

.donate-panel .btn:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.gb-widget-trigger {
  position: relative;
  display: inline-block;
}

.gb-widget-trigger .btn,
.gb-widget-trigger .action-card,
.gb-widget-trigger--floating > span {
  pointer-events: none;
}

.gb-widget-trigger .action-card {
  height: 100%;
}

.gb-widget-trigger givebutter-widget {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.001;
  overflow: hidden;
}

.gb-widget-trigger givebutter-widget > * {
  width: 100% !important;
  height: 100% !important;
}

.gb-widget-trigger--card {
  display: block;
}

.gb-widget-trigger--floating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(179, 37, 49, 0.4);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.gb-widget-trigger--floating:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(179, 37, 49, 0.55);
}

.candid-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  padding: 0.55rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(35, 31, 32, 0.12);
}

.candid-seal img {
  display: block;
  width: min(140px, 100%);
  height: auto;
}

/* ── Footer ── */

.site-footer {
  padding: 2rem 0 2.4rem;
  background: var(--footer-bg);
  border-top: 1px solid rgba(35, 31, 32, 0.08);
}

.footer-grid {
  color: var(--muted);
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: center;
  gap: 1rem;
}

.footer-grid p {
  margin: 0;
}

.footer-left {
  text-align: left;
  font-size: 0.92rem;
}

.footer-center {
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-right {
  text-align: right;
  font-size: 0.9rem;
}

/* ── Floating donate ── */

.floating-donate {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 300ms ease, transform 300ms ease;
}

.floating-donate.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-donate a,
.floating-donate .gb-widget-trigger--floating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(179, 37, 49, 0.4);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-donate a:hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(179, 37, 49, 0.55);
}

/* ── Lightbox ── */

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(20, 22, 24, 0.84);
  z-index: 1000;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  border-radius: 12px;
  border: 3px solid #fff;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.95);
  color: #1d1b1c;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
}

.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
}

.lightbox-nav.prev {
  left: 1rem;
}

.lightbox-nav.next {
  right: 1rem;
}

/* ── Reveal Animations ── */

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.delay-1 {
  transition-delay: 180ms;
}

.js .reveal.on {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-badge {
    margin: 0 auto;
    width: 260px;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-copy > p {
    margin: 0 auto;
  }

  .cards.mission-grid,
  .cards.three,
  .cards.two,
  .cards.four {
    grid-template-columns: 1fr;
  }

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

  .action-cards {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.45rem;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .nav-row {
    flex-wrap: wrap;
    padding: 0.7rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 0.2rem;
    border-top: 1px solid var(--line);
    margin-top: 0.5rem;
  }

  nav.open {
    display: flex;
  }

  nav a {
    font-size: 1.1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(35, 31, 32, 0.06);
  }

  nav a:last-child {
    border-bottom: none;
  }

  nav .translate-btn {
    margin-top: 0.4rem;
    align-self: flex-start;
    margin-bottom: 0.3rem;
  }
}

@media (max-width: 680px) {

  .hero {
    padding: 2.5rem 0 3rem;
  }

  .brand {
    white-space: normal;
  }

  .hero-stats {
    gap: 1rem;
  }

  .action-cards {
    grid-template-columns: 1fr;
  }

  .support-gallery img {
    height: 140px;
  }

  .event-feature {
    grid-template-columns: 1fr;
  }

  .event-feature-reverse .event-feature-media {
    order: 0;
  }

  .event-feature-media {
    min-height: 240px;
  }

  .event-feature-content {
    padding: 1.5rem 1.25rem;
  }

  .event-feature-content h3 {
    font-size: 1.4rem;
  }
}
