/* ============================================================
   CUBAI WHOLESALE TRADING HOUSE — MARKET NIGHT ARCADE
   Compact dark trading floor styled as a night market walk.
   Palette: MARKET NIGHT #1C2125 | STALL LANTERN #EDEAE0
   MARKET JADE #3F9B77 | CAGE IRON #8B9096 | STALL CLOTH #262C31
   TALLY PARCHMENT #F1ECDD | LANTERN WICK #C9A24B
   ============================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.7;
  font-family: Georgia, "Times New Roman", serif;
  background: #1C2125;
  color: #EDEAE0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: #3F9B77;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #F6F3E9;
}

.wrap {
  width: 100%;
}

.grid {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------------- SECTION HIDING (reveal) ---------------- */
/* Everything visible by default. JS adds .reveal-visible when in view and
   a noscript default keeps margin above so we never trap content. */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-hidden {
  opacity: 0;
}
html.has-js .reveal.is-hidden {
  opacity: 0;
  transform: translateY(24px);
}
html.has-js .reveal.reveal-visible {
  opacity: 1;
  transform: none;
}

/* Text is never truly invisible without JS */
html:not(.has-js) .reveal.is-hidden {
  opacity: 1;
}

/* ---------------- STICKY NAV  .stallnav ---------------- */
.stallnav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #1C2125;
  border-bottom: 2px solid #1C2125;
  box-shadow: 0 1px 0 #0E1214 inset, 0 10px 16px #0A0D0F;
}
.stallnav:after { /* keep hidden status */
  content: "";
  width: 0;
  height: 0;
  overflow: hidden;
  display: none;
}
.stallnav-rails {
  position: relative;
}
.stallnav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 32px 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.stallnav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.stallnav-plate {
  background: #3F9B77;
  color: #07100C;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 6px 12px 7px;
  border-radius: 3px;
  box-shadow: 0 3px 0 #234A3A;
}
.stallnav-lantern {
  width: 14px;
  height: 20px;
  border: 2px solid #C9A24B;
  border-radius: 6px 6px 3px 3px;
  position: relative;
  box-shadow: 0 0 4px #8A6530;
  display: inline-block;
}
.stallnav-lantern:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 4px;
  height: 8px;
  background: #C9A24B;
}
.stallnav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.stallnav-links li {
  list-style: none;
}
.stallnav-board {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  display: inline-block;
  color: #F1ECDD;
  background: #20262B;
  border: 1px solid #3F9B77;
  padding: 7px 16px;
  border-radius: 3px;
  position: relative;
  font-weight: 600;
  text-decoration: none;
}
.stallnav-board:before, .stallnav-board:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #C9A24B;
  border-radius: 50%;
}
.stallnav-board:before { left: 5px; top: 5px; }
.stallnav-board:after { right: 5px; bottom: 5px; }
.stallnav-board:hover {
  background: #24363b;
  text-decoration: none;
}
.is-active .stallnav-board {
  background: #3F9B77;
  color: #07100C;
}
.stallnav-cta {
  background: #3F9B77;
  color: #07100C;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: .5px;
}
.stallnav-cta:hover {
  background: #4DAE86;
  color: #07100C;
  text-decoration: none;
}
.stallnav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid #3F9B77;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  z-index: 70;
}
.stallnav-toggle i {
  display: block;
  width: 18px;
  height: 2px;
  background: #3F9B77;
  margin: 5px auto 0;
}
.stallnav-toggle i + i {
  margin-top: 5px;
}
.stallnav-railbar {
  height: 8px;
  border-top: 1px solid #0D1113;
  position: relative;
  margin-top: 10px;
  background: #232A2F;
  display: none;
}
.stallnav-railbar i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #C9A24B;
  top: 1px;
}
.stallnav-railbar i:nth-child(1) { left: 60px; }
.stallnav-railbar i:nth-child(2) { left: 220px; }
.stallnav-railbar i:nth-child(3) { left: 390px; }
.stallnav-railbar i:nth-child(4) { right: 240px; }
.stallnav-railbar i:nth-child(5) { right: 80px; }

