@charset "UTF-8";
:root {
  --color-primary: rgb(22, 53, 77);
  --color-primary-alt: #7a3d14;
  --color-accent: #c97b2e;
  --color-bg: #faf7f2;
  --color-surface: #ffffff;
  --color-text: #1a1a1a;
  --color-text-muted: #555555;
  --color-button-bg: rgb(187,78,60);
  --color-hero-heading: #D9CEAE;
  --color-tan: rgb(217,203,172);
  --color-yellow: #d3ac2a;
  --color-gray: #4B4B4B;
  --color-red: rgb(187,78,60);
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-size-base: 1rem;
  --line-height-base: 1.6;
  --font-manofa: "manofa", sans-serif;
  --font-century-gothic: "century-gothic", sans-serif;
  --font-mea-culpa: "Mea Culpa", cursive;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-xxl: 8rem;
  --space-xxxl: 12rem;
  --max-width: 75rem;
  --radius: 0.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-primary);
}

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

a {
  color: var(--color-accent);
}

a:hover {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.content-container {
  width: 100%;
  padding: var(--space-xl) var(--space-xxl);
}
.content-container.split {
  display: flex;
}
@media (max-width: 768px) {
  .content-container.split {
    flex-direction: column;
  }
}
.content-container.split > div {
  flex: 1;
}
@media (max-width: 768px) {
  .content-container {
    padding: 1rem 1.5rem;
  }
}

.sm-content-container {
  width: 100%;
  padding: var(--space-xl) 16rem;
}
@media (max-width: 768px) {
  .sm-content-container {
    padding: 1em;
  }
}
.sm-content-container.split {
  display: flex;
}
.sm-content-container.split > div {
  flex: 1;
}

.mea-culpa {
  font-family: var(--font-mea-culpa);
}

.aL {
  text-align: left;
}

aC {
  text-align: center;
}

.aR {
  text-align: right;
}

.mb-1 {
  margin-bottom: var(--space-md);
}

.mb-2 {
  margin-bottom: var(--space-lg);
}

.mt-1 {
  margin-top: var(--space-md);
}

.mt-2 {
  margin-top: var(--space-lg);
}

.pr {
  padding-right: var(--space-lg);
}

.pr-10 {
  padding-right: 10rem;
}

.flex {
  display: flex;
}
@media (max-width: 768px) {
  .flex {
    flex-direction: column;
  }
}
.flex.gap-1 {
  gap: 1rem;
}
.flex.gap-2 {
  gap: 2rem;
}
.flex.justify-space-between {
  justify-content: space-between;
}
.flex.justify-center {
  justify-content: center;
}
.flex.align-items-center {
  align-items: center;
}
.flex > .half {
  flex: 0.5;
}
.flex > .third {
  flex: 0.33;
}

.chico-divider {
  text-align: center;
  padding: var(--space-sm);
}
.chico-divider img {
  max-width: 100%;
  height: auto;
}

.bod-page-c {
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  /*
  * Chair layout:
  *
  * The card spans the entire grid row, but its contents are kept
  * compact and positioned toward the first column, matching the design.
  */
  /*
  * Optional clipped lower-right corner, matching the red label
  * and donate-button shape in the design.
  */
}
.bod-page-c .hero {
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 7rem 0;
  background-color: var(--color-primary);
}
.bod-page-c .hero #bod-page-heading {
  color: white;
}
.bod-page-c .hero #bod-page-heading span {
  text-transform: none;
}
.bod-page-c .board-grid {
  width: min(100%, 700px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(3rem, 6vw, 5.5rem) clamp(2rem, 5vw, 4.5rem);
}
.bod-page-c .board-member {
  min-width: 0;
  text-align: center;
}
.bod-page-c .board-member__photo {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #e9e9e9;
}
.bod-page-c .board-member__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.bod-page-c .board-member__details {
  margin-top: 0.75rem;
}
.bod-page-c .board-member__name {
  margin: 0;
  color: #073f5c;
  font-size: clamp(1.25rem, 1.1vw, 0.95rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}
.bod-page-c .board-member__title {
  margin: 0.15rem 0 0;
  color: #073f5c;
  font-size: 0.8rem;
  line-height: 1.2;
}
.bod-page-c .board-member--chair {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  text-align: left;
}
.bod-page-c .board-member--chair .board-member__photo {
  grid-column: 1;
  grid-row: 1;
}
.bod-page-c .board-member--chair .board-member__details {
  grid-column: 2;
  grid-row: 1;
  left: 4px;
  position: relative;
  z-index: 1;
  width: min(100%, 155px);
  margin: 0 0 0 -0.25rem;
  padding: 0.45rem 0.8rem;
  color: #fff;
  background: #dd4737;
}
@media (max-width: 700px) {
  .bod-page-c .board-member--chair .board-member__details {
    left: 0;
  }
}
.bod-page-c .board-member--chair .board-member__name,
.bod-page-c .board-member--chair .board-member__title {
  color: #fff;
}
.bod-page-c .board-member--chair .board-member__name {
  font-size: 0.78rem;
}
@media (max-width: 700px) {
  .bod-page-c .board-member--chair .board-member__name {
    font-size: 1.25rem;
  }
}
.bod-page-c .board-member--chair .board-member__title {
  font-size: 0.72rem;
}
@media (max-width: 700px) {
  .bod-page-c .board-member--chair .board-member__title {
    font-size: 1rem;
  }
}
.bod-page-c .board-member--chair .board-member__details {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}
@media (max-width: 700px) {
  .bod-page-c .board-grid {
    width: min(100%, 520px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 1.5rem;
  }
  .bod-page-c .board-member--chair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .bod-page-c .board-grid {
    width: min(100%, 300px);
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .bod-page-c .board-member--chair {
    grid-column: auto;
    display: block;
    text-align: center;
  }
  .bod-page-c .board-member--chair .board-member__details {
    width: 100%;
    margin: 0;
    text-align: left;
  }
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius);
  z-index: 1000;
  transition: top 0.2s;
}
.skip-link:focus {
  top: var(--space-sm);
}

a:focus-visible,
button:focus-visible,
[role=button]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
iframe:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 3px;
}

a.button {
  background: var(--color-button-bg);
  font-weight: bold;
  color: #fff;
  padding: var(--space-sm) var(--space-lg);
  text-decoration: none;
  display: inline-block;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

h1, h2 {
  font-family: var(--font-manofa);
  text-transform: uppercase;
}

header {
  background: var(--color-primary);
  color: #fff;
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
@media (max-width: 768px) {
  header {
    padding: 0.25rem 0;
  }
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.site-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: block;
  position: relative;
}
.site-logo .logo-container {
  position: absolute;
  background: white;
  width: 142px;
  padding: 0.5em 0.5em 0.6em;
  top: -3.5rem;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
@media (max-width: 768px) {
  .site-logo .logo-container {
    top: -2rem;
    width: 140px;
    padding: 0.5rem 0.75rem 0.75rem;
    left: -1rem;
  }
}

nav ul {
  list-style: none;
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  align-items: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-family: var(--font-century-gothic);
  font-size: 1.2rem;
}
nav a:hover {
  text-decoration: underline;
}
nav a[aria-current=page] {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero {
  padding-block: var(--space-xl);
  text-align: center;
}
.hero.homepage-hero {
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: var(--space-xxxl) var(--space-xxl);
  text-align: left;
}
@media (max-width: 768px) {
  .hero.homepage-hero {
    background-image: var(--hero-image-mobile);
    background-position: center bottom;
    padding: var(--space-md) var(--space-lg) 35vh;
  }
  .hero.homepage-hero p {
    font-size: 1rem;
  }
  .hero.homepage-hero.split {
    flex-direction: column;
  }
}
.hero.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero.split > div {
  flex: 1;
}
.hero.split > div:first-child {
  flex: 0.8;
}
.hero h1 {
  font-family: var(--font-manofa);
  text-transform: uppercase;
  font-size: clamp(1.75rem, 5vw, 2.7rem);
  margin-bottom: var(--space-md);
  color: var(--color-hero-heading);
  line-height: 1.2;
}
.hero p {
  font-family: var(--font-century-gothic);
  font-size: 1.5rem;
  color: white;
  max-width: 55ch;
  margin-inline: auto;
}

.recent-blog-posts {
  background: var(--color-bg);
}
@media (max-width: 768px) {
  .recent-blog-posts .content-container > div {
    gap: 0.75rem;
    padding-bottom: 2rem;
  }
}
.recent-blog-posts h2 {
  color: var(--color-primary);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}
.recent-blog-posts a.button {
  font-family: var(--font-century-gothic);
  text-transform: uppercase;
}
.recent-blog-posts a.blog-post {
  display: block;
  width: 25vw;
  text-decoration: none;
}
@media (max-width: 768px) {
  .recent-blog-posts a.blog-post {
    width: 100%;
  }
  .recent-blog-posts a.blog-post .featured-image {
    height: 50vw;
  }
  .recent-blog-posts a.blog-post h3 {
    text-align: center;
  }
}
.recent-blog-posts a.blog-post h3 {
  color: var(--color-gray);
  font-family: var(--font-century-gothic);
}
.recent-blog-posts .featured-image {
  margin-top: 0.5rem;
  width: 100%;
  height: 15vw;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media (max-width: 768px) {
  .recent-blog-posts .featured-image {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}

.who-we-are {
  background-color: var(--color-tan);
  background-image: url(https://res.cloudinary.com/rmm5313u/image/upload/f_auto/q_auto/Support-bg-1440_nenccj.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right top;
}
@media (max-width: 768px) {
  .who-we-are {
    background-position: right bottom;
    background-size: 115vh;
  }
}
.who-we-are img {
  display: block;
  margin-bottom: var(--space-lg);
  margin-left: -4.5rem;
}
.who-we-are h2 {
  line-height: 1.25;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  font-size: clamp(2rem, 4vw, 2.5rem);
}
.who-we-are p {
  font-family: var(--font-century-gothic);
  font-size: 1.4rem;
  width: 85%;
}
.who-we-are .support-our-mission {
  width: 60%;
  margin: 0 auto;
  border: 3px solid var(--color-primary);
  background: var(--color-tan);
  padding: var(--space-lg);
  text-align: center;
}
.who-we-are .support-our-mission h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}
.who-we-are .support-our-mission p {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  width: auto;
}
.who-we-are .support-our-mission .button {
  text-transform: uppercase;
  font-family: var(--font-century-gothic);
}
@media (max-width: 768px) {
  .who-we-are img {
    margin-left: 0;
  }
  .who-we-are h2 {
    text-align: center;
  }
  .who-we-are p {
    text-align: center;
    width: 100%;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .who-we-are .support-our-mission {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
  }
  .who-we-are .support-our-mission p {
    font-size: 1rem;
  }
}

.our-impact {
  background: var(--color-primary);
  text-align: center;
}
.our-impact h2 {
  font-size: clamp(2rem, 4vw, 2.25rem);
}
.our-impact h2, .our-impact p {
  color: white;
}
.our-impact h3 {
  color: var(--color-tan);
  font-family: var(--font-manofa);
  font-size: clamp(3.5rem, 4vw, 4rem);
}
.our-impact p {
  font-family: var(--font-century-gothic);
  font-size: 1.2rem;
}
.our-impact .infographics {
  max-width: 80%;
  margin: 0 auto;
}
.our-impact .flex > div {
  flex: 1;
  text-align: center;
}

.homepage-gallery {
  background: var(--color-tan);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.homepage-gallery .divider {
  padding: 0 1rem;
}
.homepage-gallery .video-embed {
  width: 100%;
  aspect-ratio: 16/9;
}
.homepage-gallery .video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 768px) {
  .homepage-gallery img {
    width: 100%;
  }
}

.about-page-c {
  background-image: var(--hero-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.about-page-c #about-page-heading {
  color: white;
  text-align: center;
}
.about-page-c #about-page-heading .mea-culpa {
  font-size: clamp(2rem, 4vw, 2.5rem);
  text-transform: none;
}
.about-page-c h2 {
  color: var(--color-yellow);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.1;
  text-align: center;
}
.about-page-c .about-logo {
  display: block;
  width: 12%;
  margin: 2em auto;
  margin-bottom: var(--space-lg);
}
@media (max-width: 768px) {
  .about-page-c .about-logo {
    width: 50%;
  }
}
.about-page-c .heading-text {
  font-family: var(--font-century-gothic);
  font-size: 1.1rem;
  color: white;
  text-align: center;
  max-width: 80ch;
  margin-inline: auto;
}
.about-page-c h3 {
  text-align: center;
  font-family: var(--font-manofa);
  text-transform: uppercase;
  color: var(--color-yellow);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: var(--space-md);
  margin-top: var(--space-lg);
}
.about-page-c #about-pillars {
  width: 90%;
  margin: 0 auto;
}
.about-page-c #about-pillars .pillar {
  height: 40vw;
  border-radius: 4px;
  flex: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
  color: white;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .about-page-c #about-pillars .pillar {
    height: 100vw;
    flex: auto;
  }
}
.about-page-c #about-pillars .pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  border-radius: 4px;
  z-index: 0;
}
.about-page-c #about-pillars .pillar .pillar-content {
  position: relative;
  z-index: 1;
}
.about-page-c #about-pillars .pillar h4 {
  font-family: var(--font-century-gothic);
  font-size: clamp(1.5rem, 4vw, 1rem);
  margin-bottom: -6px;
}
.about-page-c #about-pillars .pillar h5 {
  font-family: var(--font-century-gothic);
  font-size: 1rem;
  margin-bottom: var(--space-md);
}
.about-page-c #about-pillars .pillar p {
  font-family: var(--font-century-gothic);
  font-size: 0.7rem;
}
@media (max-width: 768px) {
  .about-page-c #about-pillars {
    margin-top: 2rem;
  }
}
.about-page-c .goals-section {
  max-width: 65%;
  margin: 4rem auto 0;
  background-color: var(--color-primary);
  padding: 2rem 4rem;
}
.about-page-c .goals-section h3 {
  text-align: left;
  font-size: 3rem;
  margin-top: 0;
}
.about-page-c .goals-section .goal {
  gap: 2rem;
  margin-bottom: 2rem;
}
.about-page-c .goals-section .goal:last-child {
  margin-bottom: 0;
}
.about-page-c .goals-section .goal .goal-image {
  flex: 1;
  text-align: right;
}
.about-page-c .goals-section .goal .goal-image img {
  width: 80%;
  display: inline;
}
.about-page-c .goals-section .goal .goal-text {
  flex: 3;
  color: white;
}
.about-page-c .goals-section .goal .goal-text h4 {
  font-size: 1.4rem;
  font-family: var(--font-century-gothic);
}
.about-page-c .goals-section .goal .goal-text p {
  font-family: var(--font-century-gothic);
}
@media (max-width: 768px) {
  .about-page-c .goals-section {
    max-width: 100%;
    padding: 2rem;
    margin-bottom: 1rem;
  }
  .about-page-c .goals-section h3 {
    font-size: 2.6rem;
    text-align: center;
  }
  .about-page-c .goals-section .goal {
    gap: 1rem;
    margin-bottom: 3rem;
  }
  .about-page-c .goals-section .goal .goal-image {
    text-align: center;
  }
  .about-page-c .goals-section .goal .goal-image img {
    width: 40%;
  }
}
.about-page-c .goals-section ul {
  list-style: none;
  padding: 0;
}
.about-page-c .goals-section ul li {
  margin-bottom: var(--space-lg);
  position: relative;
  padding-left: 1.5rem;
}
.about-page-c .goals-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 1.5rem;
}
.about-page-c .goals-section ul li p {
  font-family: var(--font-century-gothic);
  font-size: 1rem;
  color: white;
  line-height: 1.6;
}

