/* =========================================================================
   ArmorActive Armoury — team kit workshop
   Dark athletic palette led by Compression Red
   ========================================================================= */

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Trebuchet MS", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #F1F3F5;
  background-color: #23262B;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a {
  color: #C4483C;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: "Arial Black", "Arial Bold", "Trebuchet MS", sans-serif;
  line-height: 1.2;
  margin: 0 0 0.6em 0;
  color: #F1F3F5;
}

/* Noscript-safe reveal: visible by default. JS opts in by adding the
   reveal-anim class to the document element; hidden states live here so no
   content is ever hidden through an inline style attribute. */
.reveal {
  opacity: 1;
  transform: none;
}

html.reveal-anim .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

html.reveal-anim .reveal.visible {
  opacity: 1;
  transform: none;
}


.page-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================================
   01 — BIB-RAIL NAVIGATION
   ========================================================================= */

.nav-shell {
  position: sticky;
  top: 0;
  z-index: 90;
  background-color: #23262B;
  border-bottom: 2px solid #3A3E44;
}

.bibrail {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.bibrail-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.bibrail-brand:hover {
  text-decoration: none;
}

.brand-plate {
  display: inline-flex;
  align-items: center;
  background-color: #C4483C;
  color: #1B1E23;
  font-family: "Arial Black", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  border-radius: 4px;
  box-shadow: 0 3px 0 #8A2F26;
}

.brand-plate .subbrand {
  font-family: "Arial Black", sans-serif;
  font-size: 1.25rem;
  color: #1B1E23;
}

.bib-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 24px;
  background-color: #F6F3EA;
  color: #C4483C;
  font-weight: 800;
  font-size: 0.8rem;
  border: 2px solid #C4483C;
  border-radius: 3px;
  font-family: monospace;
  position: relative;
}

.bib-glyph::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -6px;
  width: 3px;
  height: 3px;
  background-color: #C4483C;
  border-radius: 50%;
}

.bib-glyph::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -6px;
  width: 3px;
  height: 3px;
  background-color: #C4483C;
  border-radius: 50%;
}

.bibrail-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background-color: #F6F3EA;
  color: #23262B;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 16px 8px 14px;
  border: 2px solid #F6F3EA;
  border-radius: 18px 5px 18px 5px;
  margin-left: 4px;
  text-decoration: none;
}

.bibrail-link .bib-dot {
  width: 9px;
  height: 9px;
  background-color: #C4483C;
  border-radius: 50%;
  display: inline-block;
}

.bibrail-link.active-bib {
  background-color: #C4483C;
  border-color: #C4483C;
  color: #1B1E23;
}

.bibrail-link.active-bib .bib-dot {
  background-color: #1B1E23;
}

.bibrail-link:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.bibrail-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.bibrail-cta {
  display: inline-block;
  background-color: #C4483C;
  color: #1B1E23;
  font-family: "Arial Black", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 11px 22px;
  border-radius: 4px;
  border: none;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 3px 0 #8A2F26;
}

.bibrail-cta:hover {
  text-decoration: none;
  background-color: #D25448;
}

.nav-toggle {
  display: none;
  background-color: #C4483C;
  color: #1B1E23;
  border: none;
  font-weight: 800;
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Arial Black", sans-serif;
}

/* Hangrail dibs along nav bottom */
.bib-hangrail-wrap {
  margin-top: 12px;
  background-color: #1B1E23;
}

.bib-hangrail {
  height: 8px;
  background-color: #1B1E23;
  border-top: 2px solid #7E8894;
  position: relative;
  overflow: visible;
}

.bib-hangrail::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, #7E8894 0 10px, transparent 10px 26px);
  background-size: 26px 100%;
  background-repeat: repeat-x;
}

.mobile-drawer {
  display: none;
}

/* =========================================================================
   02 — FITTING BENCH HERO
   ========================================================================= */

.fitbench {
  background-color: #23262B;
}

.fitting-bench-top {
  background-color: #23262B;
}

.armoury-wall {
  padding: 70px 24px 60px 24px;
  background-color: #23262B;
}

