:root {
  --bg: #0e1116;
  --ink: #0b0d12;
  --paper: #ffffff;

  --text-dark: #0b0d12;
  --text-light: rgba(255,255,255,0.92);
  --muted: #5b6270;

  --accent: #c8102e;
  --border: rgba(0,0,0,0.08);

  --radius: 12px;
  --max: 720px;
  --gutter: 24px;
  --ring: 0 0 0 3px rgba(200,16,46,0.25);
}

/* Base */
*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial;
  background: var(--paper);
  color: var(--text-dark);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2 {
  margin: 0 0 12px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
h2 { font-size: 1.3rem; }

p { margin: 0 0 16px; }

.skip-link {
  position: absolute;
  left: -9999px;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
}

/* Page flow */
.page-flow {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px var(--gutter) 48px;
}

/* Hero copy */
.eyebrow {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
  position: relative;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 2px;
  background: var(--accent);
  margin-right: 8px;
  transform: translateY(-2px);
}

.lead {
  font-size: 1.15rem;
  color: #2b3140;
  max-width: 60ch;
}

/* Contact flow (not a section) */
.contact-flow {
  margin-top: 64px;
}

.contact-intro {
  color: var(--muted);
}

/* Form */
.form {
  margin-top: 24px;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

label {
  font-size: 0.85rem;
  color: var(--muted);
}

input,
textarea {
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.95rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--ring);
}

textarea { resize: vertical; }

.btn {
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  background: var(--paper);
  font-weight: 600;
  cursor: pointer;
}

.btn:hover {
  background: #f6f7f9;
}

.form-status {
  margin-top: 8px;
  font-size: 0.85rem;
}

/* Honeypot */
.hp {
  position: absolute !important;
  left: -9999px !important;
}

/* Email fallback */
.email-fallback {
  margin-top: 28px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 720px) {
  .page-flow {
    padding-top: 56px;
  }
}