.stallnav-drawer {
  display: none;
  background: #22292E;
  border-top: 1px solid #3F9B77;
}
.stallnav-drawer a {
  display: block;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  color: #EDEAE0;
  padding: 13px 26px;
  border-bottom: 1px solid #323A41;
  font-weight: 600;
}
.stallnav-drawer a:before {
  content: "·  ";
  color: #C9A24B;
}
.stallnav-drawer a:last-child {
  border: none;
}

@media (max-width: 900px) {
  .stallnav-links {
    display: none;
  }
  .stallnav-toggle {
    display: block;
  }
  .stallnav-cta {
    display: none;
  }
  .stallnav-inner {
    padding: 8px 20px 0;
  }
  .stallnav.open .stallnav-links,
  .stallnav.open .stallnav-drawer {
    display: block;
    padding: 0 0 4px 0;
  }
  .stallnav.open .stallnav-drawer {
    padding-bottom: 12px;
  }
}
@media (min-width: 901px) {
  .stallnav-drawer {
    display: none !important;
  }
}

/* ---------------- HERO  MARKET ARCADE .arcade ---------------- */
.hero {
  width: 100%;
}
.arcade {
  background: #1C2125;
  position: relative;
}
.arcade:after { /* hidden reserved */
  content: "";
  display: none;
}
.arcade { padding-bottom: 0; }
.arcade-scene {
  background: #1C2125 url("") no-repeat center top;
  background-size: cover;
  height: 470px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.arcade-scene-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.arcade-lanterns {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  position: relative;
}
.arcade-string {
  position: absolute;
  width: 96%;
  left: 2%;
  top: 10px;
  border-top: 2px dotted #6E5B28;
  height: 1px;
}
.arcade-lantern-dot {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #C9A24B;
  box-shadow: 0 0 10px #C9A24B, 0 0 2px #EDEAE0;
}
.arcade-lantern-dot:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: #C9A24B;
}

.stall-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  max-width: 1060px;
  margin: 20px auto 0;
  perspective: 800px;
}
.stall-counter {
  flex: 1;
  min-width: 0;
}
.stall-walls {
  background: #262C31;
  border: 1px solid #0F1416;
  border-radius: 6px 6px 0 0;
  padding: 30px 12px 14px;
  text-align: center;
  box-shadow: 0 0 0 2px #1b2126 inset;
  transform: 0;
}
.stall-signboard {
  display: inline-block;
  background: #3F9B77;
  color: #07100C;
  width: 100%;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 6px;
  border-radius: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}
@media (max-width: 720px) {
  .stall-walls .stall-signboard { font-size: 0.6rem; white-space: normal; }
}
.stall-count {
  color: #3F9B77;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  display: block;
  font-size: 0.72rem;
  letter-spacing: 2px;
  margin-top: 12px;
}
.stall-foot {
  height: 26px;
  background: #232A2E;
  border: 1px solid #0F1416;
  border-radius: 0 0 5px 5px;
}
@media (max-width: 760px) {
  .stall-counter { flex-basis: auto; }
  .stall-counter:nth-of-type(4), .stall-counter:last-child { display: none; }
}

