/* Post-export fixes: keep desktop nav on one line at every viewport width
   and keep the social icons clear of the window edge. Scoped to
   .header-display-desktop so the mobile burger header is untouched. */

.header-display-desktop .header-nav-list {
  flex-wrap: nowrap;
}

.header-display-desktop .header-nav-item {
  white-space: nowrap;
  /* !important: the theme sets a vw-based margin with equal specificity */
  margin-right: clamp(12px, 1.3vw, 30px) !important;
}

/* nav takes the width it needs; the centered title cell absorbs the rest */
.header-display-desktop .header-nav {
  flex: 0 0 auto;
  width: auto;
}

/* keep the logo dead-centre in the viewport regardless of nav width */
.header-display-desktop .header-inner {
  position: relative;
}
.header-display-desktop .header-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
}

/* stand-down notice */
.standdown-banner {
  /* overlays the hero just below the fixed header (84px desktop / 101px
     mobile) so the transparent-header look stays intact */
  position: absolute;
  top: 84px;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgba(22, 24, 15, 0.92);
  color: #e8e6df;
  text-align: center;
  padding: 14px 24px;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.standdown-banner-label {
  display: inline-block;
  margin-right: 14px;
  padding: 2px 10px;
  border: 1px solid #b3a15a;
  color: #b3a15a;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
@media (max-width: 800px) {
  .standdown-banner { top: 102px; }
}

.standdown-page {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: #16180f;
  color: #e8e6df;
}
.standdown-page h1 {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 24px;
  color: #fff;
}
.standdown-page p {
  font-size: 17px;
  max-width: 46em;
  margin: 0 0 12px;
}
.standdown-page a {
  color: #b3a15a;
  text-decoration: underline;
}

/* social icons: consistent size, breathing room from the right edge */
.header-display-desktop .header-actions--right {
  padding-right: 10px;
}

/* the site is dark by design (camo texture backgrounds, white text).
   color-scheme:dark makes form controls/scrollbars match and tells
   auto-darkeners (Chrome auto dark mode) to skip the page; Dark Reader
   is locked out via meta darkreader-lock (see build.py). body bg goes
   dark too so empty regions and overscroll stop flashing white
   (visible on testimonials.html). */
:root { color-scheme: dark; }
body { background-color: #16180f; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
