/* ================================================================
   UVCS — United Veterans Contracting Services, LLC
   Federal-institutional design system
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=IBM+Plex+Sans:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --navy: #0F1F3F;
  --navy-mid: #1A3A6B;
  --navy-light: #2B5598;
  --navy-pale: #E8EEF7;
  --red: #C8102E;
  --red-deep: #9B0E26;
  --red-pale: #FDECEE;
  --gold: #B8860B;
  --gold-pale: #FAF4E0;
  --cream: #FAF8F4;
  --slate: #2A3548;
  --slate-mid: #525E73;
  --slate-light: #8892A6;
  --slate-pale: #E5E8ED;
  --white: #FFFFFF;
  --black: #08101E;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--cream);
}

/* =================== TOP RIBBON =================== */
.top-ribbon {
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 8px 0;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 3px solid var(--red);
}
.top-ribbon-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.top-ribbon-left {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.top-ribbon-right {
  display: flex;
  gap: 16px;
  align-items: center;
}
.top-ribbon a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.top-ribbon a:hover {
  opacity: 1;
}

/* =================== HEADER =================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--slate-pale);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(15, 31, 63, 0.05);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--navy);
}
.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.brand-tag {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-top: 4px;
}
nav.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
nav.primary-nav a {
  font-family: var(--font-body);
  text-decoration: none;
  color: var(--slate);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}
nav.primary-nav a:hover { color: var(--red); }
nav.primary-nav a.active {
  color: var(--navy);
}
nav.primary-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
}
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 12px 22px !important;
  border-radius: 2px;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  font-size: 12px !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }

/* =================== HERO =================== */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, #0A1828 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(200, 16, 46, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 33%, var(--white) 33%, var(--white) 66%, var(--navy-light) 66%, var(--navy-light) 100%);
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--red);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  color: var(--white);
}
.hero h1 em {
  font-style: italic;
  color: #E8B8BE;
  font-weight: 400;
}
.hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--red); }

.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  border-radius: 2px;
  position: relative;
  backdrop-filter: blur(10px);
}
.hero-card-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  color: var(--red);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.hero-card-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.hero-card-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* =================== CERTIFICATIONS STRIP =================== */
.cert-strip {
  background: var(--white);
  border-bottom: 1px solid var(--slate-pale);
  padding: 32px 0;
}
.cert-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cert-strip-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-mid);
  font-weight: 500;
}
.cert-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cert-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 2px;
  background: var(--navy-pale);
  color: var(--navy);
  border-left: 3px solid var(--red);
}
.cert-pill.gold {
  background: var(--gold-pale);
  color: var(--gold);
  border-left-color: var(--gold);
}

/* =================== SECTION =================== */
section.module {
  padding: 100px 0;
}
section.module-tight {
  padding: 64px 0;
}
.module-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--red);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 24px;
  max-width: 800px;
}
.section-title em { font-style: italic; color: var(--red); font-weight: 400; }
.section-lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--slate-mid);
  max-width: 720px;
  margin-bottom: 56px;
  font-weight: 300;
}

