:root {
  --red: #b3122d;
  --dark-red: #7f0d22;
  --pink: #ff4f88;
  --light-pink: #fff1f5;
  --black: #111111;
  --dark: #1b1b1f;
  --white: #ffffff;
  --text: #333333;
  --muted: #6f6f76;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
  --container: 1200px;
  --transition: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
  background: linear-gradient(135deg, var(--dark-red), var(--red), var(--pink));
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: auto;
}

#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  z-index: 9999;
  background: linear-gradient(90deg, var(--red), var(--pink));
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(179, 18, 45, 0.22);
  flex-shrink: 0;
  background: transparent;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-size: 16px;
  color: var(--dark-red);
  letter-spacing: 0.5px;
}

.brand-text span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 23px;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--red);
}

.nav-donate {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--red), var(--pink));
  box-shadow: 0 14px 30px rgba(179, 18, 45, 0.25);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  background: var(--red);
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 11px;
}

.menu-toggle span {
  height: 2px;
  width: 100%;
  background: white;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-4px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--red), var(--pink));
  color: var(--white);
  box-shadow: 0 16px 36px rgba(179, 18, 45, 0.27);
}

.btn.ghost {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 100px;
  color: white;
  display: flex;
  align-items: center;
  background-color: var(--dark-red);
  background-image:
    linear-gradient(rgba(25, 2, 8, 0.76), rgba(25, 2, 8, 0.78)),
    url("https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Children_fishing_on_lake_arranged_for_fishing_in_city.jpg/1280px-Children_fishing_on_lake_arranged_for_fishing_in_city.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 79, 136, 0.35), transparent 32%),
    radial-gradient(circle at 80% 85%, rgba(179, 18, 45, 0.32), transparent 30%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.eyebrow.red {
  color: var(--red);
}

.eyebrow.light {
  color: #ffd7e5;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.92;
  max-width: 850px;
  margin-bottom: 24px;
}

.hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card h3 {
  font-size: 27px;
  margin-bottom: 20px;
}

.info-line {
  display: grid;
  gap: 4px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.info-line:last-child {
  border-bottom: none;
}

.info-line span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.info-line strong {
  color: white;
  font-size: 15px;
}

.mission-intro {
  background: var(--black);
  color: white;
  padding: 80px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  align-items: start;
}

.mission-title h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
}

.mission-text p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 18px;
  font-size: 17px;
}

.section {
  padding: 105px 0;
}

.split,
.impact-grid,
.contact-grid,
.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.image-collage {
  position: relative;
}

.main-photo {
  height: 570px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.small-photo {
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 42%;
  height: 230px;
  object-fit: cover;
  border: 8px solid var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.section-copy h2,
.section-heading h2,
.impact-copy h2,
.contact-info h2,
.donate-copy h2 {
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--dark);
}

.section-copy p,
.section-heading p,
.impact-copy p,
.contact-info p,
.donate-copy p {
  color: var(--muted);
  margin-bottom: 18px;
}

.check-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.check-grid div {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--light-pink);
  color: var(--dark-red);
  font-weight: 800;
}

.section-heading.center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 54px;
}

.projects-section {
  background: #fff8fa;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(179, 18, 45, 0.11);
  border: 1px solid rgba(179, 18, 45, 0.08);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 70px rgba(179, 18, 45, 0.18);
}

.project-card img {
  height: 260px;
  object-fit: cover;
}

.project-body {
  padding: 26px;
}

.project-body span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--pink));
  color: white;
  font-weight: 900;
  margin-bottom: 16px;
}

.project-body h3 {
  font-size: 23px;
  color: var(--dark);
  margin-bottom: 10px;
}

.project-body p {
  color: var(--muted);
  margin-bottom: 18px;
}

.project-body a {
  color: var(--red);
  font-weight: 900;
}

