/* ACUITY ORGANIZATION LLC - style.css
   Theme: Desert Varnish / Petroglyph Recording Camp on a Rim above St George at Night
   Palette: Desert Varnish #221E19, Chalk Rub #F0EBDD, Sage Mint #8FBFA8, Rim Shadow Brown #3A3129, Trail Dust Tan #C9B894, Paper Square #EFE9DA, Canyon Floor #15120E
*/

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: #8FBFA8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ------------------------------------------------------------------
   NAVIGATION — GLYPH PANEL NAV
------------------------------------------------------------------- */
.glyphpanel {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #221E19;
}

.glyphpanel-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 18px 0 8px;
}

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

.brand-plate {
  background-color: #8FBFA8;
  color: #15120E;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 2px;
  position: relative;
}

.brand-glyph {
  width: 30px;
  height: 30px;
  border: 2px solid #8FBFA8;
  border-radius: 100%;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  transform: rotate(14deg);
}

.brand-sub {
  font-size: 11px;
  letter-spacing: 2px;
  color: #C9B894;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #EFE9DA;
  color: #15120E;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 2px;
  border: 1px solid #3A3129;
}

.nav-link .glyph {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1.5px solid #8FBFA8;
  border-radius: 100%;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  transform: rotate(24deg);
  margin-right: 4px;
}

.nav-cta {
  display: inline-block;
  background-color: #8FBFA8;
  color: #15120E;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 9px 20px;
  border-radius: 2px;
  border: none;
}

.nav-cta:hover {
  background-color: #C9B894;
  color: #15120E;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background-color: #8FBFA8;
  color: #15120E;
  border: none;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 2px;
}

.nav-scale {
  display: flex;
  width: 100%;
  margin-top: 10px;
}

.nav-scale span {
  flex: 1;
  height: 5px;
  background-color: #3A3129;
}

.nav-scale span:nth-child(even) {
  background-color: #C9B894;
}

/* mobile drawer */
.mobile-drawer {
  display: none;
  background-color: #3A3129;
  padding: 10px 0;
}

.mobile-drawer.open {
  display: block;
}

.mobile-drawer a {
  display: block;
  padding: 12px 24px;
  color: #F0EBDD;
  font-size: 18px;
  border-bottom: 1px solid #221E19;
  font-weight: 700;
}

.mobile-drawer a:last-child {
  border-bottom: none;
  color: #8FBFA8;
}

/* ------------------------------------------------------------------
   HERO — RIM WALL HERO
------------------------------------------------------------------- */
.rimwall {
  padding-bottom: 0;
}

.rimwall-rock {
  position: relative;
  background-color: #221E19;
  height: 480px;
  overflow: hidden;
  padding: 40px 0 0;
}

.desert-stars {
  position: absolute;
  top: 30px;
  left: 24px;
  right: 24px;
  height: 60px;
  pointer-events: none;
}

.desert-stars i {
  position: absolute;
  width: 3px;
  height: 3px;
  background-color: #C9B894;
  border-radius: 100%;
}

.rock-glyphs {
  position: relative;
  width: 86%;
  max-width: 980px;
  margin: 30px auto 0;
  height: 300px;
}

.glyph-bighorn {
  position: absolute;
  top: 40px;
  left: 5%;
  width: 90px;
  height: 90px;
  border: 3px solid #8FBFA8;
  border-radius: 50% 0 0 50%;
  transform: rotate(-12deg);
}

.glyph-bighorn::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 20px;
  width: 46px;
  height: 46px;
  border: 3px solid #8FBFA8;
  border-left: none;
  border-radius: 50%;
  transform: rotate(-19deg);
}

.glyph-rings {
  position: absolute;
  top: 160px;
  right: 24%;
  width: 40px;
  height: 40px;
  border: 4px solid #8FBFA8;
  border-radius: 100%;
}

.glyph-rings::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 4px solid #8FBFA8;
  border-radius: 100%;
  top: 7px;
  left: 7px;
  right: 7px;
  bottom: 7px;
}

.glyph-rings::after {
  content: "";
  position: absolute;
  inset: 14px;
  background: #8FBFA8;
  border-radius: 100%;
  left: 14px;
  top: 14px;
  right: 14px;
  bottom: 14px;
}

