/* ============================================================
   PINZENG - MAIN STYLESHEET
   Motif: a trading warehouse count room at night
   Stoneware jars on pin-grid shelves, tally ledgers,
   a cinnabar chop pad and numbered inventory pins.

   Palette (all pre-blended solids, no rgba, no opacity):
   - Kiln-slate body          #1B1E22
   - Bone-glaze text          #EDE7DA
   - Kiln-bronze accent       #A9743C
   - Crucible-black panels    #121417
   - Ash-pit recesses         #0B0D0F
   - Glaze-grey frames        #565B60
   - Rice-paper tags/cards    #F6F1E5
   - Cinnabar-dot seal marks  #B6402F
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 16px;
  line-height: 1.6;
  font-family: Georgia, "Times New Roman", serif;
  background-color: #1B1E22;
  color: #EDE7DA;
  overflow-x: hidden;
}

a {
  color: #A9743C;
}

img {
  max-width: 100%;
}

/* ---------- Scroll reveal ----------
   Elements start hidden only when JS is present.
   A .js class is added to <html> by main.js. Without JS
   (noscript or no JS), nothing gets opacity 0, so default-visible. */
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

html.js .reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ---------- Storage strip content ----------
   Underlay decorative rails are visibility hidden per instructions. */
.storage-rail {
  position: relative;
  z-index: 1;
}

/* ============================================================
   PIN-GRID NAVIGATION
   A warehouse shelf header, sticky on top.
   ============================================================ */
.pingrid {
  position: sticky;
  top: 0;
  z-index: 60;
  background-color: #0B0D0F;
  border-bottom: 1px solid #565B60;
}

.pingrid .pingrid-shelf {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.pingrid .brand-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #F6F1E5;
  border-radius: 3px;
  padding: 8px 14px 8px 12px;
  text-decoration: none;
  box-shadow: 0 0 0 1px #565B60 inset;
}

.pingrid .brand-label .seal-dot {
  width: 10px;
  height: 10px;
  background-color: #B6402F;
  border-radius: 1px;
  flex: none;
}

.pingrid .brand-label .brand-word {
  font-family: "Courier New", monospace;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.4em;
  color: #1B1E22;
}

.pingrid .pin-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.pingrid .pin-links .pin-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: #EDE7DA;
  padding: 7px 12px 7px 8px;
  background-color: #121417;
  border: 1px solid #565B60;
  border-radius: 3px;
  transition: border-color 150ms ease;
}

.pingrid .pin-links .pin-link:hover {
  border-color: #A9743C;
}

.pingrid .pin-links .pin-link .pin-num {
  width: 24px;
  height: 24px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #A9743C;
  color: #121417;
  font-family: "Courier New", monospace;
  font-weight: bold;
  font-size: 0.75rem;
  border-radius: 50%;
}

.pingrid .pin-links .pin-link span.txt {
  color: #EDE7DA;
  font-size: 1rem;
}

.pingrid .pin-links .tallies-chip {
  border-color: #B6402F;
}

.pingrid .pin-links .tallies-chip .pin-num {
  background-color: #B6402F;
  color: #F6F1E5;
  border-radius: 2px;
}

.pingrid .pin-links .tallies-chip span.txt {
  color: #B6402F;
  font-weight: bold;
}

.pingrid .toggle-btn {
  display: none;
  background-color: #A9743C;
  color: #121417;
  border: 0;
  font-family: "Courier New", monospace;
  font-weight: bold;
  font-size: 1rem;
  padding: 10px 16px;
  border-radius: 3px;
  cursor: pointer;
}

.pingrid .drawer {
  display: none;
  background-color: #0B0D0F;
  border-top: 1px solid #565B60;
}

.pingrid .drawer .drawer-links {
  list-style: none;
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 24px;
}

.pingrid .drawer .drawer-links li {
  margin: 6px 0;
}

