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

body {
  font-family: 'Times New Roman', Times, serif;
  background: #fff;
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #BF5700;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #BF5700;
}

main {
  flex: 1;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 4rem;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-align: center;
}

.hero .llc {
  color: #BF5700;
}

.contact-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.contact-overlay.active {
  display: flex;
}

.contact-modal {
  background: #fff;
  max-width: 480px;
  width: 90%;
  padding: 2.5rem;
  border-radius: 10px;
  position: relative;
}

.contact-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
}

.contact-close:hover {
  color: #1a1a1a;
}

.contact-modal h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fafafa;
  color: #1a1a1a;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #BF5700;
}

.form-group textarea {
  resize: vertical;
}

button[type="submit"] {
  background: #BF5700;
  color: #fff;
  border: none;
  padding: 0.85rem 2.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s;
}

button[type="submit"]:hover {
  opacity: 0.88;
}

footer {
  padding: 2rem 4rem;
  text-align: center;
}

footer p {
  font-size: 0.8rem;
  color: #999;
}

/* Coming Soon page */
.coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 4rem;
}

.coming-soon h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* Thanks page */
.thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 4rem;
  text-align: center;
}

.thanks h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.thanks p {
  font-size: 1.1rem;
  color: #666;
}

.thanks a {
  margin-top: 2rem;
  color: #BF5700;
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 640px) {
  nav {
    padding: 1.5rem 1.5rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .hero {
    padding: 2rem 1.5rem;
  }

  footer {
    padding: 2rem 1.5rem;
  }
}
