:root {
  color-scheme: light;
  --paper: #eeeae0;
  --ink: #153d4a;
  --ink-soft: #55717a;
  --signal: #e2603b;
  --line: rgba(21, 61, 74, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
    var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.cover {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100%, 1600px);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 3rem) clamp(1.25rem, 5vw, 5rem) clamp(1.2rem, 2.5vw, 2.5rem);
  overflow: hidden;
}

.masthead,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.masthead {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--ink);
}

.wordmark {
  display: inline-block;
  text-decoration: none;
}

.footer p {
  margin: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(24rem, 1.28fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
  padding: clamp(3rem, 7vh, 6.5rem) 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 clamp(1.5rem, 3.5vh, 3rem);
  color: var(--signal);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1 {
  max-width: 8ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 8.6rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.84;
}

.lede {
  max-width: 22rem;
  margin: clamp(2rem, 4vh, 3.5rem) 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-style: italic;
  line-height: 1.45;
}

.horizon {
  position: relative;
  width: min(100%, 48rem);
  aspect-ratio: 1;
  margin: 0;
  justify-self: end;
  overflow: hidden;
  border: clamp(0.55rem, 1vw, 0.9rem) solid var(--paper);
  border-radius: 50%;
  outline: 1px solid var(--line);
  background: #8ca4ad;
  box-shadow: 1.2rem 1.4rem 0 rgba(21, 61, 74, 0.08);
}

.horizon::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 49.65%, var(--paper) 49.65%, var(--paper) 50.35%, transparent 50.35%),
    linear-gradient(115deg, rgba(226, 96, 59, 0.08), transparent 45%);
  content: "";
  pointer-events: none;
}

.horizon img {
  width: 100%;
  height: 100%;
  filter: saturate(0.78) contrast(1.04) sepia(0.08);
  object-fit: cover;
  object-position: 50% 63%;
  transform: scale(1.025);
}

.footer {
  padding-top: 1.25rem;
  border-top: 1px solid var(--ink);
}

@media (max-width: 800px) {
  .cover {
    min-height: 100svh;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    align-content: center;
    padding: 1.75rem 0;
  }

  h1 {
    font-size: clamp(4rem, 20vw, 7rem);
  }

  .horizon {
    width: min(64vw, 16rem);
    justify-self: center;
    order: -1;
  }

  .lede {
    margin-top: 1.25rem;
  }
}

@media (max-width: 420px) {
  .horizon {
    width: min(62vw, 13rem);
  }
}

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