.pingrid .drawer .drawer-links a {
  display: block;
  color: #EDE7DA;
  text-decoration: none;
  padding: 8px 4px;
  border-bottom: 1px dotted #565B60;
  font-family: "Courier New", monospace;
}

.pingrid .drawer .drawer-links a:hover {
  color: #A9743C;
}

/* ============================================================
   COUNT-ROOM HERO
   Left 56% tally desk, right 44% pin-grid shelf of jars.
   ============================================================ */
.countroom {
  background-color: #1B1E22;
}

.countroom .hero-wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 56% 44%;
  gap: 0;
}

.countroom .tally-desk {
  background-color: #121417;
  border-right: 1px solid #565B60;
  padding: 54px 48px 40px 48px;
  transform: none;
}

.countroom .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #A9743C;
  text-transform: uppercase;
  border-bottom: 2px solid #A9743C;
  padding-bottom: 6px;
  margin-bottom: 20px;
}

.countroom .eyebrow .eyebrow-mark {
  width: 8px;
  height: 8px;
  background-color: #B6402F;
  border-radius: 1px;
}

.countroom h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: 1.15;
  color: #EDE7DA;
  margin: 0 0 22px 0;
  max-width: 620px;
}

.countroom h1 .bronze-dash {
  color: #A9743C;
}

.countroom .lead-block {
  background-color: #F6F1E5;
  border-radius: 4px;
  color: #1B1E22;
  padding: 20px 22px;
  transform: rotate(-0.6deg);
  box-shadow: 0 0 0 1px #565B60;
  border: 1px solid #0B0D0F;
  margin-bottom: 24px;
  max-width: 560px;
}

.countroom .lead-block p {
  font-size: 1.08rem;
  color: #1B1E22;
  line-height: 1.65;
}

.countroom .lead-block .lead-rule {
  height: 3px;
  background-color: #A9743C;
  width: 90px;
  margin: 14px 0;
}

.countroom .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.btn {
  display: inline-block;
  font-family: "Courier New", monospace;
  font-weight: normal;
  font-size: 1rem;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 3px;
  transition: background-color 150ms ease;
  border: 1px solid transparent;
}

.btn.btn-solid {
  background-color: #A9743C;
  color: #121417;
}

.btn.btn-solid:hover {
  background-color: #C08A50;
}

.btn.btn-ghost {
  background-color: #121417;
  color: #EDE7DA;
  border-color: #565B60;
}

.btn.btn-ghost:hover {
  border-color: #A9743C;
  color: #A9743C;
}

/* ---------- Right: pin-grid shelf with stoneware jars ---------- */
.countroom .shelf-wall {
  background-color: #0B0D0F;
  display: flex;
  align-items: stretch;
  padding: 38px 32px;
}

.countroom .cube-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  align-content: center;
}

.countroom .cube {
  background-color: #121417;
  border: 1px solid #565B60;
  border-radius: 4px;
  padding: 14px 12px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 128px;
  position: relative;
}

.countroom .cube.hot {
  border-color: #A9743C;
}

.countroom .cube .seal-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 9px;
  height: 9px;
  background-color: #B6402F;
  border-radius: 1px;
}

.countroom .cube .pin-no {
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: "Courier New", monospace;
  font-size: 0.7rem;
  color: #A9743C;
  font-weight: bold;
}

.countroom .cube .jar {
  width: 52%;
  margin: 0 auto 8px auto;
}

.countroom .cube .jar .jar-top {
  width: 40%;
  height: 10px;
  margin: 0 auto -1px auto;
  background-color: #A9743C;
  border-radius: 2px 2px 0 0;
}

