/* =====================================================================
   BACKER INC. — Production Stylesheet · Defence Manufacturing Partner
   ===================================================================== */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* TOKENS */
:root {
  --patrol:    #0E1B30;
  --patrol-2:  #131F37;
  --carbon:    #22262E;
  --ember:     #B47A3F;
  --ember-dim: #8E5F30;
  --bone:      #EDE7D8;
  --bone-2:    #E3DCC9;
  --bone-line: #C5BDA8;
  --steel:     #5E6573;
  --steel-lt:  #8A92A0;
  --forge:     #4F2E1A;
  --maple:     #C4422E;
  --go:        #6BB36C;
  --go-dim:    #4A8854;
  --mid:       #B47A3F;
  --wait:      #5E6573;
  --text:      #2A2F38;
  --text-mute: #4A5568;
  --text-soft: #6B7280;
  --display:   'Helvetica Neue', Helvetica, Arial, sans-serif;
  --body:      'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:      'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  --wrap-max:  1200px;
  --wrap-pad:  1.5rem;
  --radius:    4px;
}

body {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--patrol);
  letter-spacing: -0.01em;
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

.wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding-left: var(--wrap-pad);
  padding-right: var(--wrap-pad);
}

.section { padding: 5rem 0; }
.section.bone  { background: var(--bone); }
.section.muted { background: var(--bone-2); }
.section.dark  { background: var(--patrol); color: var(--bone); }
.section.dark h2, .section.dark h3 { color: var(--bone); }

@media (max-width: 768px) {
  .section { padding: 3rem 0; }
}

/* NAVIGATION */
.nav {
  background: var(--patrol);
  border-bottom: 0.5px solid rgba(180, 122, 63, 0.18);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  flex-shrink: 0;
}
.nav-brand .lockup { width: 130px; height: auto; }
.nav-est {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ember);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 1.75rem;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a {
  color: #C5C9D1;
  transition: color 0.15s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ember); }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 0.5px solid rgba(197, 201, 209, 0.25);
}
.lang-toggle {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: rgba(197, 201, 209, 0.55);
  padding: 0.4rem 0.6rem;
  transition: color 0.15s, background 0.15s;
  text-transform: uppercase;
  line-height: 1;
  border-radius: 3px;
}
.lang-toggle:hover { color: var(--bone); }
.lang-toggle.lang-active {
  color: var(--patrol);
  background: var(--ember);
}
.lang-divider {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(197, 201, 209, 0.35);
  padding: 0 0.25rem;
}

@media (max-width: 880px) {
  .nav-inner { flex-direction: column; gap: 1rem; }
  .nav-links { flex-wrap: wrap; gap: 1rem; justify-content: center; font-size: 10px; }
  .lang-switcher { margin-left: 0; padding-left: 0; border-left: none; }
}

/* HERO & PAGE HEADERS */
.hero {
  background: var(--patrol);
  color: var(--bone);
  padding: 5.5rem 0 5rem;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.hero-h {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--bone);
  margin-bottom: 1.5rem;
  max-width: 24ch;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.0625rem;
  color: #C5C9D1;
  line-height: 1.65;
  max-width: 60ch;
  margin-bottom: 2rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-header {
  background: var(--patrol);
  color: var(--bone);
  padding: 4rem 0 3.5rem;
}
.crumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1rem;
  font-weight: 500;
}
.page-h {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--bone);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.page-lede {
  font-size: 1.0625rem;
  color: #C5C9D1;
  line-height: 1.65;
  max-width: 62ch;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.15s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--ember); color: var(--patrol); border-color: var(--ember); }
.btn-primary:hover { background: var(--ember-dim); border-color: var(--ember-dim); }
.btn-secondary { background: transparent; color: var(--bone); border-color: rgba(237, 231, 216, 0.35); }
.btn-secondary:hover { border-color: var(--bone); }
.btn-secondary.dark { color: var(--patrol); border-color: rgba(14, 27, 48, 0.25); }
.btn-secondary.dark:hover { border-color: var(--patrol); background: rgba(14, 27, 48, 0.04); }

