:root {
  --boll-rust: #B4552D;
  --sack-tan: #C9B58E;
  --scale-iron: #6E675C;
  --press-house: #2B2820;
  --seed-deep: #191712;
  --gin-night: #22201B;
  --lint-cream: #F5F1E6;
  --iron-line: #8a8378;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--gin-night);
  color: var(--lint-cream);
  font-size: 16px;
  line-height: 1.7;
  font-family: Georgia, "Times New Roman", serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ===== GIN-WHEEL NAV ===== */
.ginwheel {
  position: sticky;
  top: 0;
  z-index: 100;
}

.ginwheel .lintrun {
  height: 20px;
  background-color: var(--seed-deep);
  overflow: hidden;
  position: relative;
}

.ginwheel .lintrun .fiberband {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    var(--lint-cream) 0px,
    var(--lint-cream) 3px,
    transparent 3px,
    transparent 7px
  );
  opacity: 1;
  animation: fiberscroll 30s linear infinite;
}

@keyframes fiberscroll {
  0% { background-position: 0 0; }
  100% { background-position: 200px 0; }
}

.ginwheel .lintrun .sawblade {
  position: absolute;
  top: -50%;
  width: 40px;
  height: 40px;
  transform: rotate(30deg);
  border-radius: 50%;
  background: var(--boll-rust);
  display: none;
}

.ginwheel .bar {
  background-color: var(--press-house);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-bottom: 3px solid var(--boll-rust);
}

.ginwheel .brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

.ginwheel .brand .mark {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--boll-rust);
  flex: none;
}

.ginwheel .brand .mark::before,
.ginwheel .brand .mark::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.ginwheel .brand .mark::before {
  border: 3px solid var(--boll-rust);
  border-right-color: transparent;
  border-bottom-color: transparent;
  top: -8px;
  left: -8px;
}

.ginwheel .brand .mark::after {
  border: 3px solid var(--lint-cream);
  border-right-color: transparent;
  border-bottom-color: transparent;
  top: 5px;
  left: -18px;
  width: 80%;
  height: 80%;
}

.ginwheel .brand .mark .tooth {
  position: absolute;
  width: 14px;
  height: 5px;
  background: var(--lint-cream);
  border-radius: 2px;
}

.ginwheel .brand .mark .tooth.t1 { top: -6px; left: 15px; transform: rotate(0deg); }
.ginwheel .brand .mark .tooth.t2 { top: 16px; left: 40px; transform: rotate(100deg); }
.ginwheel .brand .mark .tooth.t3 { bottom: -2px; left: 16px; transform: rotate(180deg); }
.ginwheel .brand .mark .tooth.t4 { top: 10px; left: -14px; transform: rotate(280deg); }

.ginwheel .brand .logotext .name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--lint-cream);
}

.ginwheel .brand .logotext .sub {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sack-tan);
  margin-top: 3px;
}

.ginwheel .links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ginwheel .links a {
  position: relative;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lint-cream);
  padding: 8px 12px;
  transition: color 0.25s ease;
}

.ginwheel .links a:hover {
  color: var(--sack-tan);
}

.ginwheel .links a.lots {
  color: var(--sack-tan);
  border: 1px solid var(--sack-tan);
  border-radius: 999px;
  padding: 6px 16px;
  margin-left: 10px;
}

.ginwheel .links a.lots:hover {
  background: var(--sack-tan);
  color: var(--seed-deep);
}

.ginwheel .links .dot {
  width: 5px;
  height: 5px;
  margin: 0 2px;
  border-radius: 50%;
  background: var(--boll-rust);
  flex: none;
}

.ginwheel .toggle {
  display: none;
  background: var(--boll-rust);
  border: none;
  color: var(--lint-cream);
  font-size: 1.3rem;
  padding: 6px 18px;
  border-radius: 4px;
  cursor: pointer;
}

.ginwheel .drawer {
  display: none;
}

.nav .links a {
  color: var(--lint-cream) !important;
}

