.foundation-page {
  background: #fbf8f1;
  color: #29251f;
}

.foundation-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #a2730b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.foundation-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.foundation-hero {
  overflow: hidden;
  background: #211f1a;
}

.foundation-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  min-height: 710px;
}

.foundation-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(35px, 5vw, 80px) 90px 0;
}

.foundation-hero__content h1 {
  margin: 27px 0 28px;
  color: #fffaf0;
  font-family: var(--font-display);
  font-size: clamp(68px, 8vw, 118px);
  font-weight: 500;
  line-height: .82;
  letter-spacing: -.055em;
}

.foundation-hero__content h1 em {
  color: #e0b13a;
  font-weight: 400;
}

.foundation-hero__content > p {
  max-width: 590px;
  margin: 0;
  color: rgba(255,250,240,.65);
  font-size: 14px;
  line-height: 1.85;
}

.foundation-hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 38px;
}

.foundation-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 57px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.foundation-btn--gold {
  background: #e1b23a;
  color: #211f1a;
}

.foundation-btn--line {
  border: 1px solid rgba(255,255,255,.22);
  color: #fffaf0;
}

.foundation-btn:hover {
  color: #211f1a;
  background: #fffaf0;
  transform: translateY(-2px);
}

.foundation-hero__visual {
  position: relative;
  min-height: 710px;
  padding: 48px 0 48px 48px;
}

.foundation-hero__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 90px 0 0 0;
}

.foundation-hero__image::after {
  content: "";
  position: absolute;
  inset: 48px 0 48px 48px;
  border-radius: 90px 0 0 0;
  background: linear-gradient(180deg, transparent 50%, rgba(19,17,13,.5));
  pointer-events: none;
}

.foundation-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.foundation-hero__badge {
  position: absolute;
  bottom: 83px;
  left: 12px;
  display: grid;
  width: 185px;
  height: 185px;
  padding: 28px;
  border-radius: 50%;
  background: #e1b23a;
  color: #211f1a;
  text-align: center;
  place-content: center;
}

.foundation-hero__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 58px;
  line-height: .85;
}

.foundation-hero__badge span {
  display: block;
  margin-top: 9px;
  font-size: 9px;
  line-height: 1.45;
}

.foundation-hero__caption {
  position: absolute;
  right: 25px;
  bottom: 67px;
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.foundation-hero__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.13);
}

.foundation-hero__facts > div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 104px;
  padding: 22px clamp(20px, 3vw, 42px);
  border-right: 1px solid rgba(255,255,255,.12);
}

.foundation-hero__facts > div:last-child {
  border-right: 0;
  background: #e1b23a;
}

.foundation-hero__facts > div > span {
  color: #d9aa35;
  font-family: var(--font-display);
  font-size: 16px;
}

.foundation-hero__facts > div > strong {
  color: #211f1a;
  font-family: var(--font-display);
  font-size: 34px;
}

.foundation-hero__facts p,
.foundation-hero__facts strong,
.foundation-hero__facts small {
  display: block;
  margin: 0;
}

.foundation-hero__facts p > strong {
  color: #fffaf0;
  font-size: 11px;
}

.foundation-hero__facts small {
  margin-top: 3px;
  color: rgba(255,250,240,.42);
  font-size: 8px;
}

.foundation-hero__facts > div:last-child small {
  color: #211f1a;
}

.foundation-mission,
.foundation-gallery {
  padding: clamp(90px, 10vw, 145px) 0;
}

.foundation-section-head {
  display: grid;
  grid-template-columns: .55fr 1.2fr .7fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: end;
  margin-bottom: 62px;
}

.foundation-section-head > div small {
  display: block;
  margin-top: 25px;
  color: #756c5c;
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
}

.foundation-section-head h2,
.foundation-movement__content h2,
.foundation-donate__intro h2,
.foundation-gallery header h2 {
  margin: 0;
  color: #28241e;
  font-family: var(--font-display);
  font-size: clamp(47px, 5.5vw, 77px);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.042em;
}

.foundation-section-head > p {
  margin: 0 0 4px;
  color: #6d6556;
  font-size: 12px;
  line-height: 1.8;
}

.foundation-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d9cfbb;
  border-left: 1px solid #d9cfbb;
}

.foundation-impact-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 365px;
  padding: 34px;
  border-right: 1px solid #d9cfbb;
  border-bottom: 1px solid #d9cfbb;
  transition: background .25s ease, transform .25s ease;
}

.foundation-impact-grid article:hover {
  background: #f0e5cf;
  transform: translateY(-4px);
}

.foundation-impact-grid article > span {
  color: #a3740b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
}

