:root {
  --bg: #f7f4ef;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --accent: #0b3d2e;
  --card: #fffdf9;
  --line: #e2ddd4;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
.wrap { width: min(720px, calc(100% - 2rem)); margin: 0 auto; }
header { padding: 3rem 0 1.5rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.8rem; color: var(--muted); font-family: system-ui, sans-serif; }
h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); line-height: 1.2; margin: 0.4rem 0 1rem; }
h2 { font-size: 1.25rem; margin-top: 2.25rem; }
.lede { font-size: 1.15rem; color: var(--muted); }
.price { font-size: 1.2rem; }
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.7rem 1.1rem;
  border-radius: 6px;
  font-family: system-ui, sans-serif;
  font-weight: 600;
}
.btn.secondary { background: #243b55; }
ul, ol { padding-left: 1.2rem; }
section { padding-bottom: 0.5rem; }
.form-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}
details { margin: 0.6rem 0; padding: 0.5rem 0; border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 600; font-family: system-ui, sans-serif; }
.footer { padding: 2.5rem 0 3rem; color: var(--muted); font-size: 0.95rem; }
.fine { font-size: 0.85rem; color: var(--muted); font-family: system-ui, sans-serif; }
