.gallery-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 420px;
  margin: 0 auto;
}

.gallery-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo-img {
  width: 100%;
  max-height: 620px;  
  object-fit: cover;
  display: block;
}
.hero-photo {
  width: 100%;
  max-height: 420px;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  display: block;
}
:root {
    --blue: #123f97;
    --green: #3d7f3a;
    --light-bg: #f7f7f5;
    --text: #1f2937;
    --muted: #5b6472;
    --border: #d9dfd7;
    --white: #ffffff;
    --section-space: 88px;
    --shadow: 0 16px 40px rgba(18, 63, 151, 0.08);
    --radius: 20px;
    --max-width: 1180px;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--light-bg);
    line-height: 1.6;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
  }
  
  .section {
    padding: var(--section-space) 0;
  }
  
  .eyebrow {
    color: var(--green);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  
  .mission-text {
    max-width: 980px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text);
  }
  
  .mission-text p {
    margin-bottom: 18px;
  }
  
  .mission-text strong {
    color: var(--blue);
    font-size: 1.05rem;
  }
  
  .divider {
    width: 120px;
    height: 2px;
    background: var(--green);
    margin: 18px 0 24px;
    position: relative;
  }
  
  .divider::after {
    content: "";
    width: 14px;
    height: 14px;
    background: var(--green);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--light-bg);
  }
  
  .center-divider {
    margin-left: auto;
    margin-right: auto;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.25s ease;
    border: 2px solid transparent;
    cursor: pointer;
  }
  
  .btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: var(--shadow);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    opacity: 0.96;
  }
  
  .btn-secondary {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
  }
  
  .btn-secondary:hover {
    background: var(--blue);
    color: var(--white);
  }
  
  .btn-green {
    background: var(--green);
    color: var(--white);
    box-shadow: var(--shadow);
  }
  
  .btn-green:hover {
    transform: translateY(-2px);
    opacity: 0.96;
  }
  
  .btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
  }
  
  .btn-outline-light:hover {
    background: var(--white);
    color: var(--blue);
  }
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(18, 63, 151, 0.08);
  }
  
  .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    margin-right: 18px;
  }
  
  .brand-mark {
    width: 62px;
    height: 62px;
    border: 3px solid var(--blue);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--white);
    color: var(--blue);
    font-weight: 700;
    font-size: 1.15rem;
    flex-shrink: 0;
    position: relative;
  }
  
  .brand-mark::before {
    content: "+";
    position: absolute;
    top: 10px;
    color: var(--green);
    font-size: 1rem;
    font-weight: 700;
  }
  
  .brand-text h1 {
    font-size: 0.9rem;    
    color: var(--blue);
    line-height: 1.2;
    white-space: nowrap;
  }
  
  .brand-text p {
    font-size: 0.8rem;
    color: var(--green);
  }
  
  .site-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .site-nav a {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--blue);
    position: relative;
  }
  
  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.25s ease;
  }
  
  .site-nav a:hover::after,
  .site-nav a.active::after {
    width: 100%;
  }
  
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: var(--blue);
    cursor: pointer;
  }
  
  .hero {
    padding: 44px 0 36px;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 34px;
    align-items: stretch;
  }
  
  .hero-copy,
  .hero-image {
    border-radius: 28px;
    overflow: hidden;
    
    box-shadow: var(--shadow);
  }
  
  .hero-copy {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hero-copy h2 {
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 0.98;
    color: var(--blue);
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
  }
  
  .hero-copy .subheadline {
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    color: var(--green);
    margin-bottom: 8px;
    font-family: Georgia, "Times New Roman", serif;
  }
  
  .hero-copy p {
    color: var(--muted);
    max-width: 560px;
    font-size: 1.05rem;
    margin-bottom: 28px;
  }
  
  .hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  .hero-image {
    height: 420px;
    
      
      position: relative;
  }
  
  .hero-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 180px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.24), transparent);
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  .about-photo {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 440px;
    background: url("https://images.unsplash.com/photo-1517486808906-6ca8b3f04846?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  }
  .about-content h3,
  .serve-header h3,
  .impact-content h3,
  .cta-panel h3 {
    color: var(--blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    margin-bottom: 10px;
  }
  
  .about-content p,
  .impact-content p,
  .cta-panel p {
    color: var(--muted);
    margin-bottom: 22px;
    font-size: 1rem;
  }
  
  .serve-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
  }
  
  .cards-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 34px;
  }
  
  .card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 30px 24px;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease;
    text-align: center;
  }
  
  .card:hover {
    transform: translateY(-6px);
    border-color: rgba(61, 127, 58, 0.45);
  }
  
  .icon-circle {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(61, 127, 58, 0.1);
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    color: var(--green);
    font-size: 1.8rem;
    font-weight: 700;
  }
  
  .card h4 {
    color: var(--blue);
    font-size: 1.12rem;
    margin-bottom: 10px;
  }
  
  .card p {
    color: var(--muted);
    font-size: 0.96rem;
  }
  
  .impact {
    background: linear-gradient(180deg, #ffffff, #f4f7f3);
  }
  
  .impact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
  }
  
  .impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .stat-box {
    background: var(--white);
    border-radius: 22px;
    padding: 30px 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  
  .stat-box strong {
    display: block;
    color: var(--blue);
    font-size: 2rem;
    font-family: Georgia, "Times New Roman", serif;
    margin-bottom: 8px;
  }
  
  .stat-box span {
    color: var(--muted);
    font-size: 0.96rem;
  }
  
  .cta-band {
    padding: 34px 0 80px;
  }
  
  .cta-panel {
    background:
      linear-gradient(rgba(18, 63, 151, 0.9), rgba(18, 63, 151, 0.9)),
      url("https://images.unsplash.com/photo-1507692049790-de58290a4334?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
    color: var(--white);
    border-radius: 28px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: var(--shadow);
  }
  
  .cta-panel h3,
  .cta-panel p {
    color: var(--white);
    max-width: 620px;
  }
  
  .cta-eyebrow {
    color: #d9f0d7;
  }
  
  .cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    transform: translateX(-130px);
  }
  
  footer {
    background: #ffffff;
    border-top: 1px solid rgba(18, 63, 151, 0.08);
    padding: 70px 0 30px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 260px 220px 220px;
    justify-content: center;
    gap: 70px;
    align-items: start;
    margin-bottom: 36px;
  }
  
  .footer-col h4 {
    color: var(--green);
    font-size: 1rem;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  
  .footer-col p,
  .footer-col li,
  .footer-col a {
    color: var(--muted);
    font-size: 0.96rem;
  }
  
  .footer-col ul {
    list-style: none;
    display: grid;
    gap: 10px;
  }
  
  .footer-brand {
    margin-bottom: 16px;
  }
  
  .footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid var(--border);
    padding-top: 24px;
    margin-top: 30px;
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
  }
  
  .newsletter {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .newsletter input {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-size: 1rem;
    outline: none;
  }
  
  .newsletter input:focus {
    border-color: var(--blue);
  }
  
  @media (max-width: 1080px) {
    .hero-grid,
    .about-grid,
    .impact-grid,
    .footer-grid {
      grid-template-columns: 1fr;
    }
  
    .cards-4 {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .cta-panel {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  @media (max-width: 860px) {
    .nav-wrap {
      flex-wrap: wrap;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .site-nav {
      display: none;
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
      padding-top: 10px;
    }
  
    .site-nav.show {
      display: flex;
    }
  
    .nav-actions {
      margin-left: auto;
    }
  
    .hero-copy {
      padding: 40px 28px;
    }
  
    .hero-image {
      min-height: 420px;
    }
  }
  
  @media (max-width: 640px) {
    :root {
      --section-space: 68px;
    }
  
    .cards-4,
    .impact-stats {
      grid-template-columns: 1fr;
    }
  
    .btn {
      width: 100%;
    }
  
    .hero-buttons,
    .cta-actions {
      width: 100%;
    }
  
    .brand-text h1 {
      font-size: 0.92rem;
    }
  }

  .gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 34px;
  }
  
  .gallery-page-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  .gallery-page-card:hover {
    transform: scale(1.03);
    box-shadow: 0 18px 40px rgba(18, 63, 151, 0.18);
  }
  
  .gallery-page-img {
    width: 100%;
    height: 520px;
    object-fit: cover;    
    display: block;
  }

  .gallery-slideshow {
    position: relative;
    width: 100%;
    max-width: 760px;
    height: 520px;
    margin: 34px auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
  }
  
  .gallery-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;    
    object-position: center 35%;    
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .gallery-slide.active {
    opacity: 1;
  }
  .gallery-natural-grid {
    column-count: 2;
    column-gap: 24px;
    margin-top: 34px;
  }
  
  .gallery-natural-img {
    width: 100%;
    display: block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin-bottom: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    break-inside: avoid;
  }
  .gallery-natural-img:hover {
    transform: none;
    box-shadow: 0 28px 60px rgba(18, 63, 151, 0.28);
    filter: brightness(1.04);
  }

  .gallery-natural-img.no-hover:hover {
    transform: none;
    box-shadow: var(--shadow);
    filter: none;
  }

  .donation-qr-section {
    padding-top: 200;
  }
  
  .donation-qr-card {
    max-width: 920px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.3fr 360px;
    gap: 28px;
    align-items: center;
    border: 1px solid rgba(18, 63, 151, 0.12);
  }
  
  .donation-qr-card h3 {
    color: var(--blue);
    font-size: 2rem;
    margin: 10px 0 12px;
  }
  
  .donation-qr-card p {
    color: var(--muted);
    line-height: 1.7;
  }
  
  .zelle-qr-img {
    width: 100%;
    max-width: 360px;
    border-radius: 18px;
    border: 1px solid rgba(18, 63, 151, 0.12);
  }

  .mission-visions {
    background: #ffffff;
  }
  
  .mission-visions-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  
  .mission-vision-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(18, 63, 151, 0.12);
  }
  
  @media (max-width: 900px) {
    .mission-visions-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .mission-visions-grid {
      grid-template-columns: 1fr;
    }
  
    .mission-vision-img {
      height: 320px;
    }
  }

  .mission-visions-grid .mission-vision-img:last-child {
    grid-column: 2;
  }

  /* Comment Section Page */
.comment-hero {
  padding: 90px 0 50px;
  background: #f8fbf7;
}

.comment-hero-card,
.comment-form-card,
.comment-card {
  background: var(--white);
  border: 1px solid rgba(18, 63, 151, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.comment-hero-card {
  padding: 48px;
}

.approved-comments-section {
  padding-top: 60px;
}

.comments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.comment-card {
  padding: 28px;
}

.comment-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.submit-comment-section {
  padding-top: 60px;
}

.comment-form-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 42px;
}

.comment-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.comment-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: var(--blue);
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 63, 151, 0.18);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
}

.comment-form textarea {
  resize: vertical;
}

.comment-form button {
  justify-self: start;
}

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

  .comment-hero-card,
  .comment-form-card {
    padding: 30px;
  }
}

.nav-break {
  flex-basis: 100%;
}