/* ROCKY MOUNTAIN AIR, LLC - Mountain Weather Station at Night
   Dark theme: storm-night body, storm-lilac primary, squall-grey secondary. */

:root {
  --storm-night: #1D1A33;
  --front-panel: #262243;
  --gauge-pit: #121024;
  --barometer-white: #F0EFF8;
  --storm-lilac: #7E6BC4;
  --cloud-mist: #CDD2E8;
  --squall-grey: #9A97B5;
  --lilac-soft: #6856AA;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  background-color: #1D1A33;
  color: #CDD2E8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #CDD2E8;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #F0EFF8;
}

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

h1, h2, h3, h4 {
  color: #F0EFF8;
  line-height: 1.15;
  font-weight: 700;
}

/* Utility wrapper for horizontal centering and a strong readable column. */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   VANE-ROOF NAVIGATION
============================================================ */
.vane-roof-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  background-color: #262243;
}

.vane-roof-nav .isobar-band {
  background-color: #121024;
  height: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 40px;
  overflow: hidden;
}

.vane-roof-nav .iso-line {
  border-top: 2px dashed #7E6BC4;
  border-radius: 40%;
  opacity: 1;
}

.vane-roof-nav .iso-weak {
  border-top: 1.5px dashed #7E6BC4;
  border-radius: 45%;
}

.vane-roof-nav .isobar-band .iso-low-dot {
  width: 8px;
  height: 8px;
  background-color: #7E6BC4;
  border-radius: 50%;
  position: relative;
  flex: none;
}

.vane-roof-nav .nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
}

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

.wind-vane-glyph {
  width: 40px;
  height: 40px;
  flex: none;
  position: relative;
}

.wind-vane-glyph .vane-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  background-color: #121024;
  border: 2px solid #7E6BC4;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.wind-vane-glyph .vane-arrow {
  position: absolute;
  left: 2px;
  right: 2px;
  top: 44%;
  height: 2px;
  background-color: #7E6BC4;
  z-index: 1;
}

.wind-vane-glyph .vane-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -5px;
  border-left: 8px solid #7E6BC4;
  border-bottom: 2px solid transparent;
  border-top: 2px solid transparent;
}

.wind-vane-glyph .vane-arrow::before {
  content: "";
  position: absolute;
  left: -6px;
  top: -4px;
  border-right: 9px solid #7E6BC4;
  border-bottom: 2px solid transparent;
  border-top: 2px solid transparent;
}

.vane-tick {
  position: absolute;
  color: #9A97B5;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.vane-tick.n { top: 0; left: 50%; transform: translateX(-40%); }
.vane-tick.e { right: 0; top: 50%; transform: translateY(-60%); }
.vane-tick.s { bottom: 0; left: 50%; transform: translateX(-50%); }
.vane-tick.w { left: 0; top: 50%; transform: translateY(-50%); }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-size: 19px;
  letter-spacing: 0.14em;
  color: #F0EFF8;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9A97B5;
  margin-top: 3px;
}

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

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9A97B5;
  padding: 6px 8px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #7E6BC4;
}

.nav-front-dot {
  width: 4px;
  height: 4px;
}

.nav-front-dot svg {
  display: block;
}

.nav-front-dot::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: #CDD2E8;
  border-radius: 50%;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #7E6BC4;
  color: #CDD2E8;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
}

/* ============================================================
   WEATHER-SHELTER HERO
============================================================ */
.weather-shelter-hero {
  background-color: #1D1A33;
  padding: 72px 0 0;
}

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

.eyebrow-chip {
  display: inline-block;
  background-color: #7E6BC4;
  color: #121024;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 26px;
}

