/* ============================================================
   FUXINGFU INDUSTRIAL — Kowloon Night Sign Street
   Dark theme: sign-lit street of hanging blade signs
   ============================================================ */

:root {
  --sign-night: #2B1E2E;
  --lantern-cream: #F6EDDD;
  --neon-rose: #E85D75;
  --sign-mint: #4FD8B0;
  --sign-black: #1D1420;
  --tube-steel: #3A2C3E;
  --wire-grey: #4A3A48;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #F6EDDD;
  background-color: #2B1E2E;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

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

a:hover {
  color: #F6EDDD;
}

h1, h2, h3, h4 {
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.25;
  margin-top: 0;
}

/* ---------- scroll reveal (class based) ---------- */
html.js .reveal-pre {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 620ms ease, transform 620ms ease;
}

html.js .reveal-pre.is-shown {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAVIGATION — HANGING SIGN ROW
   ============================================================ */
.signrow {
  position: relative;
  background-color: #1D1420;
  border-bottom: 4px solid #3A2C3E;
  padding: 0 0 0 0;
  z-index: 40;
}

.signrow-beam {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px 10px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.brandbox {
  display: inline-flex;
  flex-direction: column;
  border: 2px solid #E85D75;
  border-radius: 4px;
  padding: 8px 16px 6px 16px;
  background-color: #241729;
  box-shadow: 0 0 12px #57202f;
}

.brandbox-line1 {
  font-family: "Georgia", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #F6EDDD;
}

.brandbox-line2 {
  font-size: 0.62rem;
  letter-spacing: 4px;
  color: #4FD8B0;
  text-transform: uppercase;
}

.bladerow {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
  padding-top: 4px;
}

.blade {
  position: relative;
  display: block;
  min-width: 92px;
  padding: 10px 14px 12px 14px;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: #F6EDDD;
  background-color: #3A2C3E;
  border-top: 5px solid #E85D75;
  border-radius: 3px;
  box-shadow: 0 4px 0 #1D1420;
}

.blade:hover {
  color: #1D1420;
  background-color: #E85D75;
}

.blade::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  width: 2px;
  height: 13px;
  background-color: #4A3A48;
  transform: translateX(-50%);
}

.blade::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  width: 10px;
  height: 3px;
  background-color: #4FD8B0;
  transform: translateX(-50%);
  border-radius: 2px;
}

.blade-alt1 { margin-top: 18px; }
.blade-alt2 { margin-top: 6px; }
.blade-alt3 { margin-top: 22px; }
.blade-alt4 { margin-top: 10px; }
.blade-alt5 { margin-top: 16px; }

.navtoggle {
  display: none;
  margin: 0 24px 12px 24px;
  background-color: #E85D75;
  color: #1D1420;
  border: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 3px;
  cursor: pointer;
}

/* ============================================================
   HERO — STREET CANYON
   ============================================================ */
.canyon {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 48px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: stretch;
}

.canyon-copy {
  flex: 1 1 55%;
  min-width: 320px;
  padding-top: 12px;
}

.canyon-kicker {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #4FD8B0;
  border: 1px solid #4FD8B0;
  border-radius: 3px;
  padding: 4px 12px;
  margin-bottom: 20px;
}

.canyon-title {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  color: #F6EDDD;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.canyon-title .neonword {
  color: #E85D75;
  text-shadow: 0 0 14px #6b2a38;
}

.canyon-lede {
  font-size: 1.03rem;
  color: #F6EDDD;
  max-width: 60ch;
  margin-bottom: 26px;
}

.doorrow {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.door {
  display: inline-flex;
  flex-direction: column;
  background-color: #E85D75;
  color: #1D1420;
  padding: 13px 26px 11px 26px;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 1px;
  border-bottom: 4px solid #8f3547;
}

.door:hover {
  background-color: #F6EDDD;
  color: #1D1420;
  border-bottom-color: #4A3A48;
}

.door-tag {
  font-size: 0.6rem;
  letter-spacing: 3px;
  font-weight: 600;
  color: #3a1420;
  margin-top: 2px;
}

.canyon-face {
  flex: 1 1 45%;
  min-width: 280px;
  position: relative;
  background-color: #1D1420;
  border: 3px solid #3A2C3E;
  border-radius: 4px;
  padding: 18px 18px 0 18px;
  overflow: hidden;
}

.face-eaves {
  height: 10px;
  background-color: #1D1420;
  border-bottom: 2px solid #4A3A48;
  margin: -18px -18px 12px -18px;
}

.face-sign {
  position: relative;
  width: 64%;
  margin: 0 auto 16px auto;
  background-color: #3A2C3E;
  border: 2px solid #E85D75;
  border-radius: 3px;
  text-align: center;
  padding: 8px 6px;
  color: #F6EDDD;
  font-family: "Georgia", serif;
  letter-spacing: 3px;
  font-size: 0.95rem;
  box-shadow: 0 0 12px #57202f;
}

.face-sign::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 2px;
  height: 12px;
  background-color: #4A3A48;
  transform: translateX(-50%);
}

.face-wire {
  position: relative;
  height: 2px;
  background-color: #4A3A48;
  margin: 0 -18px 14px -18px;
}

.lamp {
  position: absolute;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #F6EDDD;
  box-shadow: 0 0 10px #F6EDDD;
}

.lamp-a { left: 26%; }
.lamp-b { left: 72%; }

.windowgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  padding-bottom: 14px;
}

