:root {
  --navy-950: #04111f;
  --navy-900: #07182d;
  --navy-800: #0d2747;
  --blue-600: #315f87;
  --red-600: #c43d35;
  --red-500: #df5046;
  --sand-50: #f7f5f0;
  --sand-100: #eeeae1;
  --stone-300: #b8b3aa;
  --stone-500: #77756f;
  --ink: #101b27;
  --white: #fff;
  --line: rgba(7, 24, 45, 0.14);
  --shadow: 0 22px 60px rgba(4, 17, 31, 0.12);
  --shell: min(1180px, calc(100% - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--sand-50);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.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;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 800;
}
.skip-link:focus { top: 14px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(7,24,45,.12);
  background: rgba(247, 245, 240, .96);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
  background: rgba(247, 245, 240, .98);
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 158px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  color: var(--navy-900);
  text-decoration: none;
  font-size: .84rem;
  font-weight: 750;
  letter-spacing: .03em;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--red-600); }
.site-nav .nav-cta { padding: 10px 17px; border: 1px solid rgba(7,24,45,.38); border-radius: 999px; }
.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--navy-900); transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}
.hero-media, .hero-scrim { position: absolute; inset: 0; }
.hero-media {
  background: url("/assets/valor-mission-terrain.webp") center / cover no-repeat;
  transform: scale(1.015);
  animation: settle 1.8s cubic-bezier(.2,.8,.2,1) both;
}
.hero-scrim {
  background:
    linear-gradient(90deg, rgba(4,17,31,.94) 0%, rgba(4,17,31,.77) 40%, rgba(4,17,31,.13) 78%),
    linear-gradient(0deg, rgba(4,17,31,.82) 0%, transparent 44%);
}
.hero-inner { position: relative; z-index: 2; padding: 180px 0 150px; }
.hero-copy { width: min(760px, 70%); }
.eyebrow {
  margin: 0 0 18px;
  color: var(--red-600);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow.light { color: #f0a099; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; }
h1 { max-width: 760px; margin-bottom: 26px; font-size: clamp(3.5rem, 7vw, 6.7rem); line-height: .95; }
h2 { margin-bottom: 24px; font-size: clamp(2.5rem, 4.8vw, 4.45rem); line-height: 1.03; }
h3 { font-size: 1.18rem; line-height: 1.3; }
.hero-lede { max-width: 690px; margin-bottom: 34px; color: rgba(255,255,255,.8); font-size: 1.16rem; line-height: 1.65; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .08em;
  line-height: 1.25;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--red-600); color: var(--white); }
.button-primary:hover { background: var(--red-500); }
.button-ghost { border-color: rgba(255,255,255,.45); color: var(--white); background: rgba(4,17,31,.28); }
.button-ghost:hover { border-color: var(--white); background: rgba(4,17,31,.48); }
.button-light { background: var(--white); color: var(--navy-900); }
.button-outline-light { border-color: rgba(255,255,255,.55); color: var(--white); }
.hero-proof {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.24);
}
.hero-proof span { padding: 23px 28px; border-right: 1px solid rgba(255,255,255,.18); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-proof span:last-child { border-right: 0; }

.section { padding: 120px 0; }
.mission { background: var(--white); }
.mission-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; align-items: start; }
.mission h2 { max-width: 600px; }
.mission-copy { max-width: 630px; padding-top: 38px; }
.lead { font-size: 1.17rem; line-height: 1.7; }
.mission-note { display: flex; gap: 18px; align-items: center; margin-top: 38px; }
.mission-rule { width: 54px; height: 3px; background: var(--red-600); flex: 0 0 auto; }
.mission-note p { margin: 0; color: var(--navy-900); }

