:root {
  --accent: #1f4b3a;
  --ink: #14221c;
  --muted: #5b6b64;
  --bg: #f4efe6;
  --card: #fffdf8;
  --line: #e4ddd0;
  --err: #8b1e1e;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 40px;
}
.card {
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 22px 24px;
  box-shadow: 0 10px 30px rgba(20, 34, 28, 0.06);
}
.logo { display: block; max-width: 160px; max-height: 56px; margin: 0 auto 12px; }
.eyebrow {
  margin: 0 0 6px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--accent);
  font-family: system-ui, sans-serif;
}
h1 { margin: 0 0 10px; font-size: 28px; line-height: 1.15; font-weight: 500; }
.lede, .fine, .warn { font-family: system-ui, sans-serif; }
.lede { margin: 0 0 20px; color: var(--muted); line-height: 1.45; }
form { display: grid; gap: 12px; }
label {
  display: grid;
  gap: 6px;
  font-family: system-ui, sans-serif;
  font-size: 13px;
  color: var(--muted);
}
input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
}
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink);
}
.check input { margin-top: 3px; }
button, .btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: system-ui, sans-serif;
  font-size: 16px;
  padding: 13px 18px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
button:disabled { opacity: 0.45; cursor: not-allowed; }
.error {
  background: #f8eaea;
  color: var(--err);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: system-ui, sans-serif;
  font-size: 14px;
}
.warn {
  background: #fff6e0;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  color: #6a5416;
}
.fine { margin: 14px 0 0; font-size: 12px; color: var(--muted); line-height: 1.4; }
