:root {
  --primary: #12263A;
  --ink: #0B1520;
  --accent: #F5A623;
  --surface: #F7F8FA;
  --muted: #64748B;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.5;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--primary);
  color: white;
}

.site-header .brand {
  color: white;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
}

.site-header nav a {
  color: white;
  text-decoration: none;
  margin-left: 1.25rem;
}

main {
  max-width: 48rem;
  margin: 0 auto;
  padding: 1.5rem;
}

.hero { padding: 2rem 0; }
.hero h1 { font-size: 1.8rem; }
.hero-compact { padding: 1.25rem 0; }

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  margin-top: 1rem;
}

section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: white;
  border-radius: 0.5rem;
}

fieldset {
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
}

label {
  display: block;
  margin-bottom: 0.85rem;
  font-weight: 600;
}

label.checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.55rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.3rem;
  font-size: 1rem;
}

button[type="submit"] {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

.form-error {
  color: #b91c1c;
  font-weight: 600;
  min-height: 1.25rem;
}

.price-total {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.price-lines {
  padding-left: 1.25rem;
}

.price-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  text-align: center;
  color: var(--muted);
  padding: 2rem 1rem;
  font-size: 0.85rem;
}

.site-footer a { color: var(--primary); }
