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

html, body {
  height: 100%;
}

body {
  background: #F5F0E8;
  font-family: 'EB Garamond', Georgia, serif;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
    opacity: 1;
  }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.center-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: clamp(10rem, 35vw, 20rem);
  height: auto;
  display: block;
}

.spacer {
  height: clamp(5rem, 10vh, 10rem);
  flex-shrink: 0;
}

.signup {
  width: 85vw;
  max-width: 28rem;
  padding: 0;
}

.signup__row {
  display: flex;
  align-items: baseline;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  border: none;
  border-bottom: 1px solid #D5D0C8;
  padding-bottom: clamp(0.4rem, 1vh, 0.6rem);
}

.signup input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  color: #2C2C28;
  padding: clamp(0.2rem, 0.5vh, 0.4rem) 0;
}

.signup input::placeholder {
  color: #9C9A92;
}

.signup button {
  border: none;
  background: transparent;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(0.65rem, 1vw, 0.8rem);
  letter-spacing: 0.15em;
  color: #2C2C28;
  cursor: pointer;
  white-space: nowrap;
  padding: clamp(0.2rem, 0.5vh, 0.4rem) 0;
}

.thank-you {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  color: #9C9A92;
}

.push {
  flex: 1;
}

.tagline {
  text-align: center;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  color: #9C9A92;
  padding-bottom: clamp(1.5rem, 3vh, 3rem);
}

.tagline__em {
  font-style: italic;
  font-weight: 700;
}

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