/* ============================================================
   BLACKDESERT — ABCD Black Desert, LLC
   Night Desert Theme · Dune Copper on Deep Obsidian
   ============================================================ */

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

:root {
  --obsidian: #14100C;
  --sand: #EFE4D4;
  --copper: #C67B3B;
  --cream: #F9F0E0;
  --dust: #A89A87;
  --basalt: #201A13;
  --hairline: #332A1E;
  --teal: #3E8B7A;
  --void: #0D0A07;
  --dunelight: #4A3B28;
  --copperlabel: #4A2F18;
  --soft: #C9BBA6;
  --legaltxt: #E2D5C0;
  --shadow: 0 18px 40px #0A0704;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--sand);
  background-color: var(--obsidian);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--copper);
  text-decoration: none;
}

a:hover {
  color: var(--teal);
}

h1, h2, h3, h4 {
  color: var(--cream);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

p {
  color: var(--sand);
}

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

/* ============================================================
   CRUMB-TRAIL NAV
   ============================================================ */

.crumb-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--obsidian);
  border-bottom: 2px solid var(--copper);
  transition: box-shadow 0.3s ease;
}

.crumb-nav.scrolled {
  box-shadow: var(--shadow);
}

.crumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  position: relative;
}

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

.brand-crescent {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 8px 5px 0 -4px var(--copper);
  display: inline-block;
}

.brand-word {
  color: var(--cream);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.22em;
}

.brand:hover .brand-word {
  color: var(--copper);
}

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

.crumb {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sand);
  padding: 6px 8px;
  border-radius: 3px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.crumb:hover {
  color: var(--teal);
  background-color: var(--basalt);
}

.crumb.current {
  background-color: var(--copper);
  color: var(--obsidian);
  font-weight: 700;
}

.crumb-sep {
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--copper);
  border-right: 1.5px solid var(--copper);
  transform: rotate(45deg);
  display: inline-block;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 10px 9px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background-color: var(--cream);
  display: block;
}

.nav-toggle:hover {
  border-color: var(--copper);
}

/* ============================================================
   MIRROR HERO
   ============================================================ */

.mirror-hero {
  background-color: var(--obsidian);
  padding: 72px 0 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 48px;
  align-items: center;
}

.dune-stage {
  position: relative;
  height: 520px;
  background-color: var(--basalt);
  border: 1px solid var(--copper);
  border-radius: 6px;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  background-color: var(--sand);
  border-radius: 50%;
}

.star.s1 { top: 12%; left: 18%; }
.star.s2 { top: 8%;  left: 46%; }
.star.s3 { top: 16%; left: 74%; }
.star.s4 { top: 28%; left: 30%; }
.star.s5 { top: 22%; left: 88%; }
.star.s6 { top: 38%; left: 12%; }
.star.s7 { top: 34%; left: 62%; }
.star.s8 { top: 6%;  left: 60%; }

.moon {
  position: absolute;
  top: 40px;
  right: 46px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 15px 9px 0 -8px var(--copper);
}

.dune-back {
  position: absolute;
  bottom: -14px;
  left: -12%;
  width: 72%;
  height: 210px;
  background-color: var(--hairline);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: skewX(-8deg);
}

.dune-front {
  position: absolute;
  bottom: -26px;
  right: -10%;
  width: 78%;
  height: 235px;
  background-color: var(--dunelight);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: skewX(7deg);
}

.tent-wrap {
  position: absolute;
  left: 18%;
  bottom: 118px;
  width: 60px;
  height: 50px;
}

.tent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 42px solid var(--copper);
}

.tent-glow {
  position: absolute;
  bottom: -2px;
  left: 25px;
  width: 10px;
  height: 10px;
  background-color: var(--cream);
  box-shadow: 0 0 14px var(--cream);
}

.camel {
  position: absolute;
  right: 10%;
  bottom: 128px;
  width: 150px;
  height: 78px;
}

.camel-body {
  position: absolute;
  top: 16px;
  left: 0;
  width: 92px;
  height: 44px;
  background-color: var(--cream);
  border-radius: 50%;
}

.camel-hump {
  position: absolute;
  top: 4px;
  left: 16px;
  width: 34px;
  height: 30px;
  background-color: var(--cream);
  border-radius: 50%;
}

.camel-neck {
  position: absolute;
  top: 0;
  left: 70px;
  width: 15px;
  height: 48px;
  background-color: var(--cream);
  border-radius: 8px;
  transform: rotate(12deg);
}

