@charset "UTF-8";
/* ========================================================================= */
/* !FONTS (@fontface generated with FontSpring Syntax formatting */
/* ========================================================================= */
/* ========================================================================= */
/* !SASS VARIABLES & MIXINS */
/* ========================================================================= */
/*
    // Use Case: $b (second) variable is optional and defaults to 'max-width'

    @include break(1100){
        h1{
            background: red;
        }
    }

    // Output
    @media screen and (max-width: 1100px) {
        h1 { background: red; }
    }

    // Also, if you want to specify the 2nd variable for break type (i.e., min-height)

    @include break(1100, 'min-height'){
        h1 {
            background:red;
        }
    }

    // Output
    @media screen and (min-height: 1100px) {
        h1 { background: red; }
    }
*/
/*
    // inline SVGs
    // usage: background-image: inline-svg('<svg><!-- your svg code --></svg>');
*/
/* ========================================================================= */
/* !STYLES */
/* ========================================================================= */
:root {
  --color-blue: #004B8C;
  --color-blue-light: #c2e3ff;
  --color-green: #058860;
  --color-forest: #2F5D50;
  --color-ink: #181512;
  --color-ink-2: #1f1b18;
  --color-navy: #0f172a;
  --color-body: #6b7280;
  --color-border: #e5e5e5;
  --color-border-input: #bbb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

/* != DEFAULT STYLES ===== */
* {
  box-sizing: border-box;
}

body::selection {
  background-color: #e5e5e5;
  color: #171717;
}

html, body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #ffffff;
  margin: 0;
  scroll-behavior: smooth;
  color: var(--color-body);
  line-height: 1.6;
  font-weight: 400;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}

[id] {
  scroll-margin-top: 100px;
}

.content-main ul:not([class*=gf]) {
  padding-left: 20px;
  margin: 0 0 20px 0;
}
.content-main ul:not([class*=gf]) > li {
  list-style-type: none;
  position: relative;
  padding-left: 20px;
}
.content-main ul:not([class*=gf]) > li:before {
  content: "•";
  position: absolute;
  left: 0;
}
.content-main ol {
  counter-reset: li;
  padding-left: 20px;
  margin: 0 0 20px 0;
}
.content-main ol > li {
  list-style-type: none;
  position: relative;
  padding-left: 20px;
}
.content-main ol > li:before {
  content: counter(li) ". ";
  counter-increment: li;
  position: absolute;
  right: calc(100% - 15px);
}

::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}

/* != ACCESSIBILITY STYLES ===== */
.sr-only, .slick-sr-only {
  /* Styles below are so elements are shown to screen readers only */
  border: none !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 0.01em !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 0.01em !important;
}

*:focus {
  outline: 3px solid rgba(0, 0, 0, 0.5);
  outline-offset: 3px;
}

@supports selector(:focus-visible) {
  *:focus {
    outline: none;
  }
  *:focus-visible {
    outline: 3px solid rgba(0, 0, 0, 0.5);
    outline-offset: 3px;
  }
}
#skipnav {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  height: 30px;
  width: 150px;
  top: 0;
  left: 50%;
  margin-left: -75px;
  position: fixed;
  transform: translateY(-100%);
  transition: transform 0.3s;
  z-index: 9999999999;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
#skipnav:focus {
  transform: translateY(0%);
}

