:root {
  --ink: #17231f;
  --paper: #fffdf8;
  --mist: rgba(255, 253, 248, 0.78);
  --line: rgba(255, 253, 248, 0.42);
}

* {
  box-sizing: border-box;
}

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

.coming-soon {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-image,
.overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.overlay {
  background:
    linear-gradient(90deg, rgba(18, 31, 26, 0.82), rgba(18, 31, 26, 0.44) 50%, rgba(18, 31, 26, 0.12)),
    linear-gradient(0deg, rgba(18, 31, 26, 0.62), transparent 56%);
}

.content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 120px 0 clamp(54px, 9vw, 96px);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 500;
  line-height: 0.96;
}

p {
  max-width: 610px;
  margin: 0;
  color: var(--mist);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 20px;
  color: var(--paper);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: rgba(255, 253, 248, 0.12);
}

@media (max-width: 640px) {
  .content {
    width: min(100% - 28px, 760px);
  }

  .button {
    width: 100%;
  }
}