.hero-headline {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.hero-headline .lilac-word {
  color: #7E6BC4;
}

.hero-headline .head-block {
  display: block;
}

.hero-subcopy {
  color: #9A97B5;
  font-size: 19px;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 34px;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.04em;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background-color: #7E6BC4;
  color: #121024;
  border: 2px solid #7E6BC4;
}

.btn-primary:hover {
  background-color: #8B79D2;
  color: #121024;
}

.btn-outline {
  background: none;
  color: #CDD2E8;
  border: 2px solid #CDD2E8;
}

.btn-outline:hover {
  color: #F0EFF8;
  border-color: #F0EFF8;
}

/* Station yard band */
.station-yard {
  background-color: #262243;
  border-top: 2px solid #7E6BC4;
  border-bottom: 2px solid #7E6BC4;
  padding: 26px 0;
  overflow: hidden;
}

.station-yard-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  min-height: 150px;
}

.weather-scene {
  position: relative;
  height: 150px;
}

/* Instrument shelter */
.instrument-shelter {
  position: relative;
  width: 110px;
  height: 116px;
}

.shelter-box {
  position: absolute;
  left: 4px;
  right: 4px;
  top: 4px;
  height: 96px;
  background-color: #F0EFF8;
  border: 2px solid #CDD2E8;
  border-radius: 2px;
  z-index: 2;
  overflow: hidden;
}

.shelter-louver {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 3px;
  background-color: #CDD2E8;
}

.shelter-louver.l1 { top: 14px; }
.shelter-louver.l2 { top: 25px; }
.shelter-louver.l3 { top: 36px; }
.shelter-louver.l4 { top: 47px; }
.shelter-louver.l5 { top: 58px; }
.shelter-louver.l6 { top: 69px; }
.shelter-louver.l7 { top: 80px; }

.shelter-roof {
  position: absolute;
  left: -2px;
  right: -2px;
  top: -6px;
  height: 14px;
  background-color: #F0EFF8;
  border: 2px solid #CDD2E8;
  border-bottom: none;
  transform: skewX(-4deg);
  z-index: 3;
}

.shelter-door {
  position: absolute;
  left: 20px;
  top: 12px;
  width: 30px;
  height: 80px;
  background-color: #CDD2E8;
  z-index: 4;
  transform-origin: left center;
  transform: rotateY(42deg);
  box-shadow: 0 0 0 2px #F0EFF8 inset;
}

.shelter-leg {
  position: absolute;
  top: 100px;
  width: 7px;
  height: 16px;
  background-color: #9A97B5;
  z-index: 1;
}

.shelter-leg.lf { left: 8px; }
.shelter-leg.rt { right: 8px; }

.rain-gauge {
  position: relative;
  width: 46px;
  height: 130px;
}

.rain-funnel {
  position: absolute;
  top: 2px;
  left: 8px;
  width: 32px;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 20px solid #CDD2E8;
}

.rain-cylinder {
  position: absolute;
  top: 20px;
  left: 16px;
  width: 18px;
  height: 78px;
  background-color: #9A97B5;
  border: 1px solid #CDD2E8;
  border-radius: 0 0 4px 4px;
}

.rain-cyl-line {
  position: absolute;
  left: 16px;
  width: 18px;
  height: 2px;
  background-color: #7E6BC4;
}

.rain-cyl-line.c1 { top: 40px; }
.rain-cyl-line.c2 { top: 62px; }

.rain-post {
  position: absolute;
  left: 22px;
  top: 98px;
  width: 6px;
  height: 30px;
  background-color: #9A97B5;
}

/* Mast with cup anemometer and wind vane */
.weather-mast {
  position: relative;
  width: 150px;
  height: 150px;
}

.anemometer-cup {
  position: absolute;
}

.anemometer-cup.c1 { top: 0; left: 32px; }
.anemometer-cup.c2 { top: 26px; left: 62px; }
.anemometer-cup.c3 { top: 64px; left: 32px; }

.anemometer-cup .spoke {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 52px;
  background-color: #CDD2E8;
  transform-origin: top center;
}