.camel-head {
  position: absolute;
  top: -4px;
  left: 72px;
  width: 20px;
  height: 17px;
  background-color: var(--cream);
  border-radius: 50% 50% 45% 45%;
}

.camel-leg {
  position: absolute;
  top: 58px;
  width: 10px;
  height: 24px;
  background-color: var(--cream);
  border-radius: 4px;
}

.camel-leg.l1 { left: 10px; }
.camel-leg.l2 { left: 36px; }
.camel-leg.l3 { left: 62px; }
.camel-leg.l4 { left: 84px; }

.compass {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 40px;
  height: 40px;
}

.compass .pt {
  position: absolute;
  width: 0;
  height: 0;
}

.compass .pt-n {
  left: 16px;
  top: 2px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 14px solid var(--copper);
}

.compass .pt-s {
  left: 16px;
  top: 24px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 14px solid var(--copper);
}

.compass .pt-e {
  left: 22px;
  top: 13px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid var(--sand);
}

.compass .pt-w {
  left: 4px;
  top: 13px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 14px solid var(--sand);
}

.compass .core {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 4px;
  height: 4px;
  background-color: var(--teal);
  border-radius: 50%;
}

.hero-copy {
  padding: 12px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--teal);
  flex-shrink: 0;
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
}

.hero-title .copper {
  color: var(--copper);
}

.hero-sub {
  color: var(--dust);
  font-size: 18px;
  line-height: 1.85;
  max-width: 620px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 38px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--copper);
  color: var(--obsidian);
}

.btn-primary:hover {
  background-color: var(--cream);
  color: var(--obsidian);
}

.btn-outline {
  border-color: var(--cream);
  color: var(--cream);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--cream);
  color: var(--obsidian);
}

.btn-copper-outline {
  border-color: var(--copper);
  color: var(--copper);
  background-color: transparent;
}

.btn-copper-outline:hover {
  background-color: var(--copper);
  color: var(--obsidian);
}

.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
}

.mini-stat {
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid var(--hairline);
  position: relative;
}

.mini-stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.mini-stat::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--teal);
}

.mini-stat b {
  display: block;
  font-size: 28px;
  color: var(--cream);
  font-weight: 800;
}

.mini-stat span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dust);
}

/* ============================================================
   SECTION INTROS
   ============================================================ */

.section-head {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--teal);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.section-kicker::before,
.section-kicker::after {
  content: "";
  width: 22px;
  height: 1px;
  background-color: var(--copper);
}

.section-title {
  font-size: 40px;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--dust);
  font-size: 17px;
  line-height: 1.8;
}

/* ============================================================
   EXPEDITION TIMELINE
   ============================================================ */

.expedition-timeline {
  background-color: var(--obsidian);
  padding: 96px 0 104px;
  overflow: hidden;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background-color: var(--copper);
  transform: translateX(-50%);
}

.milestone {
  position: relative;
  width: 50%;
  padding-bottom: 68px;
}

.milestone:last-child {
  padding-bottom: 0;
}

.milestone:nth-child(odd) {
  left: 0;
  padding-right: 64px;
  text-align: right;
}

.milestone:nth-child(even) {
  left: 50%;
  padding-left: 64px;
}

.milestone-node {
  position: absolute;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--teal);
  border: 3px solid var(--obsidian);
  box-shadow: 0 0 0 2px var(--copper);
}

.milestone:nth-child(odd) .milestone-node {
  right: -9px;
}

.milestone:nth-child(even) .milestone-node {
  left: -9px;
}

.milestone-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.milestone h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.milestone p {
  color: var(--sand);
  line-height: 1.8;
}

/* ============================================================
   WAYPOINT STRIP
   ============================================================ */

.waypoint-strip {
  background-color: var(--basalt);
  padding: 72px 0;
}

.waypoint-strip .section-kicker {
  color: var(--copper);
}

.waypoint-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 44px;
}

.waypoint-head .compass {
  position: static;
}

.waypoint-head h2 {
  font-size: 30px;
}

.route-ribbon {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 0 0;
}

.route-ribbon::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 4%;
  right: 4%;
  height: 2px;
  background-color: var(--hairline);
}

.waypoints {
  display: flex;
  justify-content: space-between;
  list-style: none;
  position: relative;
}

.waypoints li {
  text-align: center;
  flex: 1;
}

.waypoint-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin: 0 auto 14px;
  border: 2px solid var(--obsidian);
}

.waypoint-dot.wp-copper {
  background-color: var(--copper);
}

.waypoint-dot.wp-teal {
  background-color: var(--teal);
}