.countroom .cube .jar .jar-body {
  width: 100%;
  height: 58px;
  background-color: #565B60;
  border-radius: 6px 6px 10px 10px;
  background-image: radial-gradient(circle at 30% 20%, #A9743C 0 4px, transparent 4px 14px, #A9743C 14px 16px, transparent 16px);
}

.countroom .cube .jar .jar-body.alt {
  background-color: #565B60;
  background-image: radial-gradient(circle at 70% 30%, #A9743C 0 3px, transparent 3px 10px, #A9743C 10px 11px, transparent 11px);
}

.countroom .cube .jar-label {
  font-family: "Courier New", monospace;
  font-size: 0.6rem;
  color: #1B1E22;
  background-color: #F6F1E5;
  padding: 2px 6px;
  border-radius: 2px;
  text-align: center;
}

/* ---------- Full-width ash-pit kick strip with three stats ---------- */
.countroom .kick-strip {
  background-color: #0B0D0F;
  border-top: 2px solid #565B60;
}

.countroom .kick-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
}

.countroom .kick-stat {
  border-right: 1px solid #A9743C;
  padding: 0 16px;
}

.countroom .kick-stat:last-child {
  border-right: 0;
}

.countroom .kick-stat .k-num {
  display: block;
  font-family: "Courier New", monospace;
  font-size: 1.7rem;
  font-weight: bold;
  color: #EDE7DA;
}

.countroom .kick-stat .k-num em {
  color: #A9743C;
  font-style: normal;
}

.countroom .kick-stat .k-cap {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #A9743C;
}

/* ============================================================
   JAR-LADDER CATALOG + CHOP-ROUTE
   ============================================================ */
.jar-section {
  background-color: #1B1E22;
}

.jar-window {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px;
}

.jar-window .section-kicker {
  font-family: "Courier New", monospace;
  letter-spacing: 0.1em;
  color: #A9743C;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.jar-window h2 {
  font-size: 2rem;
  color: #EDE7DA;
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 6px;
}

.jar-window .section-intro {
  max-width: 720px;
  color: #EDE7DA;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

/* The ladder rows, rising (each indents further right) */
.jar-ladder {
  display: flex;
  flex-direction: column;
}

.jar-ladder .shelf-row {
  background-color: #121417;
  border: 1px solid #565B60;
  border-left: 4px solid #A9743C;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 208px 1fr;
  gap: 22px;
  align-items: start;
  padding: 20px 24px;
  max-width: 1150px;
  margin-bottom: 16px;
  transition: border-color 150ms ease;
}

.jar-ladder .shelf-row:hover {
  border-color: #F6F1E5;
}

.jar-ladder .shelf-row .row-pin {
  position: relative;
}

.jar-ladder .shelf-row .shelf-bracket {
  width: 14px;
  height: 14px;
  background-color: #A9743C;
  border-radius: 2px;
  margin-bottom: 10px;
}

.jar-ladder .shelf-row .row-pin-no {
  font-family: "Courier New", monospace;
  font-size: 1.9rem;
  font-weight: bold;
  color: #A9743C;
  display: block;
}

.jar-ladder .shelf-row .jar-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #F6F1E5;
  color: #1B1E22;
  border-radius: 3px;
  padding: 7px 12px;
  margin-top: 6px;
  font-family: "Courier New", monospace;
  font-weight: bold;
  font-size: 0.9rem;
}

.jar-ladder .shelf-row .jar-tag .dot {
  width: 7px;
  height: 7px;
  background-color: #B6402F;
  border-radius: 1px;
}

.jar-ladder .shelf-row .row-copy .row-title {
  font-size: 1.5rem;
  color: #F6F1E5;
  margin-bottom: 8px;
}

.jar-ladder .shelf-row .row-copy p {
  color: #EDE7DA;
  margin-bottom: 10px;
}

.jar-ladder .shelf-row .details-link {
  font-family: "Courier New", monospace;
  text-decoration: none;
  color: #A9743C;
  font-weight: bold;
  letter-spacing: 0.03em;
}

.jar-ladder .shelf-row .details-link:hover {
  color: #C08A50;
  text-decoration: underline;
}

/* Statement band between the two movements */
.jar-ladder .statement-row {
  background-color: #121417;
  border: 1px solid #565B60;
  border-radius: 4px;
  padding: 26px 28px;
  margin: 8px 0 22px 0;
  display: block;
}

.jar-ladder .statement-row .big-figure {
  font-family: "Courier New", monospace;
  font-size: 3rem;
  font-weight: bold;
  color: #A9743C;
  display: block;
  line-height: 1.1;
}

.jar-ladder .statement-row .pledge {
  margin-top: 10px;
  max-width: 720px;
  color: #EDE7DA;
}

/* ---------- CHOP-ROUTE ---------- */
.chop-route {
  margin-top: 8px;
}

.chop-route .route-title {
  font-size: 1.5rem;
  color: #F6F1E5;
  margin-bottom: 6px;
}

.chop-route .route-sub {
  color: #A9743C;
  font-family: "Courier New", monospace;
  margin-bottom: 26px;
}

.chop-route .ash-rail-wrap {
  background-color: #0B0D0F;
  border-radius: 6px;
  padding: 26px 20px;
}

.chop-route .ash-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: start;
}