/* != SELECTION STYLES (Leaving these blank will show no indication of text selection) ===== */
/*
    ::selection         {
        background: #aaa;
        color: #fff;
    }
    ::-moz-selection    {
        background: #aaa;
        color: #fff;
    }
    ::-webkit-selection {
        background: #aaa;
        color: #fff;
    }
*/
/* != LAYOUT STYLES ===== */
.wrap {
  max-width: 1180px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* != PLACEHOLDER ATTRIBUTE STYLES = input or textarea - placeholder="whatever" ===== */
/*
    ::-webkit-input-placeholder {
        color: #aaa;
    }

    ::-moz-placeholder {
        color: #aaa;
    }
*/
/* ---------- Reset & base ---------- */
h1, h2, h3, blockquote, p {
  margin: 0;
}

h2, .title2 {
  margin-bottom: 40px;
}

p {
  margin: 0 0 20px 0;
}
p:last-child {
  margin: 0;
}

a {
  color: var(--color-green);
}
.content-copy h2, .content-copy .title2 {
  margin: 40px 0 20px;
  font-size: 2.5rem;
  color: var(--color-ink);
}
.content-copy h3, .content-copy .title3 {
  margin: 40px 0 15px;
  font-size: 1.5rem;
  color: var(--color-ink);
}
img {
  display: block;
  max-width: 100%;
}

/* Prevents FOUC and creates a soft fade-in on initial load */
.js body {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.js body.is-loaded {
  opacity: 1;
}

/* ---------- Shared helpers ---------- */
.hidden {
  display: none;
}

.block {
  display: block;
}

.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

@media (min-width: 640px) {
  .container {
    padding: 5rem 2rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 6rem 3.5rem;
  }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

@media (min-width: 640px) {
  .eyebrow {
    font-size: 0.6875rem;
  }
}
.section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-bg-gradient {
  position: absolute;
  inset: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  height: 3.5rem;
  padding: 0 2rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  white-space: nowrap;
  color: #ffffff;
  transition-property: color, background-color, border-color;
  transition-duration: 300ms;
}

@media (min-width: 640px) {
  .btn {
    height: 3rem;
  }
}
.btn--green {
  background-color: var(--color-green);
  border-color: var(--color-green);
}

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

.btn--blue {
  background-color: var(--color-blue);
  border-color: var(--color-blue);
}

.btn--blue:hover {
  background-color: var(--color-green);
  border-color: var(--color-green);
}

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

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

.btn--shadow-sm {
  box-shadow: var(--shadow-sm);
}

.btn--shadow-md {
  box-shadow: var(--shadow-md);
}

.btn--transition-all {
  transition-property: all;
}

.btn--gap-sm {
  gap: 0.5rem;
  padding: 0 1.5rem;
}

.btn--top-gap {
  margin-top: 2rem;
}

.btn-nav-donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 1.5rem;
  border-radius: 9999px;
  border: 1px solid var(--color-blue);
  background-color: var(--color-blue);
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  white-space: nowrap;
  transition: all 300ms;
  font-weight: 800;
}

.btn-nav-donate:hover {
  background-color: var(--color-green);
  border-color: var(--color-green);
}

.btn-mobile-donate {
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 0 1.25rem;
  border-radius: 9999px;
  border: 1px solid var(--color-blue);
  background-color: var(--color-blue);
  color: #ffffff;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.22em;
  transition: all 300ms;
}

.btn-mobile-donate:hover {
  background-color: var(--color-green);
  border-color: var(--color-green);
}

/* =========================================================
   Header & Navigation
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem;
}

@media (min-width: 640px) {
  .site-header {
    padding: 1rem 1.25rem;
  }
}
.header-inner {
  max-width: 1380px;
  margin: 0 auto;
}

.nav-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 0.375rem;
  border-radius: 9999px;
  border: 1px solid rgba(229, 229, 229, 0.8);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 10px 30px rgba(25, 20, 16, 0.06);
  transition: box-shadow 300ms, padding 300ms;
  gap: 20px;
}

@media (min-width: 640px) {
  .nav-bar {
    padding: 0 10px;
  }
}
@media (min-width: 769px) {
  .nav-bar {
    height: 84px;
    padding: 0 15px;
  }
}
.nav-bar--scrolled {
  box-shadow: 0 15px 40px rgba(25, 20, 16, 0.08);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.nav-bar-highlight {
  pointer-events: none;
  position: absolute;
  left: 2rem;
  right: 2rem;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.brand {
  display: flex;
  z-index: 20;
  min-width: 0;
  flex: 0 1 140px;
  padding-left: 10px;
}

@media (min-width: 769px) {
  .brand {
    flex: 0 1 180px;
  }
}
.nav-links {
  display: none;
  gap: 20px;
  align-items: center;
  margin-left: auto;
}

@media (min-width: 769px) {
  .nav-links {
    display: flex;
  }
}
.nav-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-blue);
  font-weight: 800;
  white-space: nowrap;
  transition: 0.2s;
  position: relative;
  text-decoration: none;
}
.nav-link:after {
  content: "";
  height: 2px;
  position: absolute;
  left: 50%;
  top: calc(100% + 5px);
  background: var(--color-green);
  width: 0;
  transition: 0.2s;
}
.nav-link:hover {
  color: var(--color-green);
}
.nav-link:hover:after {
  width: 100%;
  left: 0;
}

.nav-actions {
  display: none;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 20;
}

@media (min-width: 769px) {
  .nav-actions {
    display: flex;
  }
}
.mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 9999px;
  border: 1px solid var(--color-blue);
  background: transparent;
  position: relative;
  z-index: 20;
  cursor: pointer;
  transition: background-color 150ms;
}
.mobile-toggle span, .mobile-toggle span:before, .mobile-toggle span:after {
  cursor: pointer;
  border-radius: 5px;
  width: 20px;
  height: 2px;
  background: var(--color-blue);
  position: absolute;
  display: block;
  content: "";
}
.mobile-toggle span:before {
  top: -6px;
}
.mobile-toggle span:after {
  bottom: -6px;
}
.mobile-toggle,
.mobile-toggle span:before,
.mobile-toggle span:after {
  transition: all 0.2s ease-in-out;
}
.mobile-toggle.active {
  background: var(--color-blue);
}
.mobile-toggle.active span {
  background-color: transparent;
}
.mobile-toggle.active span:before {
  top: 0;
  transform: rotate(45deg);
  background: #fff;
}
.mobile-toggle.active span:after {
  transform: translateY(-8px) rotate(-45deg);
  top: 8px;
  background: #fff;
}

@media (min-width: 769px) {
  .mobile-toggle {
    display: none;
  }
}
.mobile-menu {
  margin-top: 0.75rem;
  border-radius: 32px;
  border: 1px solid rgba(229, 229, 229, 0.8);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 20px 50px rgba(25, 20, 16, 0.1);
  padding: 1rem;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}
.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  padding: 0.75rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-blue);
  transition: background-color 150ms;
}

.mobile-nav-link:hover {
  background-color: var(--color-blue);
  color: #fff;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-blue);
}

.hero-grid {
  position: relative;
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}
.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 1.5rem 2.5rem;
  padding-top: 9rem;
  color: var(--color-blue-light);
}

@media (min-width: 640px) {
  .hero-content {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 10rem;
  }
}
@media (min-width: 1024px) {
  .hero-content {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
    padding-top: 11rem;
    padding-bottom: 3rem;
    border-bottom: 0;
  }
}
.interior-head {
  margin-top: 6rem;
}

@media (min-width: 640px) {
  .interior-head {
    margin-top: 7rem;
  }
}
@media (min-width: 1024px) {
  .interior-head {
    margin-top: 8rem;
  }
}
.hero-label {
  font-weight: 700;
  margin-bottom: 2rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.14em;
}

.hero-heading-wrap {
  max-width: 820px;
}

.hero-headline {
  color: #fff;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.05em;
  line-height: 1;
  font-size: 2.6rem;
  font-weight: 800;
}
.hero-headline span {
  display: block;
}

@media (min-width: 640px) {
  .hero-headline {
    font-size: 3.2rem;
  }
}
@media (min-width: 768px) {
  .hero-headline {
    font-size: 3.7rem;
  }
}
@media (min-width: 1024px) {
  .hero-headline {
    font-size: 4.2rem;
  }
}
@media (min-width: 1280px) {
  .hero-headline {
    font-size: 4.6rem;
  }
}
@media (min-width: 500px) {
  .hero-headline span {
    display: inline;
  }
}
@media (min-width: 1024px) {
  .hero-headline span {
    display: block;
  }
}
.hero-copy {
  margin-top: 20px;
  max-width: 34rem;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .hero-copy {
    font-size: 1.25rem;
  }
}
.hero-btn-group {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  position: relative;
  z-index: 30;
}

@media (min-width: 640px) {
  .hero-btn-group {
    flex-direction: row;
    align-items: center;
  }
}
.icon-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.hero-meta {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .hero-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .hero-meta {
    margin-top: 4rem;
  }
}
.stat-card {
  box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
  padding: 1.25rem;
  background-color: #fff;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 0.875rem;
  line-height: 1.375;
  color: var(--color-blue);
  font-weight: 600;
}

.hero-img-wrap {
  position: relative;
  min-height: 56vh;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-img-wrap {
    min-height: 100%;
    margin-right: min(0px, (1380px - 100vw) / 2);
  }
}
.hero-image-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  --tw-grayscale: grayscale(18%);
  --tw-contrast: contrast(1.03);
  --tw-brightness: brightness(0.93);
  filter: var(--tw-grayscale) var(--tw-contrast) var(--tw-brightness);
  transition: transform 700ms ease-out, filter 700ms ease-out;
}

.hero-img-wrap:hover .hero-image {
  transform: scale(1.03);
  --tw-grayscale: grayscale(8%);
  --tw-brightness: brightness(0.97);
}

.hero-plaque {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
}

@media (min-width: 640px) {
  .hero-plaque {
    left: 1.5rem;
    right: auto;
    bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-plaque {
    left: 2rem;
    bottom: 2rem;
    max-width: 360px;
  }
}
.hero-vol {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}

@media (min-width: 640px) {
  .hero-vol {
    top: 1.5rem;
    right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-vol {
    top: 2rem;
    right: 2rem;
  }
}
.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 800;
}

.note {
  font-size: 0.875rem;
  line-height: 1.8;
  text-wrap: pretty;
}

.bg-gradient {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.05) 100%);
}

/* =========================================================
   content
   ========================================================= */
.content {
  position: relative;
  border-bottom: 1px solid var(--color-border);
  background-color: #ffffff;
}

.content-grid {
  position: relative;
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr 0.34fr;
  }
  .content-grid.interior {
    grid-template-columns: 1fr 0.4fr;
  }
}
.content-rail {
  border-bottom: 1px solid var(--color-border);
  padding: 3rem 1.5rem;
}
.interior .content-rail {
  padding: 0 1.5rem 3rem 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .content-rail {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .content-rail {
    border-bottom: 0;
    border-left: 1px solid var(--color-border);
    padding: 6rem 2.5rem;
    order: 2;
  }
  .interior .content-rail {
    padding: 0 2.5rem 6rem 2.5rem;
    margin-top: 6rem;
  }
}
.content-rail-image {
  margin-bottom: 30px;
}

.content-rail-sticky {
  position: static;
}

@media (min-width: 1024px) {
  .content-rail-sticky {
    position: sticky;
    top: 8rem;
  }
}
.content-main {
  padding: 3.5rem 1.5rem;
}

@media (min-width: 640px) {
  .content-main {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 4rem;
  }
}
@media (min-width: 1024px) {
  .content-main {
    padding: 5rem 3.5rem;
  }
}
.content-main-inner {
  max-width: 980px;
}

.content-body {
  margin-top: 3rem;
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
.content-body.full {
  grid-template-columns: 1fr;
}
.content-body.full .content-copy {
  max-width: 800px;
}

@media (min-width: 768px) {
  .content-body {
    grid-template-columns: 1fr 0.9fr;
  }
}
@media (min-width: 1024px) {
  .content-body {
    margin-top: 3rem;
    gap: 3.5rem;
  }
}
@media (min-width: 640px) {
  .content-copy p {
    font-size: 1rem;
  }
}
.content-image-block {
  position: relative;
}

.content-image-frame {
  position: relative;
  overflow: hidden;
  background-color: #f5f5f5;
}

.content-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease-out;
}

.content-image-block:hover .content-image {
  transform: scale(1.025);
}

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

/* =========================================================
   Videos
   ========================================================= */
.videos {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border);
}

.videos-bg-gradient {
  background-image: radial-gradient(circle at top left, rgba(47, 93, 80, 0.05), transparent 24%), radial-gradient(circle at bottom right, rgba(24, 21, 18, 0.03), transparent 22%);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 640px) {
  .videos-grid {
    gap: 1.5rem;
  }
}
@media (min-width: 768px) {
  .videos-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .videos-grid {
    gap: 2rem;
  }
}
.video-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #f5f5f5;
  aspect-ratio: 2/3;
}