.anemometer-cup.c1 .spoke { transform: rotate(0deg) translateY(-52px); }
.anemometer-cup.c2 .spoke { transform: rotate(120deg) translateY(-52px); }
.anemometer-cup.c3 .spoke { transform: rotate(240deg) translateY(-52px); }

.cup-body {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #262243;
  border: 2px solid #CDD2E8;
}

.anemometer-cup.c1 .cup-body { left: 45px; top: 44px; background-color: #7E6BC4; border-color: #F0EFF8; }

.anemometer-cup .cup-arm {
  position: absolute;
  width: 2px;
  height: 8px;
  background-color: #CDD2E8;
}

.anemometer-cup.c1 .cup-arm { left: 0; top: -4px; }
.anemometer-cup.c2 .cup-arm { left: -30px; top: 22px; }
.anemometer-cup.c3 .cup-arm { left: 22px; top: 30px; }

.wind-vane-on-mast {
  position: absolute;
  top: 100px;
  left: 44px;
  transform: rotate(-28deg);
}

.vane-tail {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 3px;
  background-color: #CDD2E8;
}

.vane-head {
  position: absolute;
  left: 56px;
  top: -4px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 11px solid #F0EFF8;
}

.anemometer-mast-foot {
  position: absolute;
  left: 70px;
  top: 118px;
  width: 4px;
  height: 32px;
  background-color: #9A97B5;
}

/* Radiosonde balloon */
.sonde {
  position: relative;
  width: 210px;
  height: 150px;
}

.sonde-balloon {
  position: absolute;
  left: 60px;
  top: 0;
  width: 88px;
  height: 108px;
  border-radius: 52% 52% 56% 56%;
  background-color: #7E6BC4;
  overflow: hidden;
}

.sonde-balloon .striped-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  background-color: #262243;
}

.sonde-balloon .stripe-1 { left: 20px; }
.sonde-balloon .stripe-2 { left: 60px; }

.sonde-tether {
  position: absolute;
  left: 103px;
  top: 108px;
  width: 2px;
  height: 28px;
  background-color: #CDD2E8;
}

.sonde-payload {
  position: absolute;
  left: 90px;
  top: 134px;
  width: 26px;
  height: 16px;
  background-color: #9A97B5;
  border: 1px solid #7E6BC4;
}

.sonde-antenna {
  position: absolute;
  left: 98px;
  bottom: 4px;
  width: 2px;
  height: 10px;
  background-color: #F0EFF8;
  transform: rotate(-14deg);
}

/* Isobar chart leaning panel */
.isobar-chart-panel {
  position: relative;
  width: 150px;
  height: 116px;
  background-color: #121024;
  border: 2px solid #7E6BC4;
  transform: rotate(3deg);
}

.isobar-chart-panel .chart-title {
  font-size: 8px;
  letter-spacing: 0.1em;
  color: #F0EFF8;
  text-align: center;
  padding: 4px;
  border-bottom: 1px solid #262243;
}

.isobar-chart-panel canvas,
.isobar-chart-panel .pres-path {
  position: absolute;
  top: 18px;
  left: 8px;
  right: 8px;
  bottom: 6px;
}

.chart-iso {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 0;
  border-top: 2px dashed #7E6BC4;
  border-radius: 45%;
}

.chart-iso.ci1 { top: 30px; }
.chart-iso.ci2 { top: 50px; }
.chart-iso.ci3 { top: 70px; }

/* HERO decorative text note */
.ledger-tagline {
  color: #9A97B5;
  font-size: 14px;
  text-align: center;
  padding: 22px 24px 28px;
}

.ledger-tagline strong {
  color: #CDD2E8;
}

/* ============================================================
   SECTION HEADINGS
============================================================ */
.section-pad {
  padding: 78px 0;
}

.section-kicker {
  color: #7E6BC4;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-size: 38px;
  margin-bottom: 14px;
}

.section-lede {
  color: #9A97B5;
  font-size: 18px;
  max-width: 720px;
  margin-bottom: 44px;
  line-height: 1.7;
}

