:root {
  color-scheme: dark;
  --ink: #f8f5ef;
  --muted: rgba(248, 245, 239, 0.74);
  --line: rgba(248, 245, 239, 0.24);
  --button: #f8f5ef;
  --button-ink: #17130f;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: #17130f;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(23, 19, 15, 0.92), rgba(23, 19, 15, 0.52) 48%, rgba(23, 19, 15, 0.2)),
    url("/assets/hero.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34vh;
  background: linear-gradient(0deg, rgba(23, 19, 15, 0.82), rgba(23, 19, 15, 0));
  pointer-events: none;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(248, 245, 239, 0.1), transparent 24rem),
    rgba(23, 19, 15, 0.08);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  align-self: center;
  padding: clamp(28px, 8vw, 88px);
}

.eyebrow {
  max-width: 100%;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.84;
}

.lede {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.42;
}

@media (max-width: 680px) {
  .hero {
    background-image:
      linear-gradient(180deg, rgba(23, 19, 15, 0.9), rgba(23, 19, 15, 0.64) 46%, rgba(23, 19, 15, 0.36)),
      url("/assets/hero.png");
    background-position: 56% center;
  }

  .hero__content {
    align-self: end;
    padding: 28px 22px 54px;
  }

  .eyebrow {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  h1 {
    font-size: clamp(3.6rem, 22vw, 5.8rem);
  }

  .lede {
    margin-top: 24px;
  }

}