.video-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease-out;
}

.video-item:hover .video-image {
  transform: scale(1.05);
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: rgba(5, 136, 96, 0.9);
  transform: translate(-50%, -50%);
  transition: background-color 200ms ease-out, transform 200ms ease-out;
}

.video-play-icon svg {
  width: 3.5rem;
  height: 3.5rem;
  margin-left: 2px;
  fill: #fff;
}

.video-item:hover .video-play-icon {
  background-color: rgba(0, 75, 140, 0.9);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-item:hover .video-play-icon svg {
  fill: #ffffff;
}

.video-title {
  display: block;
  margin-top: 0.75rem;
  font-weight: 800;
  color: var(--color-ink);
  font-size: 1.25rem;
  line-height: 1.2;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.video-modal.hidden {
  display: none;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
}

.video-modal-content {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: 960px;
}

.video-modal-content video {
  width: 100%;
  max-height: 80vh;
}

.video-modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  border: 0;
  background: none;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

/* =========================================================
   buckets
   ========================================================= */
.buckets {
  position: relative;
  border-bottom: 1px solid var(--color-border);
  background-color: #ffffff;
  overflow: hidden;
}
.buckets .btn {
  margin-top: 1rem;
}

.buckets-bg-gradient {
  background-image: radial-gradient(circle at top left, rgba(47, 93, 80, 0.05), transparent 24%), radial-gradient(circle at bottom right, rgba(24, 21, 18, 0.03), transparent 22%);
}

.buckets-intro {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .buckets-intro {
    grid-template-columns: 1fr 0.34fr;
    gap: 4rem;
    margin-bottom: 4rem;
  }
}
.buckets-intro-left {
  order: 1;
}

@media (min-width: 1024px) {
  .buckets-intro-left {
    order: 2;
  }
}
.section-title {
  font-family: "Manrope", sans-serif;
  color: var(--color-ink);
  letter-spacing: -0.04em;
  line-height: 0.94;
  font-size: 2.2rem;
  max-width: 48rem;
  text-wrap: pretty;
}

@media (min-width: 500px) {
  .section-title {
    font-size: 3rem;
  }
}
@media (min-width: 1280px) {
  .section-title {
    font-size: 3.5rem;
  }
}
.section-title .block {
  font-weight: 700;
  letter-spacing: -0.025em;
  font-family: "Manrope", sans-serif;
  max-width: 48rem;
}

.buckets-lead {
  margin-top: 1.5rem;
  max-width: 48rem;
}

@media (min-width: 640px) {
  .buckets-lead {
    font-size: 1.25rem;
  }
}
.buckets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .buckets-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .buckets-grid {
    gap: 2.5rem;
  }
}
.bucket-card-inner {
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-border);
  padding-bottom: 1.5rem;
}

