@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,500;9..144,700&family=DM+Sans:wght@300;400;500;700&display=swap");

:root {
  --ink: #1f1f1b;
  --warm-white: #f7f2ea;
  --sand: #d5c7b6;
  --clay: #b28f73;
  --shadow: rgba(23, 22, 18, 0.2);
  --accent: #b86a49;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--warm-white);
}

.page {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 24px;
  background-image:
    linear-gradient(120deg, rgba(247, 242, 234, 0.92), rgba(213, 199, 182, 0.75)),
    url("/assets/images/kitchen-soft.jpg");
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.6), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.5), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.4), transparent 45%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__content {
  position: relative;
  max-width: 720px;
  padding: 48px 36px;
  border-radius: 24px;
  background: rgba(247, 242, 234, 0.86);
  box-shadow: 0 24px 60px var(--shadow);
  backdrop-filter: blur(6px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 12px;
  margin: 0 0 16px;
  color: #6f5c4c;
}

h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 0 0 24px;
}

.lead {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  margin: 0 0 32px;
}

.signup {
  display: grid;
  gap: 12px;
}

.signup__label {
  font-weight: 600;
}

.signup__field {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.signup input {
  flex: 1 1 240px;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid #c9b8a6;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.8);
}

.signup button {
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(184, 106, 73, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.signup button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(184, 106, 73, 0.4);
}

.signup__note {
  margin: 0;
  font-size: 14px;
  color: #6f5c4c;
}

.details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(111, 92, 76, 0.2);
}

.detail__label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #6f5c4c;
}

.detail__value {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.reveal {
  animation: rise 0.8s ease both;
}

.reveal:nth-child(2) {
  animation-delay: 0.1s;
}

.reveal:nth-child(3) {
  animation-delay: 0.2s;
}

.reveal:nth-child(4) {
  animation-delay: 0.3s;
}

.reveal:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .hero__content {
    padding: 32px 24px;
  }

  .signup__field {
    flex-direction: column;
  }

  .signup button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
  }
}
