:root {
  --navy: #182f67;
  --navy-deep: #102558;
  --turquoise: #00a9db;
  --turquoise-bright: #00bbf1;
  --lime: #98b71d;
  --ink: #26354c;
  --muted: #647184;
  --paper: #ffffff;
  --mist: #eef8fb;
  --line: #d9e6eb;
  --shadow: 0 18px 55px rgba(8, 29, 69, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--navy) url("../images/bg.jpg") center top / cover fixed no-repeat;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: var(--navy);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--turquoise);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #ffd452;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy-deep);
  border-radius: 6px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-header {
  display: none;
}

.site-frame {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  width: min(1400px, calc(100% - 48px));
  margin: 24px auto;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.sidebar {
  position: relative;
  z-index: 10;
  background:
    linear-gradient(90deg, transparent 0 26px, var(--lime) 26px 52px, transparent 52px) left 44% / 100% 39% no-repeat,
    linear-gradient(180deg, #d8f3fa 0, #fff 17%, #fff 100%);
}

.sidebar__inner {
  position: sticky;
  top: 24px;
  min-height: calc(100vh - 48px);
  padding: 28px 32px 190px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fafafa 58%, #fff 100%);
  border-radius: 30px 30px 112px 112px;
  box-shadow: 6px 0 24px rgba(13, 41, 89, 0.18);
}

.sidebar__inner::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 180px;
  width: 220px;
  height: 20px;
  border-top: 3px solid #aca6ad;
  border-radius: 50%;
  transform: rotate(3deg);
  opacity: 0.72;
}

.sidebar__logo {
  display: block;
  margin: 0 -14px 42px;
}

.sidebar__logo img {
  width: 100%;
}

.sidebar__nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.sidebar__nav a {
  position: relative;
  padding: 12px 6px 11px 20px;
  color: #7d7780;
  border-bottom: 1px solid #e5e2e5;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, padding-left 180ms ease;
}

.sidebar__nav a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  transform: translateY(-50%) scale(0.6);
  transition: background 180ms ease, transform 180ms ease;
}

.sidebar__nav a:hover,
.sidebar__nav a[aria-current="page"] {
  padding-left: 25px;
  color: var(--navy);
}

.sidebar__nav a:hover::before,
.sidebar__nav a[aria-current="page"]::before {
  background: var(--turquoise);
  transform: translateY(-50%) scale(1);
}

.don-link {
  position: relative;
  z-index: 2;
  display: block;
  width: 192px;
  max-width: 100%;
  margin: 34px auto 0;
  border-radius: 22px;
  box-shadow: 0 8px 20px rgba(24, 47, 103, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.don-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(24, 47, 103, 0.23);
}

.sidebar__foliage {
  position: absolute;
  inset: auto 0 0;
  height: 185px;
  background: url("../images/feuillage-colonne.jpg") center bottom / cover no-repeat;
}

main {
  min-width: 0;
  overflow: hidden;
}

.hero {
  background: #fff;
}

.hero__heading {
  position: relative;
  min-height: 180px;
  padding: 38px clamp(32px, 6vw, 84px) 34px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 187, 241, 0.26), transparent 27%),
    linear-gradient(115deg, var(--navy-deep), var(--navy) 72%);
}

.hero__heading::after {
  content: "";
  position: absolute;
  right: -5%;
  bottom: -32px;
  width: 72%;
  height: 70px;
  border-top: 2px solid rgba(0, 187, 241, 0.8);
  border-radius: 50%;
  transform: rotate(-2deg);
}

.hero__eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  position: relative;
  z-index: 1;
  max-width: 930px;
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.3vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero__image {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero__image img {
  width: 100%;
}

.hero__image::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -42px;
  height: 80px;
  background: #fff;
  border-radius: 50% 50% 0 0;
}

.section-pad {
  padding: clamp(64px, 8vw, 108px) clamp(32px, 7vw, 96px);
}

.intro {
  padding-top: 52px;
}

.section-heading {
  position: relative;
  margin-bottom: 34px;
  padding-left: 24px;
}

