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

:root {
  --maple-red: #D8292F;
  --federal-blue: #0A2342;
  --deep-navy: #061A33;
  --white: #FFFFFF;
  --surface: #F8F9FA;
  --text: #1C1C1C;
  --muted: #58595B;
  --outline: #E1E3E6;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.5;
  font-size: 16px;
}

img, svg {
  display: block;
  max-width: 100%;
}

header.site-header {
  background-color: var(--white);
  height: 72px;
  border-bottom: 1px solid var(--outline);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  max-width: 1240px;
  padding: 0 32px;
  margin: 0 auto;
  height: 100%;
}

nav.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
}

a.nav-brand {
  color: var(--federal-blue);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-menu .nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--federal-blue);
}

a.nav-cta {
  background-color: var(--maple-red);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}

a.nav-cta:hover {
  background-color: #b51f24;
  transform: translateY(-1px);
}

button.nav-toggle {
  display: none;
  color: var(--federal-blue);
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

button.nav-toggle .icon-close {
  display: none;
}

button.nav-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

button.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

section#hero.hero-section {
  background-color: var(--white);
  padding: 120px 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

p.hero-eyebrow {
  color: var(--maple-red);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 84px;
  line-height: 1.02;
  color: var(--federal-blue);
  margin: 0 0 32px;
  letter-spacing: -0.02em;
  max-width: 14ch;
  position: relative;
}

.hero-content h1::after {
  content: '';
  display: block;
  width: 96px;
  height: 6px;
  background-color: var(--maple-red);
  margin-top: 32px;
}

.hero-subheading {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 540px;
  margin: 0 0 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button-primary {
  background-color: var(--maple-red);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.button-primary:hover {
  background-color: #b51f24;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(216, 41, 47, 0.25);
}

.button-secondary {
  background-color: transparent;
  color: var(--federal-blue);
  padding: 14px 30px;
  border: 2px solid var(--federal-blue);
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.button-secondary:hover {
  background-color: var(--federal-blue);
  color: var(--white);
}

.hero-image-wrapper {
  width: 100%;
}

svg.hero-illustration-svg {
  width: 100%;
  height: auto;
  display: block;
}

.trust-strip {
  background-color: var(--white);
  padding: 24px 0;
  border-top: 1px solid var(--outline);
  border-bottom: 1px solid var(--outline);
  text-align: center;
}

.trust-strip .container {
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

section {
  padding: 120px 0;
}

.container {
  max-width: 1240px;
  padding: 0 32px;
  margin: 0 auto;
}

p.section-eyebrow {
  color: var(--maple-red);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 16px;
}

section h2 {
  text-align: center;
  color: var(--federal-blue);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 24px;
  letter-spacing: -0.015em;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--maple-red);
  margin: 24px auto 0;
}

p.section-lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
}

section#services.services-section {
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--outline);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(10, 35, 66, 0.08);
  border-color: var(--federal-blue);
}

.service-icon {
  display: block;
  margin: 0 0 24px;
  height: 48px;
}

.service-icon svg {
  width: 48px;
  height: 48px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--federal-blue);
  margin: 0 0 12px;
  line-height: 1.3;
}

.service-card p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

section#approach.approach-section {
  background-color: var(--surface);
}

.approach-strip, .approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.approach-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 1px;
  background-color: var(--outline);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--maple-red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 12px rgba(216, 41, 47, 0.3);
}

.step h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--federal-blue);
  margin: 0 0 12px;
}

.step p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

section#sectors.sectors-section {
  background-color: var(--white);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.sector-card {
  background-color: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 12px;
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.3s;
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 35, 66, 0.08);
}

.sector-icon {
  flex-shrink: 0;
}

.sector-icon svg {
  width: 56px;
  height: 56px;
  display: block;
}

.sector-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--federal-blue);
  margin: 0 0 8px;
}

.sector-card p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

section#why-us.why-us-section {
  background-color: var(--surface);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.why-us-card {
  background-color: var(--white);
  border: 1px solid var(--outline);
  border-radius: 12px;
  padding: 36px;
  border-left: 4px solid var(--maple-red);
}

.why-us-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--federal-blue);
  margin: 0 0 12px;
}

.why-us-card p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

section#contact.contact-section {
  background-color: var(--deep-navy);
  padding: 120px 0;
}

.contact-section .container {
  text-align: center;
  max-width: 720px;
}

.contact-section .section-eyebrow {
  color: var(--maple-red);
}

.contact-section h2 {
  color: var(--white);
}

.contact-section h2::after {
  background-color: var(--maple-red);
}

.contact-section > .container > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto 40px;
  max-width: 600px;
}

.contact-section .button-primary {
  font-size: 17px;
  padding: 18px 36px;
}

p.contact-coverage {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  margin-top: 24px;
}

footer.site-footer-main {
  background-color: var(--deep-navy);
  color: var(--white);
  padding: 64px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand-info h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  margin: 0 0 16px;
}

.footer-brand-info p {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links-group h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 20px;
}

.footer-links-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-group li {
  margin-bottom: 12px;
}

.footer-links-group a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links-group a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  margin-top: 48px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  header.site-header {
    height: 64px;
  }
  nav.main-nav button.nav-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--outline);
    padding: 16px 32px;
  }
  .nav-menu.is-open {
    display: block;
  }
  .nav-menu .nav-links {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  a.nav-cta {
    display: none;
  }
  section {
    padding: 72px 0;
  }
  section#hero.hero-section {
    padding: 64px 0;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content h1 {
    font-size: 44px;
    letter-spacing: -0.015em;
  }
  .hero-image-wrapper {
    display: none;
  }
  section h2 {
    font-size: 30px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .approach-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .approach-steps::before {
    display: none;
  }
  .sectors-grid {
    grid-template-columns: 1fr;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media print {
  body {
    font-family: serif;
    color: #000;
    background-color: #fff;
  }
  a {
    color: #000;
    text-decoration: underline;
  }
  .site-header, .site-footer-main, .nav-cta, .button-primary, .button-secondary, .hero-image-wrapper, .trust-strip {
    display: none;
  }
}

/* hero illustration removed - hero is text-only */
.hero-section .container.hero-container,
.hero-section .hero-container {
  display: block !important;
  max-width: 880px;
}
.hero-content h1 { max-width: 100%; }
.hero-content .hero-subheading, .hero-content p { max-width: 640px; }
