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

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1510 50%, #0d0d0d 100%);
  color: #f5f5dc;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav {
  padding: 1rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

nav a:hover {
  color: #fff;
  opacity: 0.9;
}

nav a.active {
  color: #fff;
  font-weight: 600;
  opacity: 1;
}

main {
  flex: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
  width: 100%;
}

/* Landing (Home) */
main.landing {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
}

.hero {
  text-align: center;
  width: 100%;
}

.hero .logo {
  max-width: min(90vw, 420px);
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;
}

.coming-soon {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #ffa500;
  margin-bottom: 0.5rem;
}

.subtext {
  font-size: 0.95rem;
  color: #b0b0a0;
  letter-spacing: 0.1em;
}

/* Inner pages */
.page-content h1 {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffa500;
  margin-bottom: 1rem;
}

.page-content p {
  color: #e0e0e0;
  line-height: 1.6;
}

.page-content a {
  color: #ffa500;
  text-decoration: none;
}

.page-content a:hover {
  text-decoration: underline;
}

/* Contact form card */
.card.form-card {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(30, 25, 20, 0.6);
  border: 1px solid rgba(255, 165, 0, 0.2);
  border-radius: 8px;
  max-width: 480px;
}

.form-card label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: #e0e0e0;
}

.form-card .required {
  color: #ffa500;
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  margin-bottom: 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 165, 0, 0.25);
  border-radius: 4px;
  color: #f5f5dc;
  font: inherit;
}

.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: #ffa500;
}

.form-card button {
  padding: 0.6rem 1.5rem;
  background: #ffa500;
  color: #0a0a0a;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.form-card button:hover {
  background: #ff8c00;
}

.hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #888;
  line-height: 1.4;
}

footer {
  text-align: center;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 165, 0, 0.2);
  font-size: 0.875rem;
  color: #888;
}

@media (max-width: 480px) {
  .coming-soon {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
  }
  nav a {
    display: inline-block;
    margin: 0.25rem;
  }
}
