/* 2016 Armory — outdoor-banner identity: charcoal, bold orange, cream */
:root {
  --charcoal: #141414;
  --charcoal-2: #1b1b1b;
  --charcoal-3: #232323;
  --navy: #12161c;
  --steel: #2c2c2c;
  --orange: #f05a14;
  --orange-hot: #ff6e2a;
  --orange-dim: #c44810;
  --cream: #f3eee4;
  --cream-dim: #cfc6b8;
  --muted: #8f887c;
  --rule: rgba(243, 238, 228, 0.28);
  --fb: #1877F2;
  --fb-glow: rgba(24, 119, 242, 0.35);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --font-display: "Barlow Condensed", "Arial Narrow", Impact, "Haettenschweiler", sans-serif;
  --font-body: "Source Sans 3", "Source Sans Pro", "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", "Roboto Mono", ui-monospace, Menlo, monospace;
  --max: 72rem;
  --gutter: clamp(1.1rem, 4vw, 2.25rem);
  --stripe: 0.72rem;
  --radius: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--cream);
  background: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--orange);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--orange-hot);
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

::selection {
  background: var(--orange);
  color: var(--charcoal);
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  z-index: 100;
  background: var(--orange);
  color: var(--charcoal);
  padding: 0.55rem 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.skip:focus {
  top: 0.75rem;
}

.wrap {
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin-inline: auto;
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(243, 238, 228, 0.08);
  box-shadow: 0 1px 0 var(--orange);
}

.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3.6rem;
  padding-block: 0.45rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--cream);
}

.brand:hover { color: var(--cream); }

.brand-mark {
  width: 1.7rem;
  height: 1.7rem;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.brand-year,
.wm-year {
  color: var(--orange);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav a:hover { color: var(--cream); }

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1rem;
  background: var(--orange);
  color: var(--charcoal);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.header-call:hover {
  background: var(--orange-hot);
  color: var(--charcoal);
}

@media (min-width: 760px) {
  .nav { display: flex; }
}

/* ----- Hero / live banner ----- */
.hero {
  position: relative;
  background: var(--charcoal);
}

.hero-stripe {
  height: var(--stripe);
  background: var(--orange);
}

.hero-panel {
  position: relative;
  isolation: isolate;
  padding: clamp(1.6rem, 5vw, 3.2rem) max(var(--gutter), 2.1rem) clamp(1.4rem, 4vw, 2.4rem);
  text-align: center;
  background-color: #161616;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018) 0 1px,
      transparent 1px 5px
    ),
    linear-gradient(180deg, #1c1c1c 0%, #121212 55%, #0e0e0e 100%);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(240, 90, 20, 0.1), transparent 55%);
  z-index: -1;
}

.hero-frame {
  position: relative;
  margin: 0 auto 1.35rem;
  padding: clamp(1.2rem, 3vw, 1.8rem) 1rem 1.15rem;
  max-width: 58rem;
  border: 2px solid var(--orange);
  box-shadow: inset 0 0 0 1px rgba(240, 90, 20, 0.35);
}

.rivet {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #8a8a8a 0 18%, #3a3a3a 42%, #161616 68%, #4a4a4a 100%);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.8),
    inset 0 1px 1px rgba(255, 255, 255, 0.28),
    inset 0 -1px 1px rgba(0, 0, 0, 0.7);
}

.rivet-tl { top: 14px; left: 14px; }
.rivet-tr { top: 14px; right: 14px; }
.rivet-bl { bottom: 14px; left: 14px; }
.rivet-br { bottom: 14px; right: 14px; }

@media (min-width: 720px) {
  .hero-panel {
    padding-inline: max(var(--gutter), 3rem);
  }
  .rivet { width: 20px; height: 20px; }
  .rivet-tl { top: 20px; left: 22px; }
  .rivet-tr { top: 20px; right: 22px; }
  .rivet-bl { bottom: 20px; left: 22px; }
  .rivet-br { bottom: 20px; right: 22px; }
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.wordmark {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 11vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.55);
}

.wm-name { color: var(--cream); }

.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 1.05rem auto 1.15rem;
  max-width: min(36rem, 90%);
}

.rule-left {
  margin-left: 0;
  justify-content: flex-start;
  max-width: 16rem;
}

.rule::before,
.rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.rule-left::before { display: none; }

.diamond {
  width: 8px;
  height: 8px;
  background: var(--orange);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.cats {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.95rem, 2.6vw, 1.45rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
}

.cats .sep {
  display: inline-block;
  margin: 0 0.35em;
  color: var(--orange);
  letter-spacing: 0;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem 0.85rem;
  margin: 1.25rem 0 0;
  font-family: var(--font-mono);
  font-size: clamp(0.92rem, 2.4vw, 1.12rem);
  letter-spacing: 0.04em;
}

.hero-contact a {
  text-decoration: none;
  color: var(--orange);
  padding: 0.35rem 0.15rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}

.hero-contact a:hover { color: var(--orange-hot); }

.hero-addr {
  color: var(--cream-dim);
}

.hero-contact .sep {
  width: 6px;
  height: 6px;
  background: var(--orange);
  transform: rotate(45deg);
}

.hero-asset {
  margin: 0 auto;
  max-width: 58rem;
  border: 2px solid var(--orange);
  box-shadow: var(--shadow);
}

.hero-asset img {
  width: 100%;
}

.cta-band {
  padding: 1.35rem var(--gutter) 2.1rem;
  background: #101010;
  border-bottom: 1px solid rgba(243, 238, 228, 0.06);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.cta-row.start {
  justify-content: flex-start;
  margin-top: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: var(--charcoal);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-hot);
  border-color: var(--orange-hot);
  color: var(--charcoal);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(243, 238, 228, 0.35);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--cream);
}

/* ----- Sections ----- */
.section {
  padding: clamp(2.75rem, 7vw, 5rem) 0;
}

.section + .section {
  border-top: 1px solid rgba(243, 238, 228, 0.07);
}

.kicker {
  margin: 0 0 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--orange);
}

