:root {
  --white: #fff;
  --ink: #111722;
  --brass: #c99b5c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  place-items: center start;
  padding: clamp(28px, 7vw, 96px);
}

.background,
.shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.background {
  object-fit: cover;
  object-position: center;
}

.shade {
  background:
    linear-gradient(90deg, rgba(7, 10, 16, 0.9), rgba(7, 10, 16, 0.52) 48%, rgba(7, 10, 16, 0.16)),
    linear-gradient(0deg, rgba(7, 10, 16, 0.58), rgba(7, 10, 16, 0.08) 55%);
}

.content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding-top: 8vh;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(64px, 11vw, 132px);
  font-weight: 700;
  line-height: 0.92;
}

.intro {
  max-width: 650px;
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.05;
}

.details {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 36px;
}

.button,
.text-link {
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--brass);
  color: #111;
  padding: 0 24px;
}

.text-link {
  border-bottom: 2px solid rgba(255, 255, 255, 0.45);
}

@media (max-width: 640px) {
  .coming-soon {
    align-items: end start;
    padding: 28px 20px 42px;
  }

  h1 {
    font-size: clamp(58px, 18vw, 84px);
  }

  .intro {
    font-size: 30px;
  }
}