.bucket-card-title {
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
  line-height: 1.2;
  color: var(--color-ink);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  transition: color 300ms;
}

.bucket-card-text {
  font-size: 0.875rem;
  line-height: 1.7;
}

/* =========================================================
   Support (Volunteer / Donate cards)
   ========================================================= */
.support {
  position: relative;
  overflow: hidden;
  background-color: var(--color-blue);
  border-bottom: 1px solid var(--color-border);
}

.support-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }
}
.support-card {
  background-color: #fff;
  border-radius: 5px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  transition: background-color 500ms;
}

@media (min-width: 640px) {
  .support-card {
    padding: 3rem;
  }
}
@media (min-width: 1024px) {
  .support-card {
    padding: 4rem;
  }
}
.support-card-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--color-ink);
  line-height: 1.05;
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .support-card-title {
    font-size: 2.5rem;
  }
}
.support-card-text {
  max-width: 28rem;
  text-wrap: pretty;
}

@media (min-width: 640px) {
  .support-card-text {
    font-size: 1rem;
  }
}
/* =========================================================
   News
   ========================================================= */
.news {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border);
}

.news-bg-gradient {
  background-image: radial-gradient(circle at top right, rgba(0, 75, 140, 0.03), transparent 34%), radial-gradient(circle at bottom left, rgba(5, 136, 96, 0.03), transparent 28%);
}

