* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Avenir Next", sans-serif;
  background: #dfcbc3;
  color: #1f1a17;
}

.page {
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.35), transparent 35%),
    linear-gradient(135deg, #e7d6cf 0%, #d7beb4 100%);
}

.hero-content {
  width: 100%;
  max-width: 620px;
  text-align: center;
}

.logo {
  width: min(360px, 78vw);
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0 0 16px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  margin: 0 auto 22px;
  max-width: 560px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.98;
  font-weight: 400;
}

.intro {
  font-family: "Avenir Next", sans-serif;
  margin: 0 auto 34px;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.65;
}

.signup-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 14px;
}

.signup-form input {
  flex: 1;
  border: 1px solid rgba(31,26,23,0.25);
  background: rgba(255,255,255,0.55);
  padding: 15px 16px;
  font-size: 15px;
  color: #1f1a17;
  outline: none;
}

.signup-form input::placeholder {
  color: rgba(31,26,23,0.55);
}

.signup-form button {
  font-family: "Avenir Next", sans-serif;
  border: 1px solid #1f1a17;
  background: #1f1a17;
  color: #fff;
  padding: 15px 22px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.small {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: rgba(31,26,23,0.65);
}

.success-message {
  display: none;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.5;
}

.instagram-link {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  color: #1f1f1f;
  transition: opacity 0.2s ease;
}

.instagram-link:hover {
  opacity: 0.6;
}

.instagram-link svg {
  width: 26px;
  height: 26px;
}

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

@media (max-width: 640px) {
  .hero {
    padding: 24px;
  }

  .signup-form {
    flex-direction: column;
  }

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