:root {
  --ink: #1a1a1a;
  --accent: #b5651d;
  --bg: #faf7f2;
  --max: 64rem;
}

* { box-sizing: border-box; }

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

main { max-width: var(--max); margin: 0 auto; padding: 2rem 1.25rem; }

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem;

  & .brand { font-weight: 700; text-decoration: none; color: var(--ink); }
  & .site-nav a { margin-left: 1rem; text-decoration: none; color: var(--ink); }
}

.cta, button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 0.6rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
}

/* honeypot field — visually removed but present in the DOM */
.hp { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }

@scope (.contact) {
  form { display: grid; gap: 0.75rem; max-width: 32rem; }
  label { display: grid; gap: 0.25rem; font-weight: 600; }
  input, textarea { padding: 0.5rem; border: 1px solid #ccc; border-radius: 4px; font: inherit; }
  .form-error { color: #b00020; font-weight: 600; }
  .form-success { color: #1b6e2c; font-weight: 600; }
}