.wall-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: stretch;
}

.wall-col {
  flex: 1 1 0;
  min-width: 250px;
}

.wall-unit {
  background-color: #2B2F35;
  border: 1px solid #3A3E44;
  border-radius: 8px;
  padding: 18px;
  height: 100%;
}

.wall-unit-label {
  display: inline-block;
  font-family: monospace;
  font-weight: 700;
  font-size: 0.8rem;
  color: #7E8894;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  border-left: 4px solid #C4483C;
  padding-left: 10px;
}

.jersey-stack {
  display: flex;
  gap: 0;
  margin-top: 18px;
}

.jersey-tier {
  flex: 1;
  height: 74px;
  border-radius: 6px 6px 2px 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #F1F3F5;
  border: 2px solid #454A51;
}

.jersey-tier.red-tier {
  background-color: #C4483C;
  color: #1B1E23;
}

.jersey-tier.mesh-tier {
  background-color: #7E8894;
  color: #1B1E23;
}

.jersey-tier.cream-tier {
  background-color: #F6F3EA;
  color: #23262B;
}

.bib-rail-board {
  background-color: #1B1E23;
  border-radius: 8px;
  padding: 26px 18px;
  border: 1px solid #454A51;
}

.hangrail-line {
  height: 4px;
  background-color: #7E8894;
  border-radius: 2px;
  margin-bottom: 16px;
}

.bib-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-around;
}

.hero-bib-tag {
  background-color: #F6F3EA;
  color: #C4483C;
  font-family: monospace;
  font-weight: 800;
  font-size: 1.5rem;
  padding: 18px 20px;
  text-align: center;
  border-radius: 6px;
  border: 2px solid #F6F3EA;
  box-shadow: 0 0 0 2px #C4483C;
  min-width: 78px;
}

.hero-bib-num {
  display: block;
  font-size: 0.6rem;
  color: #7E8894;
  letter-spacing: 0.14em;
  font-family: "Trebuchet MS", sans-serif;
  margin-top: 6px;
}

.kit-wall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.kit-hanger {
  text-align: center;
}

.hang-bar {
  width: 100%;
  height: 4px;
  background-color: #7E8894;
  border-radius: 2px;
  margin-bottom: 8px;
}

.hanging-shirt {
  height: 92px;
  background-color: #2B2F35;
  border: 2px solid #C4483C;
  border-radius: 8px 8px 14px 14px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #F1F3F5;
  font-weight: 700;
}

.hanging-shirt.mesh-shirt {
  border-color: #7E8894;
}

.hanging-shirt::before {
  content: "";
  width: 26px;
  height: 34px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle at center, #3A3E44 0 3px, transparent 4px);
}

.size-run-label {
  display: block;
  margin-top: 6px;
  font-size: 0.7rem;
  color: #7E8894;
  letter-spacing: 0.1em;
}

/* Fitting bench lower slab */
.fitting-bench-lower {
  background-color: #F6F3EA;
  color: #23262B;
}

.bench-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 66px 24px;
  text-align: center;
}

.bench-eyebrow {
  display: inline-block;
  font-family: monospace;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #C4483C;
  margin-bottom: 12px;
  position: relative;
}

.bench-eyebrow::before,
.bench-eyebrow::after {
  content: "·";
  margin: 0 8px;
  color: #C4483C;
}

.bench-h1-wrap {
  position: relative;
  display: block;
  max-width: 860px;
  margin: 0 auto;
}

.bench-h1-text {
  font-family: "Arial Black", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #23262B;
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0.01em;
  font-weight: 900;
}

.bench-h1-text .bench-red {
  color: #C4483C;
}

.red-bib-stamp-wrap {
  display: inline-block;
  margin: 6px auto;
}

.red-bib-stamp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #C4483C;
  color: #1B1E23;
  padding: 6px 14px 6px 8px;
  border-radius: 3px;
  font-family: monospace;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  transform: rotate(-2deg);
}

.red-bib-stamp .stamp-num {
  background-color: #1B1E23;
  color: #F6F3EA;
  padding: 2px 8px;
  border-radius: 3px;
}