.waypoints li span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--soft);
}

.waypoints li em {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: var(--dust);
  margin-top: 4px;
}

/* ============================================================
   METRIC BAND
   ============================================================ */

.metric-band {
  background-color: var(--copper);
  padding: 56px 0;
}

.metric-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.metric {
  flex: 1;
  text-align: center;
  position: relative;
}

.metric + .metric::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background-color: var(--obsidian);
}

.metric-num {
  display: block;
  font-size: 52px;
  font-weight: 800;
  color: var(--obsidian);
  line-height: 1;
}

.metric-label {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--copperlabel);
  font-weight: 700;
}

/* ============================================================
   STATEMENT BAND
   ============================================================ */

.statement-band {
  background-color: var(--obsidian);
  padding: 96px 0;
}

.statement-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.statement-inner p {
  font-size: 30px;
  line-height: 1.6;
  color: var(--cream);
  font-weight: 600;
  border-left: 6px solid var(--copper);
  padding-left: 28px;
}

.statement-inner p .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--teal);
  margin-left: 10px;
  vertical-align: baseline;
}

/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  background-color: var(--basalt);
  border-top: 1px solid var(--hairline);
  padding: 80px 0;
  text-align: center;
}

.cta-band h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

.cta-band p {
  color: var(--dust);
  max-width: 640px;
  margin: 0 auto 34px;
  font-size: 17px;
  line-height: 1.8;
}

/* ============================================================
   BUS FOOTER
   ============================================================ */

.bus-footer {
  background-color: var(--void);
  padding: 64px 0 0;
  color: var(--soft);
}

.bus-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 56px;
}

.bus-col {
  padding: 0 28px;
  position: relative;
}

.bus-col + .bus-col {
  border-left: 1px solid var(--hairline);
}

.bus-col::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 28px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--teal);
}

.bus-col + .bus-col::before {
  left: 28px;
}

.bus-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.bus-brand .brand-crescent {
  width: 22px;
  height: 22px;
}

.bus-brand .brand-word {
  font-size: 20px;
}

.bus-blurb {
  font-size: 15px;
  line-height: 1.85;
  color: var(--soft);
}

.bus-footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--copper);
  margin-bottom: 20px;
  font-weight: 700;
}

.bus-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bus-links a {
  color: var(--cream);
  font-size: 15px;
}

.bus-links a:hover {
  color: var(--copper);
}

.bus-contact {
  font-size: 15px;
  line-height: 2;
  color: var(--soft);
}

.bus-contact a {
  color: var(--sand);
}

.bus-contact a:hover {
  color: var(--copper);
}

.bus-legal {
  border-top: 1px solid var(--hairline);
  padding: 26px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--soft);
  letter-spacing: 0.04em;
}

.bus-legal a {
  color: var(--soft);
}

.bus-legal a:hover {
  color: var(--copper);
}

.bus-legal .sep {
  margin: 0 8px;
  color: var(--copper);
}

/* ============================================================
   PAGE HEADER (secondary pages)
   ============================================================ */

.page-hero {
  background-color: var(--obsidian);
  padding: 84px 0 64px;
  border-bottom: 1px solid var(--hairline);
}

.page-hero .kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--teal);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.page-hero .kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--teal);
}

.page-hero h1 {
  font-size: 48px;
  max-width: 860px;
  margin-bottom: 18px;
}

.page-hero p {
  color: var(--dust);
  font-size: 18px;
  line-height: 1.85;
  max-width: 780px;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.services-index {
  background-color: var(--obsidian);
  padding: 40px 0 80px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--hairline);
}

.service-row:last-child {
  border-bottom: none;
}

.service-meta .service-num {
  font-size: 15px;
  font-weight: 800;
  color: var(--copper);
  letter-spacing: 0.16em;
  display: block;
  margin-bottom: 10px;
}

.service-meta h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.service-meta .service-duration {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal);
  font-weight: 700;
}

.service-desc p {
  color: var(--sand);
  line-height: 1.9;
  margin-bottom: 14px;
}

.service-desc p:last-child {
  margin-bottom: 0;
}

.service-desc ul {
  list-style: none;
  margin-top: 12px;
}

.service-desc ul li {
  color: var(--soft);
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}

.service-desc ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--teal);
}

/* process */

.process-band {
  background-color: var(--basalt);
  border-top: 1px solid var(--hairline);
  padding: 88px 0;
}

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

.process-step {
  background-color: var(--obsidian);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--copper);
  padding: 30px 26px;
  border-radius: 6px;
}

