/* =====================================================================
   Devtanc Consulting LLC — Glacier Tramway visual system
   Palette (all solid, pre-blended, no rgba, no opacity):
     glacier-mist  #EFF3F4  page background
     granite-ink   #28323A  body text
     cable-red     #B5452F  accent / signal
     snowfield     #FBFDFE  raised cards
     carbide-grey  #39464F  steel terminals (paper text)
     valley-slate  #243238  deeper bands (paper text)
     glacier-ice   #DCE7EA  cool separators
     pinetine      #4E6E54  small elevation tags only
     paper         #FBFDFE  light text on dark bands
   No gradients on text. No translucent colors. Strong contrast always.
   ===================================================================== */

:root {
  --mist: #EFF3F4;
  --ink: #28323A;
  --cable: #B5452F;
  --cable-dark: #8F3422;
  --snow: #FBFDFE;
  --carbide: #39464F;
  --slate: #243238;
  --ice: #DCE7EA;
  --pine: #4E6E54;
  --paper: #FBFDFE;
  --shadow: 0 1px 2px #C9D6DA, 0 10px 26px #D2DEE1;
  --shadow-soft: 0 1px 2px #D6E1E4, 0 6px 16px #DCE7EA;
  --radius: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-size: 16px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: #EFF3F4;
  color: #28323A;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: #8F3422; }

h1, h2, h3, h4 { line-height: 1.2; color: #28323A; margin: 0 0 0.5em; }
p { margin: 0 0 1.1em; }

.wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #B5452F;
  font-weight: 700;
  margin: 0 0 0.6em;
}

.section-title {
  font-size: 2rem;
  letter-spacing: -0.01em;
  margin: 0 0 0.35em;
}

.section-lede {
  max-width: 720px;
  font-size: 1.06rem;
  color: #39464F;
}

.rule-ice {
  border: 0;
  height: 2px;
  background-color: #DCE7EA;
  margin: 0;
}

/* Reveal system — default visible when JS is off.
   Uses clip-path and translate rather than opacity so no semi-transparent
   text is ever produced. */
.js-on .reveal {
  clip-path: inset(0 0 100% 0);
  transform: translateY(20px);
  transition: clip-path 0.6s ease, transform 0.6s ease;
}
.js-on .reveal.is-in {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

/* ============================ NAVIGATION ============================
   TERMINAL BULLWHEEL — a horizontal bullwheel housing plate with a large
   partially visible drive disc at the left edge; five gondola cabins hang
   from a sagging haul rope line. Cabins alternate slight tilt.
   ==================================================================== */
.bullwheel {
  position: relative;
  background-color: #243238;
  color: #FBFDFE;
  padding: 0 0 10px;
  border-bottom: 5px solid #B5452F;
}

.bullwheel::before {
  /* sagging haul rope running across the whole header */
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
  height: 26px;
  pointer-events: none;
  background-color: transparent;
  border-top: 3px solid #FBFDFE;
  border-radius: 0 0 50% 50% / 0 0 26px 26px;
  clip-path: polygon(0 0, 100% 0, 100% 2px, 0 2px);
}

.bullwheel-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 24px 4px;
  max-width: 1240px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.bullwheel-disc {
  flex: 0 0 auto;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: #39464F;
  border: 6px solid #4E6E54;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 12px #2E3A42;
}
.bullwheel-disc span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border-radius: 50%;
  background-color: #B5452F;
  border: 4px solid #FBFDFE;
}
.bullwheel-disc::before,
.bullwheel-disc::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #4E6E54;
}
.bullwheel-disc::before { transform: translateY(-1px) rotate(30deg); }
.bullwheel-disc::after { transform: translateY(-1px) rotate(120deg); }

.bullwheel-plate {
  flex: 1 1 260px;
  min-width: 220px;
}
.brand-name {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #FBFDFE;
  text-decoration: none;
  text-transform: uppercase;
}
.brand-name:hover { color: #FBFDFE; }
.brand-locale {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #DCE7EA;
  margin-top: 1px;
}

.cabin-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 6px 24px 2px;
  max-width: 1240px;
  margin: 0 auto;
}