.section-heading::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 5px;
  background: linear-gradient(var(--turquoise), var(--lime));
  border-radius: 99px;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.section-heading .section-kicker {
  color: var(--turquoise);
}

.intro__copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 70px);
}

.lead {
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.45;
}

.beneficiaries {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  margin-top: 54px;
  padding: 20px 38px 20px 20px;
  background: linear-gradient(105deg, #f5f5f5, #fff);
  border: 1px solid #e3e3e3;
  border-left: 10px solid var(--lime);
  border-radius: 0 70px 70px 0;
}

.beneficiaries img {
  width: 100%;
  border-radius: 0 48px 48px 0;
}

.beneficiaries p {
  margin-bottom: 0;
}

.beneficiaries__label {
  color: var(--turquoise);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  position: relative;
}

.section--location {
  background:
    linear-gradient(90deg, rgba(0, 169, 219, 0.08), transparent 48%),
    var(--mist);
}

.section--location::after {
  content: "";
  position: absolute;
  top: 0;
  right: -80px;
  width: 260px;
  height: 120px;
  border-top: 2px solid rgba(0, 169, 219, 0.45);
  border-radius: 50%;
  transform: rotate(8deg);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
}

.map-frame {
  position: relative;
  margin: 0;
  padding: 12px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(24, 47, 103, 0.16);
  transform: rotate(-1deg);
}

.map-frame img {
  width: 100%;
}

.map-frame figcaption {
  padding: 12px 8px 4px;
  color: var(--muted);
  font-size: 0.85rem;
}

.location-note {
  position: relative;
  padding: 34px 0 34px 30px;
  border-left: 3px solid var(--lime);
}

.location-note p:last-child {
  margin-bottom: 0;
}

.section--objectives {
  overflow: hidden;
  background: #fff;
}

.section--objectives::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: 54px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(152, 183, 29, 0.16), transparent 68%);
  border-radius: 50%;
}

.objectives-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.5fr);
  gap: clamp(44px, 7vw, 92px);
}

.objectives-text {
  position: relative;
  z-index: 1;
}

.project-figures {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  background: linear-gradient(160deg, var(--navy), #1d4d8b);
  border-radius: 6px 64px 6px 64px;
  box-shadow: var(--shadow);
}

.project-figures div {
  padding: 26px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.project-figures div:last-child {
  border-bottom: 0;
}

.project-figures dt {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
}

.project-figures dd {
  margin: 5px 0 0;
  color: #bcebf5;
  font-size: 0.9rem;
  line-height: 1.35;
}

.section--partners {
  color: #eaf6ff;
  background:
    radial-gradient(circle at 100% 0, rgba(0, 187, 241, 0.2), transparent 32%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
}

.section--partners .section-heading h2,
.section--partners h3,
.section--partners a {
  color: #fff;
}

.section--partners .section-heading .section-kicker {
  color: #b9d73d;
}

.partner-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.7fr);
  gap: 50px;
  padding: 30px 0 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.partner-feature__name {
  margin-bottom: 12px;
  color: #83def4;
  font-size: 1.3rem;
  font-weight: 700;
}

address {
  font-style: normal;
}

.partner-feature address {
  display: flex;
  flex-direction: column;
}

.partner-feature > p {
  margin: 0;
  align-self: center;
  color: #c6d6ec;
  font-size: 1.08rem;
}

.partner-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(38px, 6vw, 78px);
  padding-top: 44px;
}

.partner-columns h3 {
  margin-bottom: 22px;
  color: #b9d73d;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.leaf-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.leaf-list li {
  position: relative;
  margin-bottom: 18px;
  padding-left: 26px;
}

.leaf-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 12px;
  height: 8px;
  background: var(--lime);
  border-radius: 100% 0 100% 0;
  transform: rotate(-25deg);
}

.partner-note {
  margin: 28px 0 0;
  color: #b9c9de;
}

.section--funding {
  background:
    linear-gradient(180deg, rgba(0, 169, 219, 0.05), transparent 18%),
    #fff;
}

.funding-summary {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr);
  gap: 46px;
  align-items: center;
  margin-bottom: 52px;
  padding: 28px 36px;
  background: #f3f8f9;
  border-left: 8px solid var(--turquoise);
}

