:root {
  --bg: #0c1116;
  --bg-2: #141b22;
  --bg-3: #1b242e;
  --line: #2a3540;
  --text: #e8edf2;
  --muted: #9aa8b5;
  --gold: #c4a46a;
  --gold-2: #e0c48a;
  --danger: #c45c4a;
}
* { 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;
  min-height: 100vh;
}
.sans { font-family: "Segoe UI", system-ui, sans-serif; }
a { color: var(--gold-2); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }
header {
  border-bottom: 1px solid var(--line);
  background: rgba(12,17,22,.92);
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(8px);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0;
}
.brand { display: flex; align-items: baseline; gap: 10px; color: var(--text); text-decoration: none; }
.brand strong { font-size: 1.05rem; letter-spacing: .04em; }
.brand span { color: var(--gold); font-size: .78rem; font-family: "Segoe UI", system-ui, sans-serif; letter-spacing: .16em; text-transform: uppercase; }
nav { display: flex; flex-wrap: wrap; gap: 16px; font-family: "Segoe UI", system-ui, sans-serif; font-size: .92rem; }
nav a { color: var(--muted); text-decoration: none; }
nav a:hover, nav a.active { color: var(--text); }
.btn {
  display: inline-block;
  background: var(--gold);
  color: #16120b;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-weight: 650;
  padding: 11px 18px;
  border-radius: 2px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
.btn:hover { background: var(--gold-2); text-decoration: none; }
.btn-ghost {
  background: transparent;
  color: var(--gold-2);
  border: 1px solid var(--gold);
}
.hero { padding: 72px 0 48px; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.15;
  font-weight: 500;
  max-width: 16ch;
}
.hero p.lead { margin-top: 18px; color: var(--muted); max-width: 42em; font-size: 1.12rem; }
.hero-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.grid { display: grid; gap: 18px; }
@media (min-width: 800px) { .cols-3 { grid-template-columns: repeat(3, 1fr); } .cols-2 { grid-template-columns: 1fr 1fr; } }
.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 22px;
}
.card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--gold-2); }
.card p { color: var(--muted); font-family: "Segoe UI", system-ui, sans-serif; font-size: .95rem; }
section { padding: 28px 0 56px; }
h2 { font-size: 1.8rem; margin-bottom: 14px; font-weight: 500; }
.muted { color: var(--muted); font-family: "Segoe UI", system-ui, sans-serif; }
.notice {
  border-left: 3px solid var(--gold);
  background: var(--bg-2);
  padding: 14px 16px;
  color: var(--muted);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: .92rem;
}
form { display: grid; gap: 12px; max-width: 560px; }
label { font-family: "Segoe UI", system-ui, sans-serif; font-size: .88rem; color: var(--muted); }
input, textarea, select {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
  font-family: "Segoe UI", system-ui, sans-serif;
}
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: .85rem;
}
footer .row { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.fine { font-size: .8rem; margin-top: 16px; max-width: 70ch; }
.hidden { position: absolute; left: -9999px; }
.ok { color: #8fcaa0; }
