:root {
  --black: #020305;
  --panel: rgba(2, 3, 5, 0.96);
  --gold: #e7b21d;
  --gold-bright: #ffc928;
  --blue: #21bfff;
  --text: #f5f7fb;
  --muted: #aeb6c2;
  --header-h: 96px;
}
* { box-sizing: border-box; }
html { background: var(--black); color-scheme: dark; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--black);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,.96);
  border-bottom: 1px solid rgba(231,178,29,.65);
  box-shadow: 0 6px 24px rgba(0,0,0,.65);
}
.header-inner {
  max-width: 1680px;
  min-height: var(--header-h);
  margin: 0 auto;
  padding: 10px 18px;
  display: grid;
  grid-template-columns: 180px minmax(0,1fr) auto;
  gap: 18px;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand img {
  width: 155px;
  height: 70px;
  object-fit: contain;
  display: block;
  border-radius: 5px;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--gold);
  background: #080808;
  color: var(--gold-bright);
  border-radius: 7px;
  padding: 9px 12px;
  font-size: 20px;
  cursor: pointer;
}
.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px 10px;
  flex-wrap: wrap;
}
.primary-nav a {
  position: relative;
  padding: 7px 3px;
  color: #d6d6d6;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .035em;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] { color: var(--gold-bright); }
.primary-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  background: var(--gold-bright);
  box-shadow: 0 0 8px var(--gold-bright);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 15px;
  border: 1px solid var(--gold);
  border-radius: 7px;
  color: var(--gold-bright);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: inset 0 0 14px rgba(231,178,29,.08), 0 0 9px rgba(231,178,29,.15);
}
.header-cta:hover { background: rgba(231,178,29,.12); }
.page-shell {
  width: 100%;
  background: #000;
}
.page-art {
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  display: block;
  line-height: 0;
}
.page-art.portrait { max-width: 1024px; }
.page-art.enterprise-value { max-width: 887px; }
.page-art img {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}
.site-footer {
  border-top: 1px solid rgba(231,178,29,.35);
  background: #000;
  color: #858585;
  text-align: center;
  padding: 18px;
  font-size: 12px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 12px;
  z-index: 2000;
  background: var(--gold-bright);
  color: #000;
  padding: 10px 14px;
  font-weight: 800;
}
.skip-link:focus { top: 12px; }
@media (max-width: 1220px) {
  .header-inner { grid-template-columns: 150px minmax(0,1fr) auto; }
  .brand img { width: 140px; height: 62px; }
  .primary-nav a { font-size: 10px; }
}
@media (max-width: 960px) {
  :root { --header-h: 72px; }
  .header-inner {
    min-height: 72px;
    grid-template-columns: 1fr auto auto;
    padding: 8px 12px;
  }
  .brand img { width: 126px; height: 54px; }
  .nav-toggle { display: inline-block; }
  .primary-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding: 12px 4px 16px;
    border-top: 1px solid rgba(231,178,29,.3);
    justify-content: flex-start;
  }
  .primary-nav.open { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .primary-nav a { font-size: 11px; padding: 9px 8px; }
  .header-cta { font-size: 9px; padding: 7px 10px; }
}
@media (max-width: 540px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .primary-nav.open { grid-template-columns: 1fr; }
}