.kicker-center { text-align: center; }

.section h2 {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.15rem);
  line-height: 0.95;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section h2.center {
  text-align: center;
  margin-bottom: 1.75rem;
}

.amp,
.accent {
  color: var(--orange);
}

.lede {
  margin: 0 0 1.5rem;
  max-width: 40rem;
  color: var(--cream-dim);
  font-size: 1.12rem;
}

/* Event */
.event-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 840px) {
  .event-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
    gap: 2.5rem;
  }
}

.flyer-link {
  display: block;
  background: var(--charcoal-3);
  border: 2px solid var(--orange);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.flyer-link img {
  width: 100%;
}

.flyer-link:hover { outline: 2px solid var(--orange-hot); }

.flyer-caption {
  margin: 0.55rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.flyer-secondary {
  margin: 1.1rem 0 0;
  font-size: 0.9rem;
}

.flyer-secondary a {
  color: var(--cream-dim);
}

.event-facts {
  margin: 0;
  padding: 0;
}

.event-facts div {
  display: grid;
  grid-template-columns: 7.2rem 1fr;
  gap: 0.6rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(243, 238, 228, 0.08);
}

.event-facts dt {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.2rem;
}

.event-facts dd {
  margin: 0;
  font-size: 1.08rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.2rem 0 0.4rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.25rem 0.7rem;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Offerings */
.section-carry {
  background: var(--navy);
}

.offer-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .offer-grid { grid-template-columns: repeat(3, 1fr); }
}

.offer {
  position: relative;
  padding: 1.6rem 1.25rem 1.55rem;
  background: var(--charcoal-2);
  border: 1px solid rgba(243, 238, 228, 0.08);
  border-top: 3px solid var(--orange);
  text-align: center;
}

.offer::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 38%;
  height: 3px;
  background: var(--orange-hot);
}

.offer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 0.85rem;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
}

.offer h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer p {
  margin: 0;
  color: var(--cream-dim);
}

/* Messenger */
.section-msg {
  background: #0e1219;
}

.msg-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem 1.25rem;
  background:
    radial-gradient(ellipse at 12% 40%, var(--fb-glow), transparent 55%),
    #0e1219;
  border: 1px solid rgba(243, 238, 228, 0.08);
  border-left: 3px solid var(--orange);
}

@media (min-width: 720px) {
  .msg-card {
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
    padding: 1.85rem 1.75rem;
  }
}

.msg-icon {
  flex-shrink: 0;
  display: inline-flex;
  filter: drop-shadow(0 0 18px var(--fb-glow));
}

.msg-copy { min-width: 0; }

.msg-copy h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
}

.msg-accent {
  color: var(--orange);
  display: inline;
}

.msg-body {
  margin: 0;
  color: var(--cream-dim);
  max-width: 40rem;
}

.msg-note {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.msg-card .cta-row.start { margin-top: 1rem; }

/* Visit */
.visit-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 840px) {
  .visit-grid {
    grid-template-columns: 1fr 1.15fr;
    align-items: stretch;
  }
}

.visit-card {
  padding: 1.5rem 1.35rem;
  background: var(--charcoal-2);
  border: 1px solid rgba(243, 238, 228, 0.08);
  border-top: 3px solid var(--orange);
}

.addr {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.addr a {
  color: var(--cream);
  text-decoration: none;
}

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

.hours {
  margin: 1rem 0 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: var(--cream-dim);
}

.phone-lg {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--cream);
  text-decoration: none;
}

.phone-lg:hover { color: var(--orange); }

.map-frame {
  min-height: 18rem;
  height: 100%;
  border: 1px solid rgba(243, 238, 228, 0.1);
  border-top: 3px solid var(--orange);
  background: var(--steel);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

/* Compliance */
.legal {
  padding: 1.5rem 0 2.5rem;
}

.legal p {
  margin: 0;
  max-width: 46rem;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  border-top: var(--stripe) solid var(--orange);
  background: #0d0d0d;
  padding: 1.75rem 0 2.1rem;
}

.foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.85rem 1.5rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.foot strong {
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
}

.foot a { color: var(--cream-dim); text-decoration: none; }
.foot a:hover { color: var(--orange); }

.site-header.is-scrolled {
  background: rgba(14, 14, 14, 0.97);
}

.header-call:focus-visible,
.btn:focus-visible,
.hero-contact a:focus-visible {
  outline-offset: 4px;
}