.news-page-c {
  background-color: var(--color-primary);
  background-image: var(--hero-image);
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .news-page-c {
    background-image: var(--hero-image-mobile);
  }
}
.news-page-c h1.hero-heading {
  text-align: center;
  color: white;
  padding: var(--space-xxl) 0 var(--space-xxl);
}

.posts-placeholder {
  height: 100vh;
}
@media (max-width: 768px) {
  .posts-placeholder {
    height: 50vh;
  }
}

.events-page-c {
  background-color: var(--color-primary);
  background-image: var(--hero-image);
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .events-page-c {
    background-image: var(--hero-image-mobile);
  }
}
.events-page-c h1.hero-heading {
  text-align: center;
  color: white;
  padding: var(--space-xxl) 0 var(--space-xxl);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.gallery-page-c .hero {
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding: 7rem 0;
  background-color: var(--color-primary);
}
.gallery-page-c .hero #gallery-page-heading {
  color: white;
}
.gallery-page-c .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  width: min(100%, 1000px);
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 6rem) var(--space-lg);
}
@media (max-width: 768px) {
  .gallery-page-c .gallery-grid {
    padding: 0;
  }
}
.gallery-page-c .gallery-grid__item {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #eee;
}
.gallery-page-c .gallery-grid__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}
.gallery-page-c .gallery-grid__item:hover img {
  transform: scale(1.03);
}
@media (max-width: 700px) {
  .gallery-page-c .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 450px) {
  .gallery-page-c .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.donate-page-c {
  background-color: var(--color-primary);
  background-image: var(--hero-image);
  background-size: contain;
  background-position: center -42vh;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .donate-page-c {
    background-image: var(--hero-image-mobile);
    background-position: center top;
  }
  .donate-page-c h1#donate-page-heading {
    padding: 2rem 0 50vh;
  }
}
.donate-page-c #donate-page-heading {
  text-align: center;
  color: var(--color-yellow);
  padding: var(--space-xxl) 0 14rem;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1;
}
.donate-page-c .donate-q-a {
  position: relative;
  padding: var(--space-md) 0;
  background-color: var(--color-primary);
}
.donate-page-c .donate-q-a h2 {
  color: var(--color-yellow);
  font-size: clamp(2rem, 4vw, 2rem);
  margin-bottom: var(--space-sm);
}
.donate-page-c .donate-q-a p {
  font-family: var(--font-century-gothic);
  font-size: 0.85rem;
  color: white;
  margin-bottom: 3rem;
}
.donate-page-c .donate-q-a .mobile-basket {
  display: none;
}
@media (max-width: 768px) {
  .donate-page-c .donate-q-a .mobile-basket {
    display: block;
    position: absolute;
    top: -16vh;
  }
  .donate-page-c .donate-q-a > .flex {
    position: relative;
  }
  .donate-page-c .donate-q-a > .flex > div {
    padding: 1em 2em;
  }
  .donate-page-c .donate-q-a > .flex > div:first-child {
    display: none;
  }
}
.donate-page-c .donation-address {
  background: white;
}
.donate-page-c .donation-address img {
  width: 75%;
}
.donate-page-c .donation-address h2 {
  color: var(--color-red);
  line-height: 1.1;
  font-size: 1.8rem;
}
.donate-page-c .donation-address h3 {
  font-family: var(--font-century-gothic);
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  margin-top: var(--space-md);
}
.donate-page-c .donation-address p {
  text-align: center;
  font-family: var(--font-century-gothic);
  font-size: 0.8rem;
  margin-bottom: var(--space-sm);
  margin-top: var(--space-md);
  color: var(--color-primary);
}
@media (max-width: 768px) {
  .donate-page-c .donation-address {
    text-align: center;
  }
  .donate-page-c .donation-address img {
    width: 50%;
    margin: 0 auto;
  }
  .donate-page-c .donation-address p {
    font-size: 1rem;
  }
}
.donate-page-c .donate-options {
  background-image: url("https://res.cloudinary.com/rmm5313u/image/upload/f_auto/q_auto/donate-bg_tepnu7.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  text-align: center;
}
@media (max-width: 768px) {
  .donate-page-c .donate-options {
    background-image: url("https://res.cloudinary.com/rmm5313u/image/upload/f_auto/q_auto/chico-arrow-pattern-360x360_gpxrn5.jpg");
    background-repeat: repeat;
    background-size: 360px 360px;
  }
}
.donate-page-c .donate-options .donate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .donate-page-c .donate-options .donate-grid {
    grid-template-columns: 1fr;
  }
}
.donate-page-c .donate-options .donate-option {
  background: white;
  padding: 1em;
}
@media (max-width: 768px) {
  .donate-page-c .donate-options .donate-option p {
    width: 80% !important;
    font-size: 1rem !important;
  }
  .donate-page-c .donate-options .donate-option .button {
    width: 100%;
  }
}
.donate-page-c .donate-options .donate-option h2 {
  color: var(--color-red);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}