.bench-lead {
  max-width: 700px;
  margin: 20px auto 32px auto;
  font-size: 1.12rem;
  color: #3A3E44;
  line-height: 1.7;
}

.bench-lead strong {
  color: #23262B;
}

.bench-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-block;
  font-family: "Arial Black", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.12s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-red-solid {
  background-color: #C4483C;
  color: #1B1E23;
  border: none;
  box-shadow: 0 4px 0 #8A2F26;
}

.btn-red-solid:hover {
  background-color: #D25448;
}

.btn-mesh-outline {
  background-color: transparent;
  color: #23262B;
  border: 3px solid #23262B;
}

.btn-mesh-outline:hover {
  background-color: #23262B;
  color: #F6F3EA;
}

.bench-toolbelt {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 40px;
  color: #7E8894;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: monospace;
}

.bench-toolbelt span {
  border-left: 2px solid #C4483C;
  padding-left: 10px;
  color: #7E8894;
}

/* Kick strip with stats */
.baselayer-kick {
  background-color: #1B1E23;
  border-top: 3px solid #C4483C;
}

.kick-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.kick-stat {
  flex: 1 1 0;
  min-width: 180px;
  text-align: center;
  border-right: 2px solid #C4483C;
  padding: 6px 14px;
}

.kick-stat:last-child {
  border-right: none;
}

.kick-stat-value {
  display: block;
  font-family: "Arial Black", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #F6F3EA;
  font-weight: 900;
}

.kick-stat-label {
  display: block;
  margin-top: 4px;
  color: #F6F3EA;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: monospace;
}

/* =========================================================================
   03 — STATEMENT ROW ON BASELAYER INK
   ========================================================================= */

.statement-band {
  background-color: #1B1E23;
}

.statement-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 84px 24px;
  text-align: center;
}

.statement-figure {
  display: block;
  font-family: "Arial Black", sans-serif;
  font-size: clamp(3.4rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 1;
  color: #C4483C;
  letter-spacing: -0.02em;
}

.statement-pitch {
  max-width: 720px;
  margin: 18px auto 0 auto;
  font-size: 1.35rem;
  line-height: 1.5;
  color: #F1F3F5;
}

.statement-pitch .pitch-red {
  color: #C4483C;
  font-family: "Arial Black", sans-serif;
  font-weight: 800;
}

/* =========================================================================
   04 — KIT-STACK ROWS
   ========================================================================= */

.kitstack-zone {
  background-color: #23262B;
  padding: 70px 24px 90px 24px;
}

.kitstack-label {
  text-align: center;
  margin: 0 auto 10px auto;
  max-width: 1240px;
}

.section-kicker {
  display: inline-block;
  font-family: monospace;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #F6F3EA;
  background-color: #7E8894;
  padding: 5px 14px;
  border-radius: 3px;
}

.section-title {
  font-family: "Arial Black", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: #F1F3F5;
  text-align: center;
  font-weight: 900;
  margin: 16px 0 54px 0;
}

.desk-form {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  max-width: none;
}

.hours-block {
  margin-top: 30px;
  border-top: 2px solid #3A3E44;
  padding-top: 22px;
}

.hours-list {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px dashed #3A3E44;
  color: #F1F3F5;
  font-size: 0.98rem;
}

.hours-list li strong {
  color: #C4483C;
}

.hours-note {
  color: #7E8894;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 8px 0 0 0;
}

.desk-copy {
  color: #F1F3F5;
  margin: 0 0 20px 0;
  line-height: 1.7;
}

.kitstack-label .section-title {
  margin-bottom: 54px;
}

.kit-row {
  max-width: 1240px;
  margin: 0 auto;
  scroll-margin-top: 90px;
}

.kit-sheet {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background-color: #F6F3EA;
  color: #23262B;
  border-left: 10px solid #C4483C;
  border-radius: 6px;
  padding: 0;
  margin: 0 0 26px 0;
  box-shadow: 0 8px 22px #0D0F12;
  overflow: hidden;
}

.kit-sheet.offset-right {
  margin-left: 40px;
}

.kit-sheet.offset-left {
  margin-right: 40px;
}

.kit-kicker {
  flex: 0 0 150px;
  background-color: #C4483C;
  color: #1B1E23;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 12px;
  border-right: 4px solid #B3382E;
}

.kit-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  background-color: #1B1E23;
  color: #F6F3EA;
  border: 3px solid #F6F3EA;
  border-radius: 50%;
  font-family: monospace;
  font-weight: 800;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.1;
}