.funding-summary p {
  margin: 0;
}

.funding-summary p span,
.funding-summary p strong {
  display: block;
}

.funding-summary p span {
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.funding-summary p strong {
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
}

.funding-summary ul {
  margin: 0;
  padding-left: 1.2em;
}

.funding-table-wrap + .funding-table-wrap {
  margin-top: 46px;
}

.funding-table-wrap h3 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 1.25rem;
}

.funding-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  font-size: 0.92rem;
  line-height: 1.35;
}

.funding-table th,
.funding-table td {
  padding: 14px 13px;
  text-align: center;
}

.funding-table thead th {
  color: #fff;
  background: var(--lime);
}

.funding-table thead th:first-child {
  background: var(--navy);
}

.funding-table tbody th {
  color: #fff;
  background: var(--turquoise);
  text-align: left;
}

.funding-table tbody td {
  background: #f1f3f4;
}

.section--gallery {
  background:
    radial-gradient(circle at 13% 8%, rgba(0, 187, 241, 0.16), transparent 22%),
    var(--navy-deep);
}

.section-heading--light h2 {
  color: #fff;
}

.section-heading--light .section-kicker {
  color: #b9d73d;
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #0b1b42;
  border: 0;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, opacity 320ms ease;
}

.gallery-item span {
  position: absolute;
  inset: auto 0 0;
  padding: 25px 12px 10px;
  background: linear-gradient(transparent, rgba(6, 21, 51, 0.88));
  font-size: 0.78rem;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  opacity: 0.78;
  transform: scale(1.04);
}

.gallery-item:hover span,
.gallery-item:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.section--contact {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(152, 183, 29, 0.1), transparent 38%),
    #fff;
}

.section--contact::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border: 28px solid rgba(0, 169, 219, 0.09);
  border-radius: 50%;
}

.contact-intro {
  color: var(--turquoise);
  font-size: 1.2rem;
  font-weight: 700;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 7vw, 84px);
  padding-top: 18px;
}

.contact-layout h3 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: 1.35rem;
}

.contact-person {
  padding-right: 30px;
  border-right: 1px solid var(--line);
}

.contact-person p {
  margin-bottom: 8px;
}

.bank-details dl {
  margin: 0;
}

