/* BSL BUYTECH LLC - Buyback Counter at a Tech Shop theme stylesheet */
/* Palette: PAD-WHITE #FBFAF4, TEST-MINT #5E8C7B, OFFER-CLAY #B6673F, SCALE-STEEL #7C8480,
   BENCH-TAN #E4DCC9, STOCKROOM-NIGHT #23281F, ledger-cream body #F3F0E7, fixture-ink #2E3230 */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  color: #2E3230;
  background-color: #F3F0E7;
  line-height: 1.7;
  overflow-x: hidden;
}

.site-wrap {
  overflow-x: hidden;
}

a {
  color: #5E8C7B;
}

img {
  max-width: 100%;
}

/* ============ PRICE-RAIL NAV ============ */
.navshell {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #FBFAF4;
  border-bottom: 1px solid #E4DCC9;
}

/*** top chip strip ***/
.pricerail .chipstrip {
  background-color: #23281F;
  height: 20px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 10px;
  overflow: hidden;
}

.pricerail .chipstrip .tick {
  width: 4px;
  height: 6px;
  background-color: #7C8480;
  margin-right: 6px;
}

.pricerail .chipstrip .chiprail {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricerail .pricechip {
  background-color: #B6673F;
  border-radius: 8px;
  color: #FBFAF4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 1px 10px 1px 6px;
  position: relative;
}

.pricerail .pricechip::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #FBFAF4;
  box-shadow: 0 5px 0 #FBFAF4, 0 10px 0 #FBFAF4;
}

.pricerail .stripnote {
  color: #7C8480;
  font-size: 10px;
  margin-left: auto;
  letter-spacing: 1px;
  display: block;
}

/*** main bar ***/
.pricerail .pricebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 28px;
  border-bottom: 3px solid #7C8480;
  position: relative;
  flex-wrap: wrap;
}

.pricerail .brandbox {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricerail .brand-glyph {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: #5E8C7B;
  position: relative;
  flex: 0 0 auto;
}

.pricerail .realmint {
  position: absolute;
  left: 3px;
  top: 3px;
  right: 3px;
  bottom: 10px;
  background-color: #5E8C7B;
  border: 1px solid #2E3230;
}

.pricerail .probe {
  position: absolute;
  right: 6px;
  top: 2px;
  width: 8px;
  height: 26px;
  background-color: #23281F;
  border-radius: 4px;
}

.pricerail .probe::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 27px;
  width: 4px;
  height: 5px;
  border-radius: 0 0 3px 3px;
  background-color: #B6673F;
}

.pricerail .dot1 {
  position: absolute;
  left: 6px;
  top: 18px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #FBFAF4;
}

.pricerail .dot2 {
  position: absolute;
  left: 12px;
  top: 18px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #FBFAF4;
}

.pricerail .brandtype .bname {
  font-size: 22px;
  font-weight: 700;
  color: #2E3230;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.pricerail .brandtype .bsub {
  font-size: 11px;
  color: #5E8C7B;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.pricerail .navtabs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pricerail .navtab {
  display: block;
  background-color: #FBFAF4;
  border: 1px solid #E4DCC9;
  border-right: none;
  color: #2E3230;
  text-decoration: none;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  font-family: Georgia, "Times New Roman", serif;
  position: relative;
  border-left: 1px solid #7C8480;
  border-top: 3px solid transparent;
  border-bottom: 3px solid #B6673F;
}

.pricerail .navtab:hover {
  color: #B6673F;
}

.pricerail .navtab-chips {
  background-color: #B6673F;
  color: #FBFAF4;
  border-color: #B6673F;
  border-bottom: 3px solid #B6673F;
}

.pricerail .navtab-chips:hover {
  color: #FBFAF4;
  background-color: #a05a34;
}

.pricerail .chip-tagged .ct {
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
}