.kit-code small {
  display: block;
  font-size: 0.6rem;
  color: #7E8894;
}

.kit-chip {
  display: inline-block;
  margin-top: 14px;
  background-color: #1B1E23;
  color: #F6F3EA;
  font-size: 0.72rem;
  font-family: monospace;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  border-radius: 3px;
}

.kit-body {
  flex: 1 1 0;
  padding: 26px 30px;
  min-width: 250px;
}

.kit-body h3 {
  color: #23262B;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.kit-body p {
  color: #3A3E44;
  margin: 0 0 16px 0;
  line-height: 1.7;
}

.kit-detail-link {
  display: inline-block;
  background-color: #23262B;
  color: #F6F3EA;
  font-family: "Arial Black", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 18px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 3px 0 #7E8894;
}

.kit-detail-link:hover {
  text-decoration: none;
  background-color: #C4483C;
  color: #1B1E23;
  box-shadow: 0 3px 0 #8A2F26;
}

/* kit sheet retains left red spine defined above; no extra end piece needed */

/* =========================================================================
   05 — SEASON RUN on DRY MESH
   ========================================================================= */

.season-run-band {
  background-color: #7E8894;
  border-top: 4px solid #C4483C;
  border-bottom: 4px solid #C4483C;
}

.run-label {
  text-align: center;
  padding-top: 44px;
}

.run-label .section-title {
  color: #1B1E23;
}

.season-run-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 24px 64px 24px;
}

.run-track {
  position: relative;
  border-top: 4px dashed #23262B;
  padding-top: 10px;
  margin: 34px 0 40px 0;
}

.run-track::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 0;
  height: 6px;
  border-radius: 3px;
  width: 80%;
  background-color: #23262B;
}

.run-stations {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px;
}

.run-station {
  flex: 1 1 0;
  min-width: 120px;
  text-align: center;
  position: relative;
}

.station-bib {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #F6F3EA;
  color: #23262B;
  border: 2px solid #23262B;
  box-shadow: 0 0 0 2px #C4483C;
  width: 92px;
  height: 92px;
  border-radius: 6px;
  font-family: "Arial Black", sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
}

.station-bib.done-bib {
  background-color: #C4483C;
  color: #1B1E23;
  border-color: #1B1E23;
  box-shadow: 0 0 0 2px #1B1E23;
}

.station-bib .hanger-glyph {
  display: block;
  font-size: 1.3rem;
  line-height: 1;
  margin-bottom: 2px;
}

.station-bib small {
  display: block;
  font-family: monospace;
  font-size: 0.55rem;
  margin-top: 4px;
  letter-spacing: 0.12em;
}

.station-caption {
  color: #1B1E23;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0 8px;
}

.station-caption span {
  color: #3A3E44;
  font-weight: 400;
}

.run-final-note {
  text-align: center;
  color: #1B1E23;
  font-family: "Arial Black", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  background-color: #F6F3EA;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 4px;
  border: 2px solid #C4483C;
}

/* =========================================================================
   06 — BOOKING ACCENT STRIP
   ========================================================================= */

.booking-strip {
  background-color: #C4483C;
}

.booking-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.booking-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #1B1E23;
  color: #F6F3EA;
  font-family: monospace;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 3px;
  transform: rotate(-1deg);
  border: 2px solid #3A3E44;
}

.booking-copy {
  color: #1B1E23;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 700;
  max-width: 620px;
}

.booking-copy strong {
  color: #1B1E23;
}

.booking-btn-wrap {
  flex: 0 0 auto;
}

