:root {
  --navy: #071a33;
  --red: #c1121f;
  --cream: #f6eddc;
  --white: #ffffff;
  --green: #1f7a4c;
  --gold: #f4b942;
  --ink: #14213d;
  --muted: #637083;
  --card: #ffffff;
  --shadow: 0 20px 45px rgba(0,0,0,.12);
}
* { box-sizing: border-box; }
body { margin:0; font-family: Arial, Helvetica, sans-serif; color: var(--ink); background: var(--cream); line-height:1.6; }
a { color: inherit; }
.site-header { position: sticky; top:0; z-index:100; background: rgba(7,26,51,.98); box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.navbar { max-width:1180px; margin:auto; display:flex; align-items:center; justify-content:space-between; padding:16px 20px; }
.logo { color:var(--white); text-decoration:none; font-size:1.35rem; font-weight:900; text-transform:uppercase; letter-spacing:.5px; }
.logo span { color:var(--red); }
.nav-links { display:flex; gap:18px; align-items:center; list-style:none; margin:0; padding:0; }
.nav-links a { color:var(--white); text-decoration:none; font-weight:700; font-size:.95rem; }
.nav-links a:hover { color:var(--gold); }
.nav-cta { background:var(--red); padding:9px 14px; border-radius:999px; }
.nav-toggle { display:none; background:none; border:0; color:var(--white); font-size:1.8rem; cursor:pointer; }
.hero { position:relative; min-height:650px; display:grid; place-items:center; color:var(--white); text-align:center; background: radial-gradient(circle at top, rgba(244,185,66,.2), transparent 34%), linear-gradient(135deg, rgba(7,26,51,.95), rgba(7,26,51,.72)), url('https://images.unsplash.com/photo-1508344928928-7165b67de128?auto=format&fit=crop&w=1600&q=80') center/cover; overflow:hidden; }
.hero:after { content:""; position:absolute; inset:auto -10% -40px -10%; height:130px; background: repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 10px, rgba(255,255,255,0) 10px 22px); transform: rotate(-2deg); }
.hero-content { position:relative; z-index:1; max-width:900px; padding:40px 20px; }
.eyebrow { color:var(--red); text-transform:uppercase; letter-spacing:2px; font-weight:900; font-size:.82rem; margin-bottom:10px; }
.hero .eyebrow { color:var(--gold); }
h1 { font-size:clamp(2.6rem, 7vw, 5.4rem); line-height:.95; margin:0 0 24px; text-transform:uppercase; letter-spacing:-2px; }
h2 { font-size:clamp(1.9rem, 4vw, 3rem); line-height:1.05; margin:0 0 18px; }
h3 { margin-top:0; }
.hero-text { font-size:1.25rem; max-width:760px; margin:0 auto 30px; color:#f9f1df; }
.btn { display:inline-block; text-decoration:none; font-weight:900; border-radius:999px; padding:13px 22px; margin:6px; transition:.2s; border:2px solid transparent; }
.btn-primary { background:var(--red); color:var(--white); }
.btn-primary:hover { background:#94101a; transform:translateY(-2px); }
.btn-secondary { background:var(--cream); color:var(--navy); border-color:var(--navy); }
.btn-secondary:hover { background:var(--gold); transform:translateY(-2px); }
.authority-strip { max-width:1180px; margin:-45px auto 40px; position:relative; z-index:2; display:grid; grid-template-columns:repeat(3,1fr); gap:14px; padding:0 20px; }
.authority-strip div { background:var(--white); padding:22px; border-radius:18px; box-shadow:var(--shadow); border-bottom:5px solid var(--red); }
.authority-strip strong { display:block; font-size:1.1rem; color:var(--navy); }
.authority-strip span { color:var(--muted); }
.section { max-width:1180px; margin:auto; padding:72px 20px; }
.intro-grid, .two-column { display:grid; grid-template-columns:1.2fr .8fr; gap:36px; align-items:center; }
.card-grid { display:grid; gap:22px; }
.card-grid.three { grid-template-columns:repeat(3,1fr); }
.card-grid.four { grid-template-columns:repeat(4,1fr); }
.card-grid.two { grid-template-columns:repeat(2,1fr); }
.card, .product-card { background:var(--card); padding:28px; border-radius:22px; box-shadow:var(--shadow); border:1px solid rgba(7,26,51,.08); }
.card a, .product-card a { color:var(--red); font-weight:900; text-decoration:none; }
.feature-card { background:linear-gradient(145deg, var(--navy), #102b50); color:var(--white); }
.check-list { padding-left:0; list-style:none; }
.check-list li { margin:10px 0; padding-left:28px; position:relative; }
.check-list li:before { content:"⚾"; position:absolute; left:0; }
.dark-section { max-width:none; background:var(--navy); color:var(--white); padding-left:calc((100% - 1180px)/2 + 20px); padding-right:calc((100% - 1180px)/2 + 20px); }
.dark-section .card { color:var(--ink); }
.video-placeholder { min-height:320px; border-radius:28px; display:grid; place-items:center; text-align:center; background:linear-gradient(135deg, var(--navy), var(--green)); color:var(--white); box-shadow:var(--shadow); }
.video-placeholder.large { min-height:430px; }
.video-placeholder span { width:80px; height:80px; border-radius:50%; display:grid; place-items:center; background:var(--red); font-size:2rem; margin:auto; }
.merch-preview { text-align:center; }
.product-card span { font-size:2.4rem; display:block; margin-bottom:12px; }
.newsletter { max-width:1180px; margin:40px auto 80px; padding:34px; display:grid; grid-template-columns:1fr .9fr; gap:24px; align-items:center; background:linear-gradient(135deg, var(--navy), #0f315d); color:var(--white); border-radius:28px; box-shadow:var(--shadow); }
.newsletter-form { display:flex; gap:10px; }
.newsletter input, .contact-form input, .contact-form textarea { width:100%; padding:14px 16px; border-radius:12px; border:1px solid #ccd3dd; font:inherit; }
.newsletter button, .contact-form button { border:0; background:var(--red); color:var(--white); font-weight:900; border-radius:12px; padding:14px 18px; cursor:pointer; }
.page-hero { background:linear-gradient(135deg, var(--navy), #123963); color:var(--white); text-align:center; padding:95px 20px; }
.page-hero p { max-width:820px; margin:0 auto; font-size:1.18rem; color:#f8eed9; }
.category-pills { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:30px; }
.category-pills span { background:var(--white); padding:10px 14px; border-radius:999px; font-weight:800; box-shadow:0 8px 18px rgba(0,0,0,.08); }
.blog-card h2 { font-size:1.45rem; }
.disclosure { background:#fff7de; padding:18px 20px; border-left:6px solid var(--gold); border-radius:12px; margin-bottom:30px; }
.contact-form { background:var(--white); padding:28px; border-radius:22px; box-shadow:var(--shadow); display:grid; gap:16px; }
.contact-form label { font-weight:900; color:var(--navy); }
.site-footer { background:#041225; color:var(--white); padding:35px 20px; display:flex; justify-content:space-between; gap:20px; align-items:center; }
.site-footer > div { max-width:560px; }
.footer-links { display:flex; gap:14px; flex-wrap:wrap; }
.footer-links a { color:var(--white); text-decoration:none; font-weight:800; }
@media (max-width: 850px) {
  .nav-toggle { display:block; }
  .nav-links { display:none; position:absolute; top:68px; left:0; right:0; background:var(--navy); flex-direction:column; padding:20px; }
  .nav-links.open { display:flex; }
  .authority-strip, .intro-grid, .two-column, .newsletter, .card-grid.three, .card-grid.four, .card-grid.two { grid-template-columns:1fr; }
  .hero { min-height:560px; }
  .newsletter-form { flex-direction:column; }
  .site-footer { flex-direction:column; align-items:flex-start; }
}