/* ============================================================
   ISOBAR-CHART ROWS
============================================================ */
.isobar-chart-rows {
  background-color: #1D1A33;
}

.service-row {
  display: grid;
  grid-template-columns: 150px 1fr 190px;
  gap: 26px;
  align-items: stretch;
  background-color: #262243;
  border: 1px solid #7E6BC4;
  border-radius: 8px;
  padding: 30px 28px;
  margin-bottom: 11px;
}

.pressure-curve-col {
  background-color: #121024;
  border: 1px solid #262243;
  border-radius: 6px;
  position: relative;
  min-height: 128px;
  overflow: hidden;
}

.pressure-curve-col .pc-title {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #9A97B5;
  text-align: center;
  padding: 5px 0;
}

.pressure-curve-col .pc-canvas {
  position: absolute;
  top: 22px;
  left: 6px;
  right: 6px;
  bottom: 6px;
}

.pc-curve {
  position: absolute;
  border-top: 2px dashed #7E6BC4;
  border-radius: 50%;
  left: 6px;
  right: 6px;
  height: 0;
}

.pc-curve.a { top: 30px; }
.pc-curve.b { top: 64px; }

.pc-station {
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: #CDD2E8;
  border: 1px solid #7E6BC4;
  border-radius: 50%;
}

.pc-station.s1 { left: 20px; top: 30px; }
.pc-station.s2 { left: 82px; top: 62px; }
.pc-station.s3 { left: 128px; top: 44px; }

.pc-rule {
  position: absolute;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #F0EFF8;
}

.row-body h3 {
  font-size: 26px;
  color: #F0EFF8;
  margin-bottom: 12px;
}

.row-body p {
  color: #9A97B5;
  line-height: 1.75;
}

.reading-tag {
  align-self: center;
  background-color: #121024;
  border: 1px solid #7E6BC4;
  border-radius: 30px;
  padding: 12px 16px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 15px;
  color: #CDD2E8;
  letter-spacing: 0.03em;
  text-align: center;
}

.reading-tag .rd {
  display: inline-block;
}

.reading-tag .rd::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: #7E6BC4;
  border-radius: 50%;
  margin-right: 8px;
}

@media (max-width: 940px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pressure-curve-col {
    min-height: 90px;
  }
  .reading-tag {
    justify-self: start;
  }
  .station-yard-inner {
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    min-height: auto;
  }
}

/* ============================================================
   METRIC BAND
============================================================ */
.metric-band {
  background-color: #121024;
  border-top: 1px solid #262243;
  border-bottom: 1px solid #262243;
  padding: 0;
  margin: 0;
}

.metric-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric-cell {
  padding: 56px 26px;
  text-align: center;
}

.metric-cell + .metric-cell {
  border-left: 1px solid #7E6BC4;
}

.metric-num {
  font-size: 46px;
  font-weight: 800;
  color: #F0EFF8;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 12px;
}

.metric-num .m-suffix {
  color: #7E6BC4;
}

