/* ==========================================================================
   World Trade Sponsor Co., Limited — Trade Ledger Exchange stylesheet
   Palette: bill-paper #F4F1E9 / ink-brown #2B2721 / jade-seal #3E7D6B
            ledger-cream #FBF8EF / harbor-slate #37474F
            chop-cinnabar #A63B32 / rule-grey #ABA79C
   ========================================================================== */

body {
  margin: 0;
  padding: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  line-height: 1.62;
  background-color: #F4F1E9;
  color: #2B2721;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a {
  color: #3E7D6B;
}

/* ---------- LEDGER THUMB TAB ROW NAVIGATION ---------- */

.ledgerrow {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: #F4F1E9;
}

.ledgerrow-spine {
  background-color: #37474F;
  position: relative;
  border-bottom: 4px solid #3E7D6B;
  padding: 0 16px;
}

.ledgerrow-spine::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 6px;
  height: 2px;
  background-color: #ABA79C;
}

.ledgerrow-spine::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background-color: #ABA79C;
}

.ledgerrow-stitch {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 1px;
  background-image: repeating-linear-gradient(
    90deg,
    #FBF8EF 0,
    #FBF8EF 9px,
    #37474F 9px,
    #37474F 20px
  );
  margin-top: -1px;
}

.ledgerrow-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 6px;
  padding-top: 20px;
  position: relative;
}

.ledgerrow-brand {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #FBF8EF;
  border: 2px solid #3E7D6B;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  padding: 10px 18px 12px;
  margin-right: auto;
}

.ledgerrow-brand-name {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.14em;
  color: #2B2721;
}

.ledgerrow-brand-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #3E7D6B;
  text-transform: uppercase;
  font-family: "Courier New", Courier, monospace;
}

.chopglyph {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #A63B32;
  color: #FBF8EF;
  font-family: "Courier New", Courier, monospace;
  font-size: 17px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
  transform: rotate(-6deg);
  border-radius: 3px;
  letter-spacing: 0;
}

.chopglyph-jade {
  background-color: #3E7D6B;
}

.ledgerrow-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ledgerrow-tab {
  background-color: #FBF8EF;
  border: 2px solid #37474F;
  border-bottom: none;
  border-radius: 7px 7px 0 0;
  padding: 9px 15px 10px;
  text-decoration: none;
  color: #2B2721;
  font-size: 14px;
  letter-spacing: 0.04em;
  display: block;
  white-space: nowrap;
}

.ledgerrow-tab:nth-child(1) {
  padding-top: 16px;
  min-width: 92px;
  text-align: center;
}

.ledgerrow-tab:nth-child(2) {
  padding-top: 12px;
  min-width: 106px;
  text-align: center;
}

.ledgerrow-tab:nth-child(3) {
  padding-top: 18px;
  min-width: 94px;
  text-align: center;
}

.ledgerrow-tab:nth-child(4) {
  padding-top: 13px;
  min-width: 100px;
  text-align: center;
}

.ledgerrow-tab:nth-child(5) {
  padding-top: 16px;
  min-width: 92px;
  text-align: center;
}

.ledgerrow-tab-name {
  display: block;
  font-weight: bold;
  font-size: 15px;
}

.ledgerrow-tab-tag {
  display: block;
  font-family: "Courier New", Courier, monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3E7D6B;
  margin-top: 2px;
}

.ledgerrow-tab:hover {
  background-color: #3E7D6B;
  color: #FBF8EF;
}

.ledgerrow-tab:hover .ledgerrow-tab-tag {
  color: #FBF8EF;
}

.ledgerrow-tab-on {
  background-color: #3E7D6B;
  color: #FBF8EF;
}

.ledgerrow-tab-on .ledgerrow-tab-tag {
  color: #FBF8EF;
}

.ledgerrow-headband {
  height: 7px;
  background-color: #3E7D6B;
  border-bottom: 2px solid #2B2721;
}

.ledgerrow-toggle {
  display: none;
  background-color: #FBF8EF;
  color: #2B2721;
  border: 2px solid #3E7D6B;
  border-radius: 6px;
  font-family: "Courier New", Courier, monospace;
  font-size: 15px;
  letter-spacing: 0.12em;
  padding: 9px 14px;
  margin: 12px auto;
  cursor: pointer;
}