.btn-cream-book {
  display: inline-block;
  background-color: #F6F3EA;
  color: #C4483C;
  font-family: "Arial Black", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 0 #7E8894;
}

.btn-cream-book:hover {
  text-decoration: none;
  background-color: #FFFFFF;
}

/* =========================================================================
   07 — MESH WALL FOOTER
   ========================================================================= */

.meshwall {
  background-color: #1B1E23;
  position: relative;
  z-index: 1;
}

.meshwall-top-rail {
  height: 12px;
  background-color: #1B1E23;
  border-bottom: 2px solid #7E8894;
}

.meshwall-hangers {
  display: flex;
  justify-content: space-around;
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 24px 0 24px;
  gap: 10px;
  align-items: flex-start;
}

.hanger-hook {
  width: 0;
  height: 32px;
  border-left: 3px solid #7E8894;
  position: relative;
}

.hanger-hook::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 3px solid #C4483C;
  border-bottom: none;
  border-radius: 90px 90px 0 0;
  position: absolute;
  top: 0;
  left: -8px;
}

.hanger-hook::after {
  content: "";
  position: absolute;
  top: 28px;
  left: -7px;
  width: 11px;
  height: 3px;
  background-color: #C4483C;
  border-radius: 2px;
}

.meshwall-motto {
  text-align: center;
  font-family: Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #F1F3F5;
  font-size: clamp(0.9rem, 2.4vw, 1.3rem);
  margin: 10px 0 8px 0;
}

.meshwall-motto .motto-red {
  color: #C4483C;
}

.heat-press-note {
  text-align: center;
  font-family: monospace;
  font-size: 0.7rem;
  color: #7E8894;
  letter-spacing: 0.2em;
}

.footer-col-links {
  max-width: 1240px;
  margin: 40px auto 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.footer-col h4 {
  color: #C4483C;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: monospace;
  font-weight: 800;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin: 0 0 9px 0;
}

.footer-col a {
  color: #F1F3F5;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: #C4483C;
  text-decoration: underline;
}

.footer-base-plate {
  background-color: #F6F3EA;
  margin-top: 46px;
  position: relative;
  z-index: 1;
}

.base-plate-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 34px 24px 22px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}

.base-id {
  text-align: left;
}

.base-company {
  font-family: "Arial Black", sans-serif;
  font-size: 1.05rem;
  color: #23262B;
  font-weight: 900;
  margin: 0 0 2px 0;
}

.base-address {
  color: #3A3E44;
  font-size: 0.92rem;
  margin: 0 0 6px 0;
}

.base-contact {
  color: #3A3E44;
  font-size: 0.92rem;
  margin: 0;
}

.base-contact a {
  color: #C4483C;
  font-weight: 700;
}

.base-tag-block {
  text-align: right;
  color: #3A3E44;
  font-size: 0.9rem;
}

.base-copyright {
  font-family: "Arial Black", sans-serif;
  font-size: 0.8rem;
  color: #C4483C;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.watermark-ghost {
  position: absolute;
  right: -30px;
  bottom: 0;
  font-family: "Arial Black", sans-serif;
  font-size: 14rem;
  color: #1E2228;
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  visibility: hidden;
  z-index: 0;
}

/* =========================================================================
   07B — HERO WALL SUPPORT, CAPTIONS AND PRESS PLATEN
   ========================================================================= */

.wall-unit-note {
  margin: 12px 0 0 0;
  font-size: 0.85rem;
  color: #7E8894;
  line-height: 1.55;
}

.wall-unit-label-light {
  color: #F6F3EA;
}

.wall-unit-note-light {
  margin: 12px 0 0 0;
  font-size: 0.85rem;
  color: #E8EAEC;
  line-height: 1.55;
}

