/* ============================================================
   TND ADVENTURES LTD | TRAILHEAD BUNKHOUSE STYLE
   Palette:
   CANVAS SAND  #F3F0E6   body ground (a bunkhouse day room)
   TRAIL INK    #2C3230   primary text
   PINE TRAIL   #3F6B4A   accent: brand plate, buttons, stamps
   MAP CREAM    #FBF9F0   cards and day benches
   FLINT GREY   #8D9188   secondary structure
   DUFFEL STRAP #C0996B   strap and leather detail only
   NIGHT BOTHY  #232923   dark band and footer
   ============================================================ */

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

/* ---------- Scroll reveal (default visible; no-script safe) ---------- */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-hidden {
  opacity: 0;
  transform: translateY(20px);
}
.reveal-visible {
  opacity: 1;
  transform: none;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}
a {
  color: #3F6B4A;
}

/* ================= WAYMARK NAV ================= */
.waymark {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #F3F0E6;
  border-bottom: 1px solid #8D9188;
}
.waymark-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.waymark-line {
  width: 100%;
  height: 4px;
  position: relative;
  background: repeating-linear-gradient(90deg, #8D9188 0 16px, #F3F0E6 16px 28px);
}
.waymark-line::before,
.waymark-line::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #3F6B4A;
}
.waymark-line::before { left: 10px; }
.waymark-line::after { right: 10px; }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-plate {
  background-color: #3F6B4A;
  color: #FBF9F0;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 2px;
  font-size: 1.35rem;
}
.brand-disc {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 3px solid #3F6B4A;
  background-color: #FBF9F0;
  position: relative;
  box-shadow: inset 0 0 0 2px #FBF9F0;
}
.brand-disc::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background-color: #3F6B4A;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.nav-route-card {
  text-decoration: none;
  background-color: #FBF9F0;
  color: #2C3230;
  padding: 7px 15px 7px 20px;
  border-radius: 3px;
  position: relative;
  font-weight: 700;
  border: 1px solid #8D9188;
}
.nav-route-card::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #F3F0E6;
  border: 1px solid #8D9188;
}
.nav-route-card::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 7px;
  width: 7px;
  height: 7px;
  background-color: #3F6B4A;
}
.nav-route-card:hover,
.nav-route-card.is-active {
  background-color: #3F6B4A;
  color: #FBF9F0;
}
.nav-cta {
  display: inline-block;
  background-color: #3F6B4A;
  color: #FBF9F0;
  padding: 9px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid #3F6B4A;
}
.trail-toggle {
  display: none;
  background: none;
  border: 2px solid #3F6B4A;
  color: #3F6B4A;
  font-size: 1.4rem;
  line-height: 1;
  padding: 5px 14px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
}

