:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --red: #9b2222;
  --red-dark: #4a0e0e;
  --text: #e8e4df;
  --muted: #a8adb4;
  --border: #3d4349;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: radial-gradient(ellipse at center, #111111 0%, var(--bg) 70%);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.5;
}

.hero {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 140px);
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.logo {
  display: block;
  max-width: min(960px, 92vw);
  width: 100%;
  height: auto;
}

.tagline {
  color: var(--muted);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  letter-spacing: 0.18em;
  margin: 2rem 0 0;
  text-transform: uppercase;
}

.contact {
  border-top: 1px solid var(--border);
  margin: 0 auto;
  max-width: 720px;
  padding: 2rem 1.5rem 3rem;
  text-align: center;
}

.contact h2 {
  color: var(--text);
  font-family: Cinzel, Georgia, serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.contact p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}

.contact-form {
  margin: 0 auto 1.5rem;
  max-width: 420px;
  text-align: left;
}

.field {
  display: block;
  margin-bottom: 1rem;
}

.field span {
  color: var(--muted);
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.field input,
.field textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font: inherit;
  padding: 0.75rem 0.85rem;
  width: 100%;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--red);
  outline: 2px solid rgb(155 34 34 / 35%);
  outline-offset: 1px;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.honeypot {
  display: none;
}

.contact-form button {
  background: var(--red);
  border: 0;
  border-radius: 4px;
  color: var(--text);
  cursor: pointer;
  font-family: Cinzel, Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  padding: 0.85rem 1.25rem;
  text-transform: uppercase;
  width: 100%;
}

.contact-form button:hover:not(:disabled) {
  background: #b02828;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  font-size: 0.95rem;
  margin: 1rem 0 0;
  text-align: center;
}

.form-status--success {
  color: #8fd48f;
}

.form-status--error {
  color: #e08080;
}

.contact-discord {
  margin-top: 1.5rem;
}

.contact a {
  color: var(--red);
  font-weight: 500;
  text-decoration: none;
}

.contact a:hover,
.contact a:focus-visible {
  color: #c44;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 480px) {
  .hero {
    min-height: calc(100vh - 120px);
    padding-top: 2rem;
  }

  .tagline {
    letter-spacing: 0.12em;
  }
}
