@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #192B50;
  --ink: #17191E;
  --paper: #FFFFFF;
  --white: #FFFFFF;
  --red: #C8102E;
  --red-hover: #A70D27;
  --brass: var(--red);
  --brass-hover: var(--red-hover);
  --text-muted: #424852;
  --border: #E0E2E6;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --font-heading: 'Public Sans', sans-serif;
  --font-body: 'Public Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.site-main { flex: 1 0 auto; position: relative; }

/* Utilities */
.container { width: 100%; max-width: 75rem; margin: 0 auto; padding: 0 1.5rem; }
.icon-16 { width: 1rem; height: 1rem; flex-shrink: 0; }
.icon-20 { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.icon-24 { width: 1.5rem; height: 1.5rem; flex-shrink: 0; }
.icon-32 { width: 2rem; height: 2rem; flex-shrink: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-align: center;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  box-shadow: none;
}

.btn-primary {
  background: var(--brass);
  color: var(--white);
  border-color: var(--brass);
}
.btn-primary:hover {
  background: var(--brass-hover);
  border-color: var(--brass-hover);
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--text-muted);
  border-color: var(--text-muted);
  color: var(--white);
}

.btn-outline, .btn-secondary {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover, .btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.0625rem; }

/* Section Header */
.sec-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}
.sec-header--left {
  text-align: left;
  margin-left: 0;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brass);
  margin-bottom: 1rem;
}
.sec-title {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .sec-title { font-size: 2.75rem; }
}
.sec-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* Animations disabled globally */
.reveal, .reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Global Utilities & 404 */
.notfound {
  padding: 8rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  min-height: 50vh;
}
.nf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem;
  max-width: 32rem;
  text-align: center;
}
.nf-icon {
  width: 3rem;
  height: 3rem;
  color: var(--brass);
  margin-bottom: 1.5rem;
}
.nf-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.nf-text {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.utility-bar {
  background: var(--red);
  color: var(--white);
  padding: 0.45rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.utility-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0;
}
.utility-copy-short { display: none; }
.utility-bar a {
  color: var(--white);
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .utility-copy-full { display: none; }
  .utility-copy-short { display: inline; font-size: 0.75rem; }
  .utility-bar { padding: 0.4rem 1rem; font-size: 0.75rem; }
}

.site-header {
  background: var(--white);
  position: relative;
  z-index: 50;
}
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1rem 1.5rem;
  max-width: 75rem;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-logo-wordmark {
  height: 2.85rem;
  width: auto;
  display: block;
}
.nav-logo-wordmark--footer {
  background: var(--white);
  padding: 0.5rem;
  height: 2rem;
  box-sizing: content-box;
  border-radius: var(--radius-sm);
}

.nav-desktop {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--navy);
}
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-desktop-inner {
  display: flex;
  justify-content: center;
  gap: 0;
}

.nav-link {
  display: block;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}
.nav-link:hover, .nav-link[data-active="true"] {
  color: var(--white);
  background: var(--red);
}

.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }
.nav-phone {
  display: none;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
}
@media (min-width: 768px) { .nav-phone { display: inline; } }
.nav-tagline {
  display: none;
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
@media (min-width: 768px) { .nav-tagline { display: block; } }

.nav-toggle {
  display: inline-flex;
  color: var(--navy);
  padding: 0.5rem;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="false"] .icon-close { display: none; }

.nav-mobile {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nav-mobile-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-link.is-active { color: var(--red); }

/* Footer */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding-top: 5rem;
}
.footer-top-inner {
  max-width: 75rem; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 1024px) {
  .footer-top-inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  margin-top: 1.5rem;
  max-width: 20rem;
}
.footer-contact {
  list-style: none; margin: 1.5rem 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.75rem;
  font-size: 0.9375rem; color: rgba(255,255,255,0.7);
}
.footer-contact li { display: flex; gap: 0.75rem; align-items: flex-start; }
.footer-contact a { overflow-wrap: anywhere; }
.footer-contact-icon svg { width: 1.25rem; height: 1.25rem; color: var(--brass); }

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; }
.footer-links a { font-size: 0.9375rem; color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  margin-top: 5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 0;
}
.footer-bottom-inner {
  max-width: 75rem; margin: 0 auto; padding: 0 1.5rem;
}
.footer-disclaimer {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