.ledgerrow-toggle-bar {
  width: 100%;
  background-color: #37474F;
  text-align: center;
}

/* ---------- HERO: BILL OF LADING DESK ---------- */

.ladingdesk {
  max-width: 1180px;
  margin: 0 auto;
  padding: 52px 24px 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.ladingdesk-copy {
  flex: 1 1 480px;
  min-width: 300px;
}

.ladingdesk-eyebrow {
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #3E7D6B;
  border-left: 5px solid #A63B32;
  padding-left: 12px;
  margin: 0 0 20px;
}

.ladingdesk-title {
  font-size: 46px;
  line-height: 1.12;
  margin: 0 0 22px;
  color: #2B2721;
  letter-spacing: -0.01em;
}

.ladingdesk-title em {
  color: #3E7D6B;
  font-style: normal;
  border-bottom: 5px solid #3E7D6B;
  padding-bottom: 2px;
}

.ladingdesk-lede {
  font-size: 17px;
  color: #2B2721;
  margin: 0 0 18px;
  max-width: 620px;
}

.ladingdesk-note {
  font-size: 15px;
  color: #2B2721;
  background-color: #FBF8EF;
  border-left: 4px solid #3E7D6B;
  padding: 12px 16px;
  margin: 0 0 26px;
  max-width: 620px;
}

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

.cardlink {
  display: inline-block;
  background-color: #FBF8EF;
  border: 2px solid #2B2721;
  border-radius: 3px;
  padding: 14px 22px;
  text-decoration: none;
  color: #2B2721;
  position: relative;
  box-shadow: 4px 4px 0 #3E7D6B;
}

.cardlink:hover {
  background-color: #3E7D6B;
  color: #FBF8EF;
  box-shadow: 4px 4px 0 #2B2721;
}

.cardlink-title {
  display: block;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.03em;
}

.cardlink-sub {
  display: block;
  font-family: "Courier New", Courier, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 4px;
  color: #3E7D6B;
}

.cardlink:hover .cardlink-sub {
  color: #FBF8EF;
}

.ladingdesk-spread {
  flex: 1 1 400px;
  min-width: 300px;
}

/* open bound ledger */
.ledgervisual {
  background-color: #FBF8EF;
  border: 3px solid #2B2721;
  border-radius: 4px;
  padding: 26px 24px 20px;
  position: relative;
  box-shadow: 10px 10px 0 #37474F;
}

.ledgervisual::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 12px;
  background-color: #37474F;
  border-right: 2px solid #2B2721;
}

.ledgervisual-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 3px double #2B2721;
  padding: 0 0 8px 16px;
  margin-bottom: 6px;
}

.ledgervisual-head-name {
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2B2721;
}

.ledgervisual-head-folio {
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  color: #A63B32;
  letter-spacing: 0.1em;
}

.ledgervisual-rule {
  height: 1px;
  background-color: #ABA79C;
  margin: 12px 0 12px 16px;
}

.ledgerline {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 10px 16px;
  font-size: 14px;
}

.ledgerline-chop {
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  color: #3E7D6B;
  border: 1px solid #3E7D6B;
  padding: 1px 5px;
  white-space: nowrap;
}

.ledgerline-text {
  flex: 1;
  border-bottom: 1px dotted #ABA79C;
  color: #2B2721;
}

.ledgerline-amt {
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
  color: #2B2721;
  white-space: nowrap;
}