.news-header {
  margin-bottom: 3rem;
  max-width: 48rem;
}

@media (min-width: 1024px) {
  .news-header {
    margin-bottom: 4rem;
  }
}
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
  }
}
.news-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid var(--color-border);
  background-color: #fafafa;
  overflow: hidden;
  height: 100%;
  border-radius: 5px;
  transition: background-color 500ms;
}

.news-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

@media (min-width: 640px) {
  .news-card-body {
    padding: 2rem;
  }
}
.news-date {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-body);
  margin-bottom: 1rem;
}

.news-card-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--color-ink);
  margin-bottom: 1rem;
  transition: color 150ms;
}

.news-excerpt {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  color: var(--color-body);
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.news-readmore-wrap {
  margin-top: auto;
}

.news-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--color-green);
  transition: color 150ms;
}

.news-card:hover .news-readmore {
  color: var(--color-blue);
}

.news-readmore svg {
  height: 0.875rem;
  width: 0.875rem;
}

/* =========================================================
   Events
   ========================================================= */
.event {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid var(--color-border);
  background-color: #fafafa;
  overflow: hidden;
  height: 100%;
  border-radius: 5px;
  margin-bottom: 20px;
}
.event:last-child {
  margin: 0;
}

.event-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

@media (min-width: 640px) {
  .event {
    padding: 2rem;
  }
}
.event-date {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-blue);
  margin-bottom: 1rem;
}

