*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charcoal: #111827;
  --dark:     #1c2333;
  --red:      #c82333;
  --red-dark: #a61c2a;
  --red-light:#fde8ea;
  --silver:   #9ca3af;
  --light:    #f3f4f6;
  --sand:     #f9fafb;
  --white:    #ffffff;
  --text:     #1f2937;
  --muted:    #6b7280;
  --border:   #e5e7eb;
  --radius:   10px;
  --max:      1100px;
}

html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }

/* SKIP LINK */
.skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { position: fixed; top: 0; left: 0; width: auto; height: auto; padding: .6rem 1.25rem; background: var(--red); color: var(--white); font-weight: 700; font-size: .9rem; text-decoration: none; z-index: 9999; border-radius: 0 0 6px 0; outline: none; }

/* FOCUS */
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: var(--charcoal); padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 64px; box-shadow: 0 2px 12px rgba(0,0,0,.4); }
.nav-logo { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.nav-logo img { width: 34px; height: 34px; flex-shrink: 0; object-fit: contain; }
.nav-logo-text { color: var(--white); font-size: 1.1rem; font-weight: 700; letter-spacing: .3px; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .93rem; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-links a.nav-page { color: var(--white); font-weight: 600; }
.nav-sep { width: 1px; height: 16px; background: rgba(255,255,255,.18); flex-shrink: 0; }
.nav-cta { background: var(--red); color: var(--white) !important; padding: .45rem 1.1rem; border-radius: 6px; font-weight: 700 !important; transition: background .2s !important; }
.nav-cta:hover { background: var(--red-dark) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; color: var(--white); line-height: 0; }
.nav-toggle:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }
.nav-toggle .bar { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px 0; transition: transform .2s, opacity .2s; }
nav.nav-open .nav-toggle .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-toggle .bar:nth-child(2) { opacity: 0; }
nav.nav-open .nav-toggle .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 600px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--charcoal); flex-direction: column; padding: .5rem 1.5rem 1.25rem; gap: 0; box-shadow: 0 4px 12px rgba(0,0,0,.5); z-index: 99; }
  .nav-links li { border-top: 1px solid rgba(255,255,255,.07); }
  .nav-links a { display: block; padding: .75rem 0; font-size: 1rem; }
  .nav-cta { display: inline-block; margin-top: .5rem; }
  nav.nav-open .nav-links { display: flex; }
  .nav-sep { display: none; }
}

/* FOOTER */
footer { background: #0b1017; color: rgba(255,255,255,.45); text-align: center; padding: 1.5rem 2rem; font-size: .82rem; }
footer a { color: rgba(255,255,255,.55); text-decoration: none; }
footer a:hover { color: var(--white); }

.container { max-width: var(--max); margin: 0 auto; }

/* BUTTONS */
.btn { display: inline-block; padding: .85rem 2rem; border-radius: 8px; font-weight: 700; text-decoration: none; font-size: 1rem; border: none; cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.25); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { border: 2px solid rgba(255,255,255,.45); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); }
.btn-outline { border: 2px solid var(--red); color: var(--red); background: transparent; }
.btn-outline:hover { background: var(--red); color: var(--white); }
