/* ============================================================
   BALU ECOMMERCE LIMITED — Vintage Card Catalog Cabinet
   Cabinet-charcoal body / card-cream text / catalog-manila accent
   ============================================================ */

:root {
  --cm: #D2A24C;   /* catalog-manila accent */
  --cream: #F0E7D2; /* card-cream */
  --cabinet: #2B2E31; /* cabinet-charcoal body */
  --ink: #23241C;   /* cabinet-ink text on cream */
  --drawerd: #1B1E22; /* drawer-deep recessed well */
  --inkwell: #131519; /* deepest plinth panels */
  --brass: #9A7A38;  /* pull-brass tertiary */
  --guideline: #4A4F57; /* thin separators */
  --brasslit: #B99049; /* lit brass for hints */
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: Georgia, "Times New Roman", Cambria, serif;
  background-color: #2B2E31;
  color: #F0E7D2;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

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

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: "Trebuchet MS", Verdana, Geneva, sans-serif;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= DRAWER FACE HEADER ================= */

.drawerface {
  background-color: #1B1E22;
  border-bottom: 3px solid #9A7A38;
  padding: 18px 22px 0;
}

.drawerface-inner {
  max-width: 1160px;
  margin: 0 auto;
}

/* Riveted brass brand plate */
.brandplate {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background-color: #9A7A38;
  border: 2px solid #6E5726;
  border-radius: 6px;
  padding: 9px 22px 9px 18px;
  box-shadow: 0 4px 0 #131519, inset 0 1px 0 #C9A45C;
  position: relative;
  margin-bottom: 20px;
}

.brandplate-screw {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #E4CD92;
  border: 2px solid #5C4A20;
  box-shadow: inset 0 0 0 2px #8A6C30;
  flex: 0 0 auto;
}

.brandplate-name {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: bold;
  font-size: 1.45rem;
  letter-spacing: 0.24em;
  color: #23241C;
  text-transform: uppercase;
}

.brandplate-sub {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: #23241C;
  text-transform: uppercase;
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

/* Mobile drawer nav toggle */
.drawer-nav-toggle {
  display: none;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.76rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background-color: #D2A24C;
  color: #23241C;
  border: 2px solid #B99049;
  border-radius: 4px;
  padding: 9px 18px;
  cursor: pointer;
  margin-bottom: 14px;
}

/* The five drawer fronts */
.drawer-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: end;
}

.drawer-front {
  background-color: #2B2E31;
  border: 2px solid #3C4045;
  border-bottom: 6px solid #171A1E;
  border-radius: 5px 5px 3px 3px;
  padding: 20px 10px 14px;
  text-align: center;
  position: relative;
  box-shadow: inset 0 2px 0 #3A3E43, 0 3px 6px #131519;
}

.drawer-front.d1 { height: 108px; }
.drawer-front.d2 { height: 122px; margin-bottom: 8px; }
.drawer-front.d3 { height: 100px; }
.drawer-front.d4 { height: 118px; margin-bottom: 5px; }
.drawer-front.d5 { height: 110px; }

/* Cup pull: shadowed brass arc */
.cuppull {
  display: block;
  width: 52px;
  height: 24px;
  margin: 0 auto 10px;
  border-radius: 0 0 26px 26px;
  border: 3px solid #9A7A38;
  border-top: none;
  background-color: #1B1E22;
  box-shadow: inset 0 -5px 6px #131519, 0 2px 0 #0E1013;
}

/* Brass label frame with link */
.labelframe {
  display: block;
  background-color: #F0E7D2;
  border: 2px solid #9A7A38;
  border-radius: 2px;
  padding: 5px 6px;
  box-shadow: inset 0 0 0 1px #C7B98F;
}

.labelframe a {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #23241C;
  display: block;
}

.labelframe a:hover {
  text-decoration: underline;
  color: #1B1E22;
}

.labelframe.is-current {
  background-color: #D2A24C;
  border-color: #6E5726;
}

/* ================= OPEN DRAWER HERO ================= */

.opendrawer {
  background-color: #2B2E31;
  border-bottom: 1px solid #4A4F57;
  padding: 62px 22px 76px;
  position: relative;
}

.opendrawer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  align-items: center;
}

