* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--linen); color: var(--ink); font-family: var(--font-body); }
button, a { font: inherit; }
a { color: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 32px), var(--max-width)); margin-inline: auto; }
.eyebrow { margin: 0 0 4px; color: var(--copper); font-size: .74rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.display { margin: 0; font-family: var(--font-display); font-weight: 800; letter-spacing: .01em; text-transform: uppercase; }
.muted { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-small); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 0 20px; border: 0; border-radius: 12px; background: var(--copper); color: white; font-weight: 800; text-decoration: none; }
.button:hover { background: #9e4e31; }
.button-secondary { background: transparent; border: 1px solid rgba(255,255,255,.28); }
.button-secondary:hover { background: rgba(255,255,255,.08); }
.text-link { color: var(--copper); font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.status { display: inline-flex; align-items: center; gap: 7px; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.status::before { width: 7px; height: 7px; border-radius: 99px; background: currentColor; content: ''; }
.status-live { color: var(--danger); }
.status-final { color: var(--success); }
.status-upcoming { color: var(--dusk); }
.team-mark { display: grid; width: 38px; height: 38px; place-items: center; flex: 0 0 auto; border-radius: 11px; background: var(--navy); color: var(--sand); font-family: var(--font-display); font-weight: 800; }

.site-header { position: sticky; z-index: 20; top: 0; background: var(--navy); color: var(--white); box-shadow: 0 5px 22px rgba(24,36,58,.18); }
.nav-wrap { display: flex; min-height: 72px; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; color: inherit; text-decoration: none; }
.brand-mark { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(232,217,194,.36); border-radius: 12px; background: linear-gradient(145deg, var(--copper), var(--rose)); color: white; font: 800 1.25rem var(--font-display); }
.brand-name { font: 800 1.2rem var(--font-display); letter-spacing: .04em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 5px; }
.nav-links a { padding: 10px 12px; border-radius: 9px; color: var(--sand); font-size: .86rem; font-weight: 700; text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current='page'] { background: rgba(255,255,255,.09); color: white; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.24); border-radius: 11px; background: transparent; color: white; font-size: 1.25rem; }

.site-footer { margin-top: 64px; padding: 32px 0; background: var(--navy); color: var(--sand); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-inner p { margin: 0; font-size: .78rem; }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links { position: absolute; top: 72px; right: 16px; left: 16px; display: none; padding: 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: var(--navy-2); box-shadow: var(--shadow); }
  .nav-links.open { display: grid; }
  .nav-links a { padding: 13px 14px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } }
