/* ============================================================
   JIGSAW UTAH — Utah Jigsaw Puzzle Association
   Theme: A puzzle club workroom
   FELT-TABLE at #F3EFE6, ebony-ink text #2E2B26
   Accent TEAL-PIECE #3E7E7B, FELT-GREIGE #E5DFD1,
   OAK-TABLE #5C4A38, SORT-TRAY WHITE #FBF8F1,
   CORAL-KNOB #C4574E (small knob dots only)
   ============================================================ */

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

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

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
table {
  margin: 0;
  padding: 0;
}

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

a {
  color: #3E7E7B;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.eyebrow {
  display: block;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  color: #3E7E7B;
}

.paneintro .eyebrow,
.statementrow .eyebrow {
  margin-bottom: 4px;
}

.flowhead .eyebrow,
.meethead .eyebrow {
  color: #3E7E7B;
}

.clubnight .eyebrow {
  color: #376F6C;
}

.closetcaption .eyebrow {
  color: #3E7E7B;
}

/* decorative coral dots that sit on station box lids */
.station .knopper {
  display: inline-flex;
  gap: 7px;
  margin-bottom: 6px;
}

.station .knopper i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #C4574E;
  font-style: normal;
}

ul,
ol {
  list-style: none;
}

/* ---------- Scroll reveal (safe default via noscript) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---------- Sorting-Tray Navigation ---------- */
.sortingtray {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #5C4A38;
  box-shadow: 0 6px 18px #4d4232;
}

.sortingtray .trayrail {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 28px 0;
  position: relative;
}

/* bottom edge of small tray dividers */
.sortingtray .trayrail::after {
  content: "";
  display: block;
  width: 100%;
  height: 7px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    90deg,
    #5C4A38 0,
    #5C4A38 22px,
    #3E7E7B 22px,
    #3E7E7B 27px
  );
  border-top: 1px solid #E5DFD1;
}

.sortingtray .brandplate {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #FBF8F1;
  border-radius: 10px;
  padding: 8px 16px;
  box-shadow: 0 3px 0 #3E7E7B;
  color: #2E2B26;
  text-decoration: none;
  margin-bottom: 14px;
}

.sortingtray .brandplate:hover {
  text-decoration: none;
}

.sortingtray .piece-glyph {
  width: 26px;
  height: 26px;
  background-color: #3E7E7B;
  border-radius: 7px;
  position: relative;
  flex: 0 0 auto;
}

.sortingtray .piece-glyph::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 9px;
  background: #3E7E7B;
  border-radius: 50%;
  top: -5px;
  left: 5px;
}

.sortingtray .piece-glyph::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #FBF8F1;
  border-radius: 50%;
  bottom: -3px;
  right: 5px;
}

.sortingtray .brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.sortingtray .brand-word strong {
  font-size: 20px;
  letter-spacing: 0.03em;
}

.sortingtray .brand-word small {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5C4A38;
}

.sortingtray .traylabels {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.sortingtray .tray-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.sortingtray .traylabels a,
.sortingtray .tray-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FBF8F1;
  color: #2E2B26;
  border-radius: 8px 8px 0 0;
  padding: 9px 15px 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  box-shadow: inset 0 -3px 0 #C8C09F;
  margin-bottom: 7px;
  text-decoration: none;
}

.sortingtray .traylabels a:hover,
.sortingtray .tray-links a:hover {
  background-color: #E5DFD1;
  text-decoration: none;
}

.sortingtray .tray-num {
  font-size: 10px;
  color: #5C4A38;
  border: 1px solid #5C4A38;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, "Times New Roman", serif;
}

.sortingtray .knob {
  width: 9px;
  height: 9px;
  background-color: #C4574E;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
}

.sortingtray .meets-chip {
  background-color: #3E7E7B !important;
  color: #FBF8F1 !important;
}

.sortingtray .meets-chip .tray-num {
  color: #FBF8F1;
  border-color: #FBF8F1;
}

.sortingtray .meets-chip .knob {
  background-color: #C4574E;
}

/* mobile toggle */
.sortingtray .navtoggle {
  display: none;
  margin-bottom: 14px;
  margin-left: auto;
  background-color: #3E7E7B;
  color: #FBF8F1;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 16px;
  font-family: Georgia, "Times New Roman", serif;
  cursor: pointer;
}

.swapflow .eyebrow {
  color: #E5DFD1;
}

.swapflow .inner960 {
  text-align: center;
  color: #FBF8F1;
}