.foundation-impact-grid article > i {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #a87810;
  font-size: 34px;
}

.foundation-impact-grid h3 {
  max-width: 310px;
  margin: 0 0 13px;
  color: #29251f;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.05;
}

.foundation-impact-grid p {
  max-width: 320px;
  margin: 0;
  color: #706858;
  font-size: 11px;
  line-height: 1.7;
}

.foundation-movement {
  padding: clamp(85px, 9vw, 130px) 0;
  background: #eee3cc;
}

.foundation-movement__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.foundation-movement__media {
  position: relative;
  min-height: 650px;
}

.foundation-movement__media img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 2px 80px 2px 2px;
}

.foundation-movement__media span {
  position: absolute;
  right: -34px;
  bottom: 50px;
  max-width: 245px;
  padding: 25px 30px;
  background: #24211c;
  color: #fffaf0;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.12;
}

.foundation-movement__content h2 {
  margin: 22px 0 27px;
}

.foundation-movement__content > p {
  margin: 0 0 17px;
  color: #655d50;
  font-size: 13px;
  line-height: 1.85;
}

.foundation-movement__content .foundation-movement__lead {
  color: #2c2822;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.35;
}

.foundation-movement__content ul {
  margin: 35px 0 30px;
  border-top: 1px solid rgba(56,47,31,.22);
}

.foundation-movement__content li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(56,47,31,.22);
  color: #403a31;
  font-size: 12px;
}

.foundation-movement__content li span {
  color: #a37208;
  font-family: var(--font-display);
}

.foundation-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid #29251f;
  color: #29251f;
  font-size: 12px;
  font-weight: 700;
}

.foundation-text-link:hover {
  color: #926200;
  border-color: #926200;
}

.foundation-donate {
  padding: clamp(90px, 10vw, 145px) 0;
  background: #25221d;
}

.foundation-donate__intro {
  display: grid;
  grid-template-columns: .55fr 1.15fr .7fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: end;
  margin-bottom: 58px;
}

.foundation-donate__intro h2 {
  color: #fffaf0;
}

.foundation-donate__intro > p {
  margin: 0 0 5px;
  color: rgba(255,250,240,.55);
  font-size: 12px;
  line-height: 1.8;
}

.foundation-donate__layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 22px;
}

.foundation-bank-card {
  display: flex;
  flex-direction: column;
  min-height: 480px;
  padding: clamp(30px, 4vw, 48px);
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 110% -10%, rgba(255,255,255,.28), transparent 34%),
    linear-gradient(145deg, #edc34f, #d69f1a);
  color: #211f1a;
  box-shadow: 0 35px 80px rgba(0,0,0,.22);
}

.foundation-bank-card__top,
.foundation-bank-card__number,
.foundation-bank-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.foundation-bank-card__top {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.foundation-bank-card__top i {
  font-size: 24px;
}

.foundation-bank-card__name {
  margin-top: 65px;
}

.foundation-bank-card small,
.foundation-bank-card strong {
  display: block;
}

.foundation-bank-card small {
  margin-bottom: 7px;
  color: rgba(33,31,26,.62);
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.foundation-bank-card__name strong {
  font-family: var(--font-display);
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 600;
}

.foundation-bank-card__number {
  margin-top: 54px;
}

.foundation-bank-card__number strong {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 600;
  letter-spacing: .06em;
}

.foundation-bank-card__bottom {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(33,31,26,.25);
}

.foundation-bank-card__bottom > span {
  padding: 7px 10px;
  border: 1px solid rgba(33,31,26,.28);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
}

.foundation-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.foundation-bank-card .foundation-copy:hover,
.foundation-bank-card .foundation-copy.is-copied {
  background: #211f1a;
  color: #fff;
}

.foundation-transfer-options {
  display: grid;
  gap: 14px;
}

.foundation-transfer-options article {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 150px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 15px;
  background: rgba(255,255,255,.045);
}

.foundation-transfer-options__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(225,178,58,.13);
  color: #e1b23a;
}

.foundation-transfer-options article span {
  color: #d9a92f;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.foundation-transfer-options article h3 {
  margin: 6px 0 4px;
  color: #fffaf0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 29px);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.foundation-transfer-options article p {
  margin: 0;
  color: rgba(255,250,240,.45);
  font-size: 9px;
}

.foundation-transfer-options .foundation-copy {
  border-color: rgba(255,255,255,.2);
  color: #fffaf0;
}

.foundation-transfer-options .foundation-copy:hover,
.foundation-transfer-options .foundation-copy.is-copied {
  background: #e1b23a;
  color: #211f1a;
}

.foundation-donate__verify {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 25px;
  border-left: 2px solid #e1b23a;
  background: rgba(225,178,58,.08);
}

.foundation-donate__verify > i {
  margin-top: 3px;
  color: #e1b23a;
}

.foundation-donate__verify p,
.foundation-donate__verify strong,
.foundation-donate__verify span {
  display: block;
  margin: 0;
}

.foundation-donate__verify strong {
  color: #fffaf0;
  font-size: 10px;
}

.foundation-donate__verify span {
  margin-top: 5px;
  color: rgba(255,250,240,.5);
  font-size: 9px;
  line-height: 1.6;
}

.foundation-donate__contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.foundation-donate__contact p {
  margin: 0;
  color: rgba(255,250,240,.55);
  font-size: 11px;
}

.foundation-donate__contact a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #e1b23a;
  font-size: 11px;
  font-weight: 700;
}

