:root {
  --black: #030303;
  --near-black: #090806;
  --charcoal: #171511;
  --graphite: #25221b;
  --gold: #d8a93d;
  --gold-bright: #f6d77f;
  --gold-deep: #8f641b;
  --ivory: #fbf6ea;
  --paper: #fffaf0;
  --text: #17130c;
  --muted: #c9bfaa;
  --soft: #655b49;
  --line: rgba(216, 169, 61, 0.34);
  --green-black: #080d08;
  --radius: 8px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.58;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 76px;
  padding: 0.7rem clamp(1rem, 4vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 3, 3, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: max-content;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 1px solid rgba(246, 215, 127, 0.55);
  border-radius: 50%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.08;
}

.brand small {
  color: var(--gold-bright);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.75rem, 2vw, 1.55rem);
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-links a {
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  content: "";
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a.active {
  color: var(--gold-bright);
}

.home-hero {
  background:
    radial-gradient(circle at 70% 12%, rgba(216, 169, 61, 0.18), transparent 24rem),
    linear-gradient(180deg, #020202 0%, #0c0905 100%);
}

.hero-banner-wrap {
  position: relative;
  width: 100%;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-banner-wrap::after {
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  background: linear-gradient(180deg, transparent, rgba(3, 3, 3, 0.45));
  pointer-events: none;
  content: "";
}

.hero-banner {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.hero-copy {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1rem, 2.8vw, 2rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}

.hero-copy h1,
.contact-hero h1,
.subpage-copy h1 {
  max-width: 920px;
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 7vw, 6.8rem);
  line-height: 0.94;
  font-weight: 700;
}

.hero-copy p,
.contact-hero p,
.subpage-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
}

.hero-copy h1 {
  max-width: none;
  font-size: clamp(2.35rem, 4.4vw, 3.5rem);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.03;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.08rem;
  line-height: 1.25;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-deep));
  color: #110d06;
  box-shadow: 0 14px 36px rgba(216, 169, 61, 0.2);
}

.button.secondary {
  background: rgba(3, 3, 3, 0.38);
  color: var(--gold-bright);
}

.section,
.cta-band {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4.5rem);
}

.section {
  background: var(--ivory);
  color: var(--text);
}

.section .eyebrow {
  color: var(--gold-deep);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.split.reverse {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.text-stack {
  display: grid;
  gap: 1rem;
  color: var(--soft);
  font-size: 1.05rem;
}

.text-stack p {
  margin-bottom: 0;
}

.dark-section {
  background:
    radial-gradient(circle at 14% 12%, rgba(216, 169, 61, 0.16), transparent 21rem),
    linear-gradient(135deg, var(--black) 0%, var(--charcoal) 62%, var(--green-black) 100%);
  color: var(--ivory);
}

.dark-section .eyebrow {
  color: var(--gold-bright);
}

.dark-section p {
  color: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.trust-section {
  background: #f7eedb;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(143, 100, 27, 0.26);
  border: 1px solid rgba(143, 100, 27, 0.26);
}

.trust-grid article {
  min-height: 230px;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: #fffdf7;
}

.trust-grid h3 {
  color: #2a1b06;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.trust-grid p {
  margin-bottom: 0;
  color: var(--soft);
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.feature-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.light-card {
  min-height: 260px;
  padding: clamp(1.35rem, 3vw, 2.2rem);
  border-radius: 0;
}

.feature-card {
  background: rgba(7, 7, 6, 0.82);
}

.light-card {
  background: #fffdf7;
}

.card-number {
  display: block;
  margin-bottom: 3.5rem;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.light-card p,
.feature-card p {
  margin-bottom: 0;
}

.light-card p {
  color: var(--soft);
}

.image-band {
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.image-band img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  object-position: center;
}

.investor-section {
  background: #fffaf0;
}

.criteria-list {
  display: grid;
  gap: 1rem;
}

.criteria-list div {
  padding: 1.1rem 0 1.1rem 1.1rem;
  border-left: 2px solid var(--gold-deep);
}

.criteria-list strong,
.criteria-list span {
  display: block;
}

.criteria-list strong {
  margin-bottom: 0.35rem;
  color: #2a1b06;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.criteria-list span {
  color: var(--soft);
}

.values-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(244, 232, 206, 0.98)),
    var(--ivory);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(143, 100, 27, 0.26);
  border: 1px solid rgba(143, 100, 27, 0.26);
}

.value-item {
  min-height: 150px;
  padding: 1.35rem;
  background: var(--paper);
}

.value-item strong,
.value-item span {
  display: block;
}

.value-item strong {
  margin-bottom: 0.55rem;
  font-family: Georgia, "Times New Roman", serif;
  color: #2a1b06;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.value-item span {
  color: var(--soft);
}

.subpage-hero {
  position: relative;
  min-height: min(68svh, 690px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--black);
}

.subpage-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.76;
}

.subpage-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.96) 0%, rgba(3, 3, 3, 0.62) 48%, rgba(3, 3, 3, 0.16) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.08), rgba(3, 3, 3, 0.92));
  content: "";
}

.compact-hero {
  min-height: min(62svh, 620px);
}

.image-only-hero {
  display: block;
  min-height: 0;
}

.image-only-hero img {
  position: static;
  width: 100%;
  height: auto;
  opacity: 1;
  object-fit: contain;
}

.image-only-hero::after {
  display: none;
}