.swapflow .inner960 h2 {
  color: #FBF8F1;
  font-size: 30px;
  margin: 6px 0 10px;
}

.swapflow .inner960 .lede {
  max-width: 760px;
  margin: 0 auto 16px;
  color: #E5DFD1;
}

.swapflow .inner960 p {
  color: #E5DFD1;
  max-width: 760px;
  margin: 0 auto 8px;
}

/* ---------- Felt Table Hero ---------- */
.herowrap {
  background-color: #5C4A38;
}

.felttable {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.felttable .tabletop {
  position: relative;
  background-color: #E5DFD1;
  border-radius: 18px 18px 0 0;
  padding: 44px 40px 40px;
  min-height: 480px;
  overflow: hidden;
}

/* the half-assembled puzzle — pattern of soft squares and knobs */
.felttable .feltmat {
  position: absolute;
  inset: 44px 40px auto;
  height: calc(100% - 88px);
  pointer-events: none;
}

.tabletop .puzzle-shadow {
  position: absolute;
  width: 300px;
  height: 300px;
  right: 20px;
  bottom: 24px;
  border-radius: 12px;
  background-color: #F1EADA;
  border: 2px dashed #C9BFA6;
}

.tabletop .puzzle-shadow::before,
.tabletop .puzzle-shadow::after {
  content: "";
  position: absolute;
  background-color: #3E7E7B;
  border-radius: 6px;
}

.tabletop .puzzle-shadow::before {
  width: 120px;
  height: 90px;
  top: 44px;
  left: 40px;
}

.tabletop .puzzle-shadow::after {
  width: 70px;
  height: 70px;
  bottom: 50px;
  right: 40px;
  background-color: #C4574E;
}

/* sorting trays with pieces beside the puzzle */
.tabletop .trayone,
.tabletop .traytwo,
.tabletop .traythree {
  position: absolute;
  background-color: #FBF8F1;
  border-radius: 6px;
  box-shadow: 0 4px 10px #4d4232;
}

.tabletop .trayone {
  width: 84px;
  height: 46px;
  right: 24px;
  top: 12px;
}

.tabletop .traytwo {
  width: 60px;
  height: 34px;
  right: -6px;
  top: 120px;
  background-color: #E9E3D4;
}

.tabletop .traythree {
  width: 70px;
  height: 40px;
  right: 8px;
  bottom: 34px;
  background-color: #D8D2C2;
}

/* round club timer */
.felttable .clubtimer {
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background-color: #5C4A38;
  border: 5px solid #3E7E7B;
  top: 30px;
  left: 30px;
}

.felttable .clubtimer::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 30px;
  background-color: #C4574E;
  left: 43px;
  top: 13px;
  transform-origin: bottom center;
  transform: rotate(130deg);
  border-radius: 3px;
}

.felttable .timehand {
  content: "";
  position: absolute;
  width: 3px;
  height: 22px;
  background-color: #FBF8F1;
  left: 44px;
  top: 22px;
  transform-origin: bottom center;
  border-radius: 3px;
}

.felttable .liddedbox {
  position: absolute;
  width: 96px;
  height: 34px;
  background-color: #3E7E7B;
  border-radius: 5px;
  left: 30px;
  bottom: 30px;
}

.felttable .liddedbox::before {
  content: "";
  position: absolute;
  width: 74px;
  height: 7px;
  background-color: #5C4A38;
  left: 9px;
  top: -6px;
  border-radius: 3px 3px 0 0;
}

/* H1 panel on the assembled corner */
.felttable .h1panel {
  position: relative;
  z-index: 3;
  max-width: 560px;
  background-color: #FBF8F1;
  border-radius: 12px;
  padding: 30px 32px;
  box-shadow: 0 10px 26px #4d4232;
  margin-top: 20px;
}

.felttable .eyebrow {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  color: #3E7E7B;
  margin-bottom: 10px;
}

.felttable h1 {
  font-size: 40px;
  line-height: 1.12;
  color: #2E2B26;
  margin-bottom: 14px;
}

.felttable .leadcopy {
  font-size: 17px;
  color: #2E2B26;
  margin-bottom: 22px;
}

.felttable .ctarow {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-solid {
  background-color: #3E7E7B;
  color: #FBF8F1;
}

.btn-solid:hover {
  background-color: #376F6C;
  color: #FBF8F1;
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  color: #5C4A38;
  border-color: #5C4A38;
}

.btn-outline:hover {
  background-color: #5C4A38;
  color: #FBF8F1;
  text-decoration: none;
}

.btn-tray {
  background-color: #FBF8F1;
  color: #3E7E7B;
}

.btn-tray:hover {
  background-color: #E5DFD1;
  text-decoration: none;
}

/* oak kick strip with three inline stats */
.felttable .kickstrip {
  background-color: #5C4A38;
  border-radius: 0 0 18px 18px;
  padding: 20px 24px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 28px;
}

.felttable .stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 18px;
}