.pricerail .navtoggle {
  display: none;
  background-color: #5E8C7B;
  border: 0;
  color: #FBFAF4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.pricerail .nav-drawer {
  display: none;
  flex-direction: column;
  background-color: #FBFAF4;
  border-top: 1px solid #E4DCC9;
  padding: 8px 16px 14px;
}

@media (max-width: 780px) {
  .pricerail .navtabs {
    display: none;
  }
  .pricerail .navtoggle {
    display: block;
  }
  .pricerail .nav-drawer.open {
    display: flex;
  }
  .pricerail .navtab {
    border-right: 1px solid #E4DCC9;
  }
  .pricerail .chipstrip .stripnote {
    display: none;
  }
}

/* ============ COUNTER-SCALE HERO ============ */
.counterscale {
  background-color: #FBFAF4;
}

.counterscale .stage {
  background-color: #F3F0E7;
  text-align: center;
  padding: 70px 28px 30px;
}

.counterscale .era-eyebrow {
  color: #5E8C7B;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

.counterscale .scene {
  background-color: #23281F;
  color: #FBFAF4;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.counterscale h1.hero-head {
  font-size: 56px;
  line-height: 1.12;
  color: #2E3230;
  max-width: 850px;
  margin: 0 auto 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.counterscale h1.hero-head .mintword {
  color: #5E8C7B;
}

.counterscale h1.hero-head .clayword {
  color: #B6673F;
}

.counterscale .hero-lede {
  max-width: 680px;
  margin: 0 auto 20px;
  color: #3a3f3b;
  font-size: 19px;
  line-height: 1.6;
}

.counterscale .hero-lede a {
  color: #5E8C7B;
  font-weight: 700;
}

/* counter band */
.pricerail-band {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 26px 20px;
  background-color: #FBFAF4;
  border-bottom: 4px solid #E4DCC9;
}

.scaletray {
  background-color: #E4DCC9;
  border-radius: 14px;
  padding: 14px 18px;
  min-width: 200px;
}

.scaletray .scale-title {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #5E8C7B;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.pole {
  height: 34px;
  width: 4px;
  background-color: #7C8480;
  margin: 0 auto 6px;
}

.arm {
  height: 4px;
  background-color: #7C8480;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.arm .laptop {
  width: 40px;
  height: 24px;
  background-color: #2E3230;
  border-radius: 3px;
  transform: rotate(-8deg);
}

.arm .laptop::before {
  content: "";
  display: block;
  width: 34px;
  height: 10px;
  background-color: #5E8C7B;
  margin: 3px auto;
  border-radius: 2px;
}

.arm .pricesides {
  display: flex;
  align-items: center;
  gap: 3px;
  transform: rotate(8deg);
}

.arm .tiny-chip {
  background-color: #B6673F;
  width: 12px;
  height: 18px;
  border-radius: 3px;
}

.benchtray {
  background-color: #E4DCC9;
  border-radius: 14px;
  padding: 14px 18px;
  min-width: 200px;
}

.benchtray .bench-title {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #5E8C7B;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.mintmat {
  background-color: #5E8C7B;
  border-radius: 10px;
  padding: 10px;
  position: relative;
  height: 56px;
}

.phone-out {
  width: 34px;
  height: 54px;
  background-color: #2E3230;
  border-radius: 6px;
  display: block;
}

.phone-out::after {
  content: "";
  display: block;
  width: 18px;
  height: 4px;
  background-color: #FBFAF4;
  margin: 8px auto;
}

.probe2 {
  position: absolute;
  right: 6px;
  top: 0;
  width: 6px;
  height: 20px;
  background-color: #7C8480;
  border: 1px solid #2E3230;
  transform: rotate(15deg);
}

.gradestamp {
  position: absolute;
  left: 4px;
  bottom: 4px;
  background-color: #B6673F;
  color: #FBFAF4;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: 1px;
  transform: rotate(-6deg);
}

.wirerail {
  background-color: #E4DCC9;
  border-radius: 14px;
  padding: 14px 18px;
  min-width: 220px;
}

.wirerail .clip-title {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #5E8C7B;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.slip-line {
  display: flex;
  justify-content: center;
  gap: 14px;
  align-items: flex-end;
  height: 64px;
}

.slip {
  background-color: #FBFAF4;
  border: 1px solid #7C8480;
  width: 52px;
  text-align: center;
  font-size: 9px;
  color: #2E3230;
  padding: 4px 2px;
}

.slip.s1 {
  height: 46px;
  transform: translateY(6px);
  border-bottom: 3px solid #B6673F;
}

.slip.s2 {
  height: 58px;
  border-bottom: 3px solid #5E8C7B;
}

.slip.s3 {
  height: 40px;
  transform: translateY(14px);
  border-bottom: 3px solid #7C8480;
}

.slip .s-code {
  display: block;
  font-family: "Courier New", monospace;
  color: #B6673F;
}

.slip .s-cat {
  display: block;
  color: #5E8C7B;
}

.slip .s-rock {
  color: #2E3230;
}

/* kick strip */
.kickstrip {
  background-color: #23281F;
  padding: 26px 24px;
  display: flex;
  justify-content: center;
  gap: 8px 60px;
  flex-wrap: wrap;
}

.kickstrip .statcol {
  text-align: center;
}

.kickstrip .statnum {
  font-size: 34px;
  font-weight: 700;
  color: #FBFAF4;
  line-height: 1;
}

.kickstrip .statlabel {
  display: block;
  font-size: 13px;
  color: #7C8480;
  margin-top: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.kickstrip .clay-sep {
  width: 1px;
  background-color: #B6673F;
  align-self: center;
  height: 44px;
}

/* ============ SECTION GENERIC ============ */
.homeband {
  background-color: #F3F0E7;
  padding: 56px 28px;
}

.homeband .bandinner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 16px;
}

.homeband h2.kicker {
  font-size: 13px;
  color: #B6673F;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-align: center;
}

.homeband h3.bigline {
  font-size: 34px;
  color: #2E3230;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.25;
}

/* ============ INTAKE LEDGER ROWS ============ */
.ledgerband {
  background-color: #F3F0E7;
  padding: 60px 24px 20px;
}

.ledgerband .ledger-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.intake-row {
  background-color: #FBFAF4;
  border: 1px solid #E4DCC9;
  position: relative;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 26px 28px;
  align-items: flex-start;
}

.intake-row.n-right {
  margin-left: 44px;
}

.intake-row .perfedge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14px;
  height: 100%;
}

.intake-row.perf-left .perfedge {
  left: -1px;
  border-left: 1px dashed #7C8480;
  background-image: radial-gradient(circle, #7C8480 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  background-position: center;
}

.intake-row.perf-right .perfedge {
  right: -1px;
  border-right: 1px dashed #7C8480;
}

@media (max-width: 600px) {
  .intake-row.n-right, .intake-row.n-left {
    margin-left: 0;
  }
}

.intake-row .intake-code {
  font-family: "Courier New", monospace;
  background-color: #23281F;
  color: #FBFAF4;
  padding: 4px 10px;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 14px;
  flex-shrink: 0;
}

.intake-row .cat-chip {
  display: inline-block;
  background-color: #5E8C7B;
  color: #FBFAF4;
  font-family: "Courier New", monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

.intake-row .row-body {
  flex: 1;
}

.intake-row .row-body h4 {
  font-size: 24px;
  color: #2E3230;
  margin-bottom: 6px;
  line-height: 1.2;
}

.intake-row .row-body p {
  color: #3a3f3b;
}

.intake-row .row-body a.details {
  display: inline-block;
  margin-top: 10px;
  color: #B6673F;
  font-weight: 700;
  text-decoration: underline;
}

.intake-row .grade-tag {
  position: absolute;
  right: 18px;
  top: -14px;
  background-color: #B6673F;
  color: #FBFAF4;
  font-size: 14px;
  font-weight: 700;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #23281F;
  box-sizing: content-box;
}

.intake-row .rev-label {
  position: absolute;
  left: 18px;
  top: -14px;
  background-color: #7C8480;
  color: #FBFAF4;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 12px;
}

.intake-row .rev-label.qualqr {
  background-color: #B6673F;
  color: #FBFAF4;
}

.intake-row .revault-label {
  position: absolute;
  left: 18px;
  top: -14px;
  background-color: #23281F;
  color: #FBFAF4;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 12px;
}

/* statement row */
.pledgeband {
  background-color: #5E8C7B;
  padding: 56px 24px;
  text-align: center;
}

.pledgeband .pled-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 16px;
}

.pledgeband .hugenum {
  font-size: 74px;
  font-weight: 700;
  color: #FBFAF4;
  line-height: 1;
  letter-spacing: 1px;
}

.pledgeband .pledtext {
  margin-top: 10px;
  font-size: 22px;
  color: #FBFAF4;
  font-weight: 400;
}

.pledgeband .pledtext strong {
  color: #FBFAF4;
}

/* ============ GRADE-LINE FLOW ============ */
.gradeline {
  background-color: #E4DCC9;
  padding: 60px 24px 50px;
}

.gradeline .gl-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

.bench-rail {
  position: relative;
  background-color: #FBFAF4;
  border: 2px solid #7C8480;
  border-radius: 12px;
  padding: 16px;
}

.rail-line {
  position: relative;
  height: 6px;
  background-color: #7C8480;
  margin: 110px 24px 20px;
  border-radius: 3px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.stations {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.stop-station {
  text-align: center;
}

.stop-plate {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  background-color: #2E3230;
  color: #FBFAF4;
  border-radius: 50%;
  border: 4px solid #5E8C7B;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.stop-plate .stepnum {
  font-size: 20px;
  line-height: 1;
}

.stop-plate .stepname {
  font-size: 9px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.stop-text {
  font-size: 14px;
  color: #3a3f3b;
  max-width: 170px;
  margin: 0 auto;
}

.stop-text b {
  color: #2E3230;
}

.returndash {
  text-align: center;
  margin-top: 26px;
  font-size: 13px;
  color: #7C8480;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.returndash .dashmark {
  color: #B6673F;
  letter-spacing: 4px;
}

.probe-marker {
  position: absolute;
  top: -6px;
  animation: sweep 7s infinite alternate ease-in-out;
}

.probe-marker .probe-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #B6673F;
  border: 3px solid #2E3230;
}

@keyframes sweep {
  0% { left: 0; }
  100% { left: calc(100% - 16px); }
}

@media (max-width: 700px) {
  .stations {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* compact grade stations used on services */
.mini-stations {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.station-mini {
  background-color: #FBFAF4;
  border: 2px solid #7C8480;
  border-radius: 10px;
  text-align: center;
}

.station-mini .sm-head {
  background-color: #2E3230;
  color: #FBFAF4;
  padding: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 8px 8px 0 0;
}

.station-mini .sm-body {
  padding: 10px;
  font-size: 13px;
  color: #3a3f3b;
}

/* ============ BUY-NOTE BAND ============ */
.buynote {
  background-color: #B6673F;
  padding: 40px 24px;
}

.buynote .bn-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.buynote .bn-mark {
  background-color: #FBFAF4;
  color: #B6673F;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  transform: rotate(-3deg);
  border-bottom: 4px solid #2E3230;
}

.buynote .bn-copy {
  color: #FBFAF4;
  font-size: 18px;
  flex: 1;
  min-width: 240px;
}

.buynote .bn-copy b {
  color: #FBFAF4;
}

.buynote .bn-btn {
  background-color: #FBFAF4;
  color: #B6673F;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  white-space: nowrap;
}

.buynote .bn-btn:hover {
  background-color: #F3F0E7;
}

/* ============ SHELF-CLIP FOOTER ============ */
.shelfclip {
  background-color: #23281F;
  position: relative;
  padding-top: 0;
}

.shelfclip .shelf-rail {
  height: 14px;
  background-color: #7C8480;
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 26px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.shelfclip .hook {
  width: 4px;
  height: 22px;
  background-color: #E4DCC9;
  border-radius: 0 0 3px 3px;
  align-self: flex-start;
}

.shelfclip .hook .hangchip {
  display: block;
  margin-top: 2px;
  width: 18px;
  height: 2px;
  background-color: #B6673F;
  margin-left: -7px;
}

.shelfclip .foot-cols {
  background-color: #23281F;
  padding: 34px 24px 10px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1020px;
  margin: 0 auto;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}

.shelfclip .footcol h5 {
  color: #B6673F;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  border-bottom: 1px solid #2E3230;
  padding-bottom: 6px;
}

.shelfclip .footcol ul {
  list-style: none;
}

.shelfclip .footcol ul li {
  margin-bottom: 8px;
}

.shelfclip .footcol ul a,
.shelfclip .footcol ul span {
  color: #FBFAF4;
  text-decoration: none;
  font-size: 15px;
}

.shelfclip .footcol ul a:hover {
  color: #5E8C7B;
}

.shelfclip .base-rail {
  background-color: #5E8C7B;
  color: #FBFAF4;
  padding: 14px 24px;
  position: relative;
  z-index: 1;
}

.shelfclip .base-rail .base-inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 36px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-align: center;
}

.shelfclip .base-rail .comp-name {
  font-weight: 700;
  font-size: 15px;
}

.shelfclip .base-rail .rail-sep {
  color: #23281F;
}

.shelfclip .copyright {
  color: #FBFAF4;
  text-align: center;
  padding: 20px 24px 28px;
  font-size: 13px;
  background-color: #23281F;
  position: relative;
  z-index: 1;
}

.shelfclip .copyright a {
  color: #FBFAF4;
}

@media (max-width: 680px) {
  .shelfclip .foot-cols {
    grid-template-columns: 1fr;
  }
}

/* ============ SERVICES / CONTACT PAGE BUILDING BLOCKS ============ */
.page-hero {
  background-color: #FBFAF4;
  padding: 56px 24px 20px;
  border-bottom: 4px solid #E4DCC9;
}

.page-hero .ph-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.page-hero .ph-mark {
  display: inline-block;
  background-color: #5E8C7B;
  color: #FBFAF4;
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: 44px;
  color: #2E3230;
  line-height: 1.15;
  margin-bottom: 14px;
}

.page-hero p.lede {
  color: #3a3f3b;
  font-size: 19px;
  max-width: 700px;
  margin: 0 auto;
}

.proseband {
  background-color: #F3F0E7;
  padding: 26px 24px;
}

.proseband .prose-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.service-block {
  display: flex;
  gap: 26px;
  background-color: #FBFAF4;
  border: 1px solid #E4DCC9;
  border-left: 6px solid #5E8C7B;
  padding: 24px 26px;
  margin-bottom: 26px;
  align-items: flex-start;
}

.service-block.bigb {
  border-left-color: #B6673F;
}

.service-block h3 {
  font-size: 24px;
  color: #2E3230;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-block h3 .nummark {
  color: #B6673F;
  font-family: "Courier New", monospace;
  margin-right: 8px;
}

.service-block .sb-copy {
  flex: 1;
}

.service-block p {
  color: #3a3f3b;
  margin-bottom: 10px;
}

.service-block p:last-child {
  margin-bottom: 0;
}

.service-block .chip-mark {
  display: inline-block;
  background-color: #B6673F;
  color: #FBFAF4;
  border-radius: 12px;
  padding: 3px 12px;
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.processband {
  background-color: #FBFAF4;
  padding: 56px 24px;
  border-top: 1px solid #E4DCC9;
  border-bottom: 1px solid #E4DCC9;
}

.processband .proc-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.processband h2 {
  font-size: 20px;
  color: #23281F;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 16px;
  color: #5E8C7B;
}

.processband h2 span {
  display: block;
  color: #2E3230;
  font-size: 30px;
  text-transform: none;
  margin-top: 6px;
  letter-spacing: 0;
}

.proc-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.proc-step {
  background-color: #F3F0E7;
  border: 1px solid #E4DCC9;
  border-top: 5px solid #B6673F;
  padding: 16px;
  text-align: center;
}

.proc-step .pn {
  color: #B6673F;
  font-family: "Courier New", monospace;
  font-weight: 700;
  font-size: 22px;
}

.proc-step h4 {
  margin: 4px 0 6px;
  color: #2E3230;
  font-size: 16px;
}

.proc-step p {
  font-size: 13px;
  color: #3a3f3b;
}

@media (max-width: 720px) {
  .proc-rail {
    grid-template-columns: 1fr 1fr;
  }
  .service-block {
    flex-direction: column;
  }
}

/* contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

@media (max-width: 760px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contactcard {
  background-color: #FBFAF4;
  border: 1px solid #E4DCC9;
  border-top: 6px solid #5E8C7B;
  padding: 24px;
}

.contactcard h3 {
  color: #2E3230;
  font-size: 20px;
  margin-bottom: 14px;
}

.contactcard .field {
  margin-bottom: 16px;
}

.contactcard label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #5E8C7B;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contactcard input,
.contactcard textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #7C8480;
  border-radius: 6px;
  background-color: #F3F0E7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  color: #2E3230;
}

.contactcard textarea {
  min-height: 120px;
  resize: vertical;
}

.contactcard input:focus,
.contactcard textarea:focus {
  outline: 2px solid #5E8C7B;
  border-color: #5E8C7B;
  background-color: #FBFAF4;
}

.contactcard .send-btn {
  background-color: #B6673F;
  color: #FBFAF4;
  border: 0;
  border-radius: 6px;
  padding: 12px 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.contactcard .send-btn:hover {
  background-color: #a05a34;
}

/* hide native mailto, use js */
.contactcard .form-fallback {
  display: none;
}

.infobox .detail-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.infobox .detail-row .dr-key {
  min-width: 84px;
  font-size: 12px;
  color: #5E8C7B;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 2px;
}

.infobox .detail-row .dr-val {
  color: #2E3230;
  font-size: 15px;
}

.infobox .detail-row a {
  color: #2E3230;
}

.hourblock {
  background-color: #E4DCC9;
  border-radius: 8px;
  padding: 14px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted #7C8480;
  padding: 5px 0;
  font-size: 14px;
}

.hour-row:last-child {
  border-bottom: 0;
}

.hour-row.endb {
  color: #B6673F;
  font-weight: 700;
}

.faq-item {
  background-color: #FBFAF4;
  border: 1px solid #E4DCC9;
  margin-bottom: 14px;
  border-left: 5px solid #23281F;
}

.faq-item summary {
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 700;
  color: #23281F;
  font-size: 16px;
}

.faq-item .faq-a {
  padding: 0 18px 14px;
  color: #3a3f3b;
}

/* reveal */
.reveal {
  opacity: 1;
  transform: none;
}

.no-js .reveal,
html.no-js .reveal {
  opacity: 1;
  transform: none;
}

.rv {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.rv.in {
  opacity: 1;
  transform: none;
}

.no-js .rv,
html.no-js .rv {
  opacity: 1;
  transform: none;
}

/* counters */
.smallcount {
  background-color: #23281F;
  color: #FBFAF4;
  font-family: "Courier New", monospace;
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 8px;
}
