:root {
  --ink: #050505;
  --paper: #ffffff;
  --muted: #666666;
  --soft: #f4f4f1;
  --line: #e4e1d8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand img { width: 190px; max-width: 42vw; display: block; }
.nav { display: flex; align-items: center; gap: 22px; font-weight: 800; text-transform: uppercase; font-size: 14px; }
.nav a { color: var(--ink); text-decoration: none; }
.more-button { border: 2px solid var(--ink); background: var(--ink); color: var(--paper); padding: 10px 16px; font-weight: 900; cursor: pointer; }

.hero {
  position: relative;
  scroll-margin-top: 120px;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 80px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.78)), var(--paper);
}
.hero-logo-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/boar-d-logo.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(1000px, 92vw);
  opacity: .10;
  filter: grayscale(1);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
}
.eyebrow { font-weight: 900; letter-spacing: .18em; text-transform: uppercase; margin: 0 0 14px; }
h1 { font-size: clamp(48px, 9vw, 118px); line-height: .92; margin: 0; text-transform: uppercase; letter-spacing: -0.06em; }
.lead { font-size: clamp(18px, 2.4vw, 27px); line-height: 1.45; color: #252525; margin: 28px auto 0; max-width: 780px; }
.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.button, form button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 14px 22px; border: 2px solid var(--ink); font-weight: 900; text-transform: uppercase; text-decoration: none; cursor: pointer; }
.primary, form button { background: var(--ink); color: var(--paper); }
.secondary { color: var(--ink); background: transparent; }

.section { padding: 86px clamp(20px, 5vw, 78px); scroll-margin-top: 120px; }
.section h2 { font-size: clamp(34px, 5vw, 64px); line-height: 1; margin: 0 0 28px; text-transform: uppercase; letter-spacing: -0.04em; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { border: 2px solid var(--ink); padding: 28px; min-height: 230px; background: var(--paper); box-shadow: 10px 10px 0 var(--ink); }
.card h3 { font-size: 28px; margin: 0 0 18px; text-transform: uppercase; }
.card p, .contact-copy p, .signup-band p { color: var(--muted); line-height: 1.6; font-size: 17px; }
.signup-band { display: flex; justify-content: space-between; align-items: center; gap: 30px; background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.inline-form { display: flex; gap: 10px; width: min(520px, 100%); }
input, textarea { width: 100%; border: 2px solid var(--ink); padding: 15px 16px; font: inherit; background: var(--paper); }
.contact-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.contact-form { display: grid; gap: 12px; }
.contact-form label { font-weight: 800; }
.checkbox-line { display: flex; align-items: center; gap: 10px; font-weight: 600 !important; }
.checkbox-line input { width: auto; }
.recaptcha-note { color: var(--muted); font-size: 13px; line-height: 1.5; }
.site-footer { text-align: center; padding: 50px 20px 120px; border-top: 1px solid var(--line); }
.site-footer img { width: 250px; max-width: 75vw; opacity: .9; }
.powered { color: var(--muted); }
.cookie-banner { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--ink); color: var(--paper); padding: 18px; box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.cookie-banner p { margin: 6px 0 0; color: #ddd; }
.cookie-banner button { border: 2px solid var(--paper); background: var(--paper); color: var(--ink); padding: 12px 18px; font-weight: 900; cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
@media (max-width: 820px) {
  html { scroll-padding-top: 170px; }
  .hero, .section { scroll-margin-top: 170px; }
  .site-header { flex-direction: column; }
  .nav { flex-wrap: wrap; justify-content: center; font-size: 12px; gap: 14px; }
  .cards, .contact-section { grid-template-columns: 1fr; }
  .signup-band, .inline-form, .cookie-banner { flex-direction: column; align-items: stretch; }
}
