:root
  {
  color-scheme: light;
  --green-950: #102b1b;
  --green-900: #173b25;
  --green-700: #2e653d;
  --cream: #f7f3e8;
  --white: #fff;
  --shadow: rgba(5, 19, 10, 0.3);
  }

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

html
  {
  min-width: 20rem;
  background: var(--green-950);
  }

body
  {
  margin: 0;
  color: var(--white);
  background: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  }

.hero
  {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  }

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

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

.hero__shade
  {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(16, 43, 27, 0.96) 0%,
      rgba(16, 43, 27, 0.82) 30%,
      rgba(16, 43, 27, 0.25) 58%,
      rgba(16, 43, 27, 0.02) 76%
      ),
    linear-gradient(
      0deg,
      rgba(7, 22, 13, 0.72) 0%,
      transparent 30%
      );
  }

.hero__content
  {
  align-self: center;
  width: min(44rem, calc(100% - 3rem));
  margin: 0 auto 4rem clamp(1.5rem, 7vw, 8rem);
  text-shadow: 0 0.15rem 0.8rem var(--shadow);
  }

.hero__eyebrow
  {
  margin: 0 0 1rem;
  color: #dcebcf;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  }

h1
  {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.5rem, 6.5vw, 6.3rem);
  font-weight: 400;
  line-height: 0.95;
  text-wrap: balance;
  }

.hero__announcement
  {
  max-width: 32rem;
  margin: 1.8rem 0 0;
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  line-height: 1.55;
  }

.hero__note
  {
  display: inline-block;
  margin: 1.4rem 0 0;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.94rem;
  backdrop-filter: blur(0.2rem);
  }

.hero__caption
  {
  align-self: end;
  justify-self: end;
  margin: 0 1.25rem 1.1rem 1.25rem;
  color: rgba(255, 255, 255, 0.86);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  text-shadow: 0 0.1rem 0.45rem rgba(0, 0, 0, 0.8);
  }

.site-footer
  {
  padding: 1rem 1.5rem;
  color: rgba(255, 255, 255, 0.72);
  background: var(--green-950);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  text-align: center;
  }

.site-footer p
  {
  margin: 0;
  }

@media (max-width: 48rem)
  {
  .hero
    {
    min-height: 44rem;
    }
  .hero__image
    {
    object-position: 58% center;
    }
  .hero__shade
    {
    background:
      linear-gradient(
        0deg,
        rgba(16, 43, 27, 0.97) 0%,
        rgba(16, 43, 27, 0.88) 42%,
        rgba(16, 43, 27, 0.28) 75%,
        rgba(16, 43, 27, 0.06) 100%
        );
    }

  .hero__content
    {
    align-self: end;
    width: auto;
    margin: 0 1.5rem 5.5rem;
    }

  h1
    {
    max-width: 11ch;
    font-size: clamp(2.5rem, 12vw, 4.4rem);
    }

  .hero__caption
    {
    justify-self: start;
    }
  }

@media (prefers-reduced-motion: reduce)
  {
  *,
  *::before,
  *::after
    {
    scroll-behavior: auto !important;
    }
  }