.capabilities { background: var(--sand-100); }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 8vw; align-items: end; margin-bottom: 58px; }
.section-heading h2 { max-width: 720px; margin-bottom: 0; }
.section-heading > p { margin: 0 0 8px; color: #4d545b; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.capability-card {
  position: relative;
  min-height: 560px;
  padding: 36px 32px 32px;
  border-top: 4px solid var(--blue-600);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 26px rgba(4,17,31,.05);
  display: flex;
  flex-direction: column;
}
.capability-card.featured { border-color: var(--red-600); background: var(--white); }
.card-number { position: absolute; right: 26px; top: 22px; color: rgba(7,24,45,.17); font-family: var(--serif); font-size: 2.4rem; }
.card-icon { width: 50px; margin: 6px 0 42px; color: var(--navy-800); }
.card-icon svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.capability-card h3 { margin-bottom: 18px; color: var(--navy-900); font-size: 1.45rem; }
.capability-card p { color: #505861; }
.capability-card ul { padding-left: 20px; color: #2f3d4a; }
.capability-card li { margin-bottom: 8px; }
.contract-tag { display: inline-flex; align-self: flex-start; margin-top: auto; padding-top: 25px; color: var(--red-600); font-size: .68rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.capability-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 18px; border: 1px solid var(--line); }
.capability-strip span { min-height: 92px; display: flex; align-items: center; padding: 18px 22px; border-right: 1px solid var(--line); color: var(--navy-900); font-size: .83rem; font-weight: 800; }
.capability-strip span:last-child { border: 0; }

.sectors { color: var(--white); background: var(--navy-900); }
.sectors-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: start; }
.sectors-copy { position: sticky; top: 130px; }
.sectors-copy p:last-child { max-width: 480px; color: rgba(255,255,255,.68); }
.sector-list { border-top: 1px solid rgba(255,255,255,.2); }
.sector-list div {
  display: grid;
  grid-template-columns: 48px 1fr 1.2fr;
  gap: 24px;
  align-items: center;
  min-height: 110px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.sector-list span { color: #f0a099; font-size: .7rem; font-weight: 800; }
.sector-list strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; }
.sector-list small { color: rgba(255,255,255,.62); font-size: .86rem; }

.approach { background: var(--white); }
.approach-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.approach-steps li { min-height: 290px; padding: 30px 28px; border-right: 1px solid var(--line); }
.approach-steps li:last-child { border-right: 0; }
.step-index { display: block; margin-bottom: 70px; color: var(--red-600); font-size: .7rem; font-weight: 850; }
.approach-steps h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.approach-steps p { color: #596069; font-size: .9rem; }

.sentinel { background: #e9e4da; }
.sentinel-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 8vw; align-items: center; }
.sentinel-image { position: relative; }
.sentinel-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow); }
.image-caption {
  position: absolute;
  right: -24px;
  bottom: -24px;
  max-width: 230px;
  padding: 18px 22px;
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1rem;
}
.sentinel-copy .lead { color: #313b45; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0; }
.status-badge { width: 156px; min-height: 118px; display: flex; flex-direction: column; justify-content: center; padding: 16px; border: 1px solid rgba(7,24,45,.23); text-align: center; }
.status-badge span { color: var(--red-600); font-size: .58rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.status-badge strong { margin: 2px 0; color: var(--navy-900); font-family: var(--serif); font-size: 1.35rem; }
.status-badge small { color: #5d5e5b; font-size: .62rem; line-height: 1.35; }
.text-link { display: inline-flex; gap: 10px; color: var(--navy-900); font-weight: 800; text-underline-offset: 5px; }

.readiness { color: var(--white); background: var(--red-600); }
.readiness-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 42px 8vw; align-items: end; }
.readiness h2 { max-width: 700px; margin: 0; }
.readiness-data { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.28); }
.readiness-data div { padding: 22px 18px; background: var(--red-600); }
.readiness-data span { display: block; color: rgba(255,255,255,.67); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.readiness-data strong { display: block; margin-top: 5px; font-size: .9rem; }
.readiness .button-row { grid-column: 2; }

.contact { background: var(--sand-50); }
.contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 10vw; align-items: start; }
.contact-grid h2 { max-width: 720px; }
.contact-grid .lead { max-width: 650px; color: #4b5660; }
.contact-card { padding: 42px; background: var(--navy-900); color: var(--white); box-shadow: var(--shadow); }
.contact-label { color: #f0a099; font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-main { display: block; margin-bottom: 8px; font-family: var(--serif); font-size: clamp(1.25rem, 2.1vw, 1.65rem); text-decoration: none; }
.contact-card > p:not(.contact-label) { margin: 18px 0 28px; color: rgba(255,255,255,.68); }

.site-footer { padding: 56px 0; color: rgba(255,255,255,.64); background: var(--navy-950); font-size: .78rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 50px; align-items: start; }
.footer-grid > div:first-child img { width: 190px; height: auto; margin-bottom: 16px; padding: 10px; background: var(--sand-50); }
.footer-links { display: grid; gap: 7px; }
.footer-links a { color: rgba(255,255,255,.76); text-decoration: none; }
.footer-meta { text-align: right; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
@keyframes settle { from { opacity: .45; transform: scale(1.08); } to { opacity: 1; transform: scale(1.015); } }

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 760px); }
  .menu-button { display: block; }
  .site-nav {
    position: fixed;
    inset: 84px 0 auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 28px 22px 34px;
    background: var(--sand-50);
    border-top: 1px solid rgba(7,24,45,.12);
    box-shadow: 0 20px 35px rgba(0,0,0,.25);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { width: 100%; padding: 11px 2px; font-size: .95rem; }
  .site-nav .nav-cta { margin-top: 12px; padding: 12px 17px; text-align: center; }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: 740px; }
  .hero-copy { width: 90%; }
  .mission-grid, .section-heading, .sectors-grid, .sentinel-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .mission-copy { padding-top: 0; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: auto; }
  .capability-card ul { margin-bottom: 32px; }
  .capability-strip { grid-template-columns: repeat(2, 1fr); }
  .capability-strip span:nth-child(2) { border-right: 0; }
  .capability-strip span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .sectors-copy { position: static; }
  .approach-steps { grid-template-columns: repeat(2, 1fr); }
  .approach-steps li:nth-child(2) { border-right: 0; }
  .approach-steps li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .readiness-inner { grid-template-columns: 1fr; }
  .readiness .button-row { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); }
  .header-inner { min-height: 72px; }
  .brand { width: 136px; }
  .site-nav { top: 72px; }
  .hero { min-height: 760px; }
  .hero-inner { padding: 150px 0 190px; }
  .hero-copy { width: 100%; }
  h1 { font-size: clamp(3.2rem, 15vw, 4.7rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.4rem); }
  .hero-lede { font-size: 1rem; }
  .button-row { align-items: stretch; }
  .button-row .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; width: 100%; }
  .hero-proof span { padding: 10px 14px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); text-align: center; font-size: .62rem; }
  .section { padding: 86px 0; }
  .capability-card { padding: 32px 26px; }
  .capability-strip, .approach-steps { grid-template-columns: 1fr; }
  .capability-strip span, .capability-strip span:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .capability-strip span:last-child { border-bottom: 0; }
  .approach-steps li, .approach-steps li:nth-child(2) { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .approach-steps li:last-child { border-bottom: 0; }
  .step-index { margin-bottom: 36px; }
  .sector-list div { grid-template-columns: 38px 1fr; gap: 16px; padding: 24px 0; }
  .sector-list small { grid-column: 2; }
  .image-caption { right: 12px; bottom: -20px; }
  .readiness-data { grid-template-columns: 1fr; }
  .contact-card { padding: 30px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-meta { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .menu-button { position: static; }
  .hero { min-height: auto; }
  .hero-inner { padding: 100px 0; }
}