.win {
  height: 30px;
  border: 2px solid #3A2C3E;
  border-radius: 2px;
  background-color: #1D1420;
}

.win-lit { background-color: #F6EDDD; }
.win-rose { background-color: #E85D75; box-shadow: 0 0 8px #6b2a38; }
.win-mint { background-color: #4FD8B0; }

.streetfloor {
  position: relative;
  height: 58px;
  margin: 0 -18px 0 -18px;
  background-color: #1D1420;
  border-top: 3px solid #3A2C3E;
}

.lightpool {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 76%;
  height: 40px;
  transform: translateX(-50%);
  background-color: #4a3340;
  border-radius: 50% 50% 0 0;
}

.poolcore {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 40%;
  height: 24px;
  transform: translateX(-50%);
  background-color: #6e4a58;
  border-radius: 50% 50% 0 0;
}

/* ============================================================
   SHARED SECTION FURNITURE
   ============================================================ */
.pagewrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.bandhead {
  max-width: 1200px;
  margin: 0 auto;
  padding: 46px 24px 10px 24px;
}

.bandhead-kicker {
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #4FD8B0;
}

.bandhead-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #F6EDDD;
  margin: 8px 0 10px 0;
}

.bandhead-note {
  color: #F6EDDD;
  max-width: 74ch;
  font-size: 0.97rem;
}

.prose-block {
  max-width: 78ch;
  color: #F6EDDD;
}

.prose-block p {
  margin: 0 0 16px 0;
}

.prose-block h3 {
  color: #E85D75;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* ============================================================
   SHOPFRONT LIGHTBOX ROWS
   ============================================================ */
.lightboxrows {
  margin-top: 12px;
}

.bay {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 3px solid #3A2C3E;
  border-bottom: 3px solid #3A2C3E;
  margin-bottom: 14px;
  background-color: #3A2C3E;
  position: relative;
}

.bay-well {
  background-color: #241729;
}

.bay-stagger-a {
  transform: skewY(-1deg);
}

.bay-stagger-b {
  transform: skewY(1deg);
}

.bay-invert {
  background-color: #1D1420;
  border-top-color: #1D1420;
  border-bottom-color: #1D1420;
}

.bay-col {
  flex: 0 0 200px;
  background-color: #1D1420;
  border-right: 3px solid #3A2C3E;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.bay-code {
  font-family: "Georgia", serif;
  font-size: 1.4rem;
  color: #F6EDDD;
  letter-spacing: 2px;
}

.bay-tube {
  width: 54px;
  height: 4px;
  background-color: #E85D75;
  margin-top: 10px;
  border-radius: 3px;
  box-shadow: 0 0 10px #6b2a38;
}

.bay-bracket {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #4FD8B0;
  border-right: 2px solid #4FD8B0;
}

.bay-window {
  flex: 1 1 60%;
  min-width: 280px;
  padding: 24px 26px 28px 26px;
  background-color: #3A2C3E;
}

.bay-window h3 {
  color: #F6EDDD;
  font-size: 1.24rem;
  margin-bottom: 10px;
}

.bay-invert .bay-window {
  background-color: #1D1420;
}

.bay-window p {
  margin: 0 0 14px 0;
  color: #F6EDDD;
}

.bay-link {
  color: #4FD8B0;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.bay-link:hover {
  color: #E85D75;
}

.wireline {
  position: relative;
  height: 3px;
  background-color: #4A3A48;
  margin: 0 0 6px 0;
  border-radius: 2px;
  overflow: hidden;
}

.wirelit {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background-color: #4FD8B0;
}

.wire-w0 { width: 12%; }
.wire-w1 { width: 28%; }
.wire-w2 { width: 48%; }
.wire-w3 { width: 66%; }
.wire-w4 { width: 84%; }
.wire-w5 { width: 100%; }

.wattlabel {
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: #4FD8B0;
  text-align: right;
  margin-bottom: 12px;
}

/* ============================================================
   NEON MARQUEE STRIP
   ============================================================ */
.marquee {
  background-color: #E85D75;
  color: #1D1420;
  margin: 40px 0 0 0;
  padding: 0;
}

.marquee-weave {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.marquee-glyph {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #1D1420;
  border-radius: 50%;
}

.marquee-text {
  font-family: "Georgia", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1D1420;
}

.marquee-line {
  flex: 1 1 60px;
  height: 2px;
  background-color: #1D1420;
  min-width: 40px;
}

/* ============================================================
   GENERIC CONTENT SECTIONS
   ============================================================ */
.streetstretch {
  background-color: #2B1E2E;
  padding: 8px 0 0 0;
}

.streetstretch-alt {
  background-color: #241729;
  padding: 8px 0 0 0;
  border-top: 3px solid #3A2C3E;
  border-bottom: 3px solid #3A2C3E;
}

.duopanel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 24px 44px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.duopanel-main {
  flex: 1 1 58%;
  min-width: 300px;
}

.duopanel-side {
  flex: 1 1 34%;
  min-width: 260px;
  background-color: #1D1420;
  border: 3px solid #3A2C3E;
  border-top: 5px solid #E85D75;
  border-radius: 3px;
  padding: 22px 22px 18px 22px;
}

.duopanel-side h3 {
  color: #F6EDDD;
  font-size: 1.06rem;
  margin-bottom: 12px;
}

.ticklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ticklist li {
  position: relative;
  padding: 9px 0 9px 26px;
  border-bottom: 1px solid #3A2C3E;
  color: #F6EDDD;
  font-size: 0.94rem;
}

.ticklist li:last-child {
  border-bottom: none;
}

.ticklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 10px;
  background-color: #4FD8B0;
  border-radius: 2px;
}

.minisignrow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px 40px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.minisign {
  flex: 1 1 200px;
  min-width: 180px;
  background-color: #3A2C3E;
  border-left: 5px solid #E85D75;
  border-radius: 2px;
  padding: 16px 18px;
}

.minisign h4 {
  color: #F6EDDD;
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.minisign p {
  margin: 0;
  font-size: 0.9rem;
  color: #F6EDDD;
}

/* counters */
.countband {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px 30px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.countcell {
  flex: 1 1 160px;
  min-width: 150px;
  background-color: #1D1420;
  border: 2px solid #3A2C3E;
  border-radius: 3px;
  padding: 18px 16px;
  text-align: center;
}

.countnum {
  font-family: "Georgia", serif;
  font-size: 2rem;
  color: #E85D75;
  display: block;
}

.countlab {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #F6EDDD;
  margin-top: 4px;
  display: block;
}

/* accordion */
.accordion {
  max-width: 900px;
  margin: 0 auto;
  padding: 6px 24px 40px 24px;
}

.acc-item {
  border: 2px solid #3A2C3E;
  border-radius: 3px;
  margin-bottom: 12px;
  background-color: #1D1420;
  overflow: hidden;
}

.acc-btn {
  width: 100%;
  text-align: left;
  background-color: #1D1420;
  color: #F6EDDD;
  border: none;
  padding: 16px 18px;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.acc-btn:hover {
  color: #E85D75;
}

.acc-mark {
  color: #4FD8B0;
  font-weight: 700;
}

.acc-panel {
  display: none;
  padding: 0 18px 18px 18px;
  color: #F6EDDD;
  font-size: 0.94rem;
  border-top: 1px solid #3A2C3E;
}

.acc-item.is-open .acc-panel {
  display: block;
}

.acc-panel p {
  margin: 12px 0 0 0;
}

/* CTA band */
.ctaband {
  background-color: #1D1420;
  border-top: 4px solid #E85D75;
  border-bottom: 4px solid #E85D75;
  padding: 38px 24px;
  text-align: center;
}

.ctaband-title {
  color: #F6EDDD;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin: 0 0 10px 0;
}

.ctaband p {
  max-width: 62ch;
  margin: 0 auto 20px auto;
  color: #F6EDDD;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.svcrow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-left: 4px solid #3A2C3E;
  border-right: 4px solid #3A2C3E;
  margin-bottom: 14px;
  background-color: #1D1420;
}

.svcrow-num {
  flex: 0 0 90px;
  background-color: #1D1420;
  color: #E85D75;
  font-family: "Georgia", serif;
  font-size: 1.5rem;
  padding: 20px 12px;
  border-right: 3px solid #3A2C3E;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.svcrow-body {
  flex: 1 1 60%;
  min-width: 280px;
  padding: 20px 22px 22px 22px;
  background-color: #3A2C3E;
}

.svcrow-body h3 {
  color: #F6EDDD;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.svcrow-body p {
  margin: 0 0 12px 0;
  color: #F6EDDD;
}

.processline {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px 34px 24px;
}

.processstep {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid #3A2C3E;
}

.processstep:last-child {
  border-bottom: none;
}

.processstep-code {
  flex: 0 0 90px;
  color: #4FD8B0;
  font-family: "Georgia", serif;
  letter-spacing: 2px;
  font-size: 1.05rem;
}

.processstep-text {
  flex: 1 1 60%;
  min-width: 260px;
  color: #F6EDDD;
}

.processstep-text strong {
  color: #E85D75;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contactgrid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px 44px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.contactformwrap {
  flex: 1 1 56%;
  min-width: 300px;
  background-color: #1D1420;
  border: 3px solid #3A2C3E;
  border-top: 5px solid #E85D75;
  border-radius: 3px;
  padding: 24px 24px 26px 24px;
}

.contactformwrap h3 {
  color: #F6EDDD;
  margin-bottom: 4px;
}

.formnote {
  color: #4FD8B0;
  font-size: 0.86rem;
  margin-bottom: 18px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4FD8B0;
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  background-color: #2B1E2E;
  border: 2px solid #4A3A48;
  border-radius: 3px;
  color: #F6EDDD;
  font-size: 0.96rem;
  padding: 11px 12px;
  font-family: inherit;
}

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

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

.formbtn {
  background-color: #E85D75;
  color: #1D1420;
  border: none;
  border-bottom: 4px solid #8f3547;
  border-radius: 3px;
  padding: 13px 28px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
}

.formbtn:hover {
  background-color: #4FD8B0;
  border-bottom-color: #2b7a62;
}

.formstatus {
  margin-top: 14px;
  color: #4FD8B0;
  font-size: 0.9rem;
  min-height: 20px;
}

.contactside {
  flex: 1 1 34%;
  min-width: 260px;
}

.infobox {
  background-color: #3A2C3E;
  border-left: 5px solid #E85D75;
  border-radius: 3px;
  padding: 18px 20px;
  margin-bottom: 16px;
}

.infobox h4 {
  color: #F6EDDD;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.infobox p {
  margin: 0 0 6px 0;
  color: #F6EDDD;
  font-size: 0.94rem;
}

.infobox a {
  color: #4FD8B0;
}

.infobox a:hover {
  color: #E85D75;
}

.faqblock {
  max-width: 900px;
  margin: 0 auto;
  padding: 8px 24px 44px 24px;
}

.faqblock h3 {
  color: #E85D75;
  margin-bottom: 14px;
}

.faqitem {
  border-top: 1px solid #3A2C3E;
  padding: 16px 0;
}

.faqitem h4 {
  color: #F6EDDD;
  font-size: 1rem;
  margin-bottom: 6px;
}

.faqitem p {
  margin: 0;
  color: #F6EDDD;
  font-size: 0.94rem;
}

/* ============================================================
   FOOTER — METER BOX BASE
   ============================================================ */
.meterbase {
  background-color: #1D1420;
  border-top: 4px solid #3A2C3E;
  position: relative;
}

.cablerail {
  position: relative;
  height: 26px;
  background-color: #1D1420;
  border-bottom: 3px solid #3A2C3E;
}

.cable {
  position: absolute;
  top: 8px;
  height: 2px;
  background-color: #4A3A48;
}

.cable-a { left: 4%; width: 26%; }
.cable-b { left: 36%; width: 20%; }
.cable-c { left: 62%; width: 30%; }

.dial {
  position: absolute;
  top: -2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #4A3A48;
  background-color: #2B1E2E;
}

.dial-a { left: 8%; }
.dial-b { left: 44%; }
.dial-c { left: 76%; }

.dial-needle {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 1px;
  height: 4px;
  background-color: #4FD8B0;
}

.meter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 24px 20px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.meter-brand {
  flex: 1 1 30%;
  min-width: 250px;
  background-color: #3A2C3E;
  border-radius: 3px;
  padding: 18px 20px;
}

.meter-brand .mb-line1 {
  font-family: "Georgia", serif;
  color: #F6EDDD;
  letter-spacing: 2px;
  font-size: 1.05rem;
  display: block;
}

.meter-brand .mb-line2 {
  font-size: 0.62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #4FD8B0;
  display: block;
  margin: 4px 0 12px 0;
}

.meter-brand p {
  color: #F6EDDD;
  font-size: 0.9rem;
  margin: 0;
}

.meter-links {
  flex: 1 1 60%;
  min-width: 260px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
}

.meter-blade {
  flex: 0 1 auto;
  position: relative;
  background-color: #3A2C3E;
  border-top: 4px solid #E85D75;
  border-radius: 2px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #F6EDDD;
}

.meter-blade:hover {
  background-color: #E85D75;
  color: #1D1420;
}

.meter-blade::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  width: 2px;
  height: 12px;
  background-color: #4A3A48;
  transform: translateX(-50%);
}

.meter-baseedge {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 22px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  align-items: center;
  font-size: 0.84rem;
  color: #F6EDDD;
  border-top: 1px solid #3A2C3E;
  padding-top: 16px;
}

.meter-baseedge a {
  color: #4FD8B0;
}

.meter-baseedge a:hover {
  color: #E85D75;
}

.fuseglyph {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #F6EDDD;
}

.fuse-icon {
  display: inline-block;
  width: 22px;
  height: 8px;
  background-color: #E85D75;
  border-radius: 4px;
  position: relative;
}

.fuse-icon::before,
.fuse-icon::after {
  content: "";
  position: absolute;
  top: 3px;
  width: 6px;
  height: 2px;
  background-color: #4A3A48;
}

.fuse-icon::before { left: -6px; }
.fuse-icon::after { right: -6px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .canyon-copy,
  .canyon-face {
    flex: 1 1 100%;
  }

  .duopanel-main,
  .duopanel-side,
  .contactformwrap,
  .contactside {
    flex: 1 1 100%;
  }
}

@media (max-width: 720px) {
  .navtoggle {
    display: inline-block;
  }

  .bladerow {
    display: none;
    width: 100%;
  }

  .bladerow.is-open {
    display: flex;
  }

  .blade {
    flex: 1 1 44%;
    margin-top: 6px;
  }

  .bay-col {
    flex: 0 0 100%;
    border-right: none;
    border-bottom: 3px solid #3A2C3E;
  }

  .bay-stagger-a,
  .bay-stagger-b {
    transform: none;
  }
}