.opendrawer-copy h1 {
  font-size: 3rem;
  color: #F0E7D2;
  margin-bottom: 8px;
}

.opendrawer-copy h1 .hl {
  color: #D2A24C;
}

.opendrawer-kicker {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D2A24C;
  margin-bottom: 18px;
  border-left: 4px solid #9A7A38;
  padding-left: 12px;
}

.opendrawer-copy p {
  font-size: 1.06rem;
  margin-bottom: 16px;
  color: #EFE6D0;
  max-width: 620px;
}

.opendrawer-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.pullbtn {
  display: inline-block;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: bold;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 26px 26px 6px 6px;
  border: 3px solid #B99049;
  background-color: #D2A24C;
  color: #23241C;
  box-shadow: 0 4px 0 #6E5726, inset 0 2px 0 #E6C888;
}

.pullbtn:hover {
  background-color: #E0B666;
  text-decoration: none;
}

.pullbtn.pullbtn-ghost {
  background-color: #1B1E22;
  color: #F0E7D2;
  border-color: #9A7A38;
  box-shadow: 0 4px 0 #131519, inset 0 2px 0 #3A3E43;
}

.pullbtn.pullbtn-ghost:hover {
  background-color: #23241C;
  color: #F0E7D2;
}

/* The open drawer assembly */
.drawerrig {
  position: relative;
  padding-top: 44px;
}

/* cabinet top with pencil + paper fastener */
.cabinettop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 26px;
  background-color: #23241C;
  border: 2px solid #4A4F57;
  border-radius: 4px 4px 0 0;
  box-shadow: inset 0 3px 0 #34373C;
}

.pencil {
  position: absolute;
  top: -9px;
  right: 30px;
  width: 92px;
  height: 9px;
  background-color: #D2A24C;
  border: 1px solid #6E5726;
  border-radius: 3px;
  transform: rotate(-8deg);
  box-shadow: inset 0 1px 0 #E6C888;
}

.pencil::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #EDE3CC;
}

.fastener {
  position: absolute;
  top: -8px;
  right: 148px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #9A7A38;
  border: 2px solid #5C4A20;
  box-shadow: inset 0 0 0 3px #B99049, 0 2px 3px #131519;
}

.fastener::after {
  content: "";
  position: absolute;
  left: 4px;
  top: -3px;
  width: 3px;
  height: 12px;
  background-color: #B99049;
  transform: rotate(38deg);
}

/* The pulled-out drawer body */
.drawerbody {
  position: relative;
  background-color: #1B1E22;
  border: 3px solid #3C4045;
  border-radius: 6px;
  box-shadow: 0 10px 24px #131519;
  padding: 20px 18px 26px;
}

/* interior well */
.drawerwell {
  position: relative;
  background-color: #131519;
  border-radius: 4px;
  padding: 22px 16px 20px;
  min-height: 300px;
  box-shadow: inset 0 8px 18px #0A0C0E;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  overflow: hidden;
}

/* guide frame inside the well */
.guideframe {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 40px;
  bottom: 14px;
  border: 2px solid #9A7A38;
  border-radius: 3px;
  pointer-events: none;
}

.guideframe::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 33%;
  border-top: 1px solid #6E5726;
}

/* standing index cards */
.icard {
  position: relative;
  flex: 1 1 0;
  background-color: #F0E7D2;
  border: 1px solid #C7B98F;
  border-radius: 2px;
  box-shadow: 0 5px 12px #0A0C0E;
  padding: 22px 7px 10px;
  z-index: 2;
}

.icard .tab {
  position: absolute;
  top: -12px;
  width: 46%;
  height: 14px;
  background-color: #D2A24C;
  border: 1px solid #8A6C30;
  border-radius: 3px 3px 0 0;
}

.icard .tab.tl { left: 6px; }
.icard .tab.tr { right: 6px; }

.icard.c1 { height: 150px; }
.icard.c2 { height: 190px; margin-bottom: 22px; }
.icard.c3 { height: 130px; }
.icard.c4 { height: 205px; margin-bottom: 34px; }
.icard.c5 { height: 165px; }

