/* Exact Squarespace Color Variables */
:root {
  --white-hsl: 0, 0%, 100%;
  --black-hsl: 0, 0%, 0%;
  --darkAccent-hsl: 166.96, 79.31%, 11.37%;
  --lightAccent-hsl: 28, 100%, 97.06%;
  --accent-hsl: 28.11, 69.81%, 68.82%;

  --primary: hsla(var(--darkAccent-hsl), 1);
  --secondary: hsla(var(--black-hsl), 1);
  --accent: hsla(var(--accent-hsl), 1);
  --cream: hsla(var(--lightAccent-hsl), 1);
  --white: hsla(var(--white-hsl), 1);
  --black: hsla(var(--black-hsl), 1);

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --max-width: 1800px;
  --page-padding: 3vw;
  --header-vert-padding: 1.1vw;
  --header-logo-height: 100px;
  --mobile-header-logo-height: 65px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8em;
  color: var(--secondary);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography - Squarespace exact */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.4em;
  letter-spacing: 0.01em;
}

h1 { font-size: 4rem; }
h2 { font-size: 2.6rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.4rem; }

p {
  margin-bottom: 1em;
  line-height: 1.8;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

/* Buttons - Squarespace pill style */
.btn {
  display: inline-block;
  padding: 1rem 1.3rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.1s ease-in-out, opacity 0.1s ease-in-out;
  border: 2px solid var(--primary);
  border-radius: 12px;
  background: transparent;
  color: var(--primary);
  letter-spacing: 0.02em;
  line-height: 1.2em;
}

.btn:hover {
  transform: scale(1.025);
  opacity: 0.9;
}

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

.btn-primary:hover {
  background-color: var(--accent);
  color: var(--primary);
  transform: scale(1.025);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
  border-width: 1px;
  border-radius: 10px;
  font-size: 1.1rem;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

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

.btn-white:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* Header - Squarespace exact */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--cream);
  transition: transform 0.3s ease;
}

header.scrolled {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--header-vert-padding) 4vw;
  max-width: 100%;
}

.logo img {
  height: var(--header-logo-height);
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary);
  padding: 0.5rem 0;
  position: relative;
  letter-spacing: 0.06em;
  transition: opacity 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--primary);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  opacity: 1;
}

.nav-btn {
  padding: 1rem 1.3rem;
  font-size: 1rem;
}

/* Mobile Navigation */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 1.5px;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .mobile-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--cream);
    flex-direction: column;
    justify-content: center;
    padding: 80px 24px;
    gap: 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .nav-links a {
    font-size: 1.25rem;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .logo img {
    height: var(--mobile-header-logo-height);
  }
}

/* Hero Section - full-bleed background image with overlay (Squarespace match) */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(40px + var(--header-logo-height)) var(--page-padding) 80px;
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
}

.hero-icon {
  width: auto;
  height: 96px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 2rem;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.35em;
  text-align: center;
}

.hero .btn {
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding-top: calc(40px + var(--mobile-header-logo-height));
  }

  .hero-icon {
    height: 72px;
  }
}

/* Sections */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--secondary);
  opacity: 0.8;
}

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

.section-white {
  background-color: var(--white);
}

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

.section-teal,
.section-green {
  background-color: var(--primary);
  color: var(--white);
}

.section-teal h2,
.section-teal h3,
.section-green h2,
.section-green h3 {
  color: var(--white);
}

.section-teal p,
.section-green p {
  color: rgba(255, 255, 255, 0.9);
}

/* About Grid - text left, photo right (Squarespace match) */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5vw;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 5px;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.value-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--cream);
  border-radius: 5px;
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon img {
  width: 64px;
  height: 64px;
}