/* =================== PRODUCT CATEGORIES GRID =================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--slate-pale);
  border: 1px solid var(--slate-pale);
}
.product-card {
  background: var(--white);
  padding: 36px 32px;
  position: relative;
  transition: background 0.2s;
}
.product-card:hover {
  background: var(--navy-pale);
}
.product-card-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-weight: 500;
}
.product-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.product-card-desc {
  font-size: 14px;
  color: var(--slate-mid);
  line-height: 1.6;
  margin-bottom: 20px;
}
.product-card-items {
  list-style: none;
}
.product-card-items li {
  font-size: 13px;
  padding: 6px 0;
  color: var(--slate);
  position: relative;
  padding-left: 18px;
  line-height: 1.4;
}
.product-card-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background: var(--red);
}

/* =================== TWO-COLUMN BLOCK =================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col-narrow {
  grid-template-columns: 1.2fr 1fr;
}
.feature-img {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 4/5;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
/* Dark overlay so text labels stay readable on top of photos */
.feature-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(15,31,63,0.55) 0%, rgba(15,31,63,0.75) 70%, rgba(15,31,63,0.92) 100%);
  pointer-events: none;
  z-index: 1;
}
.feature-img::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  z-index: 2;
  pointer-events: none;
}
.feature-img-label {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  font-family: var(--font-display);
  color: var(--white);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  z-index: 3;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.feature-img-tag {
  position: absolute;
  top: 32px;
  left: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  z-index: 3;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
/* Photo modifiers */
.feature-img--fema { background-image: url('images/fema.jpg'); }
.feature-img--military { background-image: url('images/military.jpg'); }
.feature-img--aerospace { background-image: url('images/aerospace.jpg'); }
.feature-img--trucking { background-image: url('images/trucking.jpg'); }
.feature-img--construction { background-image: url('images/construction.jpg'); }
.feature-img--industrial { background-image: url('images/industrial.jpg'); }
.feature-img--partnership { background-image: url('images/partnership.jpg'); }

/* =================== PARTNERSHIP CALLOUT =================== */
.partnership-block {
  background: var(--navy);
  color: var(--white);
  padding: 80px 64px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.partnership-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--red);
}
.partnership-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  font-weight: 500;
}
.partnership-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.partnership-title em { font-style: italic; color: #E8B8BE; font-weight: 400; }
.partnership-text {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-width: 800px;
  margin-bottom: 32px;
  font-weight: 300;
}
.partnership-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 32px;
  margin-top: 32px;
  max-width: 800px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* =================== MARKET TABLE =================== */
.market-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--slate-pale);
}
.market-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--slate-pale);
  align-items: start;
}
.market-row-label {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.market-row-label-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.08em;
  display: block;
}
.market-row-content {
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate);
}
.market-row-content strong {
  color: var(--navy);
  font-weight: 600;
}

/* =================== STATS BAR =================== */
.stats-bar {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0;
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 50%, var(--gold) 50%, var(--gold) 100%);
}
.stats-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}
.stats-bar .stat-num {
  font-size: 56px;
  margin-bottom: 12px;
}

/* =================== CTA BLOCK =================== */
.cta-block {
  background: var(--cream);
  padding: 100px 0;
  text-align: center;
}
.cta-block-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}
.cta-block-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  font-weight: 500;
}
.cta-block-title em { font-style: italic; color: var(--red); font-weight: 400; }
.cta-block-text {
  font-size: 18px;
  color: var(--slate-mid);
  margin-bottom: 40px;
  line-height: 1.65;
  font-weight: 300;
}
.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =================== FOOTER =================== */
footer.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
  font-size: 14px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}
.footer-brand-name {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  display: block;
}
.footer-brand-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer-brand-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  max-width: 340px;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 12px;
}
.footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-identifiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-id {
  display: flex;
  flex-direction: column;
}
.footer-id-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.footer-id-value {
  font-family: var(--font-mono);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-note {
  max-width: 600px;
}

/* =================== PAGE HEADER (inner pages) =================== */
.page-header {
  background: linear-gradient(180deg, var(--navy) 0%, #0A1828 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 33%, var(--white) 33%, var(--white) 66%, var(--navy-light) 66%, var(--navy-light) 100%);
}
.page-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.page-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--red);
}
.page-header h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  max-width: 900px;
}
.page-header h1 em { font-style: italic; color: #E8B8BE; font-weight: 400; }
.page-header-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  line-height: 1.65;
  font-weight: 300;
}