/* ================= TRAILHEAD HERO ================= */
.trailhead {
  width: 100%;
}
/* upper 55%: bunkhouse drawn trailhead wall */
.trailhead-wall {
  background-color: #F3F0E6;
  padding: 44px 24px 10px;
  position: relative;
}
.trailhead-table {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.topo-sheet {
  background-color: #FBF9F0;
  border: 2px dashed #3F6B4A;
  border-radius: 6px;
  padding: 18px 18px 8px;
  position: relative;
}
.drawn-route {
  width: 100%;
  height: auto;
  display: block;
}
.table-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3F6B4A;
  font-family: Arial, Helvetica, sans-serif;
  display: block;
  margin-top: 6px;
}
.doodle-column {
  display: grid;
  gap: 14px;
}
.doodle-box {
  background-color: #FBF9F0;
  border: 1px solid #8D9188;
  border-radius: 6px;
  padding: 12px;
}
.doodle-box h4 {
  margin: 0 0 10px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #3F6B4A;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
}
.duffel-rack-lane {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.dna-bag {
  min-height: 74px;
  border-radius: 8px 8px 4px 4px;
  position: relative;
  text-align: center;
  font-size: 0.68rem;
  color: #FBF9F0;
  padding-top: 34px;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
.dna-bag::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 5px;
  background-color: #FBF9F0;
  border-radius: 4px;
  opacity: 1;
}
.bg-strap { background-color: #C0996B; }
.bg-pine { background-color: #3F6B4A; }
.bg-flint { background-color: #8D9188; }
.boot-dry-lane {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.dry-boot {
  height: 52px;
  background-color: #2C3230;
  border-radius: 6px 6px 2px 2px;
  position: relative;
}
.dry-boot.uneven { background-color: #8D9188; }
.dry-boot::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 18%;
  width: 64%;
  height: 6px;
  background-color: #3F6B4A;
  border-radius: 3px;
}
.way-post-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  align-items: start;
}
.post-disc {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #3F6B4A;
  color: #FBF9F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}
.post-disc.mid-grey {
  background-color: #8D9188;
  box-shadow: 0 0 0 3px #F3F0E6, 0 0 0 4px #3F6B4A;
}
.post-disc.mid-pine {
  justify-self: end;
  box-shadow: 0 0 0 3px #F3F0E6;
}
.tide-log b {
  display: block;
  font-weight: 700;
  color: #2C3230;
  letter-spacing: 0.08em;
  margin: 0 0 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
}
.tide-log span {
  display: block;
  font-size: 0.74rem;
  font-family: Arial, Helvetica, sans-serif;
  border-top: 1px dashed #8D9188;
  padding: 3px 0;
  color: #2C3230;
}

/* lower 45%: day bench on MAP CREAM */
.day-bench {
  border-top: 4px solid #8D9188;
}
.day-bench-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 46px;
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 30px;
  align-items: center;
}
.eyebrow {
  color: #3F6B4A;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Arial, Helvetica, sans-serif;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background-color: #C0996B;
  display: inline-block;
}
.hero-title {
  font-size: 2.9rem;
  color: #2C3230;
  margin: 10px 0 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stamp {
  background-color: #3F6B4A;
  border: 3px solid #C0996B;
  color: #FBF9F0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  transform: rotate(-10deg);
  flex: 0 0 auto;
}
.hero-lead {
  color: #2C3230;
  font-size: 1.22rem;
  line-height: 1.55;
  max-width: 640px;
  margin: 0 0 26px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
}
.btn-pine {
  background-color: #3F6B4A;
  color: #FBF9F0;
  border-color: #3F6B4A;
}
.btn-pine:hover { background-color: #232923; border-color: #232923; }
.btn-flint {
  background-color: transparent;
  color: #2C3230;
  border: 2px solid #8D9188;
}
.btn-flint:hover { color: #FBF9F0; background-color: #8D9188; }
.map-figure {
  background-color: #FBF9F0;
  border: 1px solid #C9CDBF;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 4px 4px 0 #8D9188;
}
.map-figure h3 {
  color: #3F6B4A;
  margin: 0 0 6px;
  font-size: 1.1rem;
}
.map-figure p { margin: 0 0 12px; font-size: 0.92rem; }
.guide-notes {
  display: grid;
  gap: 6px;
}
.guide-note {
  background-color: #F3F0E6;
  border-left: 5px solid #3F6B4A;
  padding: 7px 11px;
  font-size: 0.86rem;
}
/* kick strip on NIGHT BOTHY */
.stat-kick {
  background-color: #232923;
}
.stat-kick-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.hero-stat {
  color: #FBF9F0;
  text-align: center;
  font-size: 0.98rem;
}
.hero-stat b {
  display: block;
  font-size: 2.1rem;
  color: #C0996B;
}
.hero-stat span {
  display: block;
  letter-spacing: 0.06em;
}
.stat-divide {
  border-right: 1px solid #3F6B4A;
}

/* ============== ROUTE-CARD ROWS + WALKING DAY ============== */
.body-wrap {
  padding: 54px 0 10px;
}
.route-head-row {
  max-width: 1200px;
  margin: 0 auto 8px;
  padding: 0 24px;
}
.route-head-row h2 {
  font-size: 2.3rem;
  margin: 0;
  color: #2C3230;
  position: relative;
}
.route-head-row .kicker {
  display: block;
  font-size: 0.82rem;
  color: #3F6B4A;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 6px;
  font-weight: 700;
}
.route-lanes {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px 20px;
}
.route-card-row {
  background-color: #FBF9F0;
  border-radius: 4px;
  padding: 22px 22px 20px 26px;
  margin: 18px 0;
  position: relative;
  border: 1px solid #C9CDBF;
  list-style: none;
}
.route-card-row.row-even {
  transform: translateX(30px);
}
.route-card-row.row-odd {
  transform: translateX(-14px);
}
.punched-corner {
  position: absolute;
  top: 10px;
  left: -12px;
  width: 24px;
  height: 24px;
  background-color: #F3F0E6;
  border: 1px solid #3F6B4A;
  border-radius: 50%;
  z-index: 2;
}
.route-row-flex {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}
.route-stamp {
  background-color: #3F6B4A;
  color: #FBF9F0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px dashed #C0996B;
  flex: 0 0 auto;
  line-height: 1.2;
}
.route-stamp small {
  font-size: 0.62rem;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.05em;
}
.route-copy h3 {
  margin: 0 0 2px;
  font-size: 1.5rem;
  color: #2C3230;
}
.route-copy h3 em { color: #3F6B4A; font-style: normal; }
.route-copy p {
  margin: 8px 0 12px;
  color: #2C3230;
}
.route-copy .route-details {
  font-weight: 700;
  color: #3F6B4A;
  text-decoration: none;
  border-bottom: 2px dashed #8D9188;
}
.grade-chip-row {
  display: flex;
  margin-top: 6px;
}
.grade-chip {
  background-color: #8D9188;
  color: #FBF9F0;
  padding: 4px 13px;
  border-radius: 25px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-family: Arial, Helvetica, sans-serif;
}
.grade-chip.chip-pine { background-color: #3F6B4A; }
.grade-chip-end-odd { justify-content: flex-end; }
.grade-chip-end-even { justify-content: flex-start; }

/* full width statement row on NIGHT BOTHY */
.statement-band {
  background-color: #232923;
  padding: 52px 24px;
  margin: 30px 0;
}
.statement-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 34px;
  align-items: center;
}
.statement-figure {
  color: #C0996B;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
}
.statement-figure small {
  display: block;
  color: #8D9188;
  font-size: 0.85rem;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
}
.statement-copy {
  color: #FBF9F0;
  font-size: 1.6rem;
  line-height: 1.5;
}
.statement-copy .pledge {
  font-size: 1rem;
  color: #FBF9F0;
  margin-top: 10px;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
}
.route-pledge-mark {
  margin-top: 14px;
  color: #C0996B;
  font-size: 0.8rem;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
}

/* walking day band, FLINT GREY */
.walking-day {
  background-color: #8D9188;
  padding: 52px 24px;
}
.walking-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.walking-inner > h2 {
  color: #FBF9F0;
  font-size: 2.1rem;
  text-align: center;
  margin: 0 0 6px;
}
.walking-inner .walking-kicker {
  display: block;
  text-align: center;
  color: #C0996B;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 40px;
}
.waymark-trail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  position: relative;
}
.station-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}
.boot-station {
  flex: 1 1 150px;
  max-width: 200px;
  text-align: center;
}
.boot-tick {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background-color: #FBF9F0;
  border: 3px solid #232923;
  color: #3F6B4A;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.station-items .boot-station:hover .boot-tick {
  background-color: #232923;
  color: #C0996B;
}
.station-name {
  display: block;
  color: #FBF9F0;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 6px;
}
.station-item-text {
  display: block;
  font-size: 0.86rem;
  color: #F3F0E6;
}

/* ============== BOOKING / ACCENT BAND ============== */
.booking-band {
  background-color: #3F6B4A;
  padding: 30px 24px;
}
.booking-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.booking-mark {
  background-color: #232923;
  color: #FBF9F0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
}
.booking-text {
  color: #F3F0E6;
  font-size: 1.3rem;
  font-weight: 600;
  flex: 1 1 380px;
}
.btn-mapcream {
  background-color: #FBF9F0;
  color: #3F6B4A;
  border-color: #FBF9F0;
}
.btn-mapcream:hover { background-color: #F3F0E6; }

/* ============== BOOT BENCH FOOTER ============== */
.bootbench {
  background-color: #232923;
  border-top: 5px solid #C0996B;
}
.bench-ledge {
  border-top: 3px solid #8D9188;
  padding: 24px 24px 8px;
}
.motto {
  max-width: 1200px;
  margin: 0 auto;
  color: #C0996B;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
}
.foot-silhouette {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin: 14px auto 0;
  max-width: 1200px;
  align-items: center;
}
.sil-duffel {
  width: 54px;
  height: 36px;
  border-radius: 8px;
  background-color: #C0996B;
  position: relative;
}
.sil-duffel::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 10px;
  width: 70%;
  height: 4px;
  border-radius: 3px;
  background-color: #3F6B4A;
}
.footer-links {
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 24px 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
  z-index: 1;
}
.footer-col h4 {
  color: #C0996B;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
  font-family: Arial, Helvetica, sans-serif;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li {
  margin-bottom: 9px;
}
.footer-col li a {
  color: #FBF9F0;
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-col li a:hover {
  color: #C0996B;
}
.footer-base {
  background-color: #FBF9F0;
  padding: 22px 24px;
  position: relative;
  z-index: 1;
}
.footer-base-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: center;
  align-items: center;
  color: #2C3230;
  font-size: 0.94rem;
  text-align: center;
}
.footer-copy {
  color: #3F6B4A;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  margin-top: 8px;
}
.contact-mini a {
  color: #3F6B4A;
  text-decoration: none;
  font-weight: 700;
}
.footer-rule {
  max-width: 1200px;
  height: 2px;
  margin: 0 auto;
  background: repeating-linear-gradient(90deg, #3F6B4A 0 18px, #FBF9F0 18px 28px);
  opacity: 1;
}

/* ============== SUB PAGES HERO / LAYOUT ============== */
.sub-hero {
  background-color: #3F6B4A;
  padding: 50px 24px;
}
.sub-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sub-hero-inner h1 {
  color: #FBF9F0;
  font-size: 2.7rem;
  margin: 0;
}
.sub-hero-inner h1 small {
  display: block;
  font-size: 0.85rem;
  color: #C0996B;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-top: 8px;
}
.sub-hero-inner p {
  color: #F3F0E6;
  font-size: 1.15rem;
  max-width: 760px;
  margin: 12px 0 0;
}
.breadcrumb {
  background-color: #8D9188;
  padding: 9px 24px;
}
.breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.82rem;
  color: #FBF9F0;
  font-family: Arial, Helvetica, sans-serif;
}
.breadcrumb-inner a {
  color: #F3F0E6;
  text-decoration: none;
  font-weight: 700;
}
.breadcrumb-inner a:hover { color: #C0996B; }

/* services detail */
.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 46px 24px 30px;
}
.section-intro-band h2 {
  font-size: 2rem;
  margin: 0 0 8px;
  color: #2C3230;
}
.section-intro-band .kicker {
  color: #3F6B4A;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.feat-list {
  display: grid;
  gap: 26px;
}
.feat-card {
  background-color: #FBF9F0;
  border: 1px solid #C9CDBF;
  border-left: 9px solid #3F6B4A;
  border-radius: 4px;
  padding: 24px 24px 18px;
}
.feat-card h2 {
  margin: 0 0 4px;
  font-size: 1.55rem;
  color: #2C3230;
}
.feat-card h2 .num {
  color: #3F6B4A;
  margin-right: 8px;
}
.feat-card .trailcode {
  display: inline-block;
  background-color: #3F6B4A;
  color: #FBF9F0;
  font-size: 0.72rem;
  font-family: Arial, Helvetica, sans-serif;
  padding: 3px 10px;
  border-radius: 25px;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}
.feat-card p {
  margin: 0 0 14px;
}
.feat-note {
  background-color: #F3F0E6;
  border-left: 5px solid #C0996B;
  padding: 10px 14px;
  font-size: 0.9rem;
}
.process-map {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 26px 0;
}
.process-node {
  background-color: #3F6B4A;
  color: #FBF9F0;
  text-align: center;
  padding: 14px 6px;
  border-radius: 4px;
}
.process-node b {
  display: block;
  color: #C0996B;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}
.process-node span {
  display: block;
  font-size: 0.8rem;
  margin-top: 4px;
}
.bullet-list {
  margin: 6px 0 14px 2px;
  padding-left: 20px;
}
.bullet-list li { margin-bottom: 4px; }

/* ============== CONTACT ============== */
.contact-layout {
  max-width: 1160px;
  margin: 0 auto;
  padding: 44px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}
.form-hold {
  background-color: #FBF9F0;
  border: 1px solid #C9CDBF;
  border-radius: 6px;
  padding: 26px;
}
.form-hold h2,
.col-stack h2 {
  color: #3F6B4A;
  margin: 0 0 16px;
  font-size: 1.5rem;
}
.field-group {
  margin-bottom: 16px;
}
.field-group label {
  display: block;
  font-weight: 700;
  color: #2C3230;
  margin-bottom: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
}
.field-group input,
.field-group textarea,
.field-group select {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 12px;
  border: 1px solid #8D9188;
  background-color: #FBF9F0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  color: #2C3230;
  border-radius: 3px;
}
.field-group input:focus,
.field-group textarea:focus {
  outline: 2px solid #3F6B4A;
}
.field-group textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: 0.85rem; color: #2C3230; margin-top: 4px; }
.form-status { font-size: 0.95rem; font-weight: 700; min-height: 1.2em; }
.form-status.ok { color: #3F6B4A; }
.form-status.err { color: #232923; }
.info-block {
  background-color: #FBF9F0;
  border: 1px solid #C9CDBF;
  border-left: 8px solid #3F6B4A;
  padding: 20px 22px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.info-block h3 {
  color: #3F6B4A;
  margin: 0 0 10px;
  font-size: 1.15rem;
}
.info-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px dashed #8D9188;
}
.info-row:last-child { border-bottom: none; }
.info-tag {
  flex: 0 0 90px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3F6B4A;
  font-weight: 700;
}
.info-row a {
  color: #3F6B4A;
  font-weight: 700;
  text-decoration: none;
}
.hours-line {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px dashed #8D9188;
  font-size: 0.95rem;
}
.hours-line:last-child { border-bottom: none; }
.hours-line b { color: #3F6B4A; font-family: Arial, Helvetica, sans-serif; }
.qna-list { counter-reset: none; }
.qna-item {
  margin-bottom: 14px;
}
.qna-question {
  font-weight: 700;
  color: #232923;
  margin: 0 0 4px;
}
.qna-item .qnum {
  color: #3F6B4A;
  font-weight: 700;
  margin-right: 6px;
}
.qa-answer { font-size: 0.94rem; color: #2C3230; }

/* ============== utility + responsive ============== */
@media (max-width: 960px) {
  .trailhead-table { grid-template-columns: 1fr; }
  .day-bench-inner { grid-template-columns: 1fr; gap: 22px; }
  .hero-title { font-size: 2.3rem; }
  .statement-inner { grid-template-columns: 1fr; gap: 6px; }
  .service-process-map { grid-template-columns: repeat(3,1fr); }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .stat-kick-inner { grid-template-columns: 1fr; }
  .stat-divide { border-right: none; border-bottom: 1px solid #3F6B4A; padding-bottom: 14px; }
}
@media (max-width: 600px) {
  .trail-toggle { display: block; }
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .nav-menu.open { display: flex; }
  .process-map { grid-template-columns: repeat(3,1fr); }
  .route-card-row.row-even { transform: none; }
  .route-card-row.row-odd { transform: none; }
  .footer-links { grid-template-columns: 1fr; }
  .route-row-flex { grid-template-columns: 1fr; }
}
