*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f7f7;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --gold-light: #e8d5a3;
  --gold-mid: #c9a84c;
  --gold-dark: #8b6f2e;
  --border: #d8d8d8;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 300;
  color: var(--text);
  background-color: var(--bg);
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 3.5rem 1.5rem 2.5rem;
  text-align: center;
}

/* Brand */
.brand {
  animation: fadeUp 1s ease both;
}

.brand__name {
  font-family: "Cinzel", "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.35em;
  text-indent: 0.35em;
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--gold-mid) 35%,
    var(--gold-dark) 70%,
    var(--gold-mid) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.08));
}

.brand__tagline {
  margin-top: 0.65rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: none;
  color: var(--text-muted);
}

/* Hero */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 36rem;
  padding: 2rem 0;
  animation: fadeUp 1s ease 0.2s both;
}

.hero__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--text);
}

.hero__text {
  margin-top: 1.75rem;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: var(--text);
}

/* Notify form */
.notify {
  width: 100%;
  margin-top: 2.75rem;
}

.notify__label {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.notify__row {
  display: flex;
  gap: 0;
  max-width: 28rem;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s ease;
}

.notify__row:focus-within {
  border-color: var(--gold-mid);
}

.notify__input {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 0;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--text);
  background: transparent;
  border: none;
  outline: none;
}

.notify__input::placeholder {
  color: #aaa;
}

.notify__button {
  flex-shrink: 0;
  padding: 0.75rem 0 0.75rem 1rem;
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.notify__button:hover {
  color: var(--gold-mid);
}

.notify__message {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
}

.notify__message.is-error {
  color: #9a4a4a;
}

/* Footer */
.footer {
  animation: fadeUp 1s ease 0.4s both;
}

.footer__signature {
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  color: #b0b0b0;
  letter-spacing: 0.02em;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 480px) {
  .page {
    padding: 2.5rem 1.25rem 2rem;
  }

  .brand__name {
    letter-spacing: 0.28em;
    text-indent: 0.28em;
  }

  .notify__row {
    flex-direction: column;
    align-items: stretch;
    border-bottom: none;
    gap: 0.75rem;
  }

  .notify__input {
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.65rem;
  }

  .notify__button {
    padding: 0.65rem 0;
    text-align: center;
  }
}