/* ===== BALE-PRESS HERO ===== */
.balepress {
  background-color: var(--gin-night);
  padding: 70px 40px 0;
  position: relative;
  overflow: hidden;
}

.balepress .eyebrow {
  text-align: center;
  color: var(--sack-tan);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.balepress .huge {
  text-align: center;
  font-size: 3.4rem;
  line-height: 1.1;
  color: var(--lint-cream);
  max-width: 900px;
  margin: 0 auto 16px;
  font-weight: 700;
}

.balepress .lead {
  text-align: center;
  color: var(--lint-cream);
  max-width: 760px;
  margin: 0 auto 50px;
  font-size: 1.15rem;
}

.balepress .workingband {
  position: relative;
  height: 320px;
  max-width: 1200px;
  margin: 0 auto;
}

.balepress .workingband .piece {
  position: absolute;
  opacity: 1;
}

.balepress .workingband .ram {
  left: 2%;
  top: 60px;
  width: 280px;
  height: 210px;
}

.balepress .workingband .ram .presshead {
  position: absolute;
  top: 0;
  left: 90px;
  width: 110px;
  height: 150px;
  background: var(--boll-rust);
  border-radius: 6px 6px 0 0;
}

.balepress .workingband .ram .cotton {
  position: absolute;
  top: 150px;
  left: 60px;
  width: 170px;
  height: 60px;
  background: var(--lint-cream);
  border-radius: 50%;
}

.balepress .workingband .ram .rod {
  position: absolute;
  top: 0;
  left: 128px;
  width: 24px;
  height: 90px;
  background: var(--scale-iron);
}

.balepress .workingband .chamber {
  left: 37%;
  top: 55px;
  width: 240px;
  height: 220px;
}

.balepress .workingband .chamber .chambox {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 6px solid var(--boll-rust);
  border-radius: 6px;
  background: var(--press-house);
}

.balepress .workingband .chamber .piston {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 40px;
  background: var(--scale-iron);
}

.balepress .workingband .chamber .bands {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 90px;
  height: 7px;
  background: var(--lint-cream);
  border-radius: 3px;
}

.balepress .workingband .chamber .bands.b2 { top: 108px; }
.balepress .workingband .chamber .bands.b3 { top: 126px; }

.balepress .workingband .stack {
  right: 2%;
  top: 60px;
  width: 210px;
  height: 210px;
}

.balepress .workingband .stack .bale {
  position: absolute;
  left: 0;
  width: 150px;
  height: 80px;
  background: var(--lint-cream);
  border: 4px solid var(--sack-tan);
  border-radius: 4px;
}

.balepress .workingband .stack .bale .strap {
  position: absolute;
  left: 4px;
  right: 4px;
  top: 30px;
  height: 4px;
  background: var(--boll-rust);
}

.balepress .workingband .stack .bale .strap.s2 { top: 50px; }

.balepress .workingband .stack .bale.b1 { top: 0; }
.balepress .workingband .stack .bale.b2 { top: 110px; left: 30px; }

.balepress .workingband .stack .tag {
  position: absolute;
  right: -28px;
  top: 110px;
  width: 60px;
  height: 40px;
  background: var(--sack-tan);
  border-radius: 0 0 8px 8px;
  text-align: center;
  font-size: 0.55rem;
  line-height: 1.2;
  color: var(--seed-deep);
  padding-top: 4px;
  font-weight: 700;
}

.balepress .workingband .scale {
  left: 5%;
  top: 10px;
  width: 180px;
  height: 130px;
  border: 3px solid var(--scale-iron);
  border-radius: 8px;
  background: var(--press-house);
  display: none;
}

.balepress .workingband .scale .pan {
  position: absolute;
  bottom: 12px;
  width: 40px;
  height: 10px;
  background: var(--scale-iron);
  border-radius: 50%;
}

.balepress .kickstrip {
  margin-top: 54px;
  background-color: var(--seed-deep);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding: 26px 0;
}

.balepress .kickstrip .stat {
  flex: 0 1 auto;
  text-align: center;
  padding: 8px 50px;
}

.balepress .kickstrip .stat + .stat {
  border-left: 2px solid var(--boll-rust);
}

.balepress .kickstrip .num {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--lint-cream);
  display: block;
}