.sealstamp {
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 104px;
  height: 104px;
  border: 4px solid #3E7D6B;
  border-radius: 50%;
  transform: rotate(-14deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #FBF8EF;
}

.sealstamp-inner {
  border: 1px solid #3E7D6B;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.sealstamp-line1 {
  font-family: "Courier New", Courier, monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #3E7D6B;
  text-transform: uppercase;
}

.sealstamp-line2 {
  font-size: 15px;
  font-weight: bold;
  color: #3E7D6B;
  letter-spacing: 0.06em;
}

.sealstamp-line3 {
  font-family: "Courier New", Courier, monospace;
  font-size: 9px;
  color: #A63B32;
}

.ladingstrip {
  background-color: #37474F;
  color: #F4F1E9;
  margin: 14px 0 0 16px;
  padding: 14px 16px 12px;
  border-radius: 3px;
}

.ladingstrip-head {
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F4F1E9;
  border-bottom: 1px solid #ABA79C;
  padding-bottom: 6px;
  margin-bottom: 8px;
}

.ladingcargo {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-size: 13px;
  padding: 4px 0;
  color: #F4F1E9;
}

.ladingcargo-tick {
  color: #F4F1E9;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
}

.ladingcargo-name {
  flex: 1;
}

.ladingcargo-mark {
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  color: #F4F1E9;
  letter-spacing: 0.08em;
}

.abacusrail {
  margin: 18px 0 0 16px;
  background-color: #F4F1E9;
  border: 2px solid #ABA79C;
  border-radius: 3px;
  padding: 10px 12px;
}

.abacusrail-bar {
  height: 3px;
  background-color: #2B2721;
  position: relative;
  margin: 12px 0;
}

.abacusrail-beads {
  display: flex;
  gap: 9px;
  padding: 0 4px;
}

.abacusrail-beads-top {
  margin-bottom: -6px;
}

.abacusrail-beads-bot {
  margin-top: -6px;
}

.abacusbead {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #3E7D6B;
  border: 2px solid #2B2721;
  display: inline-block;
}

.abacusbead-alt {
  background-color: #A63B32;
}

.provenance-ribbon {
  position: absolute;
  left: 22px;
  bottom: -12px;
  width: 130px;
  height: 20px;
  background-color: #A63B32;
  border-radius: 2px;
  transform: rotate(-2deg);
}

.provenance-ribbon::after {
  content: "PROVENANCE";
  position: absolute;
  left: 0;
  right: 0;
  top: 3px;
  text-align: center;
  font-family: "Courier New", Courier, monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
  color: #FBF8EF;
}

/* ---------- SECTION SHELLS ---------- */

.section-pad {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px;
}

.section-head {
  margin-bottom: 34px;
}

.section-kicker {
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #A63B32;
  margin: 0 0 10px;
}

.section-title {
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 12px;
  color: #2B2721;
}

.section-title-line {
  width: 90px;
  height: 5px;
  background-color: #3E7D6B;
  margin: 0 0 16px;
}

.section-lede {
  font-size: 17px;
  color: #2B2721;
  max-width: 800px;
  margin: 0;
}

.band-cream {
  background-color: #FBF8EF;
  border-top: 1px solid #ABA79C;
  border-bottom: 1px solid #ABA79C;
}

.band-slate {
  background-color: #37474F;
  color: #F4F1E9;
}

.band-slate .section-title,
.band-slate .section-lede,
.band-slate h3,
.band-slate p {
  color: #F4F1E9;
}

.band-slate .section-title-line {
  background-color: #3E7D6B;
}

/* ---------- TALLY BOARD RUN ---------- */

.tallyrun {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px;
}

.tallycourse {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 26px;
}

.tallycourse-offset {
  margin-left: 42px;
}

.tallyboard {
  flex: 1 1 300px;
  min-width: 280px;
  background-color: #FBF8EF;
  border: 3px solid #37474F;
  border-radius: 3px;
  padding: 22px 20px 18px;
  position: relative;
  box-shadow: 6px 6px 0 #ABA79C;
}

.tallyboard-skew-a {
  transform: rotate(-1deg);
}

.tallyboard-skew-b {
  transform: rotate(1deg);
}

.tallyboard-lot {
  position: absolute;
  top: -13px;
  left: 18px;
  background-color: #3E7D6B;
  color: #FBF8EF;
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 3px 10px;
  border-radius: 2px;
}

.tallyboard-chop {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 2px solid #3E7D6B;
  border-radius: 4px;
  color: #3E7D6B;
  font-family: "Courier New", Courier, monospace;
  font-size: 10px;
  line-height: 30px;
  text-align: center;
  transform: rotate(-8deg);
}

.tallyboard-title {
  font-size: 20px;
  margin: 12px 0 10px;
  color: #2B2721;
}

.tallyboard-text {
  font-size: 15px;
  color: #2B2721;
  margin: 0 0 16px;
}

.tallyboard-text a {
  color: #3E7D6B;
  text-decoration: underline;
}

.tallymarks {
  border-top: 1px solid #ABA79C;
  padding-top: 10px;
  font-family: "Courier New", Courier, monospace;
  font-size: 20px;
  letter-spacing: 0.28em;
  color: #2B2721;
}

.tallymarks-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3E7D6B;
  margin-bottom: 3px;
}