.value-card h3 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.value-card p {
  color: var(--secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Spotlight Sections */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
}

.spotlight-reverse {
  direction: rtl;
}

.spotlight-reverse > * {
  direction: ltr;
}

.spotlight-image img {
  width: 100%;
  border-radius: 5px;
}

.spotlight-text h2 {
  margin-bottom: 1.5rem;
}

.spotlight-text p {
  margin-bottom: 1rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.check-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  font-size: 0.95rem;
  position: relative;
}

.check-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.section-teal .check-list li::before,
.section-green .check-list li::before {
  color: var(--white);
}

.section-green .check-list li,
.section-teal .check-list li {
  color: rgba(255, 255, 255, 0.95);
}

.section-light .check-list li,
.section-cream .check-list li {
  color: var(--secondary);
}

@media (max-width: 768px) {
  .spotlight {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .spotlight-reverse {
    direction: ltr;
  }
}

/* CTA Section - light cream theme */
.cta-section {
  background: var(--cream);
  color: var(--primary);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.8;
}

.cta-section .btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.cta-section .btn-primary:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Newsletter */
.newsletter-section {
  text-align: center;
}

.newsletter-content {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-content h3 {
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid hsla(var(--accent-hsl), 0.5);
  border-radius: 12px;
  background-color: var(--white);
  color: var(--secondary);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.2s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-form .btn {
  margin-top: 0.5rem;
}

@media (max-width: 500px) {
  .newsletter-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-map {
  min-height: 200px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: 0;
  border-radius: 8px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background-color: var(--white);
  border-color: var(--white);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
}

.social-links a:hover svg {
  stroke: var(--primary);
}

.footer-nav h4,
.footer-contact h4 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--white);
  opacity: 1;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--white);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
  }

  .social-links {
    justify-content: center;
  }

  .footer-map {
    min-height: 250px;
  }

  .footer-map iframe {
    min-height: 250px;
  }
}

/* Events */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  align-items: stretch;
  gap: 24px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.event-date {
  flex: 0 0 auto;
  width: 90px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}

.event-month {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-day {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
}

.event-body {
  padding: 20px 24px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-body h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.event-meta {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 8px;
  filter: brightness(0.7);
}

.event-desc {
  color: var(--secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.event-desc + .event-desc {
  margin-top: 0.75rem;
}

.event-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.25rem;
}

.event-links .btn {
  font-size: 0.85rem;
  padding: 0.6rem 1.1rem;
}

.event-flyer {
  flex: 0 0 220px;
  align-self: center;
  padding: 20px 24px 20px 0;
}

.event-flyer img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.event-empty {
  text-align: center;
  color: var(--secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.event-group-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.event-group-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: var(--secondary);
}

@media (max-width: 600px) {
  .event-card {
    flex-direction: column;
    gap: 0;
  }

  .event-date {
    width: 100%;
    flex-direction: row;
    gap: 10px;
    padding: 10px 0;
  }

  .event-body {
    padding: 18px 20px;
  }

  .event-flyer {
    flex-basis: auto;
    align-self: stretch;
    padding: 0 20px 20px;
  }
}

/* Article body */
article h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

article p {
  font-size: 1.05rem;
  line-height: 1.85;
}

/* Page Header - photo background with dark overlay (Squarespace match) */
.page-header {
  position: relative;
  padding: calc(110px + var(--header-logo-height)) 0 130px;
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.page-header > .container,
.page-header h1,
.page-header p {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  margin-bottom: 0.75rem;
  color: var(--white);
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.85);
}

/* Donation intro photo */
.donation-photo {
  max-width: 900px;
  margin: 3rem auto 0;
}

.donation-photo img {
  width: 100%;
  border-radius: 5px;
}

/* Mission intro photos - two side-by-side (Squarespace match) */
.mission-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.mission-photos img {
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .mission-photos {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-card {
  background: var(--white);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.pillar-card > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.pillar-card .value-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.pillar-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pillar-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  line-height: 1.3;
}

.pillar-card p {
  color: var(--secondary);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.pillar-card p:last-of-type {
  margin-bottom: 0;
}

.card-links {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card-links .btn {
  font-size: 0.85rem;
  padding: 0.6rem 1.1rem;
}

/* Programs List */
.programs-list {
  display: grid;
  gap: 80px;
}

.program-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
}

.program-item:nth-child(even) {
  direction: rtl;
}

.program-item:nth-child(even) > * {
  direction: ltr;
}

.program-image img {
  width: 100%;
  border-radius: 5px;
}

.program-content h3 {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .program-item,
  .program-item:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 5px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* Contact */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid #ddd;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--primary);
}

.contact-detail h4 {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact-detail p {
  color: var(--secondary);
  margin-bottom: 0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.news-card {
  background: var(--cream);
  overflow: hidden;
  border-radius: 5px;
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-card-content {
  padding: 2rem;
}

.news-date {
  font-size: 0.8rem;
  color: var(--secondary);
  opacity: 0.7;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.news-card p {
  color: var(--secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Videos */
.video-grid,
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2rem;
}

.video-item {
  overflow: hidden;
  border-radius: 5px;
}

.video-embed,
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-embed iframe,
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 500px) {
  .video-grid,
  .videos-grid {
    grid-template-columns: 1fr;
  }
}

/* Donation */
.donate-hero {
  text-align: center;
}

.donate-hero h2 {
  margin-bottom: 1rem;
}

.donate-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.donate-card {
  background: var(--cream);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 5px;
}

.donate-card h3 {
  margin-bottom: 1rem;
}

.donate-card p {
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Press */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.press-card {
  background: var(--cream);
  overflow: hidden;
  border-radius: 5px;
}

.press-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.press-card-content {
  padding: 2rem;
}

.press-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
}

.press-source {
  color: var(--secondary);
  font-weight: 400;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
}

.press-card .btn {
  padding: 0.8em 1.6em;
  font-size: 0.85rem;
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 16px 20px;
  border-radius: 50%;
  opacity: 0.8;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    padding: 12px 16px;
    font-size: 1.2rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}
