:root {
  --bg: #0a0908;
  --bg-elevated: #14110f;
  --text: #f0e9d6;
  --text-dim: #a89c82;
  --accent: #c9a96a;
  --accent-hover: #e0bc7a;
  --border: #2a241d;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
}

section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

section:last-of-type { border-bottom: none; }

.hero h1 {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.pitch {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.lede {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 2rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--accent);
}

p { margin-bottom: 1rem; }

.btn-primary, button {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-weight: 500;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-primary:hover, button:hover { background: var(--accent-hover); }

.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  margin-right: 0.5rem;
  transition: border-color 0.15s, color 0.15s;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 0.85rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
}

.trailer-placeholder {
  aspect-ratio: 16/9;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-style: italic;
}

.community { display: flex; flex-wrap: wrap; gap: 0.5rem; }

footer {
  padding: 2rem 0 1rem;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.875rem;
}

footer a { color: var(--text-dim); text-decoration: underline; }
footer a:hover { color: var(--accent); }

@media (max-width: 600px) {
  .hero h1 { font-size: 2.25rem; }
  .pitch { font-size: 1.2rem; }
  main { padding: 2rem 1.25rem; }
}