/* ---------- OPEN SEASON ACCENT STRIP ---------- */

.openseason {
  background-color: #37474F;
  color: #F4F1E9;
  border-top: 6px solid #3E7D6B;
  border-bottom: 6px solid #3E7D6B;
}

.openseason-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.openseason-mark {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border: 3px solid #A63B32;
  border-radius: 50%;
  color: #F4F1E9;
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  line-height: 20px;
  text-align: center;
  padding: 6px 0 0;
  transform: rotate(-10deg);
}

.openseason-text {
  flex: 1 1 400px;
  min-width: 260px;
  margin: 0;
  font-size: 18px;
  color: #F4F1E9;
}

.openseason-text strong {
  color: #FBF8EF;
  border-bottom: 3px solid #3E7D6B;
}

.openseason-link {
  flex: 0 0 auto;
  background-color: #FBF8EF;
  color: #2B2721;
  border: 2px solid #3E7D6B;
  border-radius: 3px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
}

.openseason-link:hover {
  background-color: #3E7D6B;
  color: #FBF8EF;
}

/* ---------- PROSE / LEDGER NOTES ---------- */

.prosecols {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
}

.prosecols-main {
  flex: 2 1 460px;
  min-width: 300px;
}

.prosecols-side {
  flex: 1 1 300px;
  min-width: 260px;
}

.prosecols p {
  margin: 0 0 16px;
  color: #2B2721;
}

.prosecols h3 {
  font-size: 22px;
  margin: 0 0 12px;
  color: #2B2721;
}

.margin-note {
  background-color: #FBF8EF;
  border-left: 5px solid #A63B32;
  border-top: 1px solid #ABA79C;
  border-right: 1px solid #ABA79C;
  border-bottom: 1px solid #ABA79C;
  padding: 18px 18px 16px;
  margin: 0 0 20px;
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
  line-height: 1.7;
  color: #2B2721;
}

.margin-note-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3E7D6B;
  margin-bottom: 8px;
  border-bottom: 1px dotted #ABA79C;
  padding-bottom: 5px;
}

.cardtray {
  background-color: #FBF8EF;
  border: 2px solid #37474F;
  border-radius: 3px;
  padding: 20px;
  margin: 0 0 18px;
}

.cardtray h4 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #2B2721;
}

.cardtray p {
  margin: 0;
  font-size: 14px;
  color: #2B2721;
}

.cardtray a {
  color: #3E7D6B;
  font-weight: bold;
}

/* ---------- CORRESPONDENCE TRAY FOOTER ---------- */

.cordray {
  background-color: #37474F;
  color: #F4F1E9;
  border-top: 6px solid #3E7D6B;
}

.cordray-stitch {
  height: 12px;
  background-image: repeating-linear-gradient(
    90deg,
    #FBF8EF 0,
    #FBF8EF 10px,
    #37474F 10px,
    #37474F 22px
  );
  border-bottom: 2px solid #2B2721;
}

.cordray-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 24px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.cordray-blotter {
  flex: 1 1 320px;
  min-width: 280px;
}

.cordray-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.cordray-brand-name {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.12em;
  color: #FBF8EF;
}

.cordray-blurb {
  font-size: 15px;
  color: #F4F1E9;
  margin: 0;
  max-width: 420px;
}

.cordray-slot {
  flex: 1 1 200px;
  min-width: 180px;
  background-color: #FBF8EF;
  border-radius: 3px;
  padding: 16px 16px 14px;
  border-left: 5px solid #3E7D6B;
}

.cordray-slot-title {
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A63B32;
  margin: 0 0 10px;
  border-bottom: 1px solid #ABA79C;
  padding-bottom: 6px;
}

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

.cordray-links li {
  margin: 0 0 7px;
}

