:root {
  --green-950: #073b26;
  --green-900: #0a4f31;
  --green-800: #0f663e;
  --green-700: #167a4c;
  --green-100: #e9f6ee;
  --gold-500: #ffc400;
  --gold-600: #dca21a;
  --ink: #101820;
  --muted: #657369;
  --line: #e4e9e2;
  --paper: #ffffff;
  --shell: #f4f5ef;
  --soft: #f8faf6;
  --shadow: 0 24px 70px rgba(29, 49, 39, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 5% 10%, #ffffff 0, var(--shell) 42%, #e7ece4 100%);
  font-family: Inter, Arial, sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(100%, 1660px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 24px;
  box-shadow: 0 26px 90px rgba(9, 34, 22, 0.14);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(130px, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 88px;
  padding: 14px clamp(24px, 4vw, 68px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(228, 233, 226, 0.76);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand strong {
  color: var(--ink);
  font-size: clamp(0.86rem, 1.2vw, 1.04rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
}

.site-nav a {
  position: relative;
  color: #0d2016;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--green-700);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.donate-top {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  color: #191600;
  background: var(--gold-500);
  border: 0;
  border-radius: 9px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(255, 196, 0, 0.28);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--green-900);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  gap: 0;
  min-height: 620px;
  padding: clamp(42px, 5vw, 72px) clamp(24px, 4vw, 68px) 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 45%, rgba(255, 255, 255, 0.1) 100%),
    url("assets/equipe-femmes.jpg") left center / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 36% 48%, rgba(22, 122, 76, 0.12), transparent 28%);
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 610px;
  padding-bottom: 106px;
}

.kicker,
.section-label {
  margin: 0 0 12px;
  color: var(--green-900);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #142018;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 4.5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1::first-line {
  color: #142018;
}

.hero-copy p:not(.kicker) {
  max-width: 560px;
  margin: 22px 0 0;
  color: #26332c;
  font-size: 1rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 9px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.donate-top:hover,
.filter:hover,
.action-card button:hover,
.news-card button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--green-900);
  box-shadow: 0 16px 32px rgba(10, 79, 49, 0.22);
}

.button.soft {
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #b7c7bc;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
}

.trust-row span {
  position: relative;
  padding-left: 25px;
  color: #26332c;
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-row span::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid var(--green-700);
  border-radius: 999px;
  content: "";
  transform: translateY(-50%);
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: end;
  min-height: 570px;
  margin: -72px -68px 0 0;
  padding: 0 clamp(24px, 4vw, 56px) 0 80px;
  background: linear-gradient(90deg, #c9e4df 0%, #cce3e3 58%, #b7d0d3 100%);
  border-bottom-left-radius: 52% 72%;
}

.gold-arc {
  position: absolute;
  left: -52px;
  top: -60px;
  width: 210px;
  height: calc(100% + 120px);
  border-left: 13px solid #f1d26a;
  border-radius: 100% 0 0 100%;
  pointer-events: none;
}

.hero-person {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(100%, 500px);
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.hero-poster {
  position: relative;
  z-index: 2;
  align-self: center;
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 320px;
  padding: 24px 20px;
  text-align: center;
  color: #152337;
  background: rgba(239, 247, 246, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(20, 45, 54, 0.14);
}

.hero-poster img {
  width: 116px;
  height: 116px;
  object-fit: contain;
}

.hero-poster strong {
  font-size: clamp(1.18rem, 1.7vw, 1.65rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-poster em {
  color: #b12035;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.6vw, 1.55rem);
  line-height: 1.2;
}

.hero-poster span {
  display: inline-flex;
  padding: 9px 14px;
  color: #fff;
  background: #d5262f;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 900;
}

.value-strip {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: -48px 0 0;
  padding: 24px clamp(20px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.value-strip article {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.round-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: 999px;
  font-size: 1.8rem;
  font-weight: 900;
}

.round-icon.gold {
  color: #9b7100;
  background: #fff2c6;
}

.value-strip h2,
.value-strip p {
  margin: 0;
}

.value-strip h2 {
  color: var(--green-900);
  font-size: 0.94rem;
}

.value-strip p {
  margin-top: 6px;
  color: #314039;
  font-size: 0.88rem;
  line-height: 1.45;
}

.main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  gap: 38px;
  padding: 42px clamp(24px, 4vw, 68px) 0;
}

.left-column,
.right-column {
  display: grid;
  align-content: start;
  gap: 28px;
}

.panel {
  min-width: 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-head.inline {
  align-items: center;
}

.section-head h2,
.impact-copy h2,
.contact-panel h2,
.modal-body h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-head a,
.text-link {
  color: var(--green-900);
  background: transparent;
  border: 0;
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter {
  min-height: 35px;
  padding: 0 13px;
  color: var(--green-900);
  background: #fff;
  border: 1px solid #cfe1d5;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.filter.active {
  color: #fff;
  background: var(--green-900);
  border-color: var(--green-900);
}

.action-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.action-card,
.news-card,
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(24, 39, 31, 0.06);
}

.action-card {
  position: relative;
  display: grid;
  align-content: start;
  overflow: hidden;
  min-height: 354px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.action-card.is-hidden {
  display: none;
}

.action-card:hover {
  transform: translateY(-3px);
}

.action-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.card-badge {
  position: absolute;
  left: 16px;
  top: 128px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--green-800);
  border: 4px solid #fff;
  border-radius: 999px;
  font-weight: 900;
}

.action-card:nth-child(even) .card-badge {
  background: var(--gold-600);
}

.action-card h3,
.news-card h3 {
  margin: 26px 16px 0;
  color: #142018;
  font-size: 1.08rem;
  line-height: 1.2;
}

.action-card p,
.news-card p,
.contact-panel p {
  margin: 10px 16px 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.action-card button,
.news-card button {
  justify-self: start;
  margin: 18px 16px 18px;
  padding: 0;
  color: var(--green-900);
  background: transparent;
  border: 0;
  font-weight: 900;
}

.impact-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1fr;
  gap: 24px;
  min-height: 250px;
  overflow: hidden;
  padding: 38px;
  color: #fff;
  background: var(--green-950);
}

.impact-cta img,
.impact-overlay {
  position: absolute;
  inset: 0;
}

.impact-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.impact-overlay {
  background: linear-gradient(90deg, rgba(5, 52, 33, 0.96), rgba(5, 52, 33, 0.7), rgba(5, 52, 33, 0.92));
}

.impact-copy,
.impact-stats {
  position: relative;
  z-index: 1;
}

.impact-copy h2 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3vw, 3rem);
}

.impact-copy p {
  max-width: 420px;
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.impact-copy .button.primary {
  color: #181200;
  background: var(--gold-500);
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
}

.impact-stats article {
  display: grid;
  gap: 7px;
  text-align: center;
}

.impact-stats strong {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1;
}

.impact-stats strong::after {
  content: "+";
}

.impact-stats article:last-child strong::after {
  content: "";
}

.impact-stats span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  line-height: 1.35;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-card {
  position: relative;
  overflow: hidden;
}

.news-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.news-card time {
  position: absolute;
  left: 16px;
  top: 118px;
  display: grid;
  width: 54px;
  height: 62px;
  place-items: center;
  color: var(--green-900);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(16, 24, 32, 0.12);
  text-transform: uppercase;
}

.news-card time strong {
  color: var(--gold-600);
  font-size: 1.14rem;
  line-height: 1;
}

.news-card time span {
  font-size: 0.72rem;
  font-weight: 900;
}

.news-card h3 {
  min-height: 72px;
  padding-top: 18px;
  color: var(--green-900);
}

.gallery-panel {
  padding-top: 2px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-strip button {
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 0;
  border-radius: 9px;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  transition: transform 240ms ease;
}

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

.contact-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) 1fr;
  gap: 20px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.contact-panel p {
  margin-left: 0;
}

.contact-form {
  display: grid;
  gap: 13px;
  padding: 18px;
}

.contact-form label,
.donation-field {
  display: grid;
  gap: 7px;
  color: var(--green-900);
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.donation-field select {
  width: 100%;
  min-height: 43px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfdbd2;
  border-radius: 8px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.donation-field select:focus {
  outline: 3px solid rgba(22, 122, 76, 0.16);
  border-color: var(--green-700);
}

.form-status {
  min-height: 21px;
  margin: 0;
  color: var(--green-900);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(160px, 1fr));
  gap: 34px;
  margin-top: 42px;
  padding: 36px clamp(24px, 4vw, 68px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--green-950);
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.footer-brand strong,
.footer-brand span,
.site-footer a,
.site-footer h2,
.site-footer div > span {
  display: block;
}

.footer-brand strong {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-brand span,
.site-footer a,
.site-footer div > span {
  margin-top: 7px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.95rem;
}

.site-footer a:hover {
  color: var(--gold-500);
}

dialog {
  width: min(92vw, 560px);
  padding: 0;
  background: #fff;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3);
}

dialog::backdrop {
  background: rgba(5, 28, 17, 0.6);
  backdrop-filter: blur(5px);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 1.5rem;
  line-height: 1;
}

.modal-body {
  display: grid;
  gap: 18px;
  padding: 36px;
}

.modal-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.donation-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.donation-options button {
  min-height: 48px;
  color: var(--green-900);
  background: var(--green-100);
  border: 1px solid #cfe4d6;
  border-radius: 10px;
  font-weight: 900;
}

.donation-options button.active {
  color: #fff;
  background: var(--green-900);
}

.donation-message {
  padding: 14px;
  background: var(--soft);
  border-radius: 10px;
}

.gallery-modal {
  width: min(94vw, 980px);
  background: #08180f;
}

.gallery-modal img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #08180f;
}

.gallery-modal p {
  margin: 0;
  padding: 14px 54px 20px;
  color: #fff;
  text-align: center;
}

.gallery-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 2rem;
  transform: translateY(-50%);
}

.gallery-nav.prev {
  left: 16px;
}

.gallery-nav.next {
  right: 16px;
}

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: minmax(190px, 1fr) auto auto;
  }

  .site-nav {
    gap: 16px;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    padding-left: 64px;
  }

  .hero-poster {
    display: none;
  }

  .main-grid {
    grid-template-columns: 1fr;
  }

  .action-cards,
  .news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1020px) {
  .site-shell {
    border-radius: 0;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .hero-copy {
    max-width: none;
    padding-bottom: 36px;
  }

  .hero-visual {
    min-height: 430px;
    margin: 0 -68px;
    border-bottom-left-radius: 0;
  }

  .hero-person {
    margin: 0 auto;
    max-height: 420px;
  }

  .value-strip {
    margin-top: -32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact-cta {
    grid-template-columns: 1fr;
  }

  .impact-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 76px;
    padding: 12px 18px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 0.78rem;
  }

  .donate-top {
    display: none;
  }

  .hero,
  .main-grid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-row {
    gap: 16px;
  }

  .hero-visual {
    margin: 0 -18px;
    padding: 0 18px;
  }

  .gold-arc {
    display: none;
  }

  .value-strip,
  .action-cards,
  .news-list,
  .gallery-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .value-strip {
    padding: 18px;
  }

  .value-strip article {
    grid-template-columns: 52px 1fr;
  }

  .round-icon {
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
  }

  .section-head,
  .section-head.inline {
    display: grid;
    align-items: start;
  }

  .filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .impact-cta {
    padding: 28px 20px;
  }

  .impact-stats,
  .donation-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-body {
    padding: 28px 20px;
  }

  .gallery-modal p {
    padding-left: 20px;
    padding-right: 20px;
  }
}