.press-platen {
  background-color: #23262B;
  border: 2px dashed #3A3E44;
  border-radius: 6px;
  min-height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-platen-face {
  text-align: center;
}

.press-word {
  display: block;
  font-family: "Arial Black", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.34em;
  color: #C4483C;
  font-weight: 900;
}

.press-sub {
  display: block;
  margin-top: 6px;
  font-family: monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: #7E8894;
}

.run-intro-line {
  text-align: center;
  color: #1B1E23;
  font-weight: 700;
  max-width: 720px;
  margin: 0 auto 6px auto;
}

.run-final-wrap {
  text-align: center;
  margin-top: 34px;
}

.meshwall-motto .dry {
  color: #7E8894;
}

.base-tag-line {
  color: #3A3E44;
  margin: 0 0 2px 0;
}

/* =========================================================================
   07C — SERVICES BODY BLOCKS
   ========================================================================= */

.svc-block {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 40px 24px;
}

.svc-block .dual-colored {
  min-width: 260px;
}

.svc-block .svc-paragraph {
  color: #F1F3F5;
  margin: 0 0 16px 0;
  line-height: 1.75;
}

/* =========================================================================
   08 — SHARED SECONDARY PAGE SECTIONS (services, contact)
   ========================================================================= */

.page-hero-band {
  background-color: #23262B;
  border-bottom: 4px solid #C4483C;
}

.page-hero-band-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 66px 24px 72px 24px;
  position: relative;
  z-index: 1;
}

.page-hero-band h1 {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  color: #F1F3F5;
  margin-bottom: 16px;
  position: relative;
}

.page-hero-band h1 .page-h1-accent {
  color: #C4483C;
}

.page-hero-band .page-eyebrow {
  display: inline-block;
  font-family: monospace;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C4483C;
  margin-bottom: 6px;
}

.page-hero-band .page-lead {
  max-width: 820px;
  color: #F1F3F5;
  font-size: 1.12rem;
  line-height: 1.7;
  margin: 18px 0 0 0;
}

.page-hero-band .page-lead strong {
  color: #C4483C;
}

.content-slab {
  background-color: #23262B;
  padding: 66px 0;
}

.content-slab .section-kicker {
  background-color: #2B2F35;
}

.content-slab .section-title {
  color: #F1F3F5;
}

/* Breadcrumb trail inside secondary pages */
.bench-breadcrumb {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 24px 0 24px;
}