.process-step .step-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--copper);
  display: block;
  margin-bottom: 14px;
}

.process-step h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--dust);
  font-size: 15px;
  line-height: 1.8;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-section {
  background-color: var(--obsidian);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form {
  background-color: var(--basalt);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 40px;
}

.form-row {
  margin-bottom: 22px;
}

.form-row label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: 8px;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background-color: var(--obsidian);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  color: var(--cream);
  font-family: inherit;
  font-size: 16px;
  padding: 13px 14px;
  transition: border-color 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--copper);
}

.form-row textarea {
  resize: vertical;
  min-height: 140px;
}

.form-note {
  font-size: 13px;
  color: var(--dust);
  margin-top: 14px;
  line-height: 1.7;
}

.form-ok {
  display: none;
  background-color: var(--teal);
  color: var(--obsidian);
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 6px;
  margin-bottom: 22px;
  line-height: 1.6;
}

.contact-info-block {
  background-color: var(--basalt);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 34px;
  margin-bottom: 28px;
}

.contact-info-block h3 {
  font-size: 19px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-block h3::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--teal);
}

.contact-info-block p {
  color: var(--sand);
  line-height: 1.95;
  margin-bottom: 6px;
}

.contact-info-block p a {
  color: var(--sand);
}

.contact-info-block p a:hover {
  color: var(--copper);
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  color: var(--sand);
  padding: 7px 0;
  border-bottom: 1px dashed var(--hairline);
  font-size: 15px;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list li span {
  color: var(--dust);
}

/* FAQ accordion */

.faq-section {
  background-color: var(--basalt);
  border-top: 1px solid var(--hairline);
  padding: 88px 0;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--obsidian);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  margin-bottom: 16px;
  overflow: hidden;
}

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

.faq-question .faq-chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--copper);
  border-bottom: 2px solid var(--copper);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question .faq-chev {
  transform: rotate(225deg);
}

.faq-question:hover {
  color: var(--copper);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  color: var(--dust);
  line-height: 1.85;
  padding: 0 24px 22px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

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

  .dune-stage {
    height: 420px;
    min-height: 420px;
  }

  .hero-title {
    font-size: 44px;
  }

  .metric-num {
    font-size: 42px;
  }

  .bus-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
  }

  .bus-col + .bus-col {
    border-left: none;
  }

  .bus-col:nth-child(odd) {
    border-right: 1px solid var(--hairline);
  }

  .bus-col::before,
  .bus-col + .bus-col::before {
    left: 28px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .statement-inner p {
    font-size: 26px;
  }
}

@media (max-width: 860px) {
  .crumb-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--basalt);
    border-top: 2px solid var(--copper);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 20px;
    gap: 4px;
    box-shadow: var(--shadow);
  }

  .crumb-nav.open .crumb-links {
    display: flex;
  }

  .crumb-sep {
    display: none;
  }

  .crumb {
    display: block;
    padding: 12px 10px;
    border-bottom: 1px solid var(--hairline);
  }

  .crumb.current {
    background-color: var(--copper);
    color: var(--obsidian);
  }

  .nav-toggle {
    display: flex;
  }

  .mini-stats {
    gap: 18px;
  }

  .mini-stat {
    margin-right: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }

  .mini-stats {
    flex-direction: column;
    gap: 22px;
  }

  .mini-stat {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    padding-left: 22px;
  }

  .mini-stat::before {
    left: 0;
  }

  .timeline::before {
    left: 14px;
    transform: none;
  }

  .milestone,
  .milestone:nth-child(odd),
  .milestone:nth-child(even) {
    width: 100%;
    left: 0;
    padding-right: 0;
    padding-left: 46px;
    text-align: left;
  }

  .milestone:nth-child(odd) .milestone-node,
  .milestone:nth-child(even) .milestone-node {
    left: 5px;
    right: auto;
  }

  .waypoints {
    flex-wrap: wrap;
    gap: 28px 10px;
  }

  .waypoints li {
    flex: 1 1 30%;
  }

  .route-ribbon::before {
    display: none;
  }

  .metric-grid {
    flex-direction: column;
    gap: 34px;
  }

  .metric + .metric::before {
    top: -17px;
    left: 50%;
    right: auto;
    width: 40px;
    height: 1px;
    transform: translateX(-50%);
  }

  .metric-num {
    font-size: 40px;
  }

  .section-title {
    font-size: 30px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  .bus-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bus-col:nth-child(odd) {
    border-right: none;
  }
}