.felttable .stat + .stat {
  border-left: 2px solid #C4574E;
}

.felttable .stat strong {
  color: #FBF8F1;
  font-size: 26px;
  line-height: 1.05;
}

.felttable .stat span {
  color: #E5DFD1;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.25;
  max-width: 120px;
}

/* ---------- Statement row (500k pledge) ---------- */
.statementrow {
  background-color: #E5DFD1;
  padding: 56px 24px;
}

.statementrow .inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.statementrow .figure-500k {
  font-size: 96px;
  font-weight: bold;
  color: #2E2B26;
  line-height: 1;
  letter-spacing: -0.01em;
}

.statementrow .pledge {
  font-size: 21px;
  color: #2E2B26;
  max-width: 620px;
  margin: 18px auto 0;
  line-height: 1.6;
}

/* ---------- Piece-Pane section ---------- */
.piecepanes {
  padding: 64px 24px 10px;
}

.piecepanes .paneintro {
  max-width: 860px;
  margin: 0 auto 44px;
  text-align: center;
  padding: 0 24px;
}

.piecepanes .paneintro h2 {
  font-size: 34px;
  color: #2E2B26;
}

.piecepanes .paneintro p {
  color: #2E2B26;
  margin-top: 12px;
  font-size: 17px;
}

.pane-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.piecepane {
  display: flex;
  align-items: center;
  gap: 34px;
  background-color: #FBF8F1;
  border-radius: 12px;
  padding: 30px 34px;
  margin: 0 0 24px;
  box-shadow: 0 4px 14px #4d4232;
  position: relative;
}

.piecepane:nth-child(even) {
  margin-left: 60px;
}

.piecepane:nth-child(odd) {
  margin-right: 0;
}

/* interlocking edge graphic: a row of knobs and sockets */
.piecepane .interlock {
  position: relative;
  flex: 0 0 150px;
  height: 160px;
}

.piecepane .interlock .rowbox {
  position: absolute;
  inset: 0;
}

.piecepane .pieceb {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 2px solid #3E7E7B;
  border-radius: 8px;
  margin: 8px;
  position: relative;
  vertical-align: top;
}

.pieceb-teal {
  background-color: #3E7E7B;
}

.pieceb-coral {
  background-color: #C4574E;
  border-color: #C4574E;
}

.pieceb-oak {
  background-color: #5C4A38;
  border-color: #5C4A38;
}

.piecepane .panenum {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3E7E7B;
  font-weight: bold;
  font-size: 14px;
}

.piecepane .panenum .knob {
  width: 10px;
  height: 10px;
  background-color: #C4574E;
}

.piecepane .pane-text h3 {
  font-size: 24px;
  color: #5C4A38;
  margin-bottom: 8px;
}

.piecepane .pane-text p {
  color: #2E2B26;
  margin-bottom: 10px;
}

.piecepane .detaillink {
  font-weight: bold;
  color: #3E7E7B;
}

/* ---------- Swap-Meet flow ---------- */
.swapflow {
  background-color: #5C4A38;
  padding: 64px 24px;
}

.swapflow .flowhead {
  max-width: 860px;
  margin: 0 auto 36px;
  text-align: center;
  padding: 0 24px;
  color: #FBF8F1;
}

.swapflow .flowhead h2 {
  font-size: 34px;
  color: #FBF8F1;
}

.swapflow .flowhead p {
  color: #E5DFD1;
  margin-top: 10px;
}