.donate-page-c .donate-options .donate-option p {
  font-family: var(--font-century-gothic);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
  width: 52%;
  margin-inline: auto;
}

footer {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: var(--space-lg) 0 0;
  font-size: 0.875rem;
}
footer h3 {
  font-family: var(--font-manofa);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  font-size: clamp(1.25rem, 4vw, 1.5rem);
}
footer a {
  color: var(--color-accent);
}
footer p + p {
  margin-top: var(--space-sm);
}
footer .newsletter-c .button {
  font-family: var(--font-century-gothic);
  text-transform: uppercase;
  font-size: clamp(1rem, 4vw, 1.25rem);
  width: 70%;
  text-align: center;
}
footer .quick-links {
  list-style: none;
}
footer .quick-links > li {
  display: block;
}
footer .quick-links > li a {
  color: white;
  text-decoration: none;
  font-family: var(--font-century-gothic);
  font-size: 1.1rem;
  line-height: 1;
}
footer .social-media.flex {
  flex-direction: row;
}
footer .social-media a {
  color: white;
  text-decoration: none;
}
footer .social-media svg {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}
footer .footer-logo {
  display: block;
  width: 40%;
  margin: 0 auto;
}
footer .footer-bottom {
  text-align: right;
  font-family: var(--font-century-gothic);
  padding: 0.5rem 0;
  display: flex;
  justify-content: flex-end;
  gap: 1em;
}
@media (max-width: 768px) {
  footer .footer-bottom {
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 0.5em;
  }
}
footer .footer-bottom .footer-credit {
  display: block;
  width: 20px;
}
@media (max-width: 768px) {
  footer .mobile-center {
    align-items: center;
  }
  footer .newsletter-c {
    text-align: center;
  }
  footer .newsletter-c .button {
    width: 100%;
  }
  footer .quick-links {
    text-align: center;
  }
}