.chop-route .route-stop {
  text-align: center;
  position: relative;
}

.chop-route .route-seal {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  background-color: #121417;
  border: 3px solid #A9743C;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Courier New", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: #A9743C;
  font-weight: bold;
  letter-spacing: 0.04em;
  transform: rotate(-6deg);
}

.chop-route .route-stop.sealed .route-seal {
  border-color: #B6402F;
  background-color: #B6402F;
  color: #F6F1E5;
  border-radius: 4px;
}

.chop-route .route-stop .stop-txt {
  margin-top: 10px;
  font-family: "Courier New", monospace;
  color: #F6F1E5;
  font-weight: bold;
  text-transform: uppercase;
}

.chop-route .route-stop .stop-cap {
  margin-top: 6px;
  font-size: 0.92rem;
  color: #EDE7DA;
  text-align: center;
  padding: 0 8px;
}

/* Dashed caravan line connecting stamps via an ash rail underneath */
.ash-caravan-line {
  height: 3px;
  margin: 18px 30px 2px 30px;
  background-image: linear-gradient(90deg, #A9743C 6px, transparent 6px, transparent 14px);
  background-size: 14px 3px;
  background-repeat: repeat-x;
  background-position: center;
  border-radius: 2px;
}

.below-rail {
  padding: 6px 18px;
  text-align: center;
  color: #A9743C;
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
}

/* ============================================================
   SEAL-NOTE ACCENT STRIP (KILN-BRONZE band)
   ============================================================ */
.seal-note {
  background-color: #A9743C;
  color: #121417;
  border-top: 2px solid #565B60;
  border-bottom: 2px solid #0B0D0F;
}

.seal-note .seal-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.seal-note .verified-stamp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Courier New", monospace;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #121417;
  font-size: 0.9rem;
  background-color: #F6F1E5;
  border-radius: 4px;
  padding: 8px 14px;
}

.seal-note .verified-stamp .stamp-box {
  width: 9px;
  height: 9px;
  background-color: #B6402F;
  border-radius: 1px;
}

.seal-note p {
  color: #121417;
  font-size: 1.05rem;
  flex: 1;
  min-width: 240px;
}

.seal-note .rice-btn {
  display: inline-block;
  background-color: #F6F1E5;
  color: #121417;
  text-decoration: none;
  font-family: "Courier New", monospace;
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 4px;
  border: 2px solid #121417;
}

.seal-note .rice-btn:hover {
  background-color: #121417;
  color: #F6F1E5;
}

/* ============================================================
   FOOTER - JAR-CELLAR
   ============================================================ */
.jarcellar {
  background-color: #0B0D0F;
}

.jarcellar .cellar-neck-row {
  background-color: #121417;
  border-bottom: 1px solid #565B60;
}

.jarcellar .necks-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 26px 24px 12px 24px;
  text-align: center;
}

.jarcellar .motto {
  font-family: "Courier New", monospace;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #A9743C;
  font-size: 1rem;
  border-top: 1px solid #565B60;
  padding-top: 14px;
  margin-top: 4px;
}