.balepress .kickstrip .lab {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sack-tan);
}

/* ===== STATEMENT ROW ===== */
.statementband {
  background-color: var(--boll-rust);
  padding: 60px 40px;
}

.statementband .shell {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.statementband .figure {
  font-size: 6rem;
  font-weight: 700;
  color: var(--lint-cream);
  line-height: 1;
  margin-bottom: 8px;
}

.statementband .plines {
  font-size: 1.05rem;
  color: var(--lint-cream);
  letter-spacing: 0.02em;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  line-height: 1.8;
}

/* ===== LOT-TAG LEDGER ===== */
.lotbook {
  padding: 90px 24px 40px;
}

.lotbook .leadwrap {
  max-width: 1100px;
  margin: 0 auto 60px;
  text-align: center;
}

.lotbook .leadwrap .kick {
  color: var(--sack-tan);
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.lotbook .leadwrap h2 {
  font-size: 2.3rem;
  color: var(--lint-cream);
  margin-bottom: 14px;
}

.lotbook .leadwrap p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--lint-cream);
}

.lotbook .rowplate {
  background-color: var(--press-house);
  border: 1px solid var(--scale-iron);
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 36px;
  min-height: 240px;
}

.lotbook .rowplate.indent {
  margin-left: 44px;
  margin-right: 0;
  max-width: 1056px;
}

.lotbook .tagcol {
  background: var(--scale-iron);
  background-image: linear-gradient(
    45deg,
    var(--scale-iron) 25%,
    var(--gin-night) 25%,
    var(--gin-night) 50%,
    var(--scale-iron) 50%,
    var(--scale-iron) 75%,
    var(--gin-night) 75%,
    var(--gin-night) 100%
  );
  background-size: 20px 20px;
  flex: 0 0 240px;
  min-height: 240px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-right: 4px solid var(--boll-rust);
  padding: 16px;
}

.lotbook .lotcode {
  font-family: "Courier New", monospace;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--lint-cream);
  background: var(--seed-deep);
  display: inline-block;
  padding: 6px 16px;
  margin: 0 auto 12px;
  border-radius: 3px;
  border: 1px solid var(--sack-tan);
}

.lotbook .gradechip {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--lint-cream);
  font-family: "Courier New", monospace;
}

.lotbook .bod {
  flex: 1;
  padding: 30px 36px;
}

.lotbook .bod h3 {
  color: var(--lint-cream);
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.lotbook .bod p {
  color: var(--lint-cream);
  margin-bottom: 14px;
}

.lotbook .knowlink {
  display: inline-block;
  color: var(--sack-tan);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--boll-rust);
  padding-bottom: 3px;
}

.lotbook .knowlink:hover {
  color: var(--lint-cream);
}

/* ===== GIN-LANE FLOW ===== */
.flowwrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 24px 100px;
}

.flowwrap .kick {
  text-align: center;
  color: var(--sack-tan);
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.flowwrap h2 {
  text-align: center;
  color: var(--lint-cream);
  font-size: 2.3rem;
  margin-bottom: 18px;
}

.lane {
  position: relative;
  padding: 20px 0;
}

.lane .track {
  height: 6px;
  background: var(--sack-tan);
  position: relative;
  border-radius: 3px;
}

.lane .tuft {
  position: absolute;
  top: -26px;
  left: 0;
  width: 40px;
  height: 24px;
  background: var(--lint-cream);
  border-radius: 50%;
  animation: tuftgo 14s linear infinite;
}

@keyframes tuftgo {
  0% { left: 0; }
  18% { left: 19%; }
  20% { left: 19%; }
  38% { left: 43%; }
  40% { left: 43%; }
  58% { left: 68%; }
  60% { left: 68%; }
  78% { left: 93%; }
  80% { left: 93%; }
  98% { left: 100%; opacity: 1; }
  100% { left: 0; opacity: 0; }
}

.lane .stops {
  display: flex;
  justify-content: space-between;
  margin-top: -3px;
  position: relative;
  z-index: 2;
}

.lane .laneplate {
  width: 17%;
  text-align: center;
  background: var(--press-house);
  border: 2px solid var(--boll-rust);
  border-radius: 50%;
  padding: 26px 0;
  min-width: 110px;
}

.lane .laneplate .stepnum {
  display: block;
  font-size: 1.6rem;
  color: var(--boll-rust);
}

.lane .laneplate .stepname {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lint-cream);
  margin-top: 4px;
}