.foundation-gallery {
  background: #fbf8f1;
}

.foundation-gallery header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 54px;
}

.foundation-gallery header h2 {
  margin-top: 17px;
}

.foundation-gallery header > p {
  max-width: 360px;
  margin: 0 0 5px;
  color: #706858;
  font-size: 12px;
  line-height: 1.8;
}

.foundation-gallery__grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  grid-template-rows: repeat(2, 300px);
  gap: 12px;
}

.foundation-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #25221d;
}

.foundation-gallery__large {
  grid-row: span 2;
}

.foundation-gallery figure:last-child {
  grid-column: span 2;
}

.foundation-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1), opacity .3s ease;
}

.foundation-gallery figure:hover img {
  opacity: .72;
  transform: scale(1.045);
}

.foundation-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 45px 24px 22px;
  background: linear-gradient(transparent, rgba(20,18,14,.78));
}

.foundation-gallery figcaption span,
.foundation-gallery figcaption strong {
  display: block;
}

.foundation-gallery figcaption span {
  color: #e1b23a;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.foundation-gallery figcaption strong {
  margin-top: 5px;
  color: #fffaf0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
}

@media (max-width: 1199px) {
  .foundation-hero__grid {
    grid-template-columns: 1fr 1fr;
  }

  .foundation-section-head,
  .foundation-donate__intro {
    grid-template-columns: .7fr 1.3fr;
  }

  .foundation-section-head > p,
  .foundation-donate__intro > p {
    grid-column: 2;
  }
}

@media (max-width: 991px) {
  .foundation-hero__grid,
  .foundation-movement__grid,
  .foundation-donate__layout {
    grid-template-columns: 1fr;
  }

  .foundation-hero__content {
    min-height: 650px;
    padding-right: 0;
  }

  .foundation-hero__visual {
    min-height: 620px;
  }

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

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

  .foundation-impact-grid article {
    min-height: 290px;
  }

  .foundation-movement__media {
    max-width: 650px;
  }
}

@media (max-width: 767px) {
  .foundation-hero__content {
    min-height: auto;
    padding: 90px 0 75px;
  }

  .foundation-hero__actions,
  .foundation-donate__contact,
  .foundation-gallery header {
    align-items: stretch;
    flex-direction: column;
  }

  .foundation-hero__visual {
    min-height: 520px;
    padding-left: 20px;
  }

  .foundation-hero__image::after {
    left: 20px;
  }

  .foundation-hero__badge {
    left: 0;
    width: 150px;
    height: 150px;
  }

  .foundation-hero__facts,
  .foundation-section-head,
  .foundation-donate__intro {
    grid-template-columns: 1fr;
  }

  .foundation-section-head > p,
  .foundation-donate__intro > p {
    grid-column: auto;
  }

  .foundation-movement__media,
  .foundation-movement__media img {
    min-height: 470px;
    height: 470px;
  }

  .foundation-movement__media span {
    right: 0;
    bottom: 25px;
  }

  .foundation-bank-card {
    min-height: 440px;
  }

  .foundation-bank-card__number {
    align-items: flex-start;
    flex-direction: column;
  }

  .foundation-transfer-options article {
    grid-template-columns: 44px 1fr;
  }

  .foundation-transfer-options article .foundation-copy {
    grid-column: 2;
    justify-self: start;
  }

  .foundation-gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .foundation-gallery figure,
  .foundation-gallery__large,
  .foundation-gallery figure:last-child {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }
}

@media (max-width: 480px) {
  .foundation-hero__facts {
    grid-template-columns: 1fr;
  }

  .foundation-hero__facts > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .foundation-bank-card__number strong {
    font-size: 36px;
  }
}