.jarcellar .neck-bar {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}

.jarcellar .jar-neck {
  border: 1px solid #A9743C;
  border-bottom: 0;
  background-color: #565B60;
}

.jarcellar .columns-zone {
  max-width: 1240px;
  margin: 0 auto;
  padding: 26px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.jarcellar .footer-col h3 {
  font-family: "Courier New", monospace;
  color: #A9743C;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.jarcellar .footer-col ul {
  list-style: none;
}

.jarcellar .footer-col ul li {
  margin: 8px 0;
}

.jarcellar .footer-col ul a {
  color: #EDE7DA;
  text-decoration: none;
  font-family: "Courier New", monospace;
  font-size: 0.95rem;
}

.jarcellar .footer-col ul a:hover {
  color: #A9743C;
}

.jarcellar .base-strip {
  background-color: #565B60;
  color: #1B1E22;
  border-top: 2px solid #A9743C;
}

.jarcellar .base-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.jarcellar .base-inner .addr {
  font-family: Georgia, "Times New Roman", serif;
  color: #1B1E22;
}

.jarcellar .copyright-row {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px 22px 24px;
  text-align: center;
  color: #EDE7DA;
  font-family: "Courier New", monospace;
  font-size: 0.82rem;
  border-top: 1px dotted #565B60;
  position: relative;
  z-index: 1;
}

/* ============================================================
   PAGE HEADER SHARED BY SERVICES / CONTACT (reuses pingrid)
   but also a compact decorative strip under hero of inner pages
   not needed since nav reused.
   ============================================================ */

.wordmark-strip {
  background-color: #0B0D0F;
  border-bottom: 1px solid #565B60;
}

/* ---------- Page hero for inner pages (services/contact) ---------- */
.inner-hero {
  background-color: #121417;
  border-bottom: 2px solid #A9743C;
}

.inner-hero .ih-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 30px;
  align-items: center;
}

.inner-hero .ih-eyebrow {
  font-family: "Courier New", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #A9743C;
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.inner-hero h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  color: #EDE7DA;
  margin-bottom: 14px;
}

.inner-hero .ih-lead {
  color: #EDE7DA;
  max-width: 660px;
}

.inner-hero .ih-sealbox {
  background-color: #0B0D0F;
  border: 2px solid #A9743C;
  border-radius: 4px;
  padding: 20px;
  text-align: center;
}

.inner-hero .ih-sealbox .seal-inner-box {
  border: 2px solid #B6402F;
  padding: 14px;
  border-radius: 3px;
  display: inline-block;
  font-family: "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #B6402F;
  font-weight: bold;
  transform: rotate(-4deg);
  font-size: 0.82rem;
}

/* ---------- Content band generic ---------- */
.band {
  background-color: #1B1E22;
}

.band.recess {
  background-color: #0B0D0F;
}

.band .band-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 44px 24px;
}

/* ---------- Service feature rows for services page ---------- */
.svc-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px dashed #565B60;
  align-items: start;
}

.svc-row:last-of-type {
  border-bottom: 0;
}