.lane .captionrow {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
}

.lane .captionrow .stopcap {
  width: 17%;
  color: var(--lint-cream);
  font-size: 0.95rem;
  line-height: 1.6;
}

.lane .returnlane {
  margin-top: 26px;
  text-align: center;
  border-top: 2px dashed var(--scale-iron);
  padding-top: 12px;
  color: var(--sack-tan);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== MARK-NOTE BAND ===== */
.marknote {
  background-color: var(--boll-rust);
  padding: 70px 24px;
}

.marknote .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.marknote .tag {
  flex: none;
  transform: rotate(-3deg);
  border: 3px double var(--lint-cream);
  padding: 10px 18px;
  font-family: "Courier New", monospace;
  color: var(--lint-cream);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.marknote .copy {
  font-size: 1.1rem;
  color: var(--lint-cream);
  max-width: 420px;
  line-height: 1.7;
}

.marknote .bookbtn {
  flex: none;
  background: var(--lint-cream);
  color: var(--boll-rust);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  padding: 14px 26px;
  border-radius: 3px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.marknote .bookbtn:hover {
  background: #e6e0d0;
}

/* ===== SEED-CAKE FOOTER ===== */
.seedcake {
  background-color: var(--seed-deep);
  position: relative;
  z-index: 1;
}

.seedcake .rail {
  display: flex;
  justify-content: space-between;
  padding: 34px 40px 10px;
  border-bottom: 1px solid var(--scale-iron);
}

.seedcake .cake {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 3px solid var(--scale-iron);
  position: relative;
  flex: none;
  background: var(--press-house);
}

.seedcake .cake::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--seed-deep);
  border: 2px solid var(--scale-iron);
}

.seedcake .cap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding: 50px 24px 40px;
  position: relative;
  z-index: 1;
}

.seedcake .col h4 {
  color: var(--sack-tan);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--boll-rust);
  display: inline-block;
  padding-bottom: 5px;
}

.seedcake .col ul {
  list-style: none;
}

.seedcake .col li {
  margin-bottom: 9px;
}

.seedcake .col a {
  color: #E7E1D0;
}

.seedcake .col a:hover {
  color: var(--sack-tan);
}

.seedcake .baserail {
  background-color: var(--boll-rust);
  padding: 20px 24px;
}

.seedcake .baserail .inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.95rem;
  color: var(--lint-cream);
  line-height: 1.8;
}

.seedcake .copyline {
  text-align: center;
  color: var(--sack-tan);
  padding: 18px 24px;
  font-size: 0.85rem;
}