.icard.c2 .tab,
.icard.c4 .tab {
  background-color: #D2A24C;
  height: 17px;
  top: -15px;
}

.icard.pulled {
  transform: translateY(-26px);
  z-index: 4;
  box-shadow: 0 12px 20px #0A0C0E;
}

.ruled {
  display: block;
  height: 2px;
  background-color: #C7B98F;
  margin: 0 0 11px;
}

.ruled.s1 { width: 84%; }
.ruled.s2 { width: 68%; }
.ruled.s3 { width: 76%; }
.ruled.s4 { width: 56%; }

.icard .stampno {
  position: absolute;
  bottom: 5px;
  right: 6px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.56rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #8A6C30;
}

/* drawer front with cup pull */
.drawerfaceplate {
  margin-top: 14px;
  background-color: #2B2E31;
  border: 2px solid #3C4045;
  border-bottom: 5px solid #171A1E;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
}

.drawerfaceplate .cuppull {
  margin-bottom: 0;
}

/* ================= SECTION SHELLS ================= */

.cardrun-sec {
  padding: 72px 22px 84px;
  background-color: #2B2E31;
}

.section-head {
  max-width: 1160px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-head h2 {
  font-size: 2.1rem;
  color: #F0E7D2;
  margin-bottom: 10px;
}

.section-head .kicker {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #D2A24C;
  margin-bottom: 14px;
}

.section-head p {
  max-width: 720px;
  margin: 0 auto;
  color: #E6DCC4;
}

/* ================= CARD RUN ================= */

.cardrun {
  max-width: 1160px;
  margin: 0 auto;
}

.rodrail {
  position: relative;
  height: 10px;
  background-color: #9A7A38;
  border-radius: 5px;
  margin: 0 0 44px;
  box-shadow: 0 2px 0 #5C4A20, inset 0 2px 0 #B99049;
}

.rodrail.rr-lower {
  margin-top: 96px;
}

.rodrail-label {
  position: absolute;
  top: -13px;
  right: 0;
  background-color: #131519;
  color: #D2A24C;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.62rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 12px;
  border: 1px solid #9A7A38;
  border-radius: 3px;
}

.runrow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.runrow.row-b {
  margin-left: 60px;
}

.dcard {
  position: relative;
  background-color: #F0E7D2;
  border: 1px solid #C7B98F;
  border-radius: 3px;
  padding: 30px 20px 20px;
  box-shadow: 0 8px 18px #131519;
  color: #23241C;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.dcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 24px #0E1013;
}

.dcard.tilt-l { transform: rotate(-1deg); }
.dcard.tilt-l:hover { transform: rotate(-1deg) translateY(-6px); }
.dcard.tilt-r { transform: rotate(1deg); }
.dcard.tilt-r:hover { transform: rotate(1deg) translateY(-6px); }

.dcard-tab {
  position: absolute;
  top: -15px;
  background-color: #D2A24C;
  border: 1px solid #8A6C30;
  border-radius: 4px 4px 0 0;
  padding: 3px 12px;
}

.dcard-tab.tab-left { left: 16px; }
.dcard-tab.tab-right { right: 16px; }

.dcard-tab h3 {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: #23241C;
  text-transform: uppercase;
}

.dcard .svcno {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.66rem;
  font-weight: bold;
  letter-spacing: 0.16em;
  color: #8A6C30;
}

.dcard p {
  font-size: 0.95rem;
  color: #23241C;
  margin-bottom: 26px;
}

.dcard .cardlink {
  display: inline-block;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6E5726;
  border-bottom: 2px solid #9A7A38;
}

.dcard-int-stamp {
  display: inline-block;
  margin-top: 4px;
  border: 2px dashed #6E5726;
  border-radius: 4px;
  padding: 3px 10px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.6rem;
  font-weight: bold;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6E5726;
  transform: rotate(-3deg);
}

/* ================= NEW ACCESSIONS ACCENT STRIP ================= */

.newaccessions {
  background-color: #D2A24C;
  border-top: 4px solid #9A7A38;
  border-bottom: 4px solid #9A7A38;
  padding: 30px 22px;
  color: #23241C;
}

.newaccessions-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.accession-tag {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background-color: #23241C;
  color: #D2A24C;
  padding: 7px 14px;
  border-radius: 3px;
  flex: 0 0 auto;
}

.newaccessions p {
  font-size: 1.06rem;
  font-weight: bold;
  color: #23241C;
  flex: 1 1 340px;
}

.accession-cta {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.76rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: #23241C;
  color: #F0E7D2;
  padding: 12px 22px;
  border-radius: 4px;
  border: 2px solid #6E5726;
  flex: 0 0 auto;
}

.accession-cta:hover {
  background-color: #131519;
  color: #D2A24C;
  text-decoration: none;
}

/* ================= HOMEPAGE INFO BLOCKS ================= */

.infoband {
  padding: 74px 22px;
  background-color: #2B2E31;
}

.infoband.alt {
  background-color: #1B1E22;
  border-top: 1px solid #4A4F57;
  border-bottom: 1px solid #4A4F57;
}

.infoband-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.infoband-inner h2 {
  font-size: 1.9rem;
  color: #F0E7D2;
  margin-bottom: 16px;
}

.infoband-inner h2 .hl {
  color: #D2A24C;
}

.infoband-inner p {
  color: #EAE0C8;
  margin-bottom: 15px;
}

.infoband-inner a.inline {
  color: #D2A24C;
  font-weight: bold;
  border-bottom: 2px solid #9A7A38;
}

/* ruled cream notice card */
.noticecard {
  background-color: #F0E7D2;
  border: 2px solid #9A7A38;
  border-radius: 4px;
  padding: 26px 24px;
  color: #23241C;
  box-shadow: 0 8px 18px #131519;
}

.noticecard h3 {
  font-size: 1.1rem;
  color: #23241C;
  margin-bottom: 14px;
  border-bottom: 2px solid #D2A24C;
  padding-bottom: 8px;
}

.noticecard ul {
  list-style: none;
}

.noticecard li {
  padding: 9px 0 9px 26px;
  border-bottom: 1px solid #C7B98F;
  position: relative;
  color: #23241C;
  font-size: 0.95rem;
}

.noticecard li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 16px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #9A7A38;
  border: 2px solid #6E5726;
}