.stationrow {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.stationrow .lidename {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stationrow .station {
  background-color: #FBF8F1;
  border-radius: 8px;
  min-width: 158px;
  text-align: center;
  padding: 14px 10px 10px;
  box-shadow: 0 4px 8px #2f271c;
  color: #2E2B26;
  font-weight: bold;
}

/* the dashed teal trade line joining stations */
.stationrow .lidlink {
  background-color: transparent;
  min-width: 34px;
  min-height: 40px;
  position: relative;
  flex: 0 0 auto;
}

.lidlink::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  border-top: 2px dashed #3E7E7B;
}

.lidlink::after {
  content: "→";
  color: #C4574E;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.stationrow .station .knopper {
  display: flex;
  gap: 8px;
  width: 100%;
  padding-left: 24%;
}

.stationrow .caption {
  color: #E5DFD1;
  font-size: 13px;
  margin-top: 8px;
  max-width: 158px;
  text-align: center;
  line-height: 1.5;
}

.stamp {
  text-align: center;
  margin: 36px auto 0;
  display: inline-block;
  border: 3px solid #C4574E;
  color: #C4574E;
  border-radius: 6px;
  padding: 10px 26px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 18px;
}

/* ---------- Opening / Intro slice band ---------- */
.closetrow {
  background-color: #5C4A38;
  color: #FBF8F1;
  padding: 44px 24px;
}

.closetrow .inner960 {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.closetrow h2 {
  color: #FBF8F1;
  font-size: 28px;
}

.closetrow p {
  color: #E5DFD1;
  margin-top: 12px;
}

/* ============================================================
   SECTION PIECE COUNTER / small feature band variants
   (kept minimal to avoid card-grid sameness)
   Sections above and below already avoid a uniform grid
   ============================================================ */

/* ---------- Club-night accent strip (TEAL-PIECE) ---------- */
.clubnight {
  background-color: #3E7E7B;
  padding: 56px 24px;
}

.clubnight .inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
  color: #5C4A38;
}

.clubnight .table-open {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5C4A38;
  border: 2px solid #5C4A38;
  border-radius: 6px;
  padding: 4px 14px;
  margin-bottom: 18px;
  font-weight: bold;
}

.clubnight h2 {
  color: #5C4A38;
  font-size: 32px;
  margin-bottom: 10px;
}

.clubnight p.lede {
  color: #F3EFE6;
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 26px;
}

/* ============================================================
   BOX-SHELF FOOTER
   ============================================================ */
.boxshelf {
  background-color: #5C4A38;
  color: #F3EFE6;
  padding-top: 44px;
  position: relative;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* top edge shelf of lidded puzzle boxes */
.shelftop {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  padding-bottom: 26px;
  border-bottom: 4px solid #3E7E7B;
}

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

.footbox {
  width: 88px;
  height: 40px;
  background-color: #FBF8F1;
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
}

.footbox::before {
  content: "";
  width: 58px;
  height: 8px;
  background-color: #C4574E;
  border-radius: 3px 3px 0 0;
  position: absolute;
  top: -8px;
  left: 14px;
}

.footbox.lidteal {
  background-color: #FFFDF7;
}

.footbox .pieceno {
  font-size: 13px;
  color: #2E2B26;
  font-weight: bold;
  position: relative;
}

.footbox .piecemark {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  top: 6px;
  left: 8px;
  background-color: #3E7E7B;
}

.footbox.coral .piecemark {
  background-color: #C4574E;
}

.footbox.oak .piecemark {
  background-color: #5C4A38;
}

.mottoslab {
  color: #F3EFE6;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 6px;
}

.mottoslab strong {
  color: #FBF8F1;
}

/* three link columns */
.footcols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding: 34px 0 20px;
}

.footcols h4 {
  color: #FBF8F1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 12px;
}

.footcols ul {
  list-style: none;
}

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

.footcols ul li a {
  color: #E5DFD1;
  font-size: 15px;
}

.footcols ul li a:hover {
  color: #FBF8F1;
  text-decoration: underline;
}

/* base plate as engraved plaque */
.plaque {
  background-color: #E5DFD1;
  color: #5C4A38;
  border-radius: 6px;
  padding: 18px 22px;
  font-size: 14px;
  text-align: center;
  max-width: 980px;
  margin: 24px auto 0;
}

.plaque strong {
  color: #2E2B26;
}

.plaque a {
  color: #3E7E7B;
}

.copylight {
  color: #FBF8F1;
  text-align: center;
  font-size: 13px;
  padding: 18px 24px 20px;
  letter-spacing: 0.04em;
}

.footer-inner .watermark {
  visibility: hidden;
}

/* ---------- Page-top press strip (general secondary pages) ---------- */
.pagetop {
  background-color: #5C4A38;
  color: #FBF8F1;
  padding: 30px 0 44px 0;
}

.pagetop .inner960 {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
}

.pagetop h1 {
  color: #FBF8F1;
  font-size: 38px;
  margin: 6px 0 6px;
}

.pagetop .eyebrow {
  color: #3E7E7B;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
}

.pagetop p {
  color: #E5DFD1;
}

/* ---------- Content band ---------- */
.contentband {
  padding: 46px 0 30px;
}

.contentband .inner960,
.contentband .innerwide {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 28px;
}

.bodycopy {
  background-color: none;
}

.proslead img {
  border-radius: 10px;
  max-height: 260px;
  object-fit: cover;
  width: 100%;
  margin-bottom: 12px;
}

/* generic rich-panel block used on process overview */
.richrow {
  background-color: #FBF8F1;
  border-radius: 12px;
  padding: 20px 30px;
  margin: 14px 0 14px;
  box-shadow: 0 3px 10px #4d4232;
}

.richrow h3 {
  color: #5C4A38;
  margin-bottom: 8px;
  font-size: 23px;
}

.richrow h2 {
  color: #5C4A38;
}

.richrow p {
  margin-bottom: 9px;
  color: #2E2B26;
}

.richrow ul {
  list-style: disc;
  padding-left: 22px;
  margin: 6px 0 10px;
}

.richrow ul li {
  margin-bottom: 5px;
}

.richrow .rowknob {
  width: 10px;
  height: 10px;
  background-color: #C4574E;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

/* two column split not used on homepage, but legal reuse here for clarity */
.twocol {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.twocol > div {
  flex: 1 1 260px;
}

/* numbers inside richrow recede as corals */

/* CTA band reuse for services / contact */
.ctaband {
  background-color: #3E7E7B;
  padding: 46px 24px;
}

.ctaband .inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.ctaband .inner h2 {
  color: #FBF8F1;
  margin-bottom: 8px;
  font-size: 26px;
}

.ctaband .inner p {
  color: #F3EFE6;
  margin-bottom: 18px;
}

.centered {
  text-align: center;
}

/* contact page form */
.formzone {
  background-color: #FBF8F1;
  border-radius: 12px;
  box-shadow: 0 6px 16px #4d4232;
  padding: 28px 30px;
}

.formzone label {
  display: block;
  font-weight: bold;
  margin: 12px 0 4px;
  color: #5C4A38;
}

.formzone input,
.formzone select,
.formzone textarea {
  width: 100%;
  border: 2px solid #E5DFD1;
  border-radius: 7px;
  padding: 10px 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  background-color: #F3EFE6;
  color: #2E2B26;
}

.formzone input:focus,
.formzone textarea:focus {
  outline: none;
  border-color: #3E7E7B;
}

.formzone textarea {
  min-height: 150px;
}

.formnote {
  color: #6B695F;
}

.formstatus {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  background-color: #E5DFD1;
  border-radius: 7px;
  color: #2E2B26;
  font-size: 15px;
}

.formstatus.ok {
  display: block;
  color: #2E2B26;
}

/* ============================================================
   SERVICES SINGLE-PAGE REUSE (meets anchor landing)
   ============================================================ */
.meethead {
  background-color: #5C4A38;
  padding: 38px 28px;
}

.meethead .inner {
  max-width: 980px;
  margin: 0 auto;
  color: #FBF8F1;
  padding: 0 14px;
}

.meethead h2 {
  color: #FBF8F1;
  font-size: 32px;
}

.meethead .eyebrow {
  color: #3E7E7B;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
}

/* ---------- responsiveness ---------- */
@media (max-width: 900px) {
  .sortingtray .traylabels {
    display: none;
  }

  .sortingtray .navtoggle {
    display: inline-block;
  }

  /* opened drawer */
  .sortingtray.open .traylabels {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-basis: 100%;
    width: 100%;
  }

  .sortingtray.open .traylabels a {
    border-radius: 8px;
    justify-content: center;
    margin-bottom: 5px;
  }

  .sortingtray .trayrail {
    flex-wrap: wrap;
  }

  .felttable h1 {
    font-size: 30px;
  }

  .tabletop .h1panel {
    max-width: 92%;
  }

  .tabletop .feltmat {
    visibility: hidden;
  }

  .piecepane:nth-child(even) {
    margin-left: 0;
  }

  .piecepane {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .stat strong {
    font-size: 20px;
  }

  .footcols {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }
  .sortingtray .trayrail {
    padding: 10px 14px 0;
  }
  .felttable .tabletop {
    padding: 24px 16px;
  }
  .felttable .h1panel {
    padding: 20px;
  }
  .felttable h1 {
    font-size: 25px;
  }
  .statementrow .figure-500k {
    font-size: 60px;
  }
  .kickstrip {
    flex-direction: column;
    gap: 0;
  }
  .felttable .stat + .stat {
    border-left: none;
    border-top: 1px solid #C4574E;
    width: 100%;
    justify-content: flex-start;
  }
}