.cordray-links a {
  color: #2B2721;
  text-decoration: none;
  font-size: 14px;
}

.cordray-links a:hover {
  color: #3E7D6B;
  text-decoration: underline;
}

.cordray-abacus {
  display: flex;
  gap: 7px;
  margin-top: 14px;
}

.cordray-abacusbead {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #3E7D6B;
  border: 1px solid #FBF8EF;
}

.cordray-abacusbead-alt {
  background-color: #A63B32;
}

.cordray-edge {
  border-top: 1px solid #ABA79C;
  background-color: #2B2721;
}

.cordray-edge-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: center;
  color: #F4F1E9;
  font-size: 13px;
}

.cordray-edge-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #F4F1E9;
}

.cordray-edge-item a {
  color: #FBF8EF;
  text-decoration: underline;
}

.cordray-copy {
  margin-left: auto;
  color: #F4F1E9;
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
}

/* ---------- SERVICES PAGE EXTRAS ---------- */

.svc-process {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 3px solid #37474F;
  border-radius: 3px;
  overflow: hidden;
  background-color: #FBF8EF;
}

.svc-step {
  flex: 1 1 220px;
  min-width: 200px;
  padding: 22px 20px;
  border-right: 1px solid #ABA79C;
  position: relative;
}

.svc-step:last-child {
  border-right: none;
}

.svc-step-num {
  display: inline-block;
  background-color: #3E7D6B;
  color: #FBF8EF;
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  padding: 2px 9px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.svc-step h4 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #2B2721;
}

.svc-step p {
  margin: 0;
  font-size: 14px;
  color: #2B2721;
}

.svc-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  padding: 30px 0;
  border-bottom: 1px solid #ABA79C;
}

.svc-detail:last-child {
  border-bottom: none;
}

.svc-detail-index {
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  background-color: #FBF8EF;
  border: 3px solid #3E7D6B;
  border-radius: 50%;
  color: #2B2721;
  font-family: "Courier New", Courier, monospace;
  font-size: 20px;
  line-height: 68px;
  text-align: center;
}

.svc-detail-body {
  flex: 1 1 460px;
  min-width: 280px;
}

.svc-detail-body h3 {
  margin: 0 0 10px;
  font-size: 24px;
  color: #2B2721;
}

.svc-detail-body p {
  margin: 0 0 12px;
  color: #2B2721;
}

.svc-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.svc-tag {
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #2B2721;
  background-color: #FBF8EF;
  border: 1px solid #3E7D6B;
  border-radius: 2px;
  padding: 3px 9px;
}

.ctaband {
  background-color: #37474F;
  border-top: 6px solid #3E7D6B;
  border-bottom: 6px solid #3E7D6B;
  color: #F4F1E9;
}

.ctaband-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.ctaband-copy {
  flex: 1 1 420px;
  min-width: 280px;
}

.ctaband-copy h2 {
  margin: 0 0 10px;
  font-size: 27px;
  color: #FBF8EF;
}

.ctaband-copy p {
  margin: 0;
  font-size: 16px;
  color: #F4F1E9;
}

.ctaband-actions {
  flex: 0 0 auto;
}

/* ---------- CONTACT PAGE EXTRAS ---------- */

.contactgrid {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
}

.contactform-card {
  flex: 1 1 480px;
  min-width: 300px;
  background-color: #FBF8EF;
  border: 3px solid #37474F;
  border-radius: 3px;
  padding: 26px 24px;
  box-shadow: 8px 8px 0 #3E7D6B;
}

.contactform-title {
  margin: 0 0 6px;
  font-size: 23px;
  color: #2B2721;
}

.contactform-sub {
  margin: 0 0 20px;
  font-size: 14px;
  font-family: "Courier New", Courier, monospace;
  color: #3E7D6B;
}

.field {
  margin: 0 0 16px;
}

.field-label {
  display: block;
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2B2721;
  margin-bottom: 6px;
}

.field-input,
.field-textarea {
  width: 100%;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 15px;
  color: #2B2721;
  background-color: #F4F1E9;
  border: 2px solid #37474F;
  border-radius: 2px;
  padding: 11px 12px;
}