.site-header {
  position: relative;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: block;
  position: relative;
  z-index: 2;
}

.mobile-site-logo {
  display: none;
  position: relative;
  z-index: 2;
  width: 200px;
  padding: 0.5rem 0 0.75rem;
  left: -1rem;
}

@media (max-width: 768px) {
  .site-logo {
    display: none;
  }
  .mobile-site-logo {
    display: block;
  }
}
.logo-container {
  width: 100%;
}
.logo-container img {
  display: block;
  width: 100%;
  height: auto;
}

.desktop-navigation ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.desktop-navigation a {
  text-decoration: none;
}
.desktop-navigation a:hover, .desktop-navigation a.is-active {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 16px;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--color-red);
  text-decoration-skip-ink: auto;
}

.mobile-menu-toggle,
.mobile-menu-close {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 1;
}
.mobile-menu-toggle svg,
.mobile-menu-close svg {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
}

.mobile-menu-toggle {
  display: none;
  padding: 0.75rem;
  color: white;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-navigation {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 90%;
  max-width: 450px;
  height: 100dvh;
  padding: 5rem 2rem 2rem;
  background: var(--color-bg);
  box-shadow: -8px 0 25px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 0.35s ease, visibility 0.35s ease;
}
.mobile-navigation.is-open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-navigation ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-navigation li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  width: 100%;
}
.mobile-navigation a {
  display: block;
  padding: 1.25rem 0;
  color: var(--color-primary);
  font-size: 1.1rem;
  text-decoration: none;
}
.mobile-navigation a.is-active {
  font-weight: 700;
}
.mobile-navigation a.button {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  text-align: center;
  background: var(--color-primary);
  color: white;
}