.svc-row .svc-pin {
  font-family: "Courier New", monospace;
  color: #A9743C;
  font-weight: bold;
  font-size: 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-row .svc-pin .pink-num {
  font-size: 1.6rem;
}

.svc-row .svc-copy h3 {
  font-size: 1.5rem;
  color: #F6F1E5;
  margin-bottom: 8px;
}

.svc-row .svc-copy h3 span.bronze {
  color: #A9743C;
}

.svc-row .svc-copy p {
  color: #EDE7DA;
  margin-bottom: 8px;
}

.svc-row .svc-copy ul {
  margin-left: 22px;
  color: #EDE7DA;
}

.svc-row .svc-copy ul li {
  margin: 4px 0;
}

/* ---------- Process overview (services) ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  background-color: #121417;
  border-top: 4px solid #A9743C;
  border-radius: 4px;
  padding: 18px;
}

.process-step .p-no {
  font-family: "Courier New", monospace;
  color: #B6402F;
  font-weight: bold;
  font-size: 0.9rem;
}

.process-step h4 {
  color: #F6F1E5;
  margin: 8px 0;
}

.process-step p {
  font-size: 0.95rem;
  color: #EDE7DA;
}

/* ---------- CTA band (services) ---------- */
.cta-band {
  background-color: #A9743C;
  color: #121417;
}

.cta-band .cta-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 34px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-band h2 {
  color: #121417;
  font-size: 1.7rem;
  max-width: 700px;
}

.cta-band p {
  color: #121417;
}

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

.contact-form-card {
  background-color: #121417;
  border: 1px solid #565B60;
  border-top: 5px solid #A9743C;
  border-radius: 4px;
  padding: 24px;
}

.contact-form-card h2,
.contact-panel h2 {
  color: #F6F1E5;
  margin-bottom: 16px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  color: #A9743C;
}

.field input,
.field textarea {
  width: 100%;
  background-color: #1B1E22;
  border: 1px solid #565B60;
  border-radius: 3px;
  color: #EDE7DA;
  padding: 11px 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

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

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

.form-note {
  font-size: 0.85rem;
  color: #A9743C;
  font-family: "Courier New", monospace;
  margin-top: 6px;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background-color: #F6F1E5;
  border: 1px solid #565B60;
  border-radius: 4px;
  color: #1B1E22;
  padding: 18px 20px;
}

.contact-card h3 {
  color: #1B1E22;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-card p {
  color: #1B1E22;
}

.contact-card .c-label {
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #A9743C;
  font-weight: bold;
}

.contact-card a {
  color: #A9743C;
  font-weight: bold;
}

.hours-table {
  font-family: Georgia, "Times New Roman", serif;
  color: #1B1E22;
}

.hours-table div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted #565B60;
  padding: 4px 0;
}

/* FAQ */
.faq-item {
  background-color: #121417;
  border: 1px solid #565B60;
  border-left: 4px solid #A9743C;
  border-radius: 4px;
  margin-bottom: 12px;
}

.faq-item .q {
  padding: 14px 16px;
  font-weight: bold;
  color: #F6F1E5;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-item .q .caret {
  color: #A9743C;
  font-family: "Courier New", monospace;
}

.faq-item .a {
  padding: 0 16px 14px 16px;
  color: #EDE7DA;
  display: none;
}

.faq-item.open .a {
  display: block;
}

.faq-item.open .caret {
  transform: rotate(180deg);
  display: inline-block;
}

/* ---------- Compact note strips ---------- */
.note-strip {
  background-color: #F6F1E5;
  color: #1B1E22;
  border-left: 6px solid #A9743C;
  padding: 16px 20px;
  margin: 16px 0;
  border-radius: 3px;
  font-size: 1rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .countroom .hero-wrap {
    grid-template-columns: 1fr;
  }
  .countroom .tally-desk {
    border-right: 0;
    border-bottom: 1px solid #565B60;
    padding: 30px 24px;
  }
  .countroom h1 {
    font-size: 1.9rem;
  }
  .countroom .kick-inner {
    grid-template-columns: 1fr;
  }
  .countroom .kick-stat {
    border-right: 0;
    border-bottom: 1px dotted #A9743C;
    padding-bottom: 12px;
  }
  .countroom .kick-stat:last-child {
    border-bottom: 0;
  }
  .jar-ladder .shelf-row {
    grid-template-columns: 1fr;
  }
  .chop-route .ash-rail {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .jar-cellar .columns-zone {
    grid-template-columns: 1fr;
  }
  .jarcellar .columns-zone {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .inner-hero .ih-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pingrid .pin-links {
    display: none;
  }
  .pingrid .toggle-btn {
    display: inline-block;
  }
  .pingrid .drawer.open {
    display: block;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
}