.glyph-spiral {
  position: absolute;
  top: 30px;
  left: 45%;
}

.glyph-spiral i {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #8FBFA8;
  border-radius: 100%;
  margin: 0 2px;
}

.glyph-spiral i:nth-child(1) {
  width: 30px;
  height: 30px;
  background-color: #8FBFA8;
}

.glyph-spiral i:nth-child(2) {
  width: 46px;
  height: 46px;
  border-width: 3px;
}

.glyph-spiral i:nth-child(3) {
  width: 62px;
  height: 62px;
  border-width: 3px;
}

.glyph-spiral i:nth-child(4) {
  width: 78px;
  height: 78px;
  border-width: 3px;
}

.glyph-ladder {
  position: absolute;
  top: 140px;
  left: 20%;
  width: 44px;
  height: 92px;
  border-top: 4px solid transparent;
  border-left: 4px solid #8FBFA8;
  border-right: 4px solid #8FBFA8;
  border-bottom: 4px solid #8FBFA8;
  border-radius: 2px;
  background-image:
    linear-gradient(#8FBFA8 0 0),
    linear-gradient(#8FBFA8 0 0),
    linear-gradient(#8FBFA8 0 0),
    linear-gradient(#8FBFA8 0 0);
  background-size: 40px 8px;
  background-position: 0 22px, 0 46px, 0 70px;
  background-repeat: no-repeat;
}

.glyph-line {
  position: absolute;
  top: 40px;
  bottom: 30px;
  width: 4px;
  background-color: #3A3129;
}

.glyph-line.g1 { left: 12%; }
.glyph-line.g2 { left: 30%; }
.glyph-line.g3 { left: 70%; }
.glyph-line.g4 { left: 88%; }

.lantern-tripod {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 130px;
  height: 240px;
}

.lantern-beam {
  position: absolute;
  right: 40px;
  top: 16px;
  width: 12px;
  height: 220px;
  background-color: #C7CBC0;
  transform: rotate(14deg);
  border-radius: 2px;
  box-shadow: 0 0 20px 6px #383E36;
}

.lantern-head {
  position: absolute;
  top: 8px;
  right: 24px;
  width: 34px;
  height: 44px;
  background-color: #3A3129;
  border: 3px solid #C9B894;
  border-radius: 4px;
}

.lantern-head::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 16px;
  height: 28px;
  background-color: #F0EBDD;
  border-radius: 2px;
  background: #C9B894;
}

.tripod-leg {
  position: absolute;
  bottom: 0;
  width: 6px;
  height: 180px;
  background-color: #3A3129;
  border-bottom: 4px solid #15120E;
}

.tripod-leg.l1 { left: 12px; transform: rotate(8deg); transform-origin: top; }
.tripod-leg.l2 { right: 6px; transform: rotate(-10deg); transform-origin: top; }

.rimwall-scale {
  display: flex;
  width: 92%;
  max-width: 980px;
  margin: 14px auto 0;
}

.rimwall-scale i {
  flex: 1;
  height: 6px;
  background-color: #C9B894;
}

.rimwall-scale i:nth-child(2n) {
  background-color: #3A3129;
}

/* Camp table */
.rimwall-table {
  background-color: #3A3129;
  padding: 46px 0 40px;
  border-top: 6px solid #221E19;
}

.table-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.hero-copy {
  flex: 1.6;
}

.eyebrow {
  display: inline-block;
  background-color: #2c2720;
  color: #C9B894;
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-left: 4px solid #8FBFA8;
  margin-bottom: 22px;
}

.hero-title {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}

.hero-title h1 {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 700;
  color: #F0EBDD;
  letter-spacing: -1px;
  margin: 0;
}

.carving-stamp {
  width: 60px;
  height: 60px;
  border: 3px solid #8FBFA8;
  border-radius: 100%;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  flex-shrink: 0;
  position: relative;
}

.carving-stamp::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  width: 30px;
  height: 30px;
  border: 3px solid #8FBFA8;
  border-radius: 100%;
  border-top-right-radius: 15px;
}

.hero-copy p.lead {
  font-size: 19px;
  color: #EFE9DA;
  max-width: 60ch;
  margin-bottom: 26px;
  line-height: 1.7;
}

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

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 2px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  border: 2px solid transparent;
}

.btn-solid {
  background-color: #8FBFA8;
  color: #15120E;
}

.btn-solid:hover {
  background-color: #a6cdb8;
  color: #15120E;
  text-decoration: none;
}

.btn-outline {
  border-color: #F0EBDD;
  color: #F0EBDD;
}

.btn-outline:hover {
  background-color: #F0EBDD;
  color: #15120E;
  text-decoration: none;
}

/* Rubbing sheet on table edge */
.table-prop {
  flex: 0.9;
  position: relative;
  align-self: flex-end;
}

.rubbing-sheet {
  background-color: #EFE9DA;
  color: #3A3129;
  padding: 20px 22px;
  font-family: "Courier New", Courier, monospace;
  transform: rotate(-3deg);
  border-radius: 2px;
  box-shadow: 0 14px 24px #0F0C09;
  position: relative;
}

.rubbing-sheet::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -4px;
  right: 8px;
  height: 10px;
  background-color: #B9B2A5;
  clip-path: polygon(0 100%, 2% 30%, 8% 100%, 13% 40%, 20% 100%, 28% 55%, 36% 100%, 45% 30%, 54% 100%, 62% 45%, 71% 100%, 80% 40%, 88% 100%, 96% 50%, 100% 85%, 100% 0, 0 0);
}

