:root {
  --paper: #fbfbf7;
  --ink: #1f302b;
  --muted: #586762;
  --leaf: #2f6d59;
  --coral: #c64c31;
  --sun: #f5b33e;
  --plum: #573653;
  --line: rgba(31, 48, 43, 0.14);
  --shadow: 0 24px 80px rgba(31, 48, 43, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  color: var(--ink);
  background: var(--paper);
  font-family: Avenir, "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}

body {
  min-height: 100%;
  margin: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 15% 18%, rgba(245, 179, 62, 0.18), transparent 28rem),
    radial-gradient(circle at 85% 18%, rgba(47, 109, 89, 0.12), transparent 31rem),
    linear-gradient(180deg, #fffefa 0%, #f4f7f2 100%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(31, 48, 43, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 48, 43, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 76svh;
  place-items: center;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.hero::after {
  position: absolute;
  right: clamp(1rem, 6vw, 7rem);
  bottom: 0;
  left: clamp(1rem, 6vw, 7rem);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.hero__art {
  position: absolute;
  right: max(-10rem, -10vw);
  bottom: max(-12rem, -14vw);
  width: min(58vw, 46rem);
  opacity: 0.2;
  transform: rotate(-8deg);
}

.hero__content {
  position: relative;
  width: min(100%, 54rem);
  padding-bottom: clamp(2rem, 6vh, 4.5rem);
}

.brand {
  width: min(100%, 26rem);
  margin: 0 0 clamp(2rem, 5vw, 3.5rem);
  filter: drop-shadow(0 12px 28px rgba(31, 48, 43, 0.14));
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

h1 {
  max-width: 22ch;
  font-size: clamp(1.9rem, 3.7vw, 3.65rem);
}

h2 {
  max-width: 11ch;
  font-size: clamp(2rem, 4.8vw, 4.5rem);
}

.intro {
  max-width: 37rem;
  margin: clamp(0.9rem, 2vw, 1.35rem) 0 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  line-height: 1.6;
}

.mission {
  padding: clamp(3.25rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem)
    clamp(4rem, 10vw, 8rem);
}

.mission__inner {
  display: grid;
  grid-template-columns: minmax(15rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  width: min(100%, 76rem);
  margin: 0 auto;
  align-items: start;
}

.mission__heading {
  position: sticky;
  top: 3rem;
  padding-top: 0.35rem;
}

.mission__heading::after {
  display: block;
  width: 9rem;
  height: 0.42rem;
  margin-top: 2rem;
  content: "";
  background: linear-gradient(90deg, var(--leaf), var(--sun), var(--coral), var(--plum));
  border-radius: 999px;
}

.mission__text {
  display: grid;
  gap: 1.35rem;
  padding: clamp(1.35rem, 3vw, 2.25rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #31423d;
  font-size: clamp(1rem, 1.16vw, 1.12rem);
  line-height: 1.83;
}

.mission__text p {
  margin: 0;
}

.mission__text p:first-child::first-letter {
  float: left;
  margin: 0.1rem 0.5rem 0 0;
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.2rem;
  line-height: 0.86;
}

@media (max-width: 760px) {
  .hero {
    min-height: 72svh;
    place-items: start;
    padding: 1.4rem 1.25rem 3rem;
  }

  .hero__content {
    padding: 0;
  }

  .hero__art {
    right: -11rem;
    bottom: -8rem;
    width: 31rem;
    opacity: 0.13;
  }

  .brand {
    width: min(100%, 17rem);
    margin-bottom: 2.6rem;
  }

  h1 {
    max-width: 17ch;
    font-size: clamp(1.9rem, 8.5vw, 2.75rem);
  }

  .intro {
    max-width: 22rem;
    font-size: 0.96rem;
  }

  .mission__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission__heading {
    position: static;
  }

  h2 {
    max-width: 12ch;
  }

  .mission__text {
    line-height: 1.76;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__art img {
    animation: drift 18s ease-in-out infinite alternate;
  }

  @keyframes drift {
    from {
      transform: translate3d(0, 0, 0) rotate(0deg);
    }

    to {
      transform: translate3d(-1.4rem, -0.8rem, 0) rotate(3deg);
    }
  }
}
