:root {
  --cream: #F5F0E8;
  --dark-green: #1E3830;
  --sage-green: #88A882;
  --text-dark: #1A1814;
  --border-muted: #BCC3C1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--cream);
  color: var(--text-dark);
  font-family: 'Lora', serif;
}

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

/* ---------- Hero ---------- */

.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px 48px;
  gap: 24px;
}

.seed-animation {
  width: clamp(220px, 28vw, 383px);
  height: auto;
  aspect-ratio: 383 / 474;
  object-fit: contain;
  margin-bottom: 8px;
}

.title {
  max-width: 900px;
  margin: 0;
  color: var(--dark-green);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(28px, 4.5vw, 58px);
  line-height: 1.2;
  word-wrap: break-word;
}

.subtitle {
  max-width: 760px;
  margin: 0;
  color: var(--text-dark);
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.4;
}

/* ---------- Footer / notify ---------- */

.notify {
  background: var(--dark-green);
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

.notify-label {
  margin: 0;
  color: var(--cream);
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
}

.notify-form {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.notify-form input[type="email"] {
  flex: 1 1 240px;
  min-width: 200px;
  height: 48px;
  padding: 12px 16px;
  background: var(--cream);
  border: 1px solid var(--border-muted);
  border-radius: 8px;
  color: var(--text-dark);
  font-family: 'Lora', serif;
  font-size: 16px;
}

.notify-form input[type="email"]::placeholder {
  color: var(--border-muted);
}

.notify-form input[type="email"]:focus {
  outline: 2px solid var(--sage-green);
  outline-offset: 1px;
}

.notify-form button {
  flex: 0 0 auto;
  min-width: 160px;
  height: 48px;
  padding: 10px 20px;
  background: var(--sage-green);
  color: var(--text-dark);
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: filter 0.15s ease;
}

.notify-form button:hover,
.notify-form button:focus-visible {
  filter: brightness(1.08);
}

.notify-form button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.notify-message {
  min-height: 1.2em;
  margin: 0;
  color: var(--cream);
  font-family: 'Lora', serif;
  font-size: 16px;
}

@media (max-width: 480px) {
  .notify-form {
    flex-direction: column;
    align-items: stretch;
  }
  .notify-form button {
    width: 100%;
  }
}
