:root {
  --bg: #050505;
  --fg: rgba(255, 255, 255, 0.88);
  --muted: rgba(255, 255, 255, 0.55);
  --line: rgba(255, 255, 255, 0.14);
  --accent: #ff0033;
  --glow: rgba(255, 0, 50, 0.3);
}
* { box-sizing: border-box; }
html {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(ellipse at top, #0c0c12 0%, var(--bg) 55%);
}
a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s, text-shadow 0.2s, color 0.2s;
}
a:hover { border-color: #fff; text-shadow: 0 0 12px rgba(255, 255, 255, 0.5); }

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: 1.05rem;
  border: 0;
  text-shadow: 0 0 20px var(--glow);
}
.site-nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.site-nav a {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  border: 0;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: #fff; }

/* Content */
main {
  flex: 1;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}
h1 {
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 1.9rem;
  margin: 0 0 0.5rem;
  text-shadow: 0 0 20px var(--glow);
}
h2 {
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin: 2.5rem 0 0.75rem;
  color: #fff;
}
h3 { font-weight: 500; font-size: 1rem; margin: 1.5rem 0 0.5rem; }
p, li { line-height: 1.7; }
ul, ol { padding-left: 1.4rem; }
.lede { color: var(--muted); font-size: 1.05rem; margin-bottom: 2rem; }
.meta { color: var(--muted); font-size: 0.85rem; }
.card {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(10, 10, 10, 0.6);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
}
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
address { font-style: normal; line-height: 1.7; }
dl { display: grid; grid-template-columns: max-content 1fr; gap: 0.35rem 1.25rem; margin: 0; }
dt { color: var(--muted); }
dd { margin: 0; }

/* Forms */
form { margin-top: 1.5rem; }
.field { margin-bottom: 1.25rem; }
label { display: block; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
input[type="text"], input[type="email"], textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: #fff;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
}
textarea { min-height: 160px; resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
button {
  font: inherit;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  padding: 0.85rem 1.75rem;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, opacity 0.2s;
}
button:hover { border-color: #fff; box-shadow: 0 0 24px rgba(255, 255, 255, 0.2); }
button:disabled { opacity: 0.5; cursor: wait; }
.status { margin-top: 1rem; padding: 0.9rem 1rem; border-radius: 4px; border: 1px solid var(--line); display: none; line-height: 1.6; }
.status.ok { display: block; border-color: rgba(120, 255, 160, 0.5); }
.status.err { display: block; border-color: rgba(255, 0, 50, 0.6); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.8;
}
.site-footer a { color: var(--muted); border: 0; }
.site-footer a:hover { color: #fff; }
.site-footer .links { margin-bottom: 0.35rem; }

@media (max-width: 600px) {
  .site-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .site-nav { gap: 1rem; }
  main { padding: 2rem 1rem 3rem; }
  h1 { font-size: 1.5rem; letter-spacing: 4px; }
  dl { grid-template-columns: 1fr; gap: 0.1rem; }
  dt { margin-top: 0.6rem; }
}
