@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --navy-deep: #0F1B32;
  --navy: #1B2A4A;
  --navy-soft: #2C3E63;
  --gold: #B08D57;
  --gold-bright: #C9A66B;
  --paper: #F6F3EC;
  --paper-line: #E1D9C7;
  --ink: #1E1E1E;
  --ink-soft: #5B5B54;
  --white: #FFFFFF;
  --font-display: 'Newsreader', Georgia, 'Iowan Old Style', serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ---------- top rule + nav ---------- */
.topline {
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 50%, var(--navy) 100%);
}

header {
  background: var(--paper);
  border-bottom: 1px solid var(--paper-line);
  position: sticky;
  top: 0;
  z-index: 50;
}

nav.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mark {
  width: 38px;
  height: 38px;
  background: var(--navy);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  border: 1px solid var(--gold);
}

.wordmark {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .06em;
  color: var(--navy);
}

.wordmark small {
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--ink-soft);
  margin-top: 2px;
}


.site-logo {
  display: block;
  height: 44px;      
  width: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .site-logo { height: 36px; }
}

.navlinks {
  display: flex;
  gap: 34px;
  align-items: center;
}

.navlinks a {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy-soft);
  letter-spacing: .02em;
  position: relative;
  padding-bottom: 4px;
}

.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}

.navlinks a:hover::after {
  width: 100%;
}

.navlinks a.active {
  color: var(--navy);
}

.navlinks a.active::after {
  width: 100%;
  background: var(--gold);
}

.navcta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 18px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: background .2s ease;
}

.navcta::after {
  display: none !important;
}

.navcta:hover {
  background: var(--navy-soft);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
}

/* ---------- hero / pages ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: repeating-linear-gradient(
    var(--paper), var(--paper) 41px, var(--paper-line) 42px
  );
  padding: 96px 0 76px;
}

.hero-inner {
  max-width: 760px;
}

.hero .eyebrow {
  margin-bottom: 20px;
}

h1.hero-head {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1.12;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.hero-head em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  margin-top: 24px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}

/* ---------- subpage hero ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background: repeating-linear-gradient(
    var(--paper), var(--paper) 41px, var(--paper-line) 42px
  );
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--paper-line);
}

.page-hero-inner {
  max-width: 800px;
}

.page-hero .eyebrow {
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1.15;
  font-weight: 500;
  color: var(--navy);
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.page-hero p {
  margin-top: 20px;
  font-size: 16.5px;
  color: var(--ink-soft);
  max-width: 680px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .03em;
  border: 1px solid var(--navy);
  cursor: pointer;
  transition: all .2s ease;
  text-align: center;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-soft);
  border-color: var(--navy-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---------- verified strip ---------- */
.verified {
  background: var(--navy-deep);
  padding: 34px 0;
}

.verified .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.seal {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #EDE7D6;
}

.seal-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px dashed var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .02em;
  color: var(--gold-bright);
  text-align: center;
  flex-shrink: 0;
  transform: rotate(-6deg);
}

.seal-text {
  font-size: 12.5px;
  line-height: 1.3;
}

.seal-text strong {
  display: block;
  font-size: 13.5px;
  color: var(--white);
  font-weight: 600;
}

.seal-text span {
  color: #9AA6BC;
  font-family: var(--font-mono);
  font-size: 10.5px;
}

/* ---------- pillars / grid sections ---------- */
.pillars {
  padding: 88px 0;
  border-bottom: 1px solid var(--paper-line);
}

.pillars-head {
  max-width: 620px;
  margin-bottom: 56px;
}

.pillars-head .eyebrow {
  margin-bottom: 14px;
}

.pillars-head h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--navy);
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.pillar {
  padding: 8px 36px;
  border-left: 1px solid var(--paper-line);
}

.pillar:first-child {
  border-left: none;
  padding-left: 0;
}

.pillar:last-child {
  padding-right: 0;
}

.pillar-icon {
  width: 30px;
  height: 30px;
  color: var(--gold);
  margin-bottom: 22px;
}

.pillar .eyebrow {
  margin-bottom: 10px;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.pillar p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.pillar-link {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.pillar-link:hover {
  color: var(--gold);
}

/* ---------- why band ---------- */
.why {
  background: var(--navy-deep);
  color: var(--white);
  padding: 88px 0;
}

.why-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 20px;
}

.why-top h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  max-width: 520px;
  line-height: 1.25;
}