.arcade-props {
  position: absolute;
  right: 0;
  top: 130px;
  width: 330px;
  height: 230px;
  display: block;
  opacity: 1;
}
@media (max-width: 900px) {
  .arcade-props { display: none; }
}
.cage-stack {
  position: absolute;
  bottom: 46px;
  right: 40px;
  width: 120px;
}
.cage-single {
  height: 34px;
  border: 2px solid #6b6f74;
  margin-bottom: 5px;
  background:
    repeating-linear-gradient(90deg, transparent 0 10px, #6b6f74 10px 14px),
    repeating-linear-gradient(0deg, transparent 0 11px, #6b6f74 11px 15px);
  background-color: #20262C;
  border-radius: 3px;
}
.scale-beam {
  position: absolute;
  bottom: 80px;
  right: 190px;
  width: 130px;
  text-align: center;
}
.scale-brown {
  height: 4px;
  background: #3a3f43;
  width: 100%;
  position: relative;
}
.scale-brown:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 60px;
  width: 6px;
  height: 46px;
  background: #3a3f43;
}
.scale-pan {
  position: absolute;
  bottom: 0;
  width: 36px;
  height: 10px;
  border: 2px solid #3a3f43;
  border-radius: 0 0 40px 40px;
  background: #1C2125;
}
.scale-pan.pan-l { left: 0; }
.scale-pan.pan-r { right: 0; }

/* tallied desk band */
.tally-desk {
  background: #262C31;
  border-top: 2px solid #0E1113;
}
.tally-desk-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 32px;
  display: flex;
  gap: 40px;
  align-items: center;
}
.tally-copy { flex: 1.6; }
.tally-copy .eyebrow {
  color: #C9A24B;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
}
.tally-copy h1 {
  font-size: 3rem;
  line-height: 1.05;
  margin: 14px 0 10px;
  color: #F6F3E9;
}
.tally-gradespan {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.8rem;
  color: #3F9B77;
  letter-spacing: 2px;
}
.tally-copy p {
  font-size: 1.1rem;
  max-width: 60ch;
  color: #D7D3C8;
}
.tally-cta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 700;
  letter-spacing: .4px;
  padding: 13px 24px;
  border: 2px solid #3F9B77;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
}
.btn-solid {
  background: #3F9B77;
  color: #07100C;
}
.btn-solid:hover { background: #4DAE86; text-decoration: none; color: #07100C; }
.btn-ghost {
  background: transparent;
  color: #F1ECDD;
  border-color: #8B9096;
}
.btn-ghost:hover { border-color: #3F9B77; color: #EDEAE0; text-decoration: none; }

.lot-stamp {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  color: #3F9B77;
  border: 1px solid #3F9B77;
  border-radius: 50%;
  padding: 5px;
  display: inline-flex;
  margin-left: 12px;
  vertical-align: middle;
  font-size: 0.7rem;
}
.lot-stamp i {
  border: 1px solid #3F9B77;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
}

.abacus {
  flex: .7;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #3A2A16;
  padding: 16px 14px;
  border-radius: 6px;
  border: 1px solid #4a3a20;
}
.abacus i {
  display: block;
  height: 4px;
  background: #76512b;
  border-radius: 2px;
}
.abacus i:nth-child(odd) { background: #C9A24B; }
@media (max-width: 760px) {
  .abacus { display: none; }
  .tally-desk-inner { flex-direction: column; align-items: flex-start; }
  .tally-copy h1 { font-size: 2.1rem; }
  .arcade-scene { height: 350px; }
}

/* kick strip stats */
.tally-kick {
  background: #1C2125;
  border-top: 3px solid #0E1113;
}
.tally-kick-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}
.stat-block { flex: 1 1 200px; }
.stat-block .num {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #F6F3E9;
}
.stat-block .label {
  color: #9ba7a1;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border-top: 1px solid #3F9B77;
  display: inline-block;
  padding-top: 4px;
}

/* ---------------- CAGE-STACK ROWS (home) ---------------- */
.cage-rows {
  background: #171C20;
  padding: 84px 0 20px;
}
.sect-head {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px 14px;
}
.sect-head .kicker {
  color: #C9A24B;
  text-transform: uppercase;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  letter-spacing: 3px;
  font-size: 0.8rem;
}
.sect-head h2 {
  font-size: 2rem;
  color: #F6F3E9;
  margin: 6px 0;
}
.sect-head p { color: #D7D3C8; max-width: 60ch; }

.cagerow {
  max-width: 1240px;
  margin: 0 auto;
  padding: 26px 32px;
}
.row-sheet {
  background: #F1ECDD;
  color: #21262A;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  padding: 30px 34px;
  border-left: 5px solid #3F9B77;
  border-radius: 6px;
  box-shadow: 0 8px 14px #0A0D0F;
  min-height: 190px;
}
.row-sheet.row-offset {
  margin-left: 40px;
}
@media (max-width: 800px) {
  .row-sheet.row-offset { margin-left: 0; }
  .row-sheet { flex-direction: column; }
}
.sheet-stamp {
  flex: 0 0 92px;
  text-align: center;
}
.sheet-stamp i {
  width: 76px;
  height: 76px;
  border: 2px solid #3F9B77;
  border-radius: 50%;
  color: #2E7A5B;
  font-style: normal;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
}
.sheet-stamp strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #3F9B77;
}
.sheet-body { flex: 1; }
.sheet-body h3 {
  color: #20271f;
  font-size: 1.5rem;
}
.sheet-grade {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 10px;
  background: #3F9B77;
  color: #07100C;
}
.sheet-grade.grade-b { background: #A7552B; color: #F9EEE7; }
.sheet-grade.grade-c { background: #7a6252; color: #F9EEE7; }
.row-sheet p {
  font-size: 1rem;
  line-height: 1.8;
}
.sheet-detail {
  display: inline-block;
  margin-top: 16px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 700;
  text-decoration: none;
  color: #2E7A5B;
}
.sheet-detail:after { content: " ›"; }
.sheet-detail:hover { text-decoration: underline; }
@media (max-width: 800px) {
  .row-sheet { padding: 22px 20px 26px; }
}

/* solid statement row */
.market-statement {
  background: #3F9B77;
}
.market-statement-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 32px;
  text-align: center;
  color: #0D1F18;
}
.market-statement-inner .giant-num {
  font-size: 4.6rem;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 800;
  color: #F6F3E9;
  text-shadow: 0 0 0 transparent;
}
.market-statement-inner h3 { color: #0D1F18; font-size: 1.5rem; }
.market-statement-inner p { color: #133326; max-width: 620px; margin: 10px auto 0; font-size: 1.1rem; }

/* ---------------- TALLY RUN route ---------------- */
.tally-run {
  background: #171C20;
  padding: 84px 0 90px;
}
.run-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 32px 10px;
  position: relative;
}
.run-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 16px;
}
.run-track:before {
  content: "";
  position: absolute;
  top: 34px;
  left: 4%;
  right: 4%;
  border-top: 2px dashed #3F9B77;
}
.station {
  position: relative;
  width: 19%;
  min-width: 150px;
  text-align: center;
  padding-top: 0;
}
.station-dot {
  margin: 6px auto;
  width: 62px;
  height: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #20262B;
  border: 1px solid #3F9B77;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 8px #1B573F;
}
.station-dot i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C9A24B;
  display: block;
  margin-bottom: 4px;
  box-shadow: 0 0 6px #C9A24B;
}
.station-dot strong {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  color: #F6F3E9;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: lowercase;
}
.station.done .station-dot { background: #143029; }
.station.done .station-dot strong { color: #6BD1A6; }
.station-final .station-dot { background: #3F9B77; }
.station-final .station-dot strong { color: #07100C; text-transform: uppercase; }
.station-final .station-dot { border-color: transparent; box-shadow: none; }
.station p {
  color: #C6C2B4;
  font-size: 0.94rem;
  padding: 6px 10px 0;
}

/* ---------------- ACCENT booking band ---------------- */
.lot-band {
  background: #3F9B77;
}
.lot-band-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 62px 32px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  color: #0D1F18;
}
.lot-band-mark {
  border: 2px solid #0d2218;
  padding: 12px 16px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: #0d2218;
  border-radius: 2px;
  white-space: nowrap;
  box-shadow: 4px 4px 0 #0d2218;
}
.lot-band-copy h3 { color: #0D1F18; font-size: 1.6rem; }
.lot-band-copy p { color: #1a3d2e; font-size: 1.05rem; }
.lot-band-btn {
  margin-left: auto;
  background: #F1ECDD;
  color: #1C2125;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 3px;
  text-decoration: none;
}
.lot-band-btn:hover { background: #FFFBF2; color: #1C2125; text-decoration: none; }
@media (max-width: 800px) {
  .lot-band-btn { margin-left: 0; }
}

/* ---------------- FOOTER tally beam .tallybeam ---------------- */
.tallybeam {
  background: #14181B;
  color: #C6CBC7;
}
.beam-top {
  height: 34px;
  border-top: 2px solid #1C2125;
  background: #1C2125;
  position: relative;
}
.beam-hang {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  height: 44px;
  border-left: 2px solid #3a4044;
  width: 2px;
}
.beam-line {
  height: 3px;
  width: 440px;
  position: absolute;
  top: 20px;
  left: 50%;
  margin-left: -220px;
  background: #3a4044;
  border-radius: 2px;
}
.beam-pan {
  position: absolute;
  top: 14px;
  width: 26px;
  height: 9px;
  border: 2px solid #3a4044;
  border-radius: 0 0 30px 30px;
  background: #14181B;
}
.beam-pan.bp-l { left: calc(50% - 236px); }
.beam-pan.bp-r { right: calc(50% - 236px); }
.beam-cage-r {
  position: absolute;
  right: 24px;
  top: 4px;
  width: 30px;
  height: 26px;
  border: 1px dashed #6b6f74;
  transform: rotate(-4deg);
}
.beam-cage-l {
  position: absolute;
  left: 24px;
  top: 2px;
  width: 26px;
  height: 22px;
  border: 1px dashed #6b6f74;
  transform: rotate(3deg);
}
.beam-motto {
  max-width: 1240px;
  margin: 66px auto 0;
  padding: 0 32px;
  text-align: center;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #3F9B77;
  font-size: 0.95rem;
}
.beam-cols {
  max-width: 1240px;
  margin: 40px auto;
  padding: 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: space-between;
}
.beam-col { flex: 1 1 180px; }
.beam-col h4 {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  color: #F1ECDD;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  border-bottom: 1px solid #3F9B77;
  display: inline-block;
  padding-bottom: 3px;
}
.beam-col a {
  display: block;
  color: #C6CBC7;
  padding: 4px 0;
  font-size: 0.95rem;
  text-decoration: none;
}
.beam-col a:hover { color: #3F9B77; text-decoration: none; }
.beam-col .beam-slogan { color: #C6CBC7; font-size: 0.95rem; }
.plaque-band {
  background: #F1ECDD;
  color: #23282B;
}
.plaque-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 26px 32px;
  font-size: 0.95rem;
  text-align: center;
}
.plaque-inner .plaque-name {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 700;
  letter-spacing: .5px;
  color: #1F3B33;
}
.plaque-inner .plaque-line { color: #33403c; }
.copyright {
  text-align: center;
  background: #14181B;
  padding: 18px 20px 40px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #3F9B77;
}
.copyright a { color: #6BD1A6; text-decoration: none; }

/* side nav classes used across pages */
.page-head {
  background: #1C2125;
  border-bottom: 1px solid #0E1113;
  padding: 70px 0 50px;
}
.page-head-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.page-head-inner .kicker {
  color: #C9A24B;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
}
.page-head-inner h1 { color: #F6F3E9; font-size: 2.6rem; margin: 8px 0; }
.page-head-inner p { color: #D7D3C8; max-width: 70ch; }

/* generic content blocks for services .longform */
.trade-content {
  background: #171C20;
  padding: 70px 0;
}
.longform-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
}
.service-concept {
  background: #F1ECDD;
  color: #262B2F;
  border-radius: 8px;
  padding: 34px;
  margin: 60px 0 30px;
  border-left: 6px solid #3F9B77;
}
.service-concept h3 { font-family: "Trebuchet MS", Verdana, sans-serif; color: #23483c; }
.service-concept p { margin-top: 6px; color: #30383B; }

.service-deck { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; }
.service-deck .s-deck { background: #262C31; border: 1px solid #0f1517; border-left: 5px solid #3F9B77; border-radius: 6px; padding: 26px; }
.service-deck h3 { font-family: "Trebuchet MS", Verdana, sans-serif; color: #EDEAE0;
  display: flex; align-items: center; gap: 14px; }
.service-deck .deck-no { color: #C9A24B; font-size: 0.9rem; letter-spacing: 3px; }
.service-deck p { color: #D7D3C8; margin-top: 8px; line-height: 1.85; }
.skill-chips { margin-top: 12px; }
.skill-chip {
  display: inline-block;
  background: #222A2F;
  border: 1px solid #3F9B77;
  color: #9BD8C0;
  border-radius: 2px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.78rem;
  padding: 4px 10px;
  margin: 0 6px 8px 0;
  letter-spacing: .5px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  justify-content: space-between;
}
.p-step { flex: 1 1 160px; background: #20262B; border-top: 3px solid #3F9B77; border-radius: 3px; padding: 20px 18px; min-height: 150px; }
.p-step strong { font-family: "Trebuchet MS", Verdana, sans-serif; color: #EDEAE0; }
.p-step .step-no { color: #C9A24B; }
.p-step p { color: #C6CBC7; font-size: 0.95rem; margin-top: 6px; }

/* CTA band reused by inner pages */
.request-banner {
  background: #3F9B77;
  color: #0D1F18;
}
.request-banner-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 32px;
  text-align: center;
}
.request-banner h2 { font-family: "Trebuchet MS", Verdana, sans-serif; font-size: 1.8rem; color: #0a1f17; }
.request-banner p { color: #173524; font-size: 1.1rem; max-width: 560px; margin: 8px auto 18px; }
.request-banner .btn-ghost { border-color: #0a1f17; color: #0a1f17; }
.request-banner .btn-ghost:hover { border-color: #F1ECDD; color: #F1ECDD; text-decoration: none; }

/* contact page form + lists */
.contact-layout {
  background: #171C20;
  padding: 70px 0;
}
.contact-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
}
@media (max-width: 850px) {
  .contact-inner { grid-template-columns: 1fr; }
}
.form-shell { background: #F1ECDD; color: #262B2F; padding: 30px 32px; border-radius: 8px; border-left: 6px solid #3F9B77; }
.form-field { margin-bottom: 14px; }
.form-field label { font-family: "Trebuchet MS", Verdana, sans-serif; font-size: 0.82rem; letter-spacing: 1px; font-weight: 700; color: #3a6c56; display: block; margin-bottom: 4px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #b9b3a6;
  border-radius: 3px;
  font-family: inherit;
  font-size: 1rem;
  background: #ffffff;
  color: #242a2e;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-meta { color: #66706e; font-size: 0.85rem; }

.info-shell h3 { font-family: "Trebuchet MS", Verdana, sans-serif; color: #F6F3E9; }
.info-card {
  background: #262C31;
  border: 1px solid #0f1517;
  border-left: 4px solid #3F9B77;
  border-radius: 4px;
  padding: 20px 22px;
  margin-bottom: 16px;
}
.info-card strong { font-family: "Trebuchet MS", Verdana, sans-serif; color: #EDEAE0; }
.info-card p { color: #C6CBC7; font-size: 0.98rem; margin-top: 4px; }
.info-card p a { color: #7BD4B0; }
.hours-row { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px dashed #39414a; color: #C6CBC7; }
.hours-row .hr { color: #EDEAE0; font-family: "Trebuchet MS", Verdana, sans-serif; }
.smallnote { color: #9ba7a1; font-size: 0.85rem; }

/* FAQ accordion surfaces */
.faq-block { background: #262C31; border: 1px solid #0f1517; border-radius: 5px; margin-bottom: 12px; }
.faq-q { font-family: "Trebuchet MS", Verdana, sans-serif; cursor: pointer; padding: 16px 20px; color: #F1ECDD; font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.faq-q:after { content: "+"; color: #3F9B77; font-family: serif; font-weight: 700; }
.faq-open .faq-q:after { content: "–"; }
.faq-a { display: none; padding: 0 20px 20px; color: #D7D3C8; font-size: 0.98rem; }
.faq-open .faq-a { display: block; }

/* scroll-reveal tokens on every inner page */
.q-wrap { width: 100%; }
.notice { color: #9ba7a1; }
.stack-gap { margin-top: 26px; }
.padless { padding-top: 0; }
.note-gap { margin-top: 8px; }

@media (max-width: 620px) {
  .grid { padding: 0 20px; }
  .arcade-scene-inner { padding: 0 14px; }
  .tally-copy h1 { font-size: 1.8rem; }
  .stallnav-inner { padding-left: 16px; padding-right: 16px; }
}
