* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f5f3ee;
  --text: #303030;
  --muted: #777;
  --accent: #b88b5a;
  --line: rgba(48, 48, 48, 0.18);
}

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

body {
  font-family: "Titillium Web", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 15%, rgba(184, 139, 90, 0.10), transparent 28%),
    radial-gradient(circle at 80% 85%, rgba(184, 139, 90, 0.08), transparent 30%),
    var(--bg);
}

.content {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.wrap {
  width: min(760px, 100%);
  text-align: center;
}

.content-grid {
  margin-bottom: 28px;
}

.top-line {
  width: 100%;
  height: 1px;
  background: var(--line);
  position: relative;
}

.top-line::before,
.top-line::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 11px;
  height: 11px;
  border: 1px solid var(--accent);
  background: var(--bg);
  transform: rotate(45deg);
}

.top-line::before {
  left: 18%;
}

.top-line::after {
  right: 18%;
}

.grid {
  padding: 10px 20px 35px;
}

.coming-soon {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  font-family: "Petit Formal Script", cursive;
  font-size: clamp(4.2rem, 13vw, 8.5rem);
  line-height: 0.72;
  color: var(--text);
  letter-spacing: 0.02em;
  transform: rotate(-2deg);
  margin: 30px 0 50px;
  text-shadow: 1px 1px 0 rgba(184, 139, 90, 0.12);
}

h1 {
  font-family: "Alegreya Sans", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.subtitle {
  margin: 12px auto 30px;
  max-width: 540px;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 300;
}

.notify-form {
  display: flex;
  width: min(540px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.notify-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 15px 18px;
  background: transparent;
  color: var(--text);
  font: 400 1rem "Titillium Web", sans-serif;
}

.notify-form input::placeholder {
  color: #999;
}

.notify-form button {
  width: 58px;
  border: 0;
  border-left: 1px solid var(--line);
  background: var(--accent);
  color: white;
  cursor: pointer;
  font-size: 1.8rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.notify-form button:hover {
  opacity: 0.88;
}

.notify-form button:active {
  transform: scale(0.97);
}

.response {
  min-height: 26px;
  margin-top: 12px;
  color: var(--accent);
  font-size: 0.95rem;
}

.footer {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: #999;
  font-size: 0.9rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 600px) {
  .content {
    padding: 25px 15px;
  }

  .coming-soon {
    margin: 25px 0 38px;
  }

  .grid {
    padding-inline: 5px;
  }

  .subtitle {
    font-size: 1rem;
  }

  .notify-form input {
    padding: 13px;
  }

  .notify-form button {
    width: 52px;
  }
}