/* ESTABLISHED STRIPE */
.est-stripe {
  background: var(--carbon);
  color: var(--bone);
  padding: 1rem 0;
  border-top: 0.5px solid rgba(180, 122, 63, 0.18);
  border-bottom: 0.5px solid rgba(180, 122, 63, 0.18);
}
.est-stripe .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.est-line { font-size: 13px; margin: 0; color: #C5C9D1; }
.est-line strong { color: var(--bone); font-weight: 600; }
.est-mono {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ember);
  font-weight: 500;
}

/* STATUS STRIPE */
.status-stripe {
  background: var(--patrol-2);
  color: var(--bone);
  padding: 2.25rem 0;
}
.status-h {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.status-item { font-size: 13px; }
.status-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-lt);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.status-value {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--bone);
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}
.status-value .meta {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--steel-lt);
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-top: 0.15rem;
}
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.dot.go { background: var(--go); box-shadow: 0 0 0 3px rgba(107, 179, 108, 0.18); }
.dot.mid { background: var(--ember); box-shadow: 0 0 0 3px rgba(180, 122, 63, 0.18); }
.dot.wait { background: var(--steel); box-shadow: 0 0 0 3px rgba(94, 101, 115, 0.18); }

/* SECTION HEADERS */
.section-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1rem;
  font-weight: 500;
}
.section-h {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.25rem;
  max-width: 40ch;
}
.section-lede {
  font-size: 1.0625rem;
  color: var(--text-mute);
  line-height: 1.7;
  max-width: 64ch;
  margin-bottom: 2.5rem;
}

/* GRIDS & CARDS */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.card {
  background: rgba(14, 27, 48, 0.03);
  border: 0.5px solid rgba(14, 27, 48, 0.08);
  padding: 1.5rem;
  border-radius: var(--radius);
}
.card h3 { font-size: 1.0625rem; margin-bottom: 0.6rem; }
.card p { font-size: 14px; color: var(--text-mute); line-height: 1.6; margin: 0; }

