:root {
  --black: #000000;
  --gold: #c5a059;
  --white: #ffffff;
  --ink: #e8e8e8;
  --muted: #a0a0a0;
  --panel: #0a0a0a;
  --line: rgba(197, 160, 89, 0.35);
  --max: 1100px;
  --font: "Montserrat", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-weight: 500;
  color: var(--ink);
  background: var(--black);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.brand-text span {
  font-weight: 500;
  letter-spacing: 0.28em;
  font-size: 0.65rem;
  color: var(--gold);
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  justify-content: flex-end;
}

.nav a {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--gold);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.4rem 0.7rem;
  font: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: flex;
  align-items: flex-end;
  padding: 5rem 0 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(197, 160, 89, 0.12), transparent 55%),
    linear-gradient(180deg, #050505 0%, #000 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: end;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.1;
}

.tagline {
  margin: 0 0 1.75rem;
  max-width: 28rem;
  color: var(--gold);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-mark {
  justify-self: end;
  width: min(220px, 40vw);
  opacity: 0.95;
  animation: rise 0.9s ease-out both;
}

.hero-copy {
  animation: rise 0.8s ease-out both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
}

.btn-ghost:hover {
  background: rgba(197, 160, 89, 0.12);
}

/* Sections */
main {
  padding-bottom: 4rem;
}

.section {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}

.section-lead {
  margin: 0 0 2rem;
  max-width: 40rem;
  color: var(--muted);
}

.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  letter-spacing: 0.03em;
}

.page-hero p {
  margin: 0;
  max-width: 38rem;
  color: var(--muted);
}

/* Capability list - open layout, not card wall */
.cap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.cap-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cap-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cap-index {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding-top: 0.15rem;
}

.cap-list h3 {
  margin: 0 0 0.35rem;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
}

.cap-list p {
  margin: 0;
  color: var(--muted);
  max-width: 42rem;
}

/* Split / about */
.prose {
  max-width: 42rem;
}

.prose p {
  color: var(--muted);
}

.prose p + p {
  margin-top: 1rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Contracting registry table */
.registry {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.registry th,
.registry td {
  text-align: left;
  padding: 0.9rem 0.75rem 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  vertical-align: top;
}

.registry th {
  width: 38%;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.registry td {
  color: var(--muted);
}

.registry .pending {
  color: #777;
  font-style: italic;
}

.note {
  margin-top: 1.5rem;
  padding: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Contact */
.contact-block {
  display: grid;
  gap: 1.5rem;
  max-width: 32rem;
}

.contact-row {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-row .label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-row a,
.contact-row span {
  color: var(--white);
  font-size: 1.05rem;
}

.contact-row a:hover {
  color: var(--gold);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.footer-brand {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.footer-brand span {
  display: block;
  margin-top: 0.25rem;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.legal {
  color: #666;
  font-size: 0.75rem;
}

/* Mobile */
@media (max-width: 800px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-bottom: 0.75rem;
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-mark {
    justify-self: start;
    order: -1;
    width: 120px;
  }
}
