:root {
  --ink: #231f20;
  --muted: #665f5c;
  --paper: #fbf8f3;
  --rose: #a8575d;
  --sage: #7e8f78;
  --gold: #b69256;
  --line: rgba(35, 31, 32, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  background:
    linear-gradient(rgba(251, 248, 243, 0.84), rgba(251, 248, 243, 0.9)),
    url("../images/fabric-pattern.a5cc4c64efb9.svg"),
    var(--paper);
}

.launch {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.hero {
  width: min(860px, 100%);
  min-height: min(680px, calc(100vh - 64px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--line);
  padding: 56px clamp(22px, 6vw, 80px);
  background: rgba(255, 252, 247, 0.72);
  box-shadow: 0 24px 80px rgba(35, 31, 32, 0.08);
}

.brand-logo {
  width: min(430px, 86vw);
  height: auto;
  display: block;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(54px, 9vw, 108px);
  line-height: 0.9;
  font-weight: 700;
}

.intro {
  width: min(620px, 100%);
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2.6vw, 20px);
  line-height: 1.7;
}

.notify-form {
  width: min(520px, 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 36px;
}

.notify-form input,
.notify-form button {
  min-height: 54px;
  border: 1px solid var(--line);
  font: inherit;
}

.notify-form input {
  width: 100%;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.notify-form button {
  padding: 0 24px;
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.notify-form button:hover,
.notify-form button:focus-visible {
  background: var(--rose);
  border-color: var(--rose);
}

.note {
  margin: 22px 0 0;
  color: var(--sage);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 620px) {
  .launch {
    padding: 16px;
  }

  .hero {
    min-height: calc(100vh - 32px);
    padding: 42px 20px;
  }

  .brand-logo {
    width: min(330px, 88vw);
    margin-bottom: 24px;
  }

  .notify-form {
    grid-template-columns: 1fr;
  }

  .notify-form button {
    width: 100%;
  }
}