/* ===== Reveal animation ===== */
.reveal-el {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

@media (prefers-reduced-motion: reduce) {
  .reveal-el {
    opacity: 1;
    transform: none;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1040px) {
  .balepress .workingband { height: 260px; transform: scale(0.85); margin-top: -10px;}
  .lane .captionrow { display: none; }
  .lane .stops { flex-wrap: wrap; gap: 12px; }
  .lane .laneplate { width: auto; }
}

@media (max-width: 860px) {
  .ginwheel .bar { flex-wrap: wrap; padding: 0 18px; }
  .ginwheel .toggle { display: block; }
  .ginwheel .links { display: none; }
  .ginwheel .drawer.open { display: flex; }
  .ginwheel .drawer {
    flex-direction: column;
    background-color: var(--press-house);
    padding: 20px 18px;
    gap: 14px;
    border-bottom: 3px solid var(--boll-rust);
  }
  .ginwheel .drawer a {
    color: var(--lint-cream);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .balepress { padding: 44px 18px 0; }
  .balepress .huge { font-size: 2.3rem; }
  .balepress .workingband { height: 200px; }

  .lotbook .rowplate { flex-direction: column; }
  .lotbook .rowplate.indent { margin-left: 0; }
  .lotbook .tagcol {
    flex: none;
    width: 100%;
    min-height: 150px;
    border-right: none;
    border-bottom: 4px solid var(--boll-rust);
  }
  .lotbook .bod { padding: 24px; }

  .marknote .inner { flex-direction: column; text-align: center; }
  .marknote .copy { max-width: 100%; }

  .seedcake .cap { flex-direction: column; }
  .seedcake .rail { flex-wrap: wrap; gap: 18px; }
  .seedcake .cake { width: 50px; height: 50px; }
  .seedcake .baserail .inner { text-align: center; }

  .statementband .figure { font-size: 4rem; }
}

/* scroll buttons helpers */
.scroll-topo .btn {
  background: var(--boll-rust);
}

/* Spacer safeguard */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* homepage extra copy */
.smallintro {
  font-size: 1rem;
  max-width: 760px !important;
  margin-top: 14px !important;
}

.flownote {
  max-width: 720px;
  margin: 0 auto 44px;
  color: var(--lint-cream);
}

.footline {
  margin-top: 18px;
  color: var(--lint-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  max-width: 640px;
  font-style: italic;
}

/* ===== SHARED PAGE STRUCTURE (services / contact) ===== */
.active {
  color: var(--sack-tan) !important;
  border-bottom: 2px solid var(--boll-rust);
}

.pageintro {
  background-color: var(--gin-night);
  padding: 70px 24px 30px;
  text-align: center;
}

.pageintro .eyebrow {
  color: var(--sack-tan);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pageintro h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  color: var(--lint-cream);
  max-width: 900px;
  margin: 0 auto 18px;
  font-weight: 700;
}

.pageintro p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--lint-cream);
  font-size: 1.1rem;
}

/* ===== SERVICES ===== */
.servlist {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 24px 30px;
}

.visuallyhidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.servlist .plate {
  display: flex;
  gap: 22px;
  background-color: var(--press-house);
  border: 1px solid var(--scale-iron);
  margin-bottom: 28px;
  border-left: 6px solid var(--boll-rust);
}

.servlist .rightplate {
  border-left: none;
  border-right: 6px solid var(--boll-rust);
  justify-content: flex-end;
}

.servlist .plate .label {
  flex: 0 0 90px;
  text-align: center;
  font-family: "Courier New", monospace;
  color: var(--sack-tan);
  padding-top: 28px;
  font-size: 1.2rem;
}

.servlist .plate .inner {
  flex: 1;
  padding: 30px 36px 30px 12px;
}

.servlist .rightplate .inner {
  padding: 30px 12px 30px 36px;
}

.servlist .plate h3 {
  font-size: 1.45rem;
  color: var(--lint-cream);
  margin-bottom: 14px;
}

.servlist .plate p {
  color: var(--lint-cream);
  margin-bottom: 14px;
}

.processwrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.leadwrap2 {
  text-align: center;
  margin-bottom: 44px;
}

.leadwrap2 .kick {
  color: var(--sack-tan);
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.leadwrap2 h2 {
  font-size: 2.2rem;
  color: var(--lint-cream);
  margin-bottom: 14px;
}

.leadwrap2 p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--lint-cream);
}

.steprow {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  counter-reset: step;
}

.steprow li {
  flex: 1 1 18%;
  min-width: 190px;
  background-color: var(--gin-night);
  border: 1px solid var(--scale-iron);
  border-top: 4px solid var(--boll-rust);
  padding: 20px 18px;
}

.steprow li .n {
  display: block;
  font-family: "Courier New", monospace;
  color: var(--boll-rust);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.steprow li h3 {
  color: var(--lint-cream);
  font-size: 1.05rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.steprow li p {
  color: var(--lint-cream);
  font-size: 0.95rem;
}

/* ===== CONTACT ===== */
.balepress.contacthead {
  padding-bottom: 60px;
}

.contactgrid {
  max-width: 1120px;
  margin: 0 auto;
  padding: 50px 24px 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}

.cformcol .formplate {
  background-color: var(--press-house);
  border: 1px solid var(--scale-iron);
  border-top: 6px solid var(--boll-rust);
  padding: 34px;
}

.cformcol .formplate h2 {
  font-size: 1.7rem;
  color: var(--lint-cream);
  margin-bottom: 8px;
}

.cformcol .formnote {
  color: var(--lint-cream);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.frow {
  margin-bottom: 18px;
}

.frow label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sack-tan);
  margin-bottom: 6px;
}

.frow input,
.frow textarea {
  width: 100%;
  background-color: var(--gin-night);
  border: 1px solid var(--scale-iron);
  color: var(--lint-cream);
  font-size: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  padding: 11px 13px;
  border-radius: 3px;
}

.frow textarea {
  resize: vertical;
}

.frow input:focus,
.frow textarea:focus {
  outline: none;
  border-color: var(--boll-rust);
}

.submit.btn {
  background-color: var(--boll-rust);
  border: none;
  color: var(--lint-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 30px;
  border-radius: 3px;
  cursor: pointer;
}

.submit.btn:hover {
  background-color: var(--sack-tan);
  color: var(--seed-deep);
}

.formstatus {
  margin-top: 16px;
  color: var(--lint-cream);
  font-size: 0.95rem;
}

.cdetailscol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contactplate {
  background-color: var(--press-house);
  border: 1px solid var(--scale-iron);
  border-left: 6px solid var(--sack-tan);
  padding: 24px;
}

.contactplate h3 {
  color: var(--boll-rust);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--scale-iron);
  padding-bottom: 8px;
}

.contactplate .postcard,
.contactplate p,
.contactplate a {
  color: var(--lint-cream);
  font-style: normal;
  line-height: 1.7;
}

.contactplate a:hover {
  color: var(--sack-tan);
}

.contactplate .dvalue {
  margin: 4px 0 12px;
  color: var(--lint-cream);
}

.contactplate .dlabel {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sack-tan);
  display: block;
  margin-top: 4px;
}

.hourslist {
  list-style: none;
  color: var(--lint-cream);
}

.hourslist li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--scale-iron);
  font-size: 0.95rem;
}

.hourslist li span:last-child {
  text-align: right;
  color: var(--sack-tan);
}

/* ===== FAQ ===== */
.faqwrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 50px 24px 90px;
}

.faqlist {
  max-width: 900px;
  margin: 0 auto;
}

.fitem {
  background-color: var(--press-house);
  border: 1px solid var(--scale-iron);
  border-left: 5px solid var(--boll-rust);
  padding: 24px 30px;
  margin-bottom: 18px;
}

.fitem h3 {
  color: var(--lint-cream);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.fitem p {
  color: var(--lint-cream);
}

/* responsive for shared pages */
@media (max-width: 860px) {
  .pageintro h1 { font-size: 1.9rem; }
  .servlist .plate,
  .servlist .rightplate {
    flex-direction: column;
    border-left: 6px solid var(--boll-rust);
    border-right: none;
  }
  .servlist .plate .inner,
  .servlist .rightplate .inner { padding: 8px 20px 24px; }
  .servlist .plate .label { text-align: right; padding: 14px 20px 0; }
  .contactgrid { grid-template-columns: 1fr; }
  .steprow li { flex: 1 1 100%; }
}