.cabin {
  position: relative;
  flex: 1 1 150px;
  min-width: 132px;
  background-color: #FBFDFE;
  color: #28323A;
  border-radius: 10px;
  border: 2px solid #39464F;
  padding: 16px 12px 12px;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.cabin::before {
  /* hanger arm and short rope drop from the header line */
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  width: 3px;
  height: 16px;
  margin-left: -1px;
  background-color: #DCE7EA;
}
.cabin::after {
  /* window band */
  content: "";
  position: absolute;
  top: 7px;
  left: 10px;
  right: 10px;
  height: 5px;
  border-radius: 3px;
  background-color: #DCE7EA;
}
.cabin:hover { transform: translateY(-3px); border-color: #B5452F; }
.cabin .cabin-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cabin .cabin-sub {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8F3422;
  margin-top: 3px;
}
.cabin:nth-child(odd) { transform: rotate(-0.8deg); }
.cabin:nth-child(even) { transform: rotate(0.8deg); }
.cabin:nth-child(odd):hover { transform: rotate(-0.8deg) translateY(-3px); }
.cabin:nth-child(even):hover { transform: rotate(0.8deg) translateY(-3px); }
.cabin.is-current { border-color: #B5452F; background-color: #FBFDFE; }
.cabin.is-current .cabin-label { color: #8F3422; }

.nav-toggle {
  display: none;
  margin: 6px 24px 2px;
  background-color: #B5452F;
  color: #FBFDFE;
  border: 0;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}

/* ============================== HERO ==============================
   PYLON SPAN STATION — headline left, tramway pylon span right.
   ================================================================== */
.pylonspan {
  position: relative;
  background-color: #EFF3F4;
  padding: 64px 0 72px;
  border-bottom: 2px solid #DCE7EA;
}

.pylonspan-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 36px;
  align-items: center;
}

.kicker {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #4E6E54;
  margin-bottom: 0.9em;
}
.pylonspan h1 {
  font-size: 3rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}
.pylonspan h1 .carried { color: #B5452F; }
.pylonspan-copy { font-size: 1.1rem; color: #39464F; max-width: 620px; }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.terminal-btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 9px;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #B5452F;
  background-color: #B5452F;
  color: #FBFDFE;
  box-shadow: var(--shadow-soft);
}
.terminal-btn:hover { background-color: #8F3422; border-color: #8F3422; color: #FBFDFE; }
.terminal-btn.ghost {
  background-color: #FBFDFE;
  color: #8F3422;
  border-color: #39464F;
}
.terminal-btn.ghost:hover { background-color: #DCE7EA; color: #243238; }

/* Pylon span drawing — pure CSS */
.pylon-stage {
  position: relative;
  height: 420px;
  background-color: #FBFDFE;
  border: 2px solid #DCE7EA;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ridgeline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 64px;
  height: 180px;
  background-color: #DCE7EA;
  clip-path: polygon(0 100%, 0 62%, 16% 44%, 30% 58%, 46% 26%, 62% 50%, 78% 32%, 100% 60%, 100% 100%);
}
.ridgeline-back {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 64px;
  height: 210px;
  background-color: #C9D6DA;
  clip-path: polygon(0 100%, 0 74%, 22% 56%, 40% 72%, 58% 46%, 74% 66%, 90% 50%, 100% 68%, 100% 100%);
}

.pylon-tower {
  position: absolute;
  bottom: 64px;
  left: 66%;
  width: 26px;
  height: 250px;
  background-color: #39464F;
  clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
}
.pylon-tower::before,
.pylon-tower::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 4px;
  height: 120%;
  background-color: #4E6E54;
  transform-origin: bottom center;
}
.pylon-tower::before { bottom: 0; transform: translateX(-50%) rotate(24deg); }
.pylon-tower::after { bottom: 0; transform: translateX(-50%) rotate(-24deg); }

.pylon-crossarm {
  position: absolute;
  bottom: 292px;
  left: 66%;
  width: 118px;
  height: 10px;
  margin-left: -46px;
  background-color: #39464F;
  border-radius: 3px;
}
.pylon-crossarm::before,
.pylon-crossarm::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #B5452F;
}
.pylon-crossarm::before { left: 6px; }
.pylon-crossarm::after { right: 6px; }

.haulrope {
  position: absolute;
  bottom: 288px;
  left: 0;
  right: 0;
  height: 60px;
  border-top: 3px solid #243238;
  border-radius: 0 0 50% 50% / 0 0 44px 44px;
}
.haulrope.second {
  bottom: 302px;
  height: 50px;
  border-top-width: 2px;
  border-color: #4E6E54;
}

.carshell {
  position: absolute;
  bottom: 236px;
  left: 24%;
  width: 96px;
  height: 62px;
  background-color: #B5452F;
  border-radius: 10px 10px 14px 14px;
  border: 2px solid #8F3422;
  box-shadow: var(--shadow-soft);
}
.carshell::before {
  /* hanger arm up to the rope */
  content: "";
  position: absolute;
  top: -36px;
  left: 50%;
  width: 4px;
  height: 36px;
  margin-left: -2px;
  background-color: #243238;
}
.carshell::after {
  /* window band */
  content: "";
  position: absolute;
  top: 12px;
  left: 10px;
  right: 10px;
  height: 12px;
  border-radius: 4px;
  background-color: #FBFDFE;
  box-shadow: inset 0 0 0 2px #8F3422;
}

.slope-board {
  position: absolute;
  bottom: 20px;
  left: 18px;
  background-color: #FBFDFE;
  border: 2px solid #39464F;
  border-radius: 8px;
  padding: 10px 12px 8px;
  box-shadow: var(--shadow-soft);
}
.slope-board .slope-title {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #39464F;
  margin-bottom: 6px;
}
.slope-board .slope-tags { display: flex; gap: 6px; }
.elev-tag {
  display: inline-block;
  background-color: #4E6E54;
  color: #FBFDFE;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 5px;
  padding: 2px 7px;
}

.snowstake {
  position: absolute;
  bottom: 64px;
  width: 4px;
  height: 46px;
  background-color: #39464F;
}
.snowstake::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -4px;
  width: 12px;
  height: 5px;
  background-color: #B5452F;
}
.snowstake.one { left: 12%; }
.snowstake.two { left: 44%; height: 34px; }

/* ======================= STATION LEDGER SLOPE =====================
   Six station placards along two descending switchback paths.
   ================================================================== */
.stationslope {
  position: relative;
  background-color: #EFF3F4;
  padding: 68px 0 80px;
  overflow: hidden;
}
.stationslope::before {
  /* faint switchback path lines */
  content: "";
  position: absolute;
  inset: 0;
  background-color: transparent;
  border-top: 2px dashed #C9D6DA;
  border-bottom: 2px dashed #C9D6DA;
  clip-path: polygon(0 34%, 100% 22%, 100% 26%, 0 38%, 0 34%);
  pointer-events: none;
}

.ledger-intro { position: relative; margin-bottom: 42px; }

.ledger-path {
  position: relative;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.ledger-path.upper { justify-content: flex-start; }
.ledger-path.lower { justify-content: flex-end; margin-top: 34px; }

.placard {
  position: relative;
  flex: 1 1 300px;
  max-width: 348px;
  background-color: #FBFDFE;
  border: 2px solid #DCE7EA;
  border-left: 6px solid #39464F;
  border-radius: 10px;
  padding: 20px 20px 16px;
  box-shadow: var(--shadow-soft);
}
.ledger-path.lower .placard { border-left-color: #4E6E54; }
.placard .pylon-mark {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 18px solid #39464F;
}
.placard .pylon-mark::after {
  content: "";
  position: absolute;
  top: 18px;
  left: -2px;
  width: 4px;
  height: 8px;
  background-color: #39464F;
}
.placard h3 {
  font-size: 1.14rem;
  margin: 0 0 0.5em;
  padding-right: 26px;
}
.placard p { font-size: 0.96rem; color: #39464F; margin-bottom: 0.7em; }
.line-chip {
  display: inline-block;
  background-color: #B5452F;
  color: #FBFDFE;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 12px;
}
.placard-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8F3422;
  text-decoration: none;
  border-bottom: 2px solid #B5452F;
}
.placard-link:hover { color: #243238; border-color: #243238; }

/* ======================== FIRST CABLE STRIP ======================= */
.firstcable {
  background-color: #B5452F;
  color: #FBFDFE;
  padding: 34px 0;
  border-top: 5px solid #243238;
  border-bottom: 5px solid #243238;
}
.firstcable-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.firstcable p {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 600;
  color: #FBFDFE;
  max-width: 760px;
}
.firstcable .terminal-btn {
  background-color: #FBFDFE;
  color: #8F3422;
  border-color: #FBFDFE;
}
.firstcable .terminal-btn:hover { background-color: #243238; color: #FBFDFE; border-color: #243238; }

/* ======================= PROSE / EDITORIAL ======================== */
.proseband {
  background-color: #FBFDFE;
  padding: 66px 0;
  border-bottom: 2px solid #DCE7EA;
}
.proseband.alt { background-color: #EFF3F4; }
.prose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.prose-grid p { color: #39464F; }
.prose-grid h2 { font-size: 1.7rem; }
.prose-grid a { color: #8F3422; font-weight: 600; }

.woven-copy { max-width: 820px; }

.detail-list { list-style: none; margin: 0; padding: 0; }
.detail-list li {
  position: relative;
  padding: 0 0 0 26px;
  margin-bottom: 12px;
  color: #39464F;
}
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background-color: #B5452F;
  border-radius: 2px;
}

/* ======================= PROCESS OVERVIEW ========================= */
.processband {
  background-color: #243238;
  color: #FBFDFE;
  padding: 70px 0;
}
.processband h2 { color: #FBFDFE; }
.processband .section-lede { color: #DCE7EA; }
.processband .eyebrow { color: #DCE7EA; }
.processrail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.processstep {
  background-color: #39464F;
  border-top: 4px solid #B5452F;
  border-radius: 8px;
  padding: 20px 18px;
}
.processstep .step-no {
  display: inline-block;
  background-color: #4E6E54;
  color: #FBFDFE;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.processstep h3 { color: #FBFDFE; font-size: 1.05rem; margin-bottom: 0.4em; }
.processstep p { color: #DCE7EA; font-size: 0.94rem; margin: 0; }

/* ============================= CTA BAND =========================== */
.ctaband {
  background-color: #DCE7EA;
  padding: 58px 0;
  border-top: 2px solid #C9D6DA;
}
.ctaband-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.ctaband h2 { font-size: 1.8rem; margin: 0 0 0.2em; }
.ctaband p { margin: 0; color: #39464F; max-width: 620px; }

/* ======================= BASE TERMINAL FOOTER =====================
   Bullwheel disc half sunk at left with the brand plate; three haul
   rope lines across the top edge with snow stake link markers.
   ================================================================== */
.baseterminal {
  position: relative;
  background-color: #243238;
  color: #FBFDFE;
  padding: 0 0 24px;
  margin-top: 0;
}
.baseterminal .haulrope-lines {
  position: relative;
  height: 26px;
}
.baseterminal .haulrope-lines span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #4E6E54;
}
.baseterminal .haulrope-lines span:nth-child(1) { top: 4px; }
.baseterminal .haulrope-lines span:nth-child(2) { top: 12px; background-color: #DCE7EA; }
.baseterminal .haulrope-lines span:nth-child(3) { top: 20px; }

.baseterminal-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 34px;
  padding: 34px 0 26px;
  align-items: start;
}
.baseterminal-disc {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #39464F;
  border: 8px solid #4E6E54;
  position: relative;
  overflow: hidden;
  margin-top: 6px;
}
.baseterminal-disc::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  margin: -23px 0 0 -23px;
  border-radius: 50%;
  background-color: #B5452F;
  border: 5px solid #FBFDFE;
}
.baseterminal-disc::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #4E6E54;
  transform: rotate(30deg);
}
.baseterminal-brand {
  grid-column: 2;
  grid-row: 1;
}
.baseterminal .brand-name { font-size: 1.25rem; margin-bottom: 4px; }
.baseterminal .terminal-about {
  color: #DCE7EA;
  font-size: 0.94rem;
  max-width: 380px;
  margin-top: 10px;
}
.snowstake-links { grid-column: 3; grid-row: 1 / span 2; }
.snowstake-group {
  position: relative;
  padding-left: 22px;
  margin-bottom: 18px;
}
.snowstake-group::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 4px;
  height: 40px;
  background-color: #39464F;
}
.snowstake-group::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  width: 12px;
  height: 5px;
  background-color: #B5452F;
}
.snowstake-group h4 {
  color: #FBFDFE;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.snowstake-group a {
  display: block;
  color: #DCE7EA;
  text-decoration: none;
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.snowstake-group a:hover { color: #FBFDFE; text-decoration: underline; }

.terminal-apron {
  grid-column: 1 / -1;
  border-top: 2px solid #39464F;
  margin-top: 10px;
  padding-top: 18px;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: #DCE7EA;
  font-size: 0.9rem;
}
.apron-contacts { display: flex; gap: 26px; flex-wrap: wrap; }
.apron-contacts a { color: #FBFDFE; text-decoration: none; }
.apron-contacts a:hover { text-decoration: underline; }
.pylon-glyph {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 11px solid #4E6E54;
  margin-right: 6px;
  vertical-align: -1px;
}
.copyright { color: #DCE7EA; }

/* ========================= FORM / CONTACT ========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: start;
}
.field-row { margin-bottom: 18px; }
.field-row label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #39464F;
  margin-bottom: 6px;
}
.field-row input,
.field-row select,
.field-row textarea {
  width: 100%;
  font-size: 1rem;
  font-family: inherit;
  color: #28323A;
  background-color: #FBFDFE;
  border: 2px solid #C9D6DA;
  border-radius: 8px;
  padding: 11px 13px;
}
.field-row input:focus,
.field-row select:focus,
.field-row textarea:focus {
  outline: none;
  border-color: #B5452F;
}
.field-row textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: 0.86rem; color: #39464F; }
.form-status {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background-color: #DCE7EA;
  border-left: 5px solid #4E6E54;
  color: #243238;
  font-size: 0.92rem;
}
.form-status.show { display: block; }

.infopanel {
  background-color: #243238;
  color: #FBFDFE;
  border-radius: 12px;
  padding: 26px 24px;
}
.infopanel h3 { color: #FBFDFE; font-size: 1.1rem; }
.infopanel p, .infopanel li { color: #DCE7EA; }
.infopanel a { color: #FBFDFE; }
.info-row {
  border-top: 2px solid #39464F;
  padding: 14px 0;
}
.info-row:first-of-type { border-top: 0; padding-top: 0; }
.info-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4E6E54;
  margin-bottom: 3px;
  font-weight: 700;
}
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 2px solid #39464F;
  padding: 7px 0;
  font-size: 0.92rem;
}

.faqband { background-color: #EFF3F4; padding: 62px 0 72px; border-top: 2px solid #DCE7EA; }
.faq-item {
  background-color: #FBFDFE;
  border: 2px solid #DCE7EA;
  border-left: 6px solid #39464F;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background-color: #FBFDFE;
  border: 0;
  font-size: 1.04rem;
  font-weight: 700;
  color: #28323A;
  font-family: inherit;
  padding: 18px 20px;
  cursor: pointer;
  position: relative;
}
.faq-q:hover { color: #8F3422; }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  color: #39464F;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open { border-left-color: #B5452F; }

/* ============================ RESPONSIVE ========================== */
@media (max-width: 960px) {
  .pylonspan-grid { grid-template-columns: 1fr; }
  .pylonspan h1 { font-size: 2.4rem; }
  .prose-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .processrail { grid-template-columns: repeat(2, 1fr); }
  .baseterminal-grid { grid-template-columns: 150px 1fr; }
  .snowstake-links { grid-column: 1 / -1; grid-row: auto; }
}
@media (max-width: 720px) {
  .bullwheel-inner { padding: 10px 18px 0; }
  .bullwheel-disc { width: 68px; height: 68px; border-width: 5px; }
  .brand-name { font-size: 1.2rem; }
  .cabin-row { padding: 6px 18px 2px; }
  .cabin { flex: 1 1 44%; min-width: 130px; }
  .nav-toggle { display: inline-block; }
  .js-on .cabin-row.collapsed { display: none; }
  .pylonspan { padding: 44px 0 52px; }
  .pylonspan h1 { font-size: 2rem; }
  .ledger-path { flex-direction: column; }
  .ledger-path.lower { justify-content: flex-start; }
  .processrail { grid-template-columns: 1fr; }
  .baseterminal-grid { grid-template-columns: 1fr; }
  .baseterminal-disc { width: 110px; height: 110px; }
  .pylon-stage { height: 340px; }
}