.metric-label {
  color: #7E6BC4;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .metric-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .metric-cell:nth-child(3) { border-left: none; }
  .metric-cell:nth-child(even) { border-left: 1px solid #7E6BC4; }
}

/* ============================================================
   STATEMENT BAND
============================================================ */
.statement-band {
  background: #1D1A33;
}

.statement-band .statement-copy {
  background-color: #262243;
  border-left: 4px solid #7E6BC4;
  border-radius: 0 6px 6px 0;
  padding: 40px 44px;
  max-width: 900px;
}

.statement-band blockquote {
  font-size: 27px;
  font-weight: 600;
  line-height: 1.4;
  color: #F0EFF8;
  font-style: normal;
}

.statement-attrib {
  margin-top: 20px;
  color: #9A97B5;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   CTA BAND
============================================================ */
.cta-band {
  text-align: center;
  background-color: #1D1A33;
}

.cta-band h2 {
  color: #7E6BC4;
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-band p {
  color: #9A97B5;
  font-size: 19px;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ============================================================
   SONDE-TAIL FOOTER
============================================================ */
.sonde-tail-footer {
  position: relative;
  background-color: #121024;
  border-top: 2px solid #262243;
}

.sonde-tail-footer .footer-inner {
  position: relative;
  z-index: 1;
}

.balloon-ascent {
  height: 16px;
  background-color: #121024;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #262243;
}

.balloon-ascent .asc-balloon {
  position: absolute;
  right: 16%;
  top: 1px;
  width: 12px;
  height: 14px;
  border-radius: 50%;
  background-color: #7E6BC4;
}

.balloon-ascent .asc-balloon::after {
  content: "";
  position: absolute;
  left: 1px;
  top: 0;
  width: 4px;
  bottom: 0;
  background-color: #262243;
}

.balloon-ascent .asc-balloon::before {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 0;
  width: 6px;
  height: 4px;
  background-color: #262243;
}

.balloon-ascent .asc-tether {
  position: absolute;
  right: 15.5%;
  top: 15px;
  width: 60px;
  border-bottom: 1.5px dashed #9A97B5;
  transform: rotate(-38deg);
  transform-origin: left center;
}

.balloon-ascent .asc-box {
  position: absolute;
  right: 14%;
  top: 34px;
  width: 8px;
  height: 6px;
  background-color: #9A97B5;
  border: 1px solid #7E6BC4;
  transform: rotate(-8deg);
}

.footer-zones {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.5fr;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 46px 24px 32px;
}

.footer-brand .f-wing {
  margin-bottom: 12px;
}

.footer-brand .f-name {
  font-size: 18px;
  color: #F0EFF8;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-brand p {
  color: #9A97B5;
  font-size: 14px;
  margin-top: 10px;
  max-width: 240px;
  line-height: 1.6;
}

.governor-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.governor-links ul {
  list-style: none;
}

.governor-links .gl-title {
  color: #7E6BC4;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.governor-links li {
  margin-bottom: 8px;
}

.governor-links a {
  color: #9A97B5;
  font-size: 15px;
}

.governor-links a:hover {
  color: #CDD2E8;
}

/* Reusable small link-group used in two columns of the footer center zone. */
.link-column {
  min-width: 0;
}

.footer-contact {
  color: #CDD2E8;
  font-size: 15px;
}

.footer-contact a {
  color: #CDD2E8;
}

.footer-contact a:hover {
  color: #CDD2E8;
}

.fcontact-item {
  margin-bottom: 10px;
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.fcontact-item::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #7E6BC4;
  border-radius: 50%;
  margin-top: 8px;
  flex: none;
}

.footer-legal {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-legal::before {
  content: "";
  display: block;
  height: 1px;
  background-color: #262243;
  margin-bottom: 18px;
}

.legal-line {
  text-align: center;
  color: #9A97B5;
  font-size: 14px;
  padding: 0 24px 28px;
}

@media (max-width: 920px) {
  .footer-zones {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 36px;
  }
  .hero-headline {
    font-size: 42px;
  }
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin-top: 10px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-toggle {
    display: inline-block;
  }
  .nav-row {
    flex-wrap: wrap;
  }
  .nav-front-dot {
    display: none;
  }
  .nav-links a {
    padding: 10px 8px;
    border-bottom: 1px solid #262243;
    text-align: center;
  }
  .metric-num {
    font-size: 34px;
  }
  .statement-band blockquote {
    font-size: 22px;
  }
  .hero-headline {
    font-size: 34px;
  }
}

/* ============================================================
   SECONDARY PAGE COMMON BANDS
============================================================ */
.secondary-hero {
  background-color: #1D1A33;
  padding: 64px 24px 40px;
  text-align: center;
}

.secondary-hero h1 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 16px;
}

.secondary-hero h1 .lilac-word {
  color: #7E6BC4;
}

.secondary-hero p {
  color: #9A97B5;
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

.detail-intro {
  background-color: #1D1A33;
}

.detail-intro .detail-intro-box {
  background-color: #262243;
  border-left: 4px solid #7E6BC4;
  padding: 30px 36px;
  border-radius: 0 6px 6px 0;
  color: #CDD2E8;
  font-size: 17px;
  line-height: 1.75;
}

/* Services detailed body uses isobar rows but with a longer normal style variant. */
.wide-service-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  background-color: #262243;
  border: 1px solid #7E6BC4;
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 28px;
}

.wide-service-row .row-body h3 {
  margin-bottom: 10px;
}

.wide-service-row .row-body h3 a {
  color: #F0EFF8;
}

.wide-service-row .row-body h3 a:hover {
  color: #7E6BC4;
}

.wide-service-row .row-body p {
  color: #9A97B5;
  margin-bottom: 12px;
}

.wide-service-row .row-body ul {
  list-style: none;
  margin-top: 6px;
}

.wide-service-row .row-body ul li {
  color: #CDD2E8;
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
}

.wide-service-row .row-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 4px;
  background-color: #7E6BC4;
  border-radius: 2px;
}

/* Delivery process overview */
.process-band {
  background-color: #262243;
  border-top: 1px solid #262243;
  border-bottom: 1px solid #262243;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-step {
  background-color: #121024;
  border: 1px solid #7E6BC4;
  border-radius: 8px;
  padding: 26px 24px;
}

.process-step .step-no {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #7E6BC4;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.process-step h4 {
  color: #F0EFF8;
  font-size: 18px;
  margin-bottom: 10px;
}

.process-step p {
  color: #9A97B5;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .wide-service-row {
    grid-template-columns: 1fr;
  }
  .secondary-hero h1 {
    font-size: 36px;
  }
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-columns {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-columns {
    grid-template-columns: 1fr;
  }
}

.contact-form .form-panel {
  background-color: #262243;
  border: 1px solid #7E6BC4;
  border-radius: 8px;
  padding: 30px;
}

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

.contact-form label {
  display: block;
  color: #CDD2E8;
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
  width: 100%;
  background-color: #121024;
  border: 1px solid #262243;
  color: #F0EFF8;
  font-size: 16px;
  padding: 12px 14px;
  border-radius: 5px;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .form-status {
  display: none;
  background-color: #7E6BC4;
  color: #121024;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 5px;
  margin-bottom: 16px;
}

.form-note {
  color: #9A97B5;
  font-size: 13px;
  margin-top: 12px;
  line-height: 1.6;
}

.contact-info-panel .info-panel {
  background-color: #121024;
  border: 1px solid #7E6BC4;
  border-radius: 8px;
  padding: 26px;
  margin-bottom: 24px;
}

.info-panel h4 {
  color: #7E6BC4;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.info-panel p {
  color: #CDD2E8;
  margin-bottom: 6px;
}

.info-panel a {
  color: #CDD2E8;
}

.info-panel a:hover {
  color: #F0EFF8;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  color: #CDD2E8;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed #262243;
}

.hours-list li span:last-child {
  color: #9A97B5;
}

/* FAQ accordion (used on contact page) */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.contact-page .faq-list {
  max-width: 1100px;
}

.faq-item {
  background-color: #262243;
  border: 1px solid #262243;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  color: #F0EFF8;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-family: inherit;
}

.faq-question::after {
  content: "+";
  color: #7E6BC4;
  font-size: 20px;
  flex: none;
}

.faq-item.open .faq-question::after {
  content: "\2212";
}

.faq-answer {
  padding: 0 20px 18px;
  color: #9A97B5;
  line-height: 1.7;
}

.faq-answer p {
  margin-bottom: 8px;
}

/* Fade-up reveal (safe without JS: content fully visible by default).
   Optional gentle lift is applied only via the visible class. */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.no-js .reveal {
  opacity: 1;
  transform: none;
}
