/* Bull Moose Club DSM — mobile-first styles. Palette: navy / red / cream. */
:root {
  --navy: #0B2A4A;
  --navy-deep: #071d33;
  --red: #B22234;
  --red-dark: #8f1b2a;
  --cream: #F7F3E8;
  --paper: #ffffff;
  --ink: #1b1e23;
  --muted: #5c6672;
  --line: #e4ddca;
  --radius: 12px;
  --wrap: 960px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
a { color: var(--red-dark); }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.01em; }
img { max-width: 100%; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 12px 16px;
  background: var(--navy); color: #fff;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.brand-mark {
  display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--red); color: #fff; font-weight: 800; letter-spacing: 0.02em;
}
.brand-text { font-weight: 700; font-size: 1.02rem; }
.brand-text span { color: #f0c94b; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a { color: #dfe7f0; text-decoration: none; padding: 8px 10px; border-radius: 8px; font-size: 0.95rem; }
.nav a:hover { background: rgba(255,255,255,0.08); }
.nav .nav-cta { background: var(--red); color: #fff; font-weight: 600; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  color: #fff; padding: 56px 16px 64px;
}
.hero-inner { max-width: var(--wrap); margin: 0 auto; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; color: #f0c94b; margin: 0 0 10px; }
.hero h1 { font-size: 2.1rem; margin: 0 0 14px; }
.lede { font-size: 1.08rem; color: #d9e2ee; max-width: 42ch; margin: 0 0 24px; }

/* Buttons */
.btn { display: inline-block; border: 0; cursor: pointer; font: inherit; font-weight: 700;
  padding: 14px 22px; border-radius: var(--radius); text-decoration: none; text-align: center; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-block { width: 100%; margin-top: 8px; }
.btn:disabled { opacity: 0.6; cursor: default; }

/* Sections */
.section { max-width: var(--wrap); margin: 0 auto; padding: 48px 16px; }
.section-alt { background: var(--paper); max-width: none; }
.section-alt > * { max-width: var(--wrap); margin-left: auto; margin-right: auto; }
.section h2 { font-size: 1.6rem; margin: 0 0 12px; color: var(--navy); }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

.cards { display: grid; gap: 16px; margin-top: 24px; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.card h3 { margin: 0 0 6px; color: var(--red-dark); font-size: 1.1rem; }
.card p { margin: 0; color: var(--muted); }

/* Form */
.form { max-width: 560px; margin-top: 20px; }
.row { display: grid; gap: 14px; }
.field { margin-bottom: 14px; display: flex; flex-direction: column; }
.field label { font-weight: 600; margin-bottom: 6px; font-size: 0.95rem; }
.field input {
  font: inherit; padding: 13px 14px; border: 1px solid var(--line);
  border-radius: 10px; background: var(--paper); color: var(--ink);
}
.field input:focus { outline: 3px solid rgba(11,42,74,0.25); border-color: var(--navy); }

.consent { margin: 6px 0 14px; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; color: #333; }
.check input { margin-top: 4px; width: 20px; height: 20px; flex: none; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-msg { margin-top: 14px; font-weight: 600; }
.form-msg.ok { color: #1c7a3f; }
.form-msg.err { color: var(--red-dark); }

/* Footer */
.site-footer { background: var(--navy); color: #cfd9e6; text-align: center; padding: 28px 16px; }
.site-footer a { color: #fff; }
.brand-text-sm { font-weight: 700; color: #fff; margin: 0 0 4px; }
.site-footer p { margin: 4px 0; }

/* Larger screens */
@media (min-width: 680px) {
  .hero { padding: 84px 16px 92px; }
  .hero h1 { font-size: 3rem; }
  .row { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: repeat(3, 1fr); }
}