/* =================== RICH PROSE =================== */
.prose {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--slate);
  font-weight: 300;
}
.prose p { margin-bottom: 24px; }
.prose h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--navy);
  margin-top: 56px;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.prose h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.prose strong {
  color: var(--navy);
  font-weight: 600;
}
.prose a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =================== NAICS GRID =================== */
.naics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--slate-pale);
  border: 1px solid var(--slate-pale);
}
.naics-cell {
  background: var(--white);
  padding: 20px 24px;
}
.naics-cell.primary {
  background: var(--red-pale);
  border-left: 3px solid var(--red);
}
.naics-cell.primary .naics-code {
  color: var(--red);
}
.naics-code {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.naics-code .star {
  color: var(--red);
  font-size: 14px;
}
.naics-name {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.3;
}
.naics-focus {
  font-size: 11px;
  color: var(--slate-light);
  font-family: var(--font-body);
  line-height: 1.4;
}

/* =================== PSC ROW =================== */
.psc-block {
  background: var(--navy-pale);
  border-left: 4px solid var(--navy);
  padding: 28px 32px;
  margin-top: 32px;
}
.psc-block-title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
  font-weight: 600;
}
.psc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--slate);
}
.psc-list span {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.psc-list span strong {
  font-family: var(--font-mono);
  color: var(--navy);
  font-weight: 600;
}

/* =================== CONTACT FORM =================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.contact-info-block { padding-right: 32px; }
.contact-info-row {
  border-top: 1px solid var(--slate-pale);
  padding: 24px 0;
}
.contact-info-row:last-child { border-bottom: 1px solid var(--slate-pale); }
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.contact-info-value a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.contact-info-value a:hover { border-bottom-color: var(--red); }

.form-block {
  background: var(--white);
  padding: 48px;
  border: 1px solid var(--slate-pale);
  border-top: 4px solid var(--red);
}
.form-row { margin-bottom: 24px; }
.form-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--slate-pale);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--slate);
  background: var(--cream);
  transition: border-color 0.2s;
  border-radius: 0;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--navy);
}
.form-row textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-body);
}
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* =================== TEAM CARD =================== */
.team-feature {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
  background: var(--white);
  padding: 56px;
  border: 1px solid var(--slate-pale);
  margin-top: 40px;
}
.team-photo {
  background-image: url('images/johnnie.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  aspect-ratio: 4/5;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.team-photo::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,0.4);
  z-index: 2;
  pointer-events: none;
}
.team-photo-initial {
  display: none; /* Real photo replaces the initials placeholder */
}
.team-meta-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.team-meta-title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  font-weight: 500;
}
.team-meta-bio {
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate);
  font-weight: 300;
}

/* =================== SERVICE SECTION (About page) =================== */
.service-block {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.service-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 33%, var(--white) 33%, var(--white) 66%, var(--navy-light) 66%, var(--navy-light) 100%);
}
.service-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.service-photo {
  background-image: url('images/service_2007.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  aspect-ratio: 4/5;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.service-photo::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,0.3);
  z-index: 2;
  pointer-events: none;
}
.service-photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.service-content .eyebrow {
  color: var(--red);
}
.service-content .eyebrow::before {
  background: var(--red);
}
.service-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--white);
}
.service-title em {
  font-style: italic;
  color: #E8B8BE;
  font-weight: 400;
}
.service-text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  font-weight: 300;
}
.service-text:last-child {
  margin-bottom: 0;
}
.service-attribution {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 968px) {
  .header-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  nav.primary-nav { width: 100%; flex-wrap: wrap; gap: 16px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-feature { grid-template-columns: 1fr; padding: 40px; }
  .partnership-block { padding: 48px 32px; }
  .market-row { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
  .service-inner { grid-template-columns: 1fr; gap: 48px; }
  .service-block { padding: 56px 0; }
}
@media (max-width: 640px) {
  section.module { padding: 64px 0; }
  .hero { padding: 64px 0 80px; }
  .footer-grid { grid-template-columns: 1fr; }
  .top-ribbon { font-size: 11px; }
  .top-ribbon-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .form-row-split { grid-template-columns: 1fr; }
}
