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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #ffffff;
  background-color: #000;
  line-height: 1.5;
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-image: url("hero.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.65)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.brand {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.coming-soon {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Contact section */
#contact {
  background-color: #0b0b0f;
  padding: 3rem 1.5rem;
}

.contact-container {
  max-width: 640px;
  margin: 0 auto;
}

#contact h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

#contact p {
  margin-bottom: 1.5rem;
  color: #d0d0d0;
}

#contact a {
  color: #f1c27d;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

.success-banner {
  background-color: #12331a;
  border: 1px solid #1f7a33;
  color: #b4f5c4;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* Form fields */
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.field label {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.field input,
.field textarea {
  border: 1px solid #333;
  border-radius: 4px;
  padding: 0.6rem 0.75rem;
  font-size: 1rem;
  background-color: #15151b;
  color: #fff;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #f1c27d;
}

button[type="submit"] {
  margin-top: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: #f1c27d;
  color: #000;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  background: #ffd89b;
}

footer {
  background-color: #050509;
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  color: #888;
}