.card-accent {
  background: white;
  border: 0.5px solid rgba(14, 27, 48, 0.08);
  border-left: 3px solid var(--ember);
  padding: 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.card-accent h3 { font-size: 1.0625rem; margin-bottom: 0.6rem; }
.card-accent p { font-size: 14px; color: var(--text-mute); line-height: 1.6; margin: 0; }

.card-dark {
  background: var(--patrol);
  color: var(--bone);
  padding: 2rem;
  border-radius: var(--radius);
}
.card-dark h3 { color: var(--bone); }
.card-dark p { color: #C5C9D1; }

/* FEATURED CAPABILITY */
.feature {
  background: var(--patrol);
  color: var(--bone);
  padding: 5rem 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}
.feature .feature-h {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--bone);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.feature-body {
  font-size: 1.0625rem;
  color: #C5C9D1;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 420px;
}
.spec {
  border-left: 2px solid var(--ember);
  padding-left: 0.85rem;
}
.spec-key {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.spec-val {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--bone);
  margin: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .feature-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* CTA BAND */
.cta-band {
  background: var(--patrol);
  color: var(--bone);
  padding: 4rem 0;
  text-align: center;
}
.cta-h {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--bone);
  margin-bottom: 1rem;
}
.cta-body {
  font-size: 1.0625rem;
  color: #C5C9D1;
  line-height: 1.65;
  max-width: 58ch;
  margin: 0 auto 2rem;
}

/* TIMELINE */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.time-card {
  background: white;
  border-top: 3px solid var(--ember);
  padding: 1.5rem;
  border-radius: 0 0 var(--radius) var(--radius);
}
.time-yr {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ember);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.time-h {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--patrol);
  margin-bottom: 0.4rem;
}
.time-body {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.55;
  margin: 0;
}

/* PULL QUOTE */
.pull-quote {
  background: rgba(180, 122, 63, 0.08);
  border-left: 3px solid var(--ember);
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pull-quote-text {
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--patrol);
  line-height: 1.55;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  font-style: italic;
}
.pull-quote-attr {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 600;
  margin: 0;
}

/* BIO */
.bio {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  padding: 2rem 0;
  border-bottom: 0.5px solid rgba(14, 27, 48, 0.10);
}
.bio:last-child { border-bottom: none; }
.bio-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--patrol);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.bio-creds {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ember);
  font-weight: 600;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.bio-role {
  font-size: 14px;
  color: var(--text-mute);
  margin-bottom: 1.25rem;
}
.bio-meta {
  border-top: 0.5px solid rgba(180, 122, 63, 0.25);
  padding-top: 1rem;
}
.bio-meta-row {
  font-size: 12px;
  color: var(--text-mute);
  margin-bottom: 0.4rem;
  line-height: 1.5;
}
.bio-meta-row:last-child { margin-bottom: 0; }
.bio-meta-row strong { color: var(--patrol); font-weight: 600; }
.bio-body p {
  font-size: 14.5px;
  color: var(--text-mute);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.bio-body p:last-child { margin-bottom: 0; }
.bio-body strong { color: var(--patrol); font-weight: 600; }

@media (max-width: 768px) {
  .bio { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* DISCLOSURE */
.disclosure {
  background: var(--patrol);
  color: var(--bone);
  padding: 4rem 0;
}
.disclosure h2 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.disclosure p {
  font-size: 14.5px;
  color: #C5C9D1;
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 70ch;
}
.disclosure p:last-child { margin-bottom: 0; }
.disclosure strong { color: var(--bone); font-weight: 600; }

/* MANDATE GRID */
.mandate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.mandate {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 0.5px solid rgba(14, 27, 48, 0.08);
}
.mandate h3 { font-size: 1.0625rem; margin-bottom: 0.6rem; }
.mandate p { font-size: 14px; color: var(--text-mute); line-height: 1.6; margin: 0; }

/* PATH GRID (contact) */
.path-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
}
.path { padding: 2rem; border-radius: var(--radius); }
.path-primary { background: var(--patrol); color: var(--bone); }
.path-primary h3, .path-primary .path-h { color: var(--bone); }
.path-primary p, .path-primary li { color: #C5C9D1; }
.path-secondary {
  background: rgba(180, 122, 63, 0.06);
  border: 0.5px solid rgba(180, 122, 63, 0.2);
}
.path-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1rem;
  font-weight: 500;
}
.path-h { font-size: 1.25rem; margin-bottom: 0.85rem; }
.path-body { font-size: 14.5px; line-height: 1.65; margin-bottom: 1.25rem; }
.path-bullets { margin-bottom: 1.5rem; }
.path-bullets li {
  font-size: 13px;
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.path-bullets li::before {
  content: "·";
  position: absolute;
  left: 0.4rem;
  color: var(--ember);
  font-weight: 700;
}

@media (max-width: 768px) {
  .path-grid { grid-template-columns: 1fr; }
}

/* FORMS */
.form { max-width: 640px; display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--patrol);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 0.5px solid var(--bone-line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  background: white;
  color: var(--text);
  transition: border-color 0.15s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(180, 122, 63, 0.12);
}
.form textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 12px; color: var(--text-soft); margin-top: 0.5rem; }

/* DIRECT LINE */
.direct-block {
  background: var(--patrol);
  color: var(--bone);
  padding: 2rem;
  border-radius: var(--radius);
  display: inline-block;
}
.direct-line { margin-bottom: 0.5rem; }
.direct-num {
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bone);
  letter-spacing: 0.05em;
}
.direct-num:hover { color: var(--ember); }
.direct-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ember);
  margin: 0;
  text-transform: uppercase;
}