/* fact rows on inkwell panel */
.factpanel {
  background-color: #131519;
  border: 2px solid #4A4F57;
  border-radius: 5px;
  padding: 28px 26px;
  color: #F0E7D2;
}

.factpanel h3 {
  font-size: 1.05rem;
  color: #D2A24C;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.factrow {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid #4A4F57;
  font-size: 0.94rem;
}

.factrow span:first-child {
  color: #B9AF96;
}

.factrow span:last-child {
  color: #F0E7D2;
  font-weight: bold;
  text-align: right;
}

/* three pinned cream cards (process) */
.processrack {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pullcard {
  background-color: #F0E7D2;
  border: 2px solid #C7B98F;
  border-radius: 4px;
  padding: 30px 22px 24px;
  color: #23241C;
  box-shadow: 0 8px 18px #131519;
  position: relative;
}

.pullcard .step {
  position: absolute;
  top: -16px;
  left: 20px;
  background-color: #9A7A38;
  color: #F0E7D2;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  padding: 4px 12px;
  border-radius: 3px;
  border: 1px solid #5C4A20;
}

.pullcard h3 {
  font-size: 1.05rem;
  color: #23241C;
  margin: 8px 0 12px;
}

.pullcard p {
  color: #23241C;
  font-size: 0.94rem;
}

/* stat counters */
.counterband {
  background-color: #1B1E22;
  border-top: 1px solid #4A4F57;
  border-bottom: 1px solid #4A4F57;
  padding: 54px 22px;
}

.counterband-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: center;
}

.counterbox {
  border-left: 3px solid #9A7A38;
  padding: 10px 10px 10px 20px;
  text-align: left;
}

.counterbox .num {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #D2A24C;
}

.counterbox .lbl {
  display: block;
  color: #EAE0C8;
  font-size: 0.9rem;
  margin-top: 4px;
}

/* FAQ accordions */
.faqwrap {
  max-width: 900px;
  margin: 0 auto;
}

