:root {
  --ink: #151515;
  --ink-soft: #222222;
  --paper: #f3f0e9;
  --paper-bright: #fbfaf7;
  --muted: #686560;
  --line: #d7d1c7;
  --red: #b3131b;
  --red-dark: #7d0e13;
  --white: #ffffff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-bright);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--ink);
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20,20,20,.96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand-wordmark {
  text-decoration: none;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  letter-spacing: .015em;
}
nav { display: flex; gap: 1.75rem; }
nav a {
  color: #e8e6e1;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 650;
}
nav a:hover, nav a:focus-visible { color: var(--white); }
nav a:focus-visible, .brand-wordmark:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 5px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 22%, rgba(255,255,255,.05), transparent 28%),
    linear-gradient(180deg, #1a1a19 0%, #111 100%);
  color: var(--white);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .22;
  pointer-events: none;
  background-image:
    linear-gradient(115deg, transparent 0 49%, rgba(255,255,255,.018) 50%, transparent 51%),
    radial-gradient(circle at 25% 20%, rgba(255,255,255,.035) 0 1px, transparent 1.5px);
  background-size: 56px 56px, 13px 13px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 2rem));
  padding: 6.5rem 0 7rem;
  text-align: center;
}
.hero-logo {
  width: min(520px, 74vw);
  margin: 0 auto 1.1rem;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.35));
}
.tagline {
  margin: .25rem 0 1.4rem;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .78rem;
  font-weight: 800;
  color: #ddd9d1;
}
.red-rule {
  width: 78px;
  height: 3px;
  margin: 0 auto 1.65rem;
  background: var(--red);
}
.hero h1 {
  max-width: 850px;
  margin: 0 auto;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.hero-copy {
  max-width: 730px;
  margin: 1.65rem auto 0;
  color: #d6d4cf;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}
.service-area {
  margin: 1.3rem 0 0;
  color: #aaa7a0;
  font-size: .9rem;
  font-weight: 650;
}

.section-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 6.5rem 0;
}
.narrow { max-width: 820px; }
.eyebrow {
  margin: 0 0 .9rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 850;
}
h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.mission {
  background: var(--paper-bright);
  border-bottom: 1px solid var(--line);
}
.mission p:last-child,
.readiness p:last-child {
  margin: 1.4rem 0 0;
  color: #47443f;
  font-size: 1.1rem;
}

.training {
  background: var(--paper);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
}
.status-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .45rem .8rem;
  border: 1px solid rgba(179,19,27,.28);
  border-radius: 999px;
  color: var(--red-dark);
  background: rgba(179,19,27,.07);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.section-intro {
  max-width: 760px;
  margin: 1.35rem 0 2.5rem;
  color: #55514c;
}
.training-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}
.training-card {
  min-height: 260px;
  padding: 2rem;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-top: 3px solid var(--ink);
  transition: transform .2s ease, border-color .2s ease;
}
.training-card:hover {
  transform: translateY(-3px);
  border-top-color: var(--red);
}
.card-number {
  display: block;
  margin-bottom: 2.1rem;
  color: var(--red);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .12em;
}
.training-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.1;
}
.training-card p {
  margin: 1rem 0 0;
  color: #5a5650;
}

.about {
  background: var(--paper-bright);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(240px,.75fr) minmax(0,1.25fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.about-mark {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 2rem;
  border: 1px solid var(--line);
  background: #efebe3;
}
.about-mark img { width: min(400px, 100%); }
.about-copy p:not(.eyebrow) {
  margin: 1.15rem 0 0;
  color: #4f4b46;
  font-size: 1.04rem;
}
.about-copy blockquote {
  margin: 2rem 0 0;
  padding: 1rem 0 1rem 1.25rem;
  border-left: 3px solid var(--red);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-style: italic;
}

.readiness {
  background: #20201f;
  color: var(--white);
}
.readiness p:last-child { color: #cfccc5; }

footer {
  background: #111;
  color: #c9c6c0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.5rem 0 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .35rem 2rem;
  align-items: baseline;
}
.footer-inner p { margin: 0; }
.footer-inner p:nth-child(2) { text-align: right; }
.copyright {
  grid-column: 1 / -1;
  color: #85827d;
  font-size: .82rem;
  margin-top: .45rem !important;
}

@media (max-width: 760px) {
  .nav-wrap { min-height: 62px; }
  nav { gap: 1rem; }
  nav a { font-size: .84rem; }
  .brand-wordmark { font-size: 1rem; }
  .hero { min-height: 650px; }
  .hero-inner { padding: 5.5rem 0 5rem; }
  .hero-logo { width: min(430px, 85vw); }
  .tagline { letter-spacing: .16em; }
  .section-inner { padding: 4.5rem 0; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .training-grid, .about-grid { grid-template-columns: 1fr; }
  .training-card { min-height: 0; }
  .about-mark { min-height: 280px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner p:nth-child(2) { text-align: left; }
}

@media (max-width: 470px) {
  .brand-wordmark { display: none; }
  .nav-wrap { justify-content: center; }
  .hero h1 { font-size: 2.35rem; }
  .hero-copy { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .training-card { transition: none; }
}