.rubbing-sheet .sheet-mark {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #6b5f4d;
}

.rubbing-sheet .sheet-glyph {
  width: 40px;
  height: 40px;
  border: 2px solid #3A3129;
  border-radius: 100%;
  position: relative;
  margin-bottom: 10px;
}

.rubbing-sheet .sheet-glyph::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 20px;
  height: 20px;
  border: 2px solid #3A3129;
  border-radius: 100%;
}

.rubbing-sheet .sheet-line {
  width: 70%;
  height: 3px;
  background-color: #c9bca4;
  margin-bottom: 6px;
}

.chalk-block {
  position: absolute;
  bottom: -16px;
  left: 30%;
  width: 90px;
  height: 24px;
  background-color: #9DC5AF;
  border-radius: 3px;
  transform: rotate(4deg);
  box-shadow: 0 4px 10px #0F0C09;
}

/* kick strip stats */
.hero-stats {
  background-color: #15120E;
  padding: 26px 0;
}

.hero-stats-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.hero-stat .num {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: #8FBFA8;
}

.hero-stat .lbl {
  font-size: 13px;
  color: #F0EBDD;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-sep {
  color: #3A3129;
  font-size: 40px;
}

/* ------------------------------------------------------------------
   RUBBING ROWS
------------------------------------------------------------------- */
.rubbing-rows {
  padding: 80px 0 20px;
  background-color: #3A3129;
  position: relative;
}

.section-head {
  max-width: 42ch;
  margin: 0 0 56px;
}

.section-head .kicker {
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8FBFA8;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: 38px;
  color: #F0EBDD;
  line-height: 1.15;
  font-weight: 700;
}

.rub-row {
  position: relative;
  background-color: #EFE9DA;
  padding: 34px 260px 34px 34px;
  margin-bottom: 40px;
  box-shadow: 0 12px 22px #0F0C09;
  display: flex;
  align-items: center;
  gap: 30px;
  border-radius: 2px;
}

.rub-row:nth-child(even) {
  margin-left: 40px;
}

.rub-row:nth-child(odd) {
  margin-right: 40px;
}

.rub-row .panel-tag {
  flex-shrink: 0;
  background-color: #8FBFA8;
  color: #15120E;
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 8px 12px;
  margin-bottom: auto;
}

.rub-row .glyphslab {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background-color: #3A3129;
  border-radius: 100%;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  position: relative;
  margin-bottom: auto;
}

