:root {
  --color-bg: #ffffff;
  --color-text: #000000;
  --color-accent: #f48847;
  --color-sand: #e9ceb0;
  --color-dark: #2b3033;
  --color-border: rgba(0, 0, 0, 0.12);
  --shell: 1226px;
  --page-pad: 3vw;
  --hero-overlay: rgba(43, 48, 51, 0.48);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: Poppins, sans-serif;
  font-weight: 300;
  line-height: 1.8;
}

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

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.232;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  line-height: 1.2992;
}

h3 {
  font-size: clamp(1.9rem, 3vw, 2.2rem);
  line-height: 1.3328;
}

h4 {
  font-size: 1.2rem;
  line-height: 1.3888;
}

.shell {
  width: min(calc(100% - (var(--page-pad) * 2)), var(--shell));
  margin: 0 auto;
}

.shell--narrow {
  width: min(calc(100% - (var(--page-pad) * 2)), 920px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 2rem;
  background: var(--color-accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.button--outline {
  min-height: 52px;
  background: transparent;
  border: 2px solid currentColor;
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 100px;
}

.site-header__brand {
  flex: 0 0 auto;
}

.site-header__brand img {
  width: 78px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1rem;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 0 0 auto;
}

.site-header__mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.site-header__mail svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 80vh;
  overflow: hidden;
  background: var(--color-dark);
  color: #fff;
}

.hero__bg,
.hero__overlay {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  background: linear-gradient(90deg, rgba(43, 48, 51, 0.75) 0%, var(--hero-overlay) 48%, rgba(43, 48, 51, 0.25) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 7rem 0;
}

.hero__copy {
  width: min(55%, 680px);
}

.hero__copy h1 {
  margin-bottom: 2rem;
}

.section {
  padding: 6.6vmax 0;
}

.section--statement {
  display: flex;
  align-items: center;
  min-height: 66vh;
}

.statement {
  text-align: center;
}

.section--sand {
  background: var(--color-sand);
}

.split-text,
.media-copy,
.donation,
.contact-band {
  display: flex;
  align-items: center;
  gap: 6%;
}

.split-text__lead,
.media-copy__media,
.story-card__copy,
.contact-band__intro {
  flex: 0 0 47%;
}

.split-text__body,
.media-copy__copy,
.story-card__media,
.contact-band__form {
  flex: 1 1 0;
  min-width: 0;
}

.large-copy {
  font-size: 1.4rem;
  line-height: 1.8;
}

.media-copy__media img {
  width: 100%;
}

.media-copy__copy h2,
.donation__title h2 {
  margin-bottom: 1.5rem;
}

.media-copy__copy p,
.donation__body p,
.story-card__copy p {
  margin-bottom: 1.5rem;
}

.donation__title {
  flex: 0 0 33%;
}

.donation__body {
  flex: 1 1 0;
  min-width: 0;
  padding-left: 8.3333%;
}

.section--story {
  padding: 3vw 0 6.6vmax;
}

.story-card {
  display: flex;
  align-items: stretch;
  gap: 5%;
}

.story-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-card__copy h3 {
  margin-bottom: 2rem;
}

.story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section--contact {
  min-height: 33vh;
  background: var(--color-dark);
  color: #fff;
  display: flex;
  align-items: center;
}

.contact-band__lead {
  margin-bottom: 1.75rem;
  color: #000;
  font-size: 1rem;
  line-height: 1.8;
}

.contact-band__intro h3,
.contact-band__intro p {
  font-size: 2.2rem;
  line-height: 1.3328;
}

.contact-band__intro p {
  margin-top: 0.15rem;
}

.contact-band__controls {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
}

.contact-band__field,
.contact-band__button {
  display: flex;
  align-items: center;
  min-height: 5.8rem;
  padding: 0 2.5rem;
  font-size: 1rem;
  line-height: 1.2;
}

.contact-band__field {
  flex: 1 1 auto;
  background: #fff;
  color: #000;
}

.contact-band__button {
  flex: 0 0 11.25rem;
  justify-content: center;
  background: var(--color-accent);
  color: #fff;
}

.site-footer {
  padding: 6.6vmax 0;
  background: var(--color-accent);
  color: #fff;
}

.site-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
}

.site-footer__brand {
  flex: 0 0 33%;
}

.site-footer__links {
  display: flex;
  gap: 4rem;
}

.site-footer__links p + p {
  margin-top: 0.75rem;
}

.site-footer a {
  color: inherit;
}

.page-placeholder {
  min-height: 60vh;
}

@media screen and (max-width: 1100px) {
  .site-header__inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }

  .hero__copy {
    width: min(68%, 720px);
  }

  .split-text,
  .media-copy,
  .donation,
  .story-card,
  .contact-band,
  .site-footer__inner,
  .site-footer__links {
    gap: 2rem;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --page-pad: 6vw;
  }

  .site-header__inner {
    min-height: auto;
  }

  .site-header__actions {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: 70vh;
  }

  .hero__content {
    padding: 6rem 0;
  }

  .hero__copy {
    width: 100%;
  }

  .section {
    padding: 12vw 0;
  }

  .split-text,
  .media-copy,
  .donation,
  .story-card,
  .contact-band,
  .site-footer__inner,
  .site-footer__links {
    flex-direction: column;
    align-items: stretch;
  }

  .split-text__lead,
  .media-copy__media,
  .story-card__copy,
  .contact-band__intro,
  .donation__title,
  .split-text__body,
  .media-copy__copy,
  .story-card__media,
  .contact-band__form,
  .donation__body,
  .site-footer__brand {
    flex-basis: auto;
    width: 100%;
    padding-left: 0;
  }

  .large-copy {
    font-size: 1rem;
  }

  .section--story {
    padding-top: 12vw;
  }

  .contact-band__controls {
    flex-direction: column;
  }

  .contact-band__field,
  .contact-band__button {
    min-height: 4.5rem;
    padding: 0 1.5rem;
  }

  .contact-band__button {
    flex-basis: auto;
  }
}