.event-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--color-ink);
  margin-bottom: 1rem;
  transition: color 150ms;
}

.event-venue {
  font-size: 0.875rem;
  overflow: hidden;
  color: var(--color-body);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
}

.event-details {
  font-size: 0.875rem;
  overflow: hidden;
  color: var(--color-body);
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

/* =========================================================
   Gallery
   ========================================================= */
.gallery {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border);
}

.gallery-bg-gradient {
  background-image: radial-gradient(circle at top left, rgba(47, 93, 80, 0.05), transparent 24%), radial-gradient(circle at bottom right, rgba(24, 21, 18, 0.03), transparent 22%);
}

.gallery-header {
  margin-bottom: 3rem;
  max-width: 48rem;
}

@media (min-width: 1024px) {
  .gallery-header {
    margin-bottom: 4rem;
  }
}
.gallery-grid {
  column-count: 2;
  column-gap: 10px;
}

@media (min-width: 750px) {
  .gallery-grid {
    column-count: 3;
  }
}
/* @media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .gallery-grid { gap: 2rem; }
}
 */
.gallery-item {
  position: relative;
  overflow: hidden;
  background-color: #f5f5f5;
  margin: 0 0 10px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease-out;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

/* =========================================================
   Testimonial
   ========================================================= */
.testimonial {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  background-color: #eee;
}

.testimonial-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 2.5rem;
  }
}
.testimonial-quote-card {
  border: 1px solid var(--color-border);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 640px) {
  .testimonial-quote-card {
    padding: 2rem;
  }
}
@media (min-width: 1024px) {
  .testimonial-quote-card {
    padding: 2.5rem;
  }
}
.testimonial-quote {
  color: var(--color-ink-2);
  line-height: 1.2;
  font-size: 1.875rem;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  font-style: normal;
  text-align: center;
  text-wrap: balance;
  padding: 50px 20px;
}

@media (min-width: 640px) {
  .testimonial-quote {
    padding: 70px 30px;
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .testimonial-quote {
    font-size: 2.875rem;
  }
}
.testimonial-image-frame {
  position: relative;
  overflow: hidden;
  background-color: #f5f5f5;
  min-height: 320px;
}

@media (min-width: 640px) {
  .testimonial-image-frame {
    min-height: 360px;
  }
}
@media (min-width: 1024px) {
  .testimonial-image-frame {
    min-height: 420px;
  }
}
.testimonial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease-out;
}

.testimonial-image-frame:hover .testimonial-image {
  transform: scale(1.03);
}

.testimonial-caption-spot {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
}

@media (min-width: 640px) {
  .testimonial-caption-spot {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
  }
}
/* =========================================================
   Closing CTA & Footer
   ========================================================= */
.cta-footer {
  position: relative;
  overflow: hidden;
}

.cta-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .cta-grid {
    grid-template-columns: 1fr 0.34fr;
    gap: 4rem;
  }
}
.cta-intro {
  order: 1;
}

@media (min-width: 1024px) {
  .cta-intro {
    order: 2;
  }
}
.cta-text {
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .cta-text {
    font-size: 1.25rem;
  }
}
.cta-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  position: relative;
  z-index: 20;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
    align-items: center;
  }
}
.site-footer {
  padding-top: 2rem;
}

@media (min-width: 640px) {
  .site-footer {
    padding-top: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .site-footer {
    padding-top: 3rem;
  }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 0.8fr;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    gap: 2.5rem;
  }
}
.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  max-width: 150px;
}

.footer-desc {
  max-width: auto;
  font-size: 0.875rem;
  text-wrap: pretty;
}

.footer-text {
  grid-column: span 2;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-text {
    grid-column: auto;
  }
}
@media (min-width: 450px) {
  .footer-text {
    text-align: left;
  }
  .footer-desc {
    max-width: 18rem;
  }
}
.footer-col-title {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  display: block;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-ink);
  text-decoration: none;
  transition: color 0.2;
}

