:root {
  --paper: #F1F2F4;
  --paper-2: #E4E6EA;
  --card: #FFFFFF;
  --ink: #0B0C0E;
  --ink-2: #2A2D33;
  --muted: #5C616A;
  --line: #D2D5DB;
  --accent: #C8102E;
  --accent-2: #8E0B20;
  --header: #0B0C0E;
  --kicker: #C8102E;
  --clubs: #1F3A2E;
  --balls: #7A2E22;
  --gps: #1A3A52;
  --green: #2A4A38;
  --train: #4A3A22;
  --max: 1180px;
  --pad: 20px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: "Source Serif 4", "Newsreader", Georgia, serif;
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 0.5em;
  color: var(--ink);
}
p { margin: 0 0 1em; }
.wrap { width: min(var(--max), calc(100% - var(--pad) * 2)); margin: 0 auto; }
.skip { position: absolute; left: -999px; top: 8px; }
.skip:focus { left: 8px; background: #fff; color: #000; padding: 8px 12px; z-index: 40; }

.site-header {
  background: var(--header);
  border-bottom: 3px solid var(--accent);
  position: sticky; top: 0; z-index: 30;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 62px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.brand:hover { text-decoration: none; color: #fff; }
.brand-bug {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--accent); color: #fff;
  font-family: Inter, sans-serif;
  font-weight: 800; font-size: 11px; letter-spacing: 0.04em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.brand-tag {
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #A8ABB2;
  font-weight: 500;
  margin-top: 3px;
}
.nav { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.nav a {
  color: #D8DADE;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] {
  color: #fff;
  text-decoration: none;
  border-bottom-color: var(--accent);
}
.nav-toggle {
  display: none;
  background: transparent; border: 0;
  padding: 0; border-radius: 0; cursor: pointer;
  font: inherit; font-size: 12px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
@media (max-width: 1100px) {
  .brand-tag { display: none; }
  .nav { gap: 12px; }
}
@media (max-width: 920px) {
  .header-inner {
    flex-wrap: nowrap;
    min-height: 52px;
    padding-top: 0;
  }
  .brand-name { font-size: 13px; letter-spacing: 0.03em; }
  .brand-bug { width: 30px; height: 30px; font-size: 10px; }
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #0B0C0E;
    border-bottom: 3px solid var(--accent);
    padding: 6px 20px 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 40;
  }
  .nav.is-open { display: flex; }
  .nav a {
    display: block;
    width: 100%;
    padding: 13px 0;
    font-size: 16px;
    border-bottom: 1px solid #2A2D33;
  }
  .nav a:last-child { border-bottom: 0; }
  .mast { padding: 20px 0 18px; }
  .mast h1 { font-size: clamp(26px, 7vw, 36px); }
}

.mast {
  background: var(--ink);
  color: #F4F4F5;
  padding: 28px 0 26px;
}
.mast h1 {
  color: #fff;
  font-size: clamp(28px, 4.2vw, 44px);
  max-width: 22ch;
  margin-bottom: 8px;
}
.mast .dek { font-size: 17px; color: #C8CBD0; max-width: 52ch; margin: 0; }
.mast .kicker { color: #F2A0A8; }

.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kicker);
  margin-bottom: 10px;
}

.stats {
  display: flex; gap: 22px; flex-wrap: wrap;
  padding: 14px 0 0;
  color: #9AA0A8;
  font-size: 13px;
}
.stats strong { color: #fff; font-weight: 700; }

.home-top {
  display: grid;
  grid-template-columns: 1.55fr 0.95fr;
  gap: 28px;
  margin: 28px 0 12px;
  align-items: stretch;
}
.featured {
  display: flex;
  background: var(--ink);
  color: #F4F4F5;
  min-height: 420px;
  text-decoration: none;
  color: inherit;
  border: 0;
}
a.featured:hover { text-decoration: none; color: inherit; }
.featured-inner {
  padding: 36px 36px 32px;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 420px;
  background:
    linear-gradient(165deg, #14161A 0%, #0B0C0E 55%, #3A1016 140%);
  width: 100%;
}
.featured .kicker { color: #F2A0A8; }
.featured h2 {
  color: #fff;
  font-size: clamp(30px, 3.6vw, 46px);
  max-width: 16ch;
  margin: 0 0 12px;
}
.featured .dek { color: #D4D6DA; font-size: 18px; max-width: 42ch; margin: 0 0 16px; }
.featured .meta { color: #9AA0A8; font-size: 13px; margin-bottom: 16px; }
.featured .btn { margin-top: 0; }

.rail {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 18px 18px 10px;
}
.rail h2 {
  font-family: Inter, sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
}
.rail ol { list-style: none; margin: 0; padding: 0; }
.rail li { border-bottom: 1px solid var(--line); }
.rail li:last-child { border-bottom: 0; }
.rail a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: inherit;
}
.rail a:hover { text-decoration: none; color: inherit; }
.rail a:hover strong { color: var(--accent); }
.rail .cat {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3px;
}
.rail strong {
  display: block;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.rail .meta { display: block; margin-top: 4px; font-size: 12px; color: var(--muted); }
.rail-foot { padding: 10px 0 6px; font-size: 13px; font-weight: 700; }

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none !important;
  width: fit-content;
}
.btn:hover { background: var(--accent-2); }

.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ink);
}
.section-head h2 {
  font-family: Inter, sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0;
}
.section-head a { font-size: 13px; font-weight: 700; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
}
.card:hover {
  border-color: var(--ink);
  text-decoration: none;
  color: inherit;
  box-shadow: 4px 4px 0 var(--ink);
}
.card-bar { height: 6px; }
.cat-clubs { background: var(--clubs); }
.cat-balls { background: var(--balls); }
.cat-gps { background: var(--gps); }
.cat-green { background: var(--green); }
.cat-train { background: var(--train); }
.cat-reviews { background: var(--ink); }
.card-body { padding: 16px 16px 18px; flex: 1; display: flex; flex-direction: column; }
.card-body .cat {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 800; color: var(--accent); margin-bottom: 6px;
}
.card-body h3 { font-size: 20px; margin-bottom: 8px; }
.card-body p { color: var(--muted); font-size: 14.5px; margin: 0; }
.card-body .meta { margin-top: auto; padding-top: 12px; font-size: 12.5px; color: var(--muted); }

.list-hubs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 8px 0 8px;
}
.start-card {
  max-width: 420px;
  margin: 0 0 8px;
}
.start-card .card { box-shadow: 4px 4px 0 var(--ink); }

.hub {
  background: var(--ink);
  color: #F4F4F5;
  padding: 26px 22px;
  text-decoration: none;
  min-height: 200px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hub:hover { text-decoration: none; color: #fff; outline: 3px solid var(--accent); outline-offset: 0; }
.hub .kicker { color: #F2A0A8; }
.hub h3 { color: #fff; font-size: 28px; margin: 0 0 8px; }
.hub p { color: #C8CBD0; font-size: 14.5px; margin: 0; }

.lab-band {
  background: var(--ink);
  color: #E8E9EC;
  padding: 48px 0;
  margin: 48px 0 0;
}
.lab-band .inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: start; }
.lab-band h2 { color: #fff; font-size: 34px; }
.lab-band p { color: #C8CBD0; max-width: 58ch; }
.lab-band a { color: #F2A0A8; }
.lab-band a:hover { color: #fff; }
.lab-band .kicker { color: #F2A0A8; }

.page { padding: 40px 0 72px; flex: 1; }
.page-title { font-size: clamp(32px, 4vw, 48px); margin-bottom: 8px; }
.lede { font-size: 19px; color: var(--ink-2); max-width: 54ch; margin-bottom: 28px; }

.article { padding: 36px 0 72px; flex: 1; }
.article-head {
  max-width: 740px;
  margin: 0 auto 28px;
  padding-top: 14px;
  border-top: 4px solid var(--accent);
}
.article-head h1 { font-size: clamp(30px, 4vw, 44px); }
.article-head .dek {
  font-size: 20px;
  color: var(--ink-2);
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  line-height: 1.4;
}
.article-head .short-answer { margin-top: 18px; }
.byline { color: var(--muted); font-size: 14px; margin-top: 10px; }
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.related-grid .card-body h3 { font-size: 17px; }
.article-body { max-width: 740px; margin: 0 auto; }
.article-body h2 { font-size: 28px; margin-top: 1.6em; }
.article-body h3 { font-size: 21px; margin-top: 1.3em; }
.article-body ul, .article-body ol { padding-left: 1.2em; margin: 0 0 1.1em; }
.article-body li { margin: 0 0 0.35em; }
.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  margin: 1.2em 0 1.6em;
  background: var(--card);
}
.article-body th, .article-body td {
  border: 1px solid var(--line);
  padding: 9px 10px;
  text-align: left;
  vertical-align: top;
}
.article-body th { background: #EEF0F3; font-weight: 650; }
.article-body blockquote,
.short-answer {
  margin: 0 0 1.4em;
  padding: 14px 4px 14px 18px;
  border-left: 4px solid var(--accent);
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: 22px;
  line-height: 1.35;
  background: transparent;
}
.verdict {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  margin: 0 0 1.4em;
}
.list-recirc {
  max-width: 740px; margin: 28px auto 0; padding: 14px 16px;
  background: var(--ink); color: #E8E9EC; font-size: 14.5px; font-weight: 600;
}
.list-recirc a { color: #F2A0A8; }
.list-recirc a:hover { color: #fff; }
.related { max-width: 740px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid var(--line); }
.related h2 { font-size: 24px; }
.related ul { list-style: none; padding: 0; }
.related li { margin: 0 0 10px; }

.form { max-width: 520px; display: grid; gap: 12px; }
.form label { font-size: 13.5px; font-weight: 600; }
.form input, .form textarea {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--line); background: #fff;
  font: inherit; color: inherit;
}
.form textarea { min-height: 140px; resize: vertical; }
.form button {
  background: var(--ink); color: #fff; border: 0;
  padding: 12px 16px; font: inherit; font-weight: 700; cursor: pointer; width: fit-content;
}
.form button:hover { background: var(--accent); }
.hp { position: absolute; left: -9999px; }
.form-note { color: var(--muted); font-size: 14px; }
.form-status { font-size: 14.5px; }

.site-footer {
  margin-top: auto;
  background: #070809;
  color: #E6E7EA;
  padding: 36px 0 28px;
}
.site-footer a { color: #E6E7EA; }
.site-footer a:hover { color: #fff; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}
.foot-brand {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.site-footer p { color: #A8ABB2; font-size: 14.5px; }
.foot-col h3 {
  font-family: Inter, sans-serif;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #F2A0A8; margin-bottom: 10px;
}
.foot-col a { display: block; font-size: 14px; margin: 0 0 6px; text-decoration: none; }
.legal { margin-top: 24px; padding-top: 16px; border-top: 1px solid #2A2D33; font-size: 13px; color: #7A7E86; }

@media (max-width: 900px) {
  .home-top, .lab-band .inner, .foot-grid, .grid, .grid.grid-4, .list-hubs, .related-grid { grid-template-columns: 1fr; }
  .featured-inner { min-height: 300px; padding: 24px; }
  .featured h2 { max-width: 18ch; }
  .start-card { max-width: none; }
}