.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.5rem;
}

body.mobile-menu-is-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .desktop-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .site-header .container {
    position: relative;
  }
  .site-logo {
    max-width: calc(100% - 4rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-navigation,
  .mobile-menu-overlay {
    transition: none;
  }
}
.post-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.post-image-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .post-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .post-image-grid {
    grid-template-columns: 1fr;
  }
}
/* ── Post Article Page ─────────────────────────────────────────── */
.post-article {
  background: var(--color-surface);
  color: var(--color-text);
}

.post-article__container {
  width: min(100% - 2.5rem, 850px);
  margin-inline: auto;
}

.post-article__header {
  background: var(--color-primary);
  padding: clamp(0.5rem, 1vw, 3rem) 0 clamp(0.5rem, 1vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.post-article__nav {
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.post-article__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-century-gothic);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-hero-heading);
  text-decoration: none;
  transition: color 150ms ease, transform 150ms ease;
}
.post-article__back-link:hover {
  color: #ffffff;
  transform: translateX(-2px);
}
.post-article__back-link:focus-visible {
  outline: 2px solid var(--color-yellow);
  outline-offset: 3px;
  border-radius: 2px;
}

.post-article__back-arrow {
  font-size: 1.1em;
  line-height: 1;
}

.post-article__date {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-tan);
  font-family: var(--font-century-gothic);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