.initiatives-section {
  background-color: var(--dark-red);
  background-image:
    linear-gradient(rgba(124, 10, 31, 0.9), rgba(23, 0, 7, 0.88)),
    url("https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Wildlife_service_and_local_police_working_together.jpg/1280px-Wildlife_service_and_local_police_working_together.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: white;
}

.initiatives-section .section-heading h2 {
  color: white;
  max-width: 760px;
}

.initiative-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.initiative-box {
  padding: 30px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.icon {
  font-size: 34px;
  margin-bottom: 16px;
}

.initiative-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.initiative-box p {
  color: rgba(255, 255, 255, 0.78);
}

.impact-image img {
  height: 520px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-top: 30px;
}

.stats div {
  background: var(--light-pink);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
}

.stats strong {
  display: block;
  font-size: 40px;
  color: var(--red);
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--dark);
  font-weight: 800;
}

.officers-section {
  background: #fff8fa;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.detail-card {
  background: white;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
}

.detail-card.wide {
  grid-column: span 2;
}

.detail-card h3 {
  color: var(--red);
  font-size: 20px;
  margin-bottom: 10px;
}

.detail-card p {
  color: var(--text);
  font-weight: 700;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.news-card {
  border-radius: 24px;
  padding: 30px;
  border: 1px solid var(--border);
  background: white;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-8px);
}

.news-card span {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
}

.news-card h3 {
  margin: 12px 0;
  font-size: 22px;
  color: var(--dark);
}

.news-card p {
  color: var(--muted);
}

.donate-section {
  padding: 105px 0;
  color: white;
  background-color: var(--dark-red);
  background-image:
    linear-gradient(rgba(18, 0, 5, 0.78), rgba(18, 0, 5, 0.78)),
    url("https://upload.wikimedia.org/wikipedia/commons/thumb/8/8b/Kids_Fishing_Day_at_Hensley_Lake_%285674055960%29.jpg/1280px-Kids_Fishing_Day_at_Hensley_Lake_%285674055960%29.jpg");
  background-position: center;
  background-size: cover;
}

.donate-copy h2 {
  color: white;
}

.donate-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.donate-card {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.donate-card h3 {
  font-size: 27px;
  margin-bottom: 18px;
}

.donate-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.donate-card li {
  padding-left: 28px;
  position: relative;
}

.donate-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffd7e5;
  font-weight: 900;
}

.contact-list {
  margin-top: 28px;
  display: grid;
  gap: 15px;
}

.contact-list div {
  padding: 18px;
  background: var(--light-pink);
  border-radius: 18px;
}

.contact-list strong {
  display: block;
  color: var(--dark-red);
  margin-bottom: 5px;
}

.contact-list a {
  color: var(--red);
  font-weight: 900;
}

.contact-form {
  padding: 34px;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 14px;
  outline: none;
  transition: var(--transition);
  background: #fffafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 79, 136, 0.12);
}

.contact-form small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.site-footer {
  background: #0d0d10;
  color: rgba(255, 255, 255, 0.74);
  padding-top: 62px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 34px;
}

.site-footer h3,
.site-footer h4 {
  color: white;
  margin-bottom: 14px;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
}

.site-footer a:hover {
  color: #ff9fba;
}

.footer-bottom {
  margin-top: 45px;
  padding: 18px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--pink));
  color: white;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 14px 30px rgba(179, 18, 45, 0.35);
}

.cookie-box {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  z-index: 998;
}

.cookie-box p {
  color: var(--muted);
  font-size: 14px;
}

.cookie-box button {
  border: none;
  background: var(--red);
  color: white;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .mission-grid,
  .split,
  .impact-grid,
  .contact-grid,
  .donate-grid {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .initiative-grid,
  .news-grid,
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .small-photo {
    position: static;
    width: 100%;
    margin-top: 18px;
    border: none;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 92px;
    padding: 20px;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero {
    padding: 140px 0 80px;
  }

  .project-grid,
  .initiative-grid,
  .news-grid,
  .details-grid,
  .stats,
  .check-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-card.wide {
    grid-column: span 1;
  }

  .brand-text strong {
    font-size: 13px;
  }

  .brand-text span {
    font-size: 10px;
  }

  .cookie-box {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }
}