.faqitem {
  background-color: #F0E7D2;
  border: 2px solid #C7B98F;
  border-radius: 4px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faqq {
  width: 100%;
  text-align: left;
  background-color: #F0E7D2;
  border: none;
  padding: 18px 20px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #23241C;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.faqq:hover {
  background-color: #E6DCC4;
}

.faqq .mark {
  color: #8A6C30;
  font-size: 1.3rem;
  line-height: 1;
}

.faqa {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
  background-color: #F0E7D2;
}

.faqa-inner {
  padding: 4px 20px 20px;
  color: #23241C;
  border-top: 1px solid #C7B98F;
  font-size: 0.95rem;
}

.faqitem.open .faqa {
  max-height: 460px;
}

/* ================= CONTACT FORM ================= */

.contactgrid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 44px;
  align-items: start;
}

.formcard {
  background-color: #F0E7D2;
  border: 2px solid #9A7A38;
  border-radius: 5px;
  padding: 32px 28px;
  color: #23241C;
  box-shadow: 0 8px 18px #131519;
}

.formcard h2 {
  color: #23241C;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.formcard .formnote {
  color: #5C5236;
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.76rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #23241C;
  margin-bottom: 6px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: Georgia, serif;
  font-size: 0.98rem;
  padding: 12px 13px;
  border: 2px solid #C7B98F;
  border-radius: 3px;
  background-color: #FBF7EC;
  color: #23241C;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 3px solid #D2A24C;
  border-color: #9A7A38;
}

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

.formsubmit {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.84rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: #D2A24C;
  color: #23241C;
  border: 3px solid #B99049;
  border-radius: 24px 24px 6px 6px;
  padding: 14px 34px;
  cursor: pointer;
  box-shadow: 0 4px 0 #6E5726;
}

.formsubmit:hover {
  background-color: #E0B666;
}

.formstatus {
  margin-top: 16px;
  font-weight: bold;
  color: #5C5236;
  min-height: 20px;
}

.contactaside {
  background-color: #131519;
  border: 2px solid #4A4F57;
  border-radius: 5px;
  padding: 28px 26px;
  color: #F0E7D2;
}

.contactaside h3 {
  color: #D2A24C;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.contactaside p {
  color: #EAE0C8;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.contactaside a {
  color: #D2A24C;
  font-weight: bold;
}

.hourrow {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #4A4F57;
  font-size: 0.92rem;
  color: #EAE0C8;
}

/* generic content page intro */
.pageintro {
  background-color: #1B1E22;
  border-bottom: 3px solid #9A7A38;
  padding: 66px 22px;
}

.pageintro-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.pageintro h1 {
  font-size: 2.6rem;
  color: #F0E7D2;
  margin-bottom: 14px;
}

.pageintro h1 .hl {
  color: #D2A24C;
}

.pageintro p {
  max-width: 760px;
  color: #EAE0C8;
  font-size: 1.06rem;
}

.crumb {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #D2A24C;
  margin-bottom: 14px;
}

/* services process list */
.processlist {
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  counter-reset: stepno;
}

.processlist li {
  position: relative;
  background-color: #F0E7D2;
  color: #23241C;
  border: 2px solid #C7B98F;
  border-radius: 4px;
  padding: 24px 26px 22px 66px;
  margin-bottom: 18px;
  box-shadow: 0 6px 14px #131519;
}

.processlist li::before {
  counter-increment: stepno;
  content: counter(stepno);
  position: absolute;
  left: 20px;
  top: 22px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #9A7A38;
  color: #F0E7D2;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: bold;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #5C4A20;
}

.processlist li h3 {
  color: #23241C;
  font-size: 1.08rem;
  margin-bottom: 7px;
}

.processlist li p {
  color: #23241C;
  font-size: 0.95rem;
}

/* services long-form blocks */
.svcblock {
  max-width: 1160px;
  margin: 0 auto;
}

.svcblock-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 2px solid #4A4F57;
}

.svcblock-item:last-child {
  border-bottom: none;
}

.svcblock-item .svcleft h3 {
  color: #D2A24C;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.svcblock-item .svcleft .svcno {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 0.18em;
  color: #8A6C30;
}

.svcblock-item .svcright p {
  color: #EAE0C8;
  margin-bottom: 12px;
  font-size: 0.98rem;
}