.post-article__title {
  margin: 0;
  color: var(--color-hero-heading);
  font-family: var(--font-manofa);
  text-transform: uppercase;
  font-size: clamp(1.25rem, 2vw, 3.25rem);
  line-height: 1.1;
  text-wrap: balance;
}

.post-article__media {
  background: var(--color-bg);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.post-article__media .post-article__container {
  width: min(100% - 2.5rem, 1000px);
}

.post-article__featured-image {
  margin: 0;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-tan);
  box-shadow: 0 4px 20px rgba(22, 53, 77, 0.08);
}
.post-article__featured-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-article__main {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--color-surface);
}

.post-article__body {
  max-width: 68ch;
  margin-inline: auto;
  font-family: var(--font-century-gothic);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
}
.post-article__body > :first-child {
  margin-top: 0;
}
.post-article__body > :last-child {
  margin-bottom: 0;
}
.post-article__body p {
  margin: 0 0 1.5rem;
}
.post-article__body h2,
.post-article__body h3,
.post-article__body h4 {
  font-family: var(--font-manofa);
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 1.2;
  text-wrap: balance;
}
.post-article__body h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  margin: 2.75rem 0 1rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--color-tan);
}
.post-article__body h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  margin: 2rem 0 0.75rem;
}
.post-article__body h4 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem;
}
.post-article__body a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: color 150ms ease;
}
.post-article__body a:hover {
  color: var(--color-accent);
}
.post-article__body a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.post-article__body ul,
.post-article__body ol {
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
}
.post-article__body ul li,
.post-article__body ol li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}
.post-article__body blockquote {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--color-accent);
  background: var(--color-bg);
  font-style: italic;
  color: var(--color-primary-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.post-article__body blockquote p:last-child {
  margin-bottom: 0;
}
.post-article__body hr {
  border: 0;
  height: 1px;
  background: var(--color-tan);
  margin: 2.5rem 0;
}
.post-article__body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}