.footer-link:hover {
  color: var(--color-forest);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }
}
.footer-copyright {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-credit {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: color 150ms;
  opacity: 0.7;
}
.footer-credit a {
  text-decoration: none;
  color: inherit;
}

.footer-credit:hover {
  color: var(--color-forest);
}

.socials {
  display: flex;
  gap: 16px;
}
.socials .social {
  height: 27px;
}
.socials .social:hover svg {
  fill: #000;
  background-color: #eaeaea;
}
.socials .social svg {
  fill: #fff;
  background-color: #000;
  padding: 2px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  transition: all 0.2s;
}
.socials .social svg:hover {
  fill: #000;
}

/* != FORM STYLES ===== */
input[type=text], input[type=password], input[type=url], input[type=number], input[type=tel], input[type=email] {
  width: 100%;
  padding: 10px 15px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border: 1px solid #f00;
}

textarea {
  width: 100%;
  padding: 10px 15px;
  background-color: #fff;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  border: 1px solid #f00;
}

/* .ginput_container_checkbox {
	.gfield_checkbox {
		.gchoice {
			label {
				padding: 0 0 0 2px;
				cursor: pointer;
				position: relative;
				&:before {
					border: 1px solid #00f;
					@include size(15px);
					border-radius: 2px;
					left: -17px;
					top: 1px;
					content: '';
					position: absolute;
					opacity: 1;
				}
				&:after {
					border-left: 3px solid #f00;
					border-bottom: 3px solid #f00;
					@include size(17px, 6px);
					transform: rotate(-45deg);
					top: 5px;
					left: -14px;
					content: '';
					position: absolute;
					opacity: 0;
				}
				&:hover {
					&:after {
						opacity: 0.3;
					}
				}
			}
			input[type=checkbox] {
				visibility: hidden;
				&:checked + label:after {
					opacity: 1;
				}
			}
		}
	}
}
.ginput_container_radio {
	.gfield_radio {
		.gchoice {
			label {
				padding: 0 0 0 2px;
				cursor: pointer;
				position: relative;
				&:before {
					border: 1px solid #00f;
					@include size(15px);
					border-radius: 50%;
					left: -17px;
					top: 1px;
					content: '';
					position: absolute;
					opacity: 1;
				}
				&:after {
					@include size(5px);
					border-radius: 50%;
					left: -12px;
					top: 6px;
					content: '';
					position: absolute;
					opacity: 0;
				}
				&:hover {
					&:after {
						opacity: 0.3;
					}
				}
			}
			input[type=radio] {
				visibility: hidden;
				&:checked + label:before {
					background: #f00;
					border: 1px solid #f00;
				}
				&:checked + label:after {
					background: #fff;
					opacity: 1;
				}
			}
		}
	}
} */
input[type=submit], button {
  display: inline-block;
  cursor: pointer;
}
select {
  padding: 10px 35px 10px 15px;
  width: 100%;
  background: #fff url("data:image/svg+xml,%3Csvg width%3D%2213%22 height%3D%228%22 viewBox%3D%220 0 13 8%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath d%3D%22M.293.293c.36-.36.928-.388 1.32-.083l.094.083L6.51 5.096 11.313.293c.36-.36.928-.388 1.32-.083l.094.083c.36.36.389.928.084 1.32l-.084.094-5.51 5.51c-.36.36-.927.388-1.32.083l-.094-.083-5.51-5.51c-.39-.39-.39-1.024 0-1.414z%22 fill%3D%22%23f00%22 fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat calc(100% - 10px) 50%;
  border: 1px solid #f00;
}

.gform_validation_errors {
  background-color: #c00;
  color: #fff;
  padding: 20px;
}
.gform_validation_errors h2 {
  color: #fff;
}

/* =========================================================
   Volunteer Form
   ========================================================= */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 700px;
}

.form-grid.hidden {
  display: none;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 0;
  padding: 0;
  margin: 0;
}

.form-field--full {
  grid-column: 1/-1;
}

.form-field label:not(.form-checkbox),
.form-field legend {
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-blue);
  padding: 0;
}

.form-field input[type=text],
.form-field input[type=email],
.form-field input[type=tel],
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border-input);
  border-radius: 8px;
  background-color: #fff;
  box-shadow: none;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  color: var(--color-ink);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-blue);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-checkbox-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

@media (min-width: 500px) {
  .form-checkbox-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--color-body);
}

.form-checkbox input[type=checkbox] {
  accent-color: var(--color-blue);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-thanks {
  max-width: 700px;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background-color: #f5f5f5;
}

.form-thanks h3 {
  color: var(--color-ink);
  margin-top: 0;
  margin-bottom: 0.5rem;
}