/* SCOPE CARDS */
.scope-card {
  background: white;
  border-left: 3px solid var(--ember);
  padding: 1.75rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.25rem;
  border-top: 0.5px solid rgba(14, 27, 48, 0.08);
  border-right: 0.5px solid rgba(14, 27, 48, 0.08);
  border-bottom: 0.5px solid rgba(14, 27, 48, 0.08);
}
.scope-card.active {
  border-left-color: var(--go);
  background: rgba(107, 179, 108, 0.04);
}
.scope-card.outside {
  border-left-color: var(--steel);
  background: var(--bone-2);
}
.scope-h {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1rem;
  font-weight: 600;
}
.scope-card.active .scope-h { color: var(--go-dim); }
.scope-card.outside .scope-h { color: var(--steel); }
.scope-list li {
  padding: 0.6rem 0;
  border-bottom: 0.5px solid rgba(14, 27, 48, 0.08);
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.55;
}
.scope-list li:last-child { border-bottom: none; }
.scope-list strong { color: var(--patrol); font-weight: 600; }

/* EQUIPMENT GRID */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.eq-item {
  background: white;
  border: 0.5px solid rgba(14, 27, 48, 0.08);
  border-left: 3px solid var(--ember);
  padding: 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.eq-item h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.eq-item .spec-line {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 500;
  margin-bottom: 0.85rem;
}
.eq-item p {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.6;
  margin: 0;
}

/* SERVICES GRID (Design / Project Management / Manufacturing Coordination / Quality Delivery) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.service {
  background: white;
  border: 0.5px solid rgba(14, 27, 48, 0.08);
  padding: 1.75rem;
  border-radius: var(--radius);
  position: relative;
}
.service-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ember);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.service h3 { font-size: 1.0625rem; margin-bottom: 0.6rem; }
.service p { font-size: 13.5px; color: var(--text-mute); line-height: 1.6; margin: 0; }

/* NATO BAND */
.nato-band {
  background: linear-gradient(180deg, rgba(196, 66, 46, 0.10), rgba(196, 66, 46, 0.03));
  border-top: 0.5px solid rgba(196, 66, 46, 0.30);
  border-bottom: 0.5px solid rgba(196, 66, 46, 0.30);
  padding: 3rem 0;
}
.nato-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}
.nato-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}
.nato-h {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--maple);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.nato-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--patrol);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.nato-body {
  font-size: 14.5px;
  color: var(--text-mute);
  line-height: 1.65;
  max-width: 72ch;
  margin: 0;
}

@media (max-width: 600px) {
  .nato-inner { grid-template-columns: 1fr; gap: 1rem; }
}

/* FOOTER */
.footer {
  background: var(--carbon);
  color: var(--bone);
  padding: 2rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer-mark { width: 32px; height: 32px; flex-shrink: 0; }
.footer-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.footer-line { font-size: 12px; color: var(--steel-lt); margin: 0; }
.footer-right { margin-left: auto; text-align: right; }
.footer-mono {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--bone);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-right { margin-left: 0; text-align: left; }
}

/* FR NOTICE */
.fr-notice {
  display: none;
  background: rgba(180, 122, 63, 0.08);
  border-top: 0.5px solid rgba(180, 122, 63, 0.25);
  border-bottom: 0.5px solid rgba(180, 122, 63, 0.25);
  padding: 1rem 0;
}
html[lang="fr"] .fr-notice { display: block; }
.fr-notice p { font-size: 13px; color: var(--patrol); line-height: 1.55; margin: 0; }
.fr-notice strong { color: var(--ember); font-weight: 600; }
.fr-notice a { color: var(--ember); border-bottom: 0.5px solid currentColor; padding-bottom: 1px; }

/* PRINT */
@media print {
  .nav, .cta-band, .footer, .lang-switcher, .fr-notice { display: none; }
  body { background: white; color: black; }
  .section, .hero, .page-header { padding: 1.5rem 0; }
  .hero, .page-header, .feature, .cta-band, .disclosure, .nato-band { background: white; color: black; }
  .hero-h, .page-h, .section-h, .feature-h, .cta-h, .nato-title { color: black; }
}
