:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #53606b;
  --paper: #f7f1e7;
  --leaf: #496856;
  --line: rgba(31, 41, 51, 0.16);
  --white: #e9f1ec;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}

main {
  min-height: 100vh;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(620px, 88vh, 920px);
  overflow: hidden;
  isolation: isolate;
}

.hero__image,
.hero__shade,
.hero__content {
  grid-area: 1 / 1;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(247, 241, 231, 0.94) 0%,
      rgba(247, 241, 231, 0.78) 33%,
      rgba(247, 241, 231, 0.18) 72%,
      rgba(247, 241, 231, 0.06) 100%
    ),
    linear-gradient(180deg, rgba(247, 241, 231, 0.14), rgba(247, 241, 231, 0.52));
}

.hero__content {
  align-self: center;
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  padding: 56px 0 86px;
}

.eyebrow,
.status__kicker {
  margin: 0 0 16px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(4.4rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.intro {
  max-width: 34rem;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.45;
}

.status {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.status__inner {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  padding: 46px 0 54px;
}

.status p {
  max-width: 48rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.status .status__kicker {
  margin-bottom: 10px;
  color: #b15c42;
  font-size: 0.75rem;
}

@media (max-width: 720px) {
  .hero {
    min-height: 82vh;
  }

  .hero__shade {
    background:
      linear-gradient(
        180deg,
        rgba(247, 241, 231, 0.94) 0%,
        rgba(247, 241, 231, 0.82) 42%,
        rgba(247, 241, 231, 0.34) 100%
      );
  }

  .hero__content {
    align-self: start;
    width: min(100% - 32px, 1120px);
    padding: 72px 0 68px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.9rem, 15vw, 5.8rem);
  }

  .intro {
    max-width: 28rem;
  }

  .status__inner {
    width: min(100% - 32px, 1120px);
    padding: 34px 0 42px;
  }
}
