@font-face {
  font-family: 'Barlow Condensed';
  src: url('fonts/BarlowCondensed-Bold.ttf') format('truetype');
  font-weight: 700;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('fonts/BarlowCondensed-Regular.ttf') format('truetype');
  font-weight: 400;
}

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

:root {
  --navy:  #051C2C;
  --blue:  #0057B7;
  --red:   #C8102E;
  --white: #FFFFFF;
  --light: #F2F5F9;
  --muted: #8A9BB0;
  --dark:  #020F1A;
  --mid:   #071F30;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow Condensed', 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  font-size: 18px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 56px; }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 80px;
  background: var(--dark);
  border-bottom: 3px solid var(--red);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 56px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: 20px;
  text-decoration: none;
}
/* The AA mark IS the AOAA mark */
.nav-aa-mark {
  height: 52px;
  width: auto;
  display: block;
}
.nav-brand-text {
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 20px;
}
.nav-org-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  display: block;
}
.nav-org-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 3px;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); border-bottom-color: var(--red); }
.nav-inquiry {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 11px 26px !important;
  border-bottom: none !important;
  letter-spacing: 2px !important;
  transition: background 0.2s !important;
}
.nav-inquiry:hover { background: #a50d24 !important; }

/* ── BUTTONS ── */
.btn-red {
  display: inline-block;
  background: var(--red); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; padding: 15px 40px;
  transition: background 0.2s;
  border: none; cursor: pointer;
}
.btn-red:hover { background: #a50d24; }

.btn-navy {
  display: inline-block;
  background: transparent; color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; padding: 13px 40px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s;
}
.btn-navy:hover { border-color: var(--white); }

.btn-white {
  display: inline-block;
  background: var(--white); color: var(--red);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; padding: 15px 48px;
  transition: background 0.2s; white-space: nowrap;
}
.btn-white:hover { background: #f0f0f0; }

/* ── SECTION SCAFFOLDING ── */
.section { padding: 96px 0; }
.section-mid { background: var(--mid); }
.section-light { background: var(--light); }

.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 11px;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--red);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--red);
  display: block; flex-shrink: 0;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 4vw, 56px);
  text-transform: uppercase;
  line-height: 0.93; letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.section-light .section-title { color: var(--navy); }
.section-light .eyebrow { color: var(--red); }
.section-light .eyebrow::before { background: var(--red); }

.lead-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400; font-size: 20px;
  color: var(--muted); line-height: 1.6;
  max-width: 580px; margin-bottom: 56px;
}
.section-light .lead-text { color: #4A6278; }

/* ── TICKER ── */
.ticker-band { background: var(--red); padding: 16px 0; overflow: hidden; }
.ticker-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: ticker 32s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  flex-shrink: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 12px;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.ticker-item + .ticker-item::before {
  content: ' · ';
  margin-right: 60px;
  color: rgba(255,255,255,0.3);
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--red);
  padding: 72px 0;
}
.cta-band-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 56px;
  display: flex; justify-content: space-between; align-items: center; gap: 48px;
}
.cta-band-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 48px);
  text-transform: uppercase; line-height: 0.95;
  color: var(--white); margin-bottom: 8px;
}
.cta-band-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; color: rgba(255,255,255,0.7);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 3px solid var(--red);
  padding: 64px 0 36px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 56px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.footer-logo {
  height: 48px; width: auto;
  display: block; margin-bottom: 20px;
}
.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; color: var(--muted);
  line-height: 1.6; max-width: 260px;
}
.footer-col-hd {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 0 56px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.footer-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; color: var(--muted);
}
.footer-tm {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px;
  color: rgba(138,155,176,0.4);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px;
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(200,16,46,0.6); }

@media (max-width: 1024px) {
  .container, .nav-inner, .cta-band-inner, .footer-grid, .footer-bottom { padding-left: 28px; padding-right: 28px; }
  .nav-links { display: none; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}