.why-top p {
  max-width: 320px;
  font-size: 14px;
  color: #AEB8CC;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.why-item {
  border-top: 1px solid var(--gold);
  padding-top: 20px;
}

.why-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.why-item p {
  font-size: 13.5px;
  color: #AEB8CC;
  line-height: 1.5;
}

/* ---------- detailed content sections (for about/services) ---------- */
.content-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--paper-line);
}

.content-section:last-of-type {
  border-bottom: none;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.section-aside {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.section-aside h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
}

.section-aside .eyebrow {
  margin-bottom: 12px;
}

.section-body {
  font-size: 15px;
  color: var(--ink);
}

.section-body p {
  margin-bottom: 24px;
  color: var(--ink-soft);
}

.section-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin: 32px 0 16px;
}

.section-body h3:first-child {
  margin-top: 0;
}

.section-body ul {
  list-style: none;
  margin-bottom: 30px;
}

.section-body li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--ink-soft);
}

.section-body li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.services-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.service-card {
  background: rgba(27, 42, 74, 0.02);
  border: 1px solid var(--paper-line);
  padding: 20px;
}

.service-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 0;
}

/* ---------- capability checklist (government ready) ---------- */
.cap-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 14px;
}

.cap-table th, .cap-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--paper-line);
}

.cap-table th {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.cap-table td strong {
  font-family: var(--font-mono);
  color: var(--navy);
}

/* ---------- contact form layout ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding: 80px 0;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-bottom: 24px;
}

.contact-details {
  margin: 36px 0;
}

.detail-item {
  margin-bottom: 24px;
}

.detail-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.detail-value {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.6;
}

.detail-value a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color .2s ease;
}

.detail-value a:hover {
  color: var(--navy-soft);
}

.map-container {
  height: 240px;
  background: var(--paper-line);
  border: 1px solid var(--paper-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .05em;
  margin-top: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: transparent;
  border: 1px solid var(--paper-line);
  border-bottom: 1.5px solid var(--navy-soft);
  padding: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: all .2s ease;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold);
  border-bottom-color: var(--gold-bright);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.form-checkbox-group input {
  margin-top: 4px;
}

.form-checkbox-label {
  font-size: 13.5px;
  color: var(--ink-soft);
}

/* ---------- cta band ---------- */
.cta-band {
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--paper-line);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--navy);
  max-width: 560px;
  margin: 0 auto 14px;
}

.cta-band p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 30px;
}

/* ---------- footer ---------- */
footer {
  background: var(--navy-deep);
  color: #AEB8CC;
  padding: 64px 0 0;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid #26314C;
}

.foot-brand .wordmark {
  color: var(--white);
}

.foot-brand .wordmark small {
  color: #8792A8;
}

.foot-addr {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.7;
  color: #9AA6BC;
}

.foot-addr a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s ease;
}

.foot-addr a:hover {
  color: var(--white);
}

.foot-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 18px;
  font-weight: 500;
}

.foot-col a {
  display: block;
  font-size: 13.5px;
  margin-bottom: 12px;
  color: #C7CEDD;
}

.foot-col a:hover {
  color: var(--white);
}

.foot-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #7A85A0;
  flex-wrap: wrap;
  gap: 10px;
}

.foot-bottom a {
  color: #7A85A0;
  margin-left: 18px;
}

.foot-bottom a:hover {
  color: var(--gold-bright);
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .wrap {
    padding: 0 24px;
  }
  .navlinks {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--paper-line);
    display: none;
  }
  .navlinks.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  h1.hero-head {
    font-size: 36px;
  }
  .page-hero h1 {
    font-size: 32px;
  }
  .pillar-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pillar {
    border-left: none;
    padding: 0;
    border-top: 1px solid var(--paper-line);
    padding-top: 28px;
  }
  .pillar:first-child {
    border-top: none;
    padding-top: 0;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .section-aside {
    position: static;
  }
  .services-list-grid {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .verified .wrap {
    gap: 28px;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

/* inline svg icon sizing */
svg {
  display: block;
}
