/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Design Tokens ──────────────────────────────────────── */
:root {
  --navy:       #0A1628;
  --navy-mid:   #122240;
  --navy-light: #1C3358;
  --gold:       #C9A84C;
  --gold-light: #E2C97E;
  --white:      #FFFFFF;
  --off-white:  #F6F7F9;
  --gray-100:   #EEF0F4;
  --gray-300:   #C2C8D4;
  --gray-500:   #7E8A9A;
  --green:      #1DB954;
  --navy-deep:  #06101E;
  --text:       #374151;
  --muted:      #6B7280;
  --border:     #E5E7EB;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(10,22,40,.08);
  --shadow-md:  0 8px 32px rgba(10,22,40,.14);
  --shadow-lg:  0 20px 60px rgba(10,22,40,.18);
}

/* ── Base Typography ────────────────────────────────────── */
body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Skip Navigation ────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 0.1s;
}
.skip-link:focus { top: 1rem; }

/* ── Shared Footer ──────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  padding: 24px 0 32px;
  color: rgba(255,255,255,.5);
}
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer__bottom p { font-size: 0.8125rem; color: var(--gray-500); }
.footer__bottom a { font-size: 0.8125rem; color: rgba(255,255,255,.35); transition: color .15s; }
.footer__bottom .navbar__logo { display: flex; align-items: center; gap: 10px; font-size: 1.125rem; font-weight: 800; color: var(--white); letter-spacing: -.02em; text-decoration: none; }
.footer__bottom .navbar__logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.footer__bottom p + a { margin-left: auto; }
.footer__bottom a:hover { color: var(--white); }
.footer__bottom a[aria-current="page"] { color: var(--gold); text-decoration: underline; }

/* ── Utilities ──────────────────────────────────────────── */
.hidden { display: none !important; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