/* CTA band */
.ctaband {
  background-color: #D2A24C;
  border-top: 4px solid #9A7A38;
  border-bottom: 4px solid #9A7A38;
  padding: 52px 22px;
  text-align: center;
  color: #23241C;
}

.ctaband h2 {
  color: #23241C;
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.ctaband p {
  color: #23241C;
  max-width: 700px;
  margin: 0 auto 24px;
  font-size: 1.04rem;
}

.ctaband .pullbtn {
  background-color: #23241C;
  color: #F0E7D2;
  border-color: #131519;
  box-shadow: 0 4px 0 #131519, inset 0 2px 0 #3A3E43;
}

.ctaband .pullbtn:hover {
  background-color: #131519;
  color: #D2A24C;
  text-decoration: none;
}

/* ================= FLOOR GUIDE FOOTER ================= */

.floorguide {
  background-color: #1B1E22;
  border-top: 4px solid #9A7A38;
  padding: 56px 22px 30px;
}

.floorguide-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.floorguide-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  margin-bottom: 34px;
}

.fglabelrack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-content: start;
}

.fgframe {
  background-color: #131519;
  border: 2px solid #9A7A38;
  border-radius: 4px;
  padding: 16px 14px;
  box-shadow: inset 0 2px 0 #34373C;
}

.fgframe h4 {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D2A24C;
  margin-bottom: 12px;
  border-bottom: 1px solid #4A4F57;
  padding-bottom: 7px;
}

.fgframe ul {
  list-style: none;
}

.fgframe li {
  margin-bottom: 9px;
}

.fgframe a {
  color: #F0E7D2;
  font-size: 0.9rem;
}

.fgframe a:hover {
  color: #D2A24C;
}

.fgbrand {
  background-color: #F0E7D2;
  border: 2px solid #9A7A38;
  border-radius: 4px;
  padding: 22px 22px 20px;
  color: #23241C;
  box-shadow: 0 8px 16px #0E1013;
}

.fgbrand h3 {
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #23241C;
  margin-bottom: 10px;
}

.fgbrand p {
  color: #23241C;
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.fgplinth {
  background-color: #131519;
  border: 2px solid #4A4F57;
  border-radius: 4px;
  padding: 20px 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  align-items: center;
  justify-content: space-between;
}

.fgplinth .fgline {
  color: #EAE0C8;
  font-size: 0.9rem;
}

.fgplinth .fgline strong {
  color: #F0E7D2;
}

.fgplinth a {
  color: #D2A24C;
}

.pullglyph {
  display: inline-block;
  width: 40px;
  height: 18px;
  border-radius: 0 0 20px 20px;
  border: 3px solid #9A7A38;
  border-top: none;
  background-color: #1B1E22;
  box-shadow: inset 0 -4px 5px #0A0C0E;
  vertical-align: middle;
}

.fgcopy {
  text-align: center;
  color: #B9AF96;
  font-size: 0.84rem;
  margin-top: 22px;
  border-top: 1px solid #4A4F57;
  padding-top: 18px;
}

/* ================= MOBILE ================= */

@media (max-width: 940px) {
  .opendrawer-inner {
    grid-template-columns: 1fr;
  }
  .infoband-inner {
    grid-template-columns: 1fr;
  }
  .contactgrid {
    grid-template-columns: 1fr;
  }
  .floorguide-top {
    grid-template-columns: 1fr;
  }
  .svcblock-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 720px) {
  .drawer-nav-toggle {
    display: inline-block;
  }
  .drawer-row {
    display: none;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 14px;
  }
  .drawer-row.is-open {
    display: grid;
  }
  .drawer-front.d2,
  .drawer-front.d4 {
    margin-bottom: 0;
  }
  .opendrawer-copy h1 {
    font-size: 2.15rem;
  }
  .runrow,
  .processrack,
  .counterband-inner {
    grid-template-columns: 1fr;
  }
  .runrow.row-b {
    margin-left: 0;
  }
  .rodrail.rr-lower {
    margin-top: 40px;
  }
  .fglabelrack {
    grid-template-columns: 1fr;
  }
  .brandplate-name {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
  }
}