.subpage-copy {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.gov-hero .subpage-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
}

.gov-preview-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(247, 238, 219, 0.98)),
    var(--ivory);
}

.compact-actions {
  margin-top: 1.25rem;
}

.gov-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.gov-capability-grid article {
  min-height: 260px;
  padding: clamp(1.3rem, 3vw, 2rem);
  background: rgba(7, 7, 6, 0.85);
}

.gov-capability-grid h3 {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.gov-capability-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.gov-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.gov-two-column > div:first-child > p {
  max-width: 740px;
  color: var(--soft);
}

.naics-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.naics-list span {
  display: block;
  padding: 0.75rem 0 0.75rem 1rem;
  border-left: 2px solid var(--gold-deep);
  color: #35291a;
  font-weight: 700;
}

.readiness-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(143, 100, 27, 0.28);
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: 0 20px 60px rgba(17, 16, 13, 0.1);
}

.readiness-panel ul {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--soft);
}

.logo-showcase {
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: var(--shadow);
}

.logo-showcase img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.service-list {
  display: grid;
  gap: 1px;
  background: rgba(143, 100, 27, 0.26);
  border: 1px solid rgba(143, 100, 27, 0.26);
}

.service-intro {
  margin-bottom: clamp(1.5rem, 4vw, 2.6rem);
}

.service-intro h1 {
  max-width: 820px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.service-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--paper);
}

.service-row span {
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.service-row h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.service-row p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--soft);
}

.cta-band {
  background:
    radial-gradient(circle at 80% 18%, rgba(246, 215, 127, 0.18), transparent 18rem),
    linear-gradient(135deg, var(--black), var(--charcoal));
  color: var(--ivory);
  border-top: 1px solid var(--line);
}

.cta-band h2 {
  max-width: 800px;
}

.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-layout .button {
  flex: 0 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-grid article {
  min-height: 250px;
  padding: clamp(1.3rem, 3vw, 2rem);
  background: rgba(7, 7, 6, 0.85);
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 2rem;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-weight: 800;
}

.disclaimer-section {
  background: #f4ead4;
}

.disclaimer-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.disclaimer-section p {
  max-width: 920px;
  color: var(--soft);
}

.contact-hero {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4.5rem);
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.9), rgba(3, 3, 3, 0.54)),
    url("assets/brand/city-banner.webp") center / cover;
  border-bottom: 1px solid var(--line);
}

.contact-layout,
.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 3, 3, 0.74);
  box-shadow: var(--shadow);
}

.contact-panel img {
  width: 150px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

.contact-panel a {
  color: var(--gold-bright);
  overflow-wrap: anywhere;
  font-weight: 800;
}

.contact-panel address {
  color: var(--muted);
  font-style: normal;
}

.contact-form-grid > div p {
  color: var(--soft);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: #40382a;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(143, 100, 27, 0.3);
  border-radius: 4px;
  background: #fffdf8;
  color: var(--text);
  font: inherit;
  padding: 0.9rem 1rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(216, 169, 61, 0.55);
  outline-offset: 2px;
}

.form-button {
  width: fit-content;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem clamp(1rem, 4vw, 4.5rem);
  border-top: 1px solid var(--line);
  background: var(--black);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer strong,
.site-footer span,
.footer-contact a {
  display: block;
}

.site-footer strong {
  color: var(--gold-bright);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem 1.25rem;
}

.footer-contact a {
  color: var(--ivory);
}

.footer-disclaimer {
  flex-basis: 100%;
  max-width: 980px;
  margin: 0.4rem 0 0;
  color: #9f9581;
  font-size: 0.78rem;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    font-size: 0.8rem;
  }

  .hero-banner {
    min-height: 0;
    object-position: center;
  }

  .split,
  .split.reverse,
  .contact-layout,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid.three,
  .feature-grid.four,
  .trust-grid,
  .gov-capability-grid,
  .values-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gov-two-column {
    grid-template-columns: 1fr;
  }

  .cta-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .subpage-hero {
    min-height: 58svh;
  }
}

@media (orientation: landscape) and (max-height: 520px) and (max-width: 980px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    min-height: 58px;
    padding: 0.35rem 0.75rem;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand small {
    font-size: 0.58rem;
  }

  .nav-links {
    width: auto;
    flex-wrap: nowrap;
    gap: clamp(0.45rem, 1.3vw, 0.8rem);
    font-size: 0.64rem;
    letter-spacing: 0.02em;
  }

  .hero-banner-wrap {
    display: flex;
    justify-content: center;
    background: var(--black);
  }

  .hero-banner {
    width: auto;
    max-width: 100%;
    height: min(62svh, 260px);
  }

  .hero-copy {
    padding: 0.85rem 0 1.25rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .hero-copy p {
    font-size: 0.95rem;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .hero-banner {
    min-height: 0;
    object-position: center;
  }

  .hero-copy h1,
  .contact-hero h1,
  .subpage-copy h1 {
    max-width: 10ch;
  }

  .actions,
  .button,
  .form-button {
    width: 100%;
  }

  .feature-grid.three,
  .feature-grid.four,
  .trust-grid,
  .gov-capability-grid,
  .values-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .light-card,
  .process-grid article {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 2rem;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row span {
    font-size: 2.4rem;
  }

  .contact-panel img {
    width: 120px;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-contact {
    justify-content: flex-start;
  }
}