.bank-details dl div {
  display: grid;
  grid-template-columns: minmax(110px, 0.65fr) minmax(0, 1.35fr);
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.bank-details dt {
  color: var(--muted);
}

.bank-details dd {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(32px, 7vw, 96px);
  color: #dbe6f4;
  background: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.035em;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
}

.lightbox {
  width: min(1100px, calc(100% - 36px));
  max-width: none;
  max-height: calc(100vh - 36px);
  padding: 0;
  color: #fff;
  background: #081735;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.5);
}

.lightbox::backdrop {
  background: rgba(5, 15, 38, 0.86);
  backdrop-filter: blur(3px);
}

.lightbox figure {
  display: flex;
  min-height: 240px;
  margin: 0;
  align-items: center;
  justify-content: center;
}

.lightbox figure img {
  max-width: 100%;
  max-height: calc(100vh - 110px);
}

.lightbox figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px 80px 16px;
  background: linear-gradient(transparent, rgba(3, 12, 31, 0.92));
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  display: grid;
  color: #fff;
  background: rgba(9, 26, 61, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  place-items: center;
  cursor: pointer;
}

.lightbox__close {
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  width: 52px;
  height: 52px;
  font-size: 2.4rem;
  transform: translateY(-50%);
}

.lightbox__nav--previous {
  left: 14px;
}

.lightbox__nav--next {
  right: 14px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  body {
    font-size: 16px;
  }

  .site-frame {
    grid-template-columns: 235px minmax(0, 1fr);
    width: min(1050px, calc(100% - 28px));
    margin: 14px auto;
  }

  .sidebar__inner {
    top: 14px;
    min-height: calc(100vh - 28px);
    padding-right: 24px;
    padding-left: 24px;
  }

  .sidebar__logo {
    margin-right: -18px;
    margin-left: -18px;
  }

  .sidebar__nav a {
    font-size: 0.79rem;
  }

  .don-link {
    width: 170px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .intro__copy,
  .objectives-layout {
    grid-template-columns: 1fr;
  }

  .project-figures {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project-figures div {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 92px;
  }

  body {
    background-attachment: scroll;
  }

  .mobile-header {
    position: sticky;
    z-index: 100;
    top: 0;
    display: flex;
    min-height: 82px;
    padding: 8px 18px;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 5px solid var(--lime);
    box-shadow: 0 8px 24px rgba(9, 31, 72, 0.19);
  }

  .mobile-header > a {
    width: min(190px, 57vw);
  }

  .menu-toggle {
    display: inline-flex;
    min-width: 82px;
    min-height: 48px;
    padding: 9px 12px;
    color: var(--navy);
    background: #eef6f8;
    border: 1px solid #bfd7df;
    border-radius: 7px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
  }

  .menu-toggle__icon,
  .menu-toggle__icon::before,
  .menu-toggle__icon::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
    transition: transform 180ms ease;
  }

  .menu-toggle__icon {
    position: relative;
  }

  .menu-toggle__icon::before,
  .menu-toggle__icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-toggle__icon::before {
    top: -6px;
  }

  .menu-toggle__icon::after {
    top: 6px;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 14px 18px 22px;
    background:
      radial-gradient(circle at 100% 100%, rgba(0, 187, 241, 0.2), transparent 34%),
      var(--navy);
    border-bottom: 6px solid var(--turquoise);
    box-shadow: 0 18px 30px rgba(7, 24, 57, 0.28);
  }

  .mobile-nav:not([hidden]) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
  }

  .mobile-nav a {
    padding: 12px 10px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav a[aria-current="page"] {
    color: #cbe34f;
  }

  .site-frame {
    display: block;
    width: 100%;
    margin: 0;
    box-shadow: none;
  }

  .sidebar {
    display: none;
  }

  .hero__heading {
    min-height: 0;
    padding: 38px 24px 34px;
  }

  .hero__eyebrow {
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(1.75rem, 8vw, 2.55rem);
  }

  .hero__image img {
    min-height: 190px;
    object-fit: cover;
    object-position: 64% center;
  }

  .section-pad {
    padding: 64px 24px;
  }

  .intro {
    padding-top: 42px;
  }

  .intro__copy,
  .location-layout,
  .partner-feature,
  .partner-columns,
  .funding-summary,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .beneficiaries {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 16px 20px 26px 16px;
    border-radius: 0 42px 42px 0;
  }

  .beneficiaries img {
    max-width: 340px;
  }

  .location-note {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .project-figures {
    grid-template-columns: 1fr;
  }

  .project-figures div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .partner-feature {
    gap: 24px;
  }

  .funding-summary {
    gap: 24px;
    padding: 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .gallery-item span {
    opacity: 1;
    transform: none;
  }

  .contact-person {
    padding-right: 0;
    padding-bottom: 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .funding-table,
  .funding-table tbody,
  .funding-table tr,
  .funding-table th,
  .funding-table td {
    display: block;
    width: 100%;
  }

  .funding-table {
    border-spacing: 0;
  }

  .funding-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .funding-table tbody tr {
    margin-bottom: 16px;
    border: 1px solid var(--line);
  }

  .funding-table tbody th {
    padding: 14px 16px;
    text-align: left;
  }

  .funding-table tbody td {
    display: grid;
    grid-template-columns: minmax(130px, 1fr) 1fr;
    gap: 16px;
    padding: 10px 14px;
    text-align: right;
    border-bottom: 1px solid #fff;
  }

  .funding-table tbody td::before {
    content: attr(data-label);
    color: var(--muted);
    font-weight: 700;
    text-align: left;
  }

  .bank-details dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .lightbox__nav {
    width: 44px;
    height: 44px;
  }

  .lightbox figcaption {
    padding-right: 58px;
    padding-left: 58px;
    font-size: 0.85rem;
  }
}

@media (max-width: 420px) {
  .mobile-header {
    padding-right: 12px;
    padding-left: 12px;
  }

  .mobile-nav:not([hidden]) {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding-right: 19px;
    padding-left: 19px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