.bench-breadcrumb a {
  color: #7E8894;
  font-family: monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bench-breadcrumb a:hover {
  color: #C4483C;
}

.bench-breadcrumb .bread-slash {
  color: #C4483C;
  margin: 0 8px;
}

.bench-breadcrumb .bread-here {
  color: #F1F3F5;
  font-family: monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Two-column split used on contact secondary body */
.dual-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.dual-rail > .dual-colored {
  flex: 1 1 0;
  min-width: 280px;
}

.locker-card {
  background-color: #2B2F35;
  border: 1px solid #3A3E44;
  border-radius: 8px;
  padding: 34px 34px 40px 34px;
}

.locker-card h3 {
  color: #F1F3F5;
  font-size: 1.25rem;
  font-family: "Arial Black", sans-serif;
  font-weight: 800;
  border-left: 5px solid #C4483C;
  padding-left: 12px;
  margin-bottom: 20px;
}

.locker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.locker-cell {
  background-color: #23262B;
  border-radius: 6px;
  padding: 16px;
}

.locker-cell .cell-label {
  font-family: monospace;
  font-size: 0.7rem;
  color: #7E8894;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  display: block;
  margin-bottom: 8px;
}

.locker-cell .cell-value {
  color: #F1F3F5;
  font-weight: 700;
  font-size: 0.98rem;
  word-break: break-word;
}

.locker-cell .cell-value a {
  color: #C4483C;
}

/* =========================================================================
   09 — CONTACT FORM
   ========================================================================= */

.contact-form-card {
  background-color: #2B2F35;
  border: 1px solid #3A3E44;
  border-radius: 8px;
  padding: 36px;
  max-width: 820px;
  margin: 0 auto;
}

.contact-form-card h3 {
  color: #F1F3F5;
  margin-bottom: 24px;
  font-family: "Arial Black", sans-serif;
  font-weight: 800;
  border-left: 6px solid #C4483C;
  padding-left: 14px;
}

.field-group {
  margin-bottom: 20px;
}

.field-group label {
  display: block;
  color: #F1F3F5;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.field-group label .field-star {
  color: #C4483C;
}

.field-group input[type="text"],
.field-group input[type="email"],
.field-group textarea,
.field-group select {
  width: 100%;
  background-color: #1B1E23;
  border: 2px solid #3A3E44;
  color: #F1F3F5;
  padding: 13px 14px;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

.field-group textarea {
  min-height: 150px;
  resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus {
  outline: none;
  border-color: #C4483C;
}

.form-note {
  color: #7E8894;
  font-size: 0.9rem;
  margin: 4px 0 0 0;
}

.form-submit-btn {
  background-color: #C4483C;
  color: #1B1E23;
  border: none;
  border-radius: 5px;
  padding: 16px 34px;
  font-family: "Arial Black", sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 0 #8A2F26;
}

.form-submit-btn:hover {
  background-color: #D25448;
}

.mailto-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: #7E8894;
}

.mailto-note a {
  color: #C4483C;
  font-weight: 700;
}

.form-status-bar {
  display: none;
  margin-top: 18px;
  background-color: #1B1E23;
  border-left: 6px solid #C4483C;
  color: #F1F3F5;
  padding: 14px 18px;
  border-radius: 4px;
  font-weight: 700;
}

.form-status-bar.show-status {
  display: block;
}

/* Accordion */
.accordion-faq {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 80px 24px;
}

.acc-item {
  background-color: #2B2F35;
  border: 1px solid #3A3E44;
  border-radius: 6px;
  margin-bottom: 14px;
  overflow: hidden;
}

.acc-head {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #F1F3F5;
  font-size: 1.08rem;
  font-weight: 800;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  padding: 18px 22px;
  cursor: pointer;
  position: relative;
}

.acc-head::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #C4483C;
  font-size: 1.5rem;
  font-weight: 400;
}

.acc-item.open .acc-head::after {
  content: "–";
}

.acc-body {
  display: none;
  padding: 0 22px 22px 22px;
  color: #F1F3F5;
  border-top: 1px solid #3A3E44;
  padding-top: 16px;
}

.acc-item.open .acc-body {
  display: block;
}

/* Services process */
.rail-stage-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
}

.rail-stage {
  background-color: #2B2F35;
  border-top: 5px solid #C4483C;
  border-radius: 6px;
  padding: 26px 20px;
  text-align: center;
}

.rail-stage .stage-mark {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px auto;
  background-color: #F6F3EA;
  color: #C4483C;
  border-radius: 50%;
  font-family: monospace;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 56px;
  text-align: center;
}

.rail-stage h4 {
  color: #F1F3F5;
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.rail-stage p {
  color: #F1F3F5;
  font-size: 0.9rem;
  margin: 0;
}

/* Mesh white section for process body */
.fs-row {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.svc-below-the-fold {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 60px 24px;
}

/* =========================================================================
   10 — MEDIA QUERIES
   ========================================================================= */

@media (max-width: 900px) {
  .bibrail-nav,
  .bibrail-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .mobile-drawer {
    display: none;
    background-color: #1B1E23;
    border-top: 2px solid #C4483C;
  }

  .mobile-drawer.open {
    display: block;
  }

  .mobile-drawer a {
    display: block;
    color: #F6F3EA;
    font-weight: 700;
    padding: 14px 24px;
    border-bottom: 1px solid #33373E;
    text-decoration: none;
  }

  .mobile-drawer a:last-child {
    border-bottom: none;
  }

  .mobile-drawer a.mobile-cta-link {
    color: #C4483C;
    font-family: "Arial Black", sans-serif;
    font-weight: 800;
  }

  .kit-sheet.offset-right,
  .kit-sheet.offset-left {
    margin-left: 0;
    margin-right: 0;
  }

  .kick-stat {
    min-width: 150px;
  }

  .wall-col {
    flex-basis: 100%;
  }

  .kit-wall-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .brand-plate {
    font-size: 1.05rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .base-tag-block {
    text-align: left;
  }

  .run-stations {
    gap: 10px;
  }
}