.field-input-tall {
  min-height: 150px;
  resize: vertical;
}

.field-input:focus,
.field-textarea:focus {
  outline: 3px solid #3E7D6B;
  background-color: #FBF8EF;
}

.field-submit {
  background-color: #3E7D6B;
  color: #FBF8EF;
  border: 2px solid #2B2721;
  border-radius: 3px;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 26px;
  cursor: pointer;
}

.field-submit:hover {
  background-color: #37474F;
}

.formstatus {
  margin: 14px 0 0;
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
  color: #A63B32;
  min-height: 20px;
}

.contactaside {
  flex: 1 1 320px;
  min-width: 280px;
}

.infoplate {
  background-color: #37474F;
  color: #F4F1E9;
  border-radius: 3px;
  padding: 22px 20px;
  margin-bottom: 20px;
}

.infoplate-title {
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FBF8EF;
  border-bottom: 1px solid #ABA79C;
  padding-bottom: 8px;
  margin: 0 0 14px;
}

.infoplate p {
  margin: 0 0 10px;
  font-size: 15px;
  color: #F4F1E9;
}

.infoplate a {
  color: #FBF8EF;
  text-decoration: underline;
}

.infoplate-strong {
  display: block;
  font-weight: bold;
  color: #FBF8EF;
}

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

.faqitem {
  border: 2px solid #37474F;
  border-radius: 3px;
  background-color: #FBF8EF;
  margin-bottom: 14px;
}

.faqq {
  width: 100%;
  text-align: left;
  background-color: #FBF8EF;
  border: none;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  font-weight: bold;
  color: #2B2721;
  padding: 15px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.faqq-mark {
  font-family: "Courier New", Courier, monospace;
  color: #3E7D6B;
  font-size: 18px;
  line-height: 1;
}

.faqa {
  margin: 0;
  padding: 0 16px 16px;
  font-size: 15px;
  color: #2B2721;
  border-top: 1px solid #ABA79C;
  padding-top: 12px;
}

/* ---------- SCROLL REVEAL ---------- */

.reveal {
  transform: translateY(16px);
}

.reveal-on {
  transform: translateY(0);
  transition: transform 620ms ease-out;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 920px) {
  .ledgerrow-inner {
    align-items: center;
  }

  .ledgerrow-brand {
    margin-right: 0;
    width: 100%;
    justify-content: center;
    border-bottom: 2px solid #3E7D6B;
    border-radius: 8px 8px 0 0;
  }

  .ledgerrow-toggle {
    display: block;
    width: 100%;
    margin: 10px 0;
  }

  .ledgerrow-tabs {
    display: none;
    width: 100%;
    padding-bottom: 12px;
  }

  .ledgerrow-tabs-open {
    display: flex;
  }

  .ledgerrow-tab {
    flex: 1 1 44%;
    min-width: 44%;
  }

  .ledgerrow-tab:nth-child(1),
  .ledgerrow-tab:nth-child(2),
  .ledgerrow-tab:nth-child(3),
  .ledgerrow-tab:nth-child(4),
  .ledgerrow-tab:nth-child(5) {
    padding-top: 11px;
    min-width: 44%;
  }

  .ladingdesk-title {
    font-size: 36px;
  }

  .ladingdesk {
    padding: 34px 20px 40px;
  }

  .tallycourse-offset {
    margin-left: 0;
  }

  .tallyboard-skew-a,
  .tallyboard-skew-b {
    transform: none;
  }

  .sealstamp {
    width: 84px;
    height: 84px;
  }

  .sealstamp-inner {
    width: 62px;
    height: 62px;
  }

  .cordray-copy {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .ladingdesk-title {
    font-size: 29px;
  }

  .section-title {
    font-size: 25px;
  }

  .ledgerrow-brand-name {
    font-size: 17px;
  }

  .cordray-inner,
  .ledgerrow-inner,
  .ladingdesk,
  .tallyrun,
  .section-pad,
  .openseason-inner,
  .cordray-edge-inner,
  .ctaband-inner {
    padding-left: 15px;
    padding-right: 15px;
  }

  .svc-detail-index {
    width: 58px;
    height: 58px;
    line-height: 52px;
    font-size: 16px;
  }
}
