:root {
  color-scheme: dark;
  font-family: "Helvetica Neue", "Arial", sans-serif;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background-color: #2a1c17;
  background-image: url("forest-background.jpg");
  background-size: cover;
  background-position: center;
  color: #f5f1e9;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(22, 13, 10, 0.45);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.hero {
  position: relative;
  flex: 1;
  min-height: 100vh;
  padding: 6vw;
  z-index: 1;
}

.hero p,
.hero a {
  margin: 0;
  font-size: clamp(0.68rem, 0.9vw, 0.9rem);
  font-weight: 300;
  letter-spacing: 0.28em;
  text-decoration: none;
  color: inherit;
}

.hero__brand {
  position: absolute;
  top: min(10vh, 120px);
  left: min(8vw, 130px);
  font-size: clamp(0.78rem, 1.2vw, 1.2rem);
  letter-spacing: 0.32em;
}

.hero__cta {
  position: absolute;
  top: 38%;
  left: 46%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  text-align: left;
  transform: translate(-50%, -50%);
}

.hero__cta-link {
  display: inline-block;
}

.hero__eyebrow {
  font-size: clamp(0.7rem, 0.95vw, 1rem);
}

.hero__link {
  font-size: clamp(0.65rem, 0.8vw, 0.85rem);
  letter-spacing: 0.32em;
  transition: color 150ms ease;
}

.hero__link:hover,
.hero__link:focus-visible {
  color: #fff;
}

.hero__credit {
  position: absolute;
  bottom: min(6vh, 88px);
  left: 50%;
  transform: translate(-50%, 0);
  font-size: clamp(0.55rem, 0.7vw, 0.75rem);
  letter-spacing: 0.36em;
  opacity: 0.85;
}

.hero__logo {
  position: absolute;
  bottom: min(8vh, 120px);
  left: 50%;
  transform: translate(-50%, 0);
  width: clamp(30px, 3.4vw, 48px);
  height: auto;
  filter: invert(92%) sepia(10%) saturate(60%) hue-rotate(12deg)
    brightness(115%) contrast(95%);
  opacity: 0.9;
}

@media (max-width: 768px) {
  body {
    letter-spacing: 0.16em;
  }

  .hero {
    padding: 12vw 8vw;
  }

  .hero__brand {
    top: 9vh;
    left: 9vw;
  }

  .hero__cta {
    top: 42%;
    left: 50%;
    gap: 1rem;
  }

  .hero__logo {
    bottom: 13vh;
    width: clamp(28px, 18vw, 48px);
  }

  .hero__credit {
    bottom: 8vh;
  }
}