.rub-row .glyphslab::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 28px;
  height: 28px;
  border: 2px solid #8FBFA8;
  border-radius: 100%;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.rub-row.spiral .glyphslab::after {
  content: "";
  border: 2px solid #8FBFA8;
  border-bottom: 2px solid #3A3129;
  transform: rotate(30deg);
}

.rub-row.ring .glyphslab::after {
  border-width: 3px;
  background-color: #4B4D42;
}

.rub-row.horn .glyphslab::after {
  border-radius: 100% 0 0 100%;
  transform: rotate(-16deg);
}

.rub-row .textcontent {
  flex: 2;
}

.rub-row .rowtitle {
  font-size: 24px;
  color: #3A3129;
  font-weight: 700;
  margin-bottom: 14px;
}

.rub-row .copy {
  color: #6b5f4d;
  line-height: 1.8;
  margin: 0 0 18px;
}

.rub-row .detail-link {
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  color: #9c8a6c;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid #3A3129;
}

/* statement band */
.statement-band {
  background-color: #15120E;
  padding: 68px 0;
}

.statement-block {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.statement-figure {
  flex: 0.8;
  font-size: 96px;
  line-height: 1;
  font-weight: 700;
  color: #F0EBDD;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.statement-figure .dsu {
  display: block;
  font-size: 22px;
  color: #8FBFA8;
  margin-top: 14px;
  letter-spacing: 3px;
  font-family: "Courier New", Courier, monospace;
  text-transform: uppercase;
}

.statement-pledge {
  flex: 1.4;
  font-size: 21px;
  color: #EFE9DA;
  line-height: 1.75;
  border-left: 4px solid #8FBFA8;
  padding-left: 30px;
  font-family: Georgia, "Times New Roman", Times, serif;
}

/* deckle strips over rows */
.deckle-top {
  height: 10px;
  background-color: #3A3129;
  background-image: repeating-linear-gradient(90deg,
    #EFE9DA 0 8px,
    transparent 8px 13px,
    #EFE9DA 13px 19px,
    transparent 19px 24px);
  border-radius: 2px 2px 0 0;
}

/* ------------------------------------------------------------------
   RECORDING STATION FLOW
------------------------------------------------------------------- */
.station-flow {
  background-color: #3A3129;
  padding: 72px 0;
  border-top: 4px solid #15120E;
}

.flow-track {
  position: relative;
  padding: 50px 0;
}

.flow-baseline {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 0;
  border-top: 3px dashed #C9B894;
}

.flow-stations {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.flow-station {
  flex: 1;
  min-width: 150px;
  position: relative;
  padding-top: 30px;
  text-align: center;
}

.flow-station .station-dot {
  width: 34px;
  height: 34px;
  background-color: #221E19;
  border: 3px solid #F0EBDD;
  transform: rotate(45deg);
  margin: 0 auto 16px;
  border-radius: 4px;
}

.flow-station .lantern-tick {
  width: 28px;
  height: 28px;
  margin: 0 auto 8px;
  position: relative;
}

.flow-station .lantern-tick::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 14px;
  background-color: #C9B894;
  top: 0;
  left: 9px;
  border-radius: 50% 50% 0 0;
}

.flow-station .tick-pole {
  width: 2px;
  height: 40px;
  background-color: #C9B894;
  margin: 0 auto;
}

.flow-station h3 {
  font-size: 17px;
  color: #8FBFA8;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-family: "Courier New", Courier, monospace;
}

.flow-station p {
  font-size: 14px;
  color: #D9D1C0;
  line-height: 1.6;
  max-width: 30ch;
  margin: 0 auto;
}

.flow-station .filed-mark {
  display: inline-block;
  margin-top: 12px;
  background-color: #8FBFA8;
  color: #15120E;
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 10px;
  letter-spacing: 1px;
}

/* ------------------------------------------------------------------
   ACCENT STRIP — REVIEW BAND
------------------------------------------------------------------- */
.review-band {
  background-color: #8FBFA8;
  color: #15120E;
  padding: 48px 0;
}

.review-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.review-stamp {
  flex: 0 0 auto;
  border: 3px solid #15120E;
  border-radius: 8px;
  padding: 16px 24px;
  text-align: center;
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 2px;
  font-weight: 700;
  line-height: 1.3;
  transform: rotate(-5deg);
}

.review-stamp span {
  display: block;
  font-size: 12px;
}

.review-stamp .rw {
  font-size: 22px;
}

.review-copy {
  flex: 2;
  min-width: 300px;
}

.review-copy h3 {
  font-size: 30px;
  margin-bottom: 12px;
  color: #15120E;
}

.review-copy p {
  color: #2a2620;
  font-size: 16px;
  max-width: 55ch;
}

.btn-canyon {
  background-color: #15120E;
  color: #8FBFA8;
  padding: 12px 26px;
  font-weight: 700;
}

.btn-canyon:hover {
  background-color: #221E19;
  color: #8FBFA8;
  text-decoration: none;
}

/* ------------------------------------------------------------------
   WHY ACUITY STRIP (homepage addition)
------------------------------------------------------------------- */
.why-strip {
  background-color: #221E19;
  padding: 70px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-col {
  border-top: 3px solid #8FBFA8;
  padding-top: 18px;
}

.why-col .glyph-mark {
  width: 26px;
  height: 26px;
  border: 2px solid #C9B894;
  border-radius: 100%;
  border-top-right-radius: 26px;
  border-bottom-left-radius: 26px;
  margin-bottom: 16px;
  transform: rotate(12deg);
}

.why-col h4 {
  color: #F0EBDD;
  font-size: 19px;
  margin-bottom: 10px;
}

.why-col p {
  color: #C9B894;
  font-size: 15px;
}

/* ------------------------------------------------------------------
   FOOTER — MESA EDGE
------------------------------------------------------------------- */
.mesaedge {
  background-color: #15120E;
  color: #F0EBDD;
}

.mesa-strata {
  display: flex;
  flex-direction: column;
}

.mesa-top {
  display: flex;
  gap: 0;
  height: 16px;
}

.mesa-top .m-block {
  flex: 1;
  background-color: #3A3129;
}

.mesa-top .m-block:nth-child(2) {
  background-color: #C9B894;
}

.mesa-top .m-block:nth-child(3) {
  background-color: #EFE9DA;
}

.mesa-moto {
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 6px;
  color: #F0EBDD;
  font-size: 15px;
  padding: 28px 0 22px;
  text-align: center;
  opacity: 1;
  border-bottom: 1px solid #3A3129;
}

.mesa-links {
  padding: 50px 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.mesa-col h5 {
  color: #8FBFA8;
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

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

.mesa-col li {
  margin-bottom: 12px;
}

.mesa-col a {
  color: #EFE9DA;
  font-size: 15px;
}

.mesa-col a:hover {
  color: #8FBFA8;
  text-decoration: none;
}

.mesa-plate {
  background-color: #EFE9DA;
  color: #3A3129;
  padding: 24px 0;
  border-top: 4px solid #C9B894;
  text-align: center;
}

.mesa-plate .plate-name {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  color: #3A3129;
  margin-bottom: 4px;
}

.mesa-plate .plate-addr,
.mesa-plate .plate-contacts {
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
  color: #6b5f4d;
}

.mesa-plate a {
  color: #4d4436;
  font-weight: 700;
}

.mesa-plate a:hover {
  color: #15120E;
}

.mesa-copyright {
  text-align: center;
  font-size: 12px;
  color: #8FBFA8;
  letter-spacing: 1px;
  padding: 20px 0 16px;
  border-top: 1px solid #221E19;
}

/* ------------------------------------------------------------------
   NOTIFICATION BAR
------------------------------------------------------------------- */
.notifybar {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: #15120E;
  color: #C9B894;
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
  letter-spacing: 1px;
  text-align: center;
  padding: 10px 16px;
}

.notifybar a {
  color: #8FBFA8;
  font-weight: 700;
}

/* ------------------------------------------------------------------
   Services page specific
------------------------------------------------------------------- */
.services-sheetband {
  background-color: #3A3129;
  padding: 70px 0 10px;
}

.service-detailed {
  background-color: #EFE9DA;
  color: #3A3129;
  padding: 40px 34px;
  margin-bottom: 34px;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 12px 22px #0F0C09;
}

.service-detailed:nth-child(3n) {
  margin-left: 60px;
}

.service-detailed .service-glyph {
  display: inline-block;
  width: 34px;
  height: 34px;
  border: 3px solid #3A3129;
  border-radius: 100%;
  border-top-right-radius: 13px;
  border-bottom-left-radius: 13px;
  margin-bottom: 14px;
}

.service-detailed h2 {
  font-size: 28px;
  color: #15120E;
  margin-bottom: 14px;
}

.service-detailed p {
  color: #5a5042;
  font-size: 15.5px;
  margin-bottom: 10px;
  max-width: 70ch;
}

.service-detailed .svc-tag {
  display: inline-block;
  background-color: #8FBFA8;
  color: #15120E;
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 5px 10px;
  margin: 6px 6px 0 0;
}

.svc-process {
  background-color: #2a241d;
  padding: 70px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step-item {
  border-top: 3px solid #8FBFA8;
  padding-top: 16px;
  counter-increment: step;
}

.step-item h3 {
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  color: #8FBFA8;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.step-item p {
  font-size: 14px;
  color: #EFE9DA;
}

.step-item h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-image: repeating-linear-gradient(90deg, #3A3129 0 10px, transparent 10px 18px);
  margin: 12px 0 10px;
}

/* contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
  align-items: start;
}

.form-shell {
  background-color: #EFE9DA;
  color: #3A3129;
  padding: 34px;
  border-radius: 2px;
}

.form-shell h2 {
  color: #3A3129;
  font-size: 26px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #6b5f4d;
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background-color: #2c2720;
  border: 2px solid #3A3129;
  color: #F0EBDD;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  padding: 12px 14px;
  border-radius: 2px;
}

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

.btn-submit {
  background-color: #8FBFA8;
  color: #15120E;
  border: none;
  border-radius: 2px;
  padding: 13px 30px;
  font-weight: 700;
  font-family: Georgia, "Times New Roman", Times, serif;
  cursor: pointer;
  font-size: 16px;
}

.btn-submit:hover {
  background-color: #a6cdb8;
}

.form-note {
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  color: #6b5f4d;
  margin-top: 10px;
}

.contact-side h3 {
  font-size: 22px;
  color: #F0EBDD;
  margin-bottom: 16px;
  border-left: 4px solid #8FBFA8;
  padding-left: 14px;
}

.contact-side p {
  color: #C9B894;
  margin-bottom: 12px;
}

.contact-side p a {
  color: #8FBFA8;
  font-weight: 700;
}

.hours-box {
  background-color: #3A3129;
  padding: 20px;
  border-radius: 2px;
  margin: 16px 0;
}

.hours-box table {
  width: 100%;
  color: #EFE9DA;
}

.hours-box td {
  padding: 6px 0;
  font-size: 15px;
}

.hours-box td:last-child {
  text-align: right;
  color: #8FBFA8;
  font-family: "Courier New", Courier, monospace;
}

.faq-item {
  border-bottom: 1px solid #3A3129;
  padding: 18px 0;
}

.faq-item h4 {
  font-size: 17px;
  color: #8FBFA8;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 15px;
  color: #D9D1C0;
}

/* reveal default-visible */
[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease;
}

/* responsive */
@media (max-width: 980px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .rub-row { flex-wrap: wrap; }
  .rub-row {
    padding: 30px 24px;
  }
  .rub-row:nth-child(even) { margin-left: 10px; }
  .rub-row:nth-child(odd) { margin-right: 10px; }
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-toggle.open + .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    margin-top: 14px;
  }
  .rimwall-rock { height: 300px; }
  .hero-title h1 { font-size: 40px; }
  .table-layout { flex-direction: column; }
  .table-prop { align-self: auto; }
  .hero-stats-inner { flex-direction: column; }
  .stat-sep { display: none; }
  .mesa-links { grid-template-columns: 1fr; gap: 24px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .flow-stations { flex-direction: column; }
  .statement-figure { font-size: 66px; }
  .review-flex { flex-direction: column; align-items: stretch; text-align: center; }
}

@media (max-width: 500px) {
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .desert-stars { display: none; }
}