.post-article__footer {
  max-width: 68ch;
  margin-inline: auto;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(22, 53, 77, 0.12);
}

.post-article__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.post-article__tags-label {
  font-family: var(--font-century-gothic);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.post-article__tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-article__tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--color-bg);
  color: var(--color-primary);
  font-family: var(--font-century-gothic);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 100px;
  border: 1px solid rgba(22, 53, 77, 0.12);
}

.post-article__cta {
  max-width: 68ch;
  margin-inline: auto;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
}
.post-article__cta a.button {
  display: inline-block;
}

@media (max-width: 768px) {
  .post-article__container {
    width: min(100% - 2rem, 850px);
  }
  .post-article__media .post-article__container {
    width: min(100% - 2rem, 1000px);
  }
  .post-article__featured-image {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 480px) {
  .post-article__container {
    width: calc(100% - 1.5rem);
  }
  .post-article__media .post-article__container {
    width: calc(100% - 1.5rem);
  }
  .post-article__cta a.button {
    display: block;
    text-align: center;
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .post-article__back-link {
    transition: none;
  }
}
.news-showcase {
  --news-background: #073d56;
  --news-text: #ffffff;
  --news-accent: #e7d6ad;
  --news-divider: #d96961;
  --news-gap: 1.5rem;
  --news-card-width: clamp(250px, 24vw, 355px);
  --news-side-padding: clamp(1rem, 10vw, 9rem);
  width: 100%;
  overflow: hidden;
}

.news-showcase__carousel {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 2.25rem;
  color: var(--news-text);
}

.news-carousel__viewport {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}

.news-carousel__track {
  display: flex;
  align-items: flex-start;
  gap: var(--news-gap);
  width: max-content;
  padding-inline: var(--news-side-padding);
  transform: translate3d(0, 0, 0);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.news-card {
  display: block;
  flex: 0 0 var(--news-card-width);
  width: var(--news-card-width);
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
  text-align: center;
  background: transparent;
  cursor: pointer;
  appearance: none;
}
.news-card:focus {
  outline: none;
}
.news-card:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 6px;
}

.news-card__image {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 5px solid transparent;
  background: #163e50;
  transition: border-color 250ms ease, transform 250ms ease;
}
.news-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.news-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
}

.news-card__shade {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.news-card__title {
  display: block;
  max-width: 24rem;
  min-height: 2.5em;
  margin: 1rem auto 0;
  color: #fff;
  font-family: var(--font-manofa);
  font-size: clamp(0.82rem, 1.2vw, 1.05rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

.news-card:hover .news-card__image img {
  transform: scale(1.025);
}

.news-card.is-active .news-card__image {
  border-color: var(--news-accent);
}

.news-carousel__controls {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3.25rem);
}

.news-carousel__arrow {
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  place-items: center;
  color: var(--news-accent);
  background: transparent;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}
.news-carousel__arrow svg {
  display: block;
}
.news-carousel__arrow:hover:not(:disabled) {
  transform: scale(1.12);
}
.news-carousel__arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.news-carousel__arrow:disabled {
  opacity: 0.25;
  cursor: default;
}

.news-carousel__logo {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
}
.news-carousel__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.news-carousel__logo span {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
}

.news-showcase__divider {
  height: 10px;
  margin: 0.3rem clamp(0.5rem, 4vw, 4rem);
  background: repeating-linear-gradient(45deg, var(--news-divider) 0, var(--news-divider) 2px, transparent 2px, transparent 4px);
}

.news-articles {
  width: min(100% - 2rem, 1100px);
  margin-inline: auto;
  padding: 1.5rem 0 5rem;
}

.news-article,
.news-article__title {
  scroll-margin-top: clamp(1rem, 3vw, 2rem);
}

.news-article {
  width: 100%;
}
.news-article[hidden] {
  display: none;
}
.news-article.is-active {
  animation: news-article-enter 400ms ease both;
}

.news-article__featured-image {
  width: 100%;
  margin: 0 0 clamp(1.75rem, 4vw, 3rem);
  overflow: hidden;
  aspect-ratio: 16/8.5;
  background: #eee;
}
.news-article__featured-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-article__content {
  width: min(100%, 850px);
  margin-inline: auto;
}

.news-article__date {
  margin: 0 0 0.6rem;
  color: #68757b;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-article__title {
  margin: 0 0 1.5rem;
  color: var(--news-background);
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.05;
  text-wrap: balance;
}

.news-article__body {
  color: #26343a;
  font-size: 1.05rem;
  line-height: 1.75;
}
.news-article__body > :first-child {
  margin-top: 0;
}
.news-article__body > :last-child {
  margin-bottom: 0;
}
.news-article__body img {
  max-width: 100%;
  height: auto;
}
.news-article__body a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

@keyframes news-article-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 900px) {
  .news-showcase {
    --news-card-width: clamp(235px, 42vw, 325px);
    --news-side-padding: 2rem;
  }
  .news-card__title {
    font-size: 0.9rem;
  }
}
@media (max-width: 600px) {
  .news-showcase {
    --news-card-width: min(78vw, 315px);
    --news-gap: 1rem;
    --news-side-padding: 1rem;
  }
  .news-showcase__carousel {
    padding-top: 2rem;
  }
  .news-card__title {
    min-height: 0;
    font-size: 0.83rem;
  }
  .news-carousel__controls {
    margin-top: 1.75rem;
  }
  .news-articles {
    width: min(100% - 1.5rem, 1100px);
    padding-bottom: 3rem;
  }
  .news-article__featured-image {
    aspect-ratio: 4/3;
  }
}
@media (prefers-reduced-motion: reduce) {
  .news-carousel__track,
  .news-carousel__arrow,
  .news-card__image,
  .news-card__image img {
    transition: none;
  }
  .news-article.is-active {
    animation: none;
  }
}
.homepage-gallery .video-embed {
  position: relative;
}

.video-facade {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  color: var(--color-surface);
  background: var(--color-primary);
  cursor: pointer;
  appearance: none;
}
.video-facade::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(22, 53, 77, 0.18);
  pointer-events: none;
}
.video-facade img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-facade:hover .video-facade__play {
  background: var(--color-accent);
  transform: translate(-50%, -50%) scale(1.08);
}
.video-facade:active .video-facade__play {
  transform: translate(-50%, -50%) scale(0.96);
}
.video-facade:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 3px;
}

.video-facade__play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: block;
  width: clamp(4rem, 8vw, 6rem);
  height: clamp(4rem, 8vw, 6rem);
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0.4rem 1.25rem rgba(26, 26, 26, 0.35);
  transform: translate(-50%, -50%);
  transition: background-color 180ms ease, transform 180ms ease;
}
.video-facade__play svg {
  display: block;
  width: 100%;
  height: 100%;
}
.video-facade__play circle {
  fill: currentColor;
}
.video-facade__play path {
  fill: var(--color-primary);
}

.video-embed noscript iframe {
  position: absolute;
  z-index: 2;
  inset: 0;
}

@media (prefers-reduced-motion: reduce) {
  .video-facade__play {
    transition: none;
  }
}

/*# sourceMappingURL=main.css.map */