/* MicroHaul — design tokens
   Direction: Muval-style structure (white canvas, charcoal ink, vibrant orange accent,
   single friendly-geometric family) implemented as an original system.
   Type: Figtree (Google Fonts) — closest licensed equivalent to GT Haptik.
   Swap to GT Haptik later by changing --font only. */

:root {
  --font: "Figtree", "Segoe UI", Arial, sans-serif;

  --ink: #212529;
  --ink-soft: rgba(33, 37, 41, 0.75);
  --nav-ink: rgba(33, 37, 41, 0.65);
  --paper: #ffffff;
  --mist: #f5f6f8;
  --line: #e4e6eb;

  --accent: #ff5c00;
  --accent-deep: #d94e00;
  --accent-soft: #fff1e8;

  --radius: 14px;
  --radius-pill: 999px;
  --shadow: 0 10px 30px rgba(32, 36, 46, 0.08);
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 36px;
  min-height: 104px;
  max-width: 1680px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.logo svg { width: 34px; height: 34px; }
.logo img.lockup { height: 96px; width: auto; display: block; }
@media (max-width: 680px) { .logo img.lockup { height: 64px; } }
.logo .haul { color: var(--accent); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}
.main-nav a {
  text-decoration: none;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  color: rgba(33, 37, 41, 0.75);
  white-space: nowrap;
}
.main-nav a:hover { color: rgba(33, 37, 41, 0.95); }

/* Dropdown (Services) — filled-triangle caret, Bootstrap-style */
.nav-drop { position: relative; }
.nav-drop > a { display: inline-flex; align-items: center; gap: 11px; }
.nav-drop > a::after {
  content: "";
  border-left: 0.34em solid transparent;
  border-right: 0.34em solid transparent;
  border-top: 0.38em solid currentColor;
  margin-top: 3px;
}
.nav-drop .menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -10px;
  min-width: 240px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: none;
  z-index: 60;
}
.nav-drop:hover .menu,
.nav-drop:focus-within .menu { display: block; }
.nav-drop .menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.95rem;
}
.nav-drop .menu a:hover { background: var(--mist); color: var(--ink); }

.header-cta { display: flex; align-items: center; gap: 28px; margin-left: 24px; }
.phone-link {
  font-weight: 400;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
  color: var(--accent);
}
.phone-link:hover { color: var(--accent-deep); }

.btn {
  display: inline-block;
  border: 0;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  padding: 12px 26px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--line);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--ink); }
.btn-outline {
  background: var(--paper);
  color: var(--accent);
  font-weight: 400;
  font-size: 1.05rem;
  box-shadow: inset 0 0 0 1px var(--accent);
  padding: 10px 26px;
}
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.nav-toggle { display: none; }

/* ---------- Hero: full-bleed photo block, centered overlay headline,
   floating selector bar overlapping the bottom edge ---------- */

.hero { padding: 12px clamp(12px, 3.5vw, 56px) 0; }

.hero-media {
  position: relative;
  border-radius: 22px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(110% 85% at 50% 45%, rgba(32, 36, 46, 0.5), rgba(32, 36, 46, 0.2) 55%, rgba(32, 36, 46, 0.06) 80%),
    url("../assets/hero.png") center 38% / cover no-repeat;
}

.hero-inner { padding: 72px 24px 110px; max-width: 820px; }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(32, 36, 46, 0.35);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  margin: 0 0 20px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 0 0 16px;
  color: #fff;
}
.hero h1 .dot { color: var(--accent); }
.hero h1, .hero .lede { text-shadow: 0 1px 22px rgba(32, 36, 46, 0.35); }

.hero .lede {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 58ch;
  margin: 0 auto;
}
.hero .lede a { color: #fff; }

.photo-note {
  position: absolute;
  right: 16px;
  bottom: 70px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(32, 36, 46, 0.45);
}

/* Floating selector bar — the page's working control */
.selector-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1240px;
  margin: -56px auto 0;
  padding: 14px 14px 14px 26px;
  background: var(--paper);
  border-radius: var(--radius-pill);
  box-shadow: 0 18px 50px rgba(32, 36, 46, 0.16);
}
.selector-bar .label {
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
  margin-right: 8px;
}
.selector-bar .opts {
  display: flex;
  flex: 1;
  gap: 10px;
}
.opt-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 8px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  text-decoration: none;
  background: var(--paper);
  transition: border-color 0.15s ease;
}
.opt-btn:hover { border-color: var(--accent); }
.opt-btn svg { width: 20px; height: 20px; color: var(--ink); flex: none; }
.selector-bar .btn-primary { white-space: nowrap; }

/* Rating + trust strips under the hero */
.rating-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 42px 24px 6px;
  font-weight: 700;
}
.rating-strip .stars { color: #f5a623; letter-spacing: 3px; }
.rating-strip .note { font-weight: 500; font-size: 0.78rem; color: var(--ink-soft); }

.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 40px;
  padding: 14px 24px 40px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #9aa0ab;
}

/* ---------- Stats bar ---------- */

.stats {
  background: var(--ink);
  color: #fff;
  padding: 26px 0;
}
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat b {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.stat span { font-size: 0.85rem; opacity: 0.75; }

/* ---------- Sections ---------- */

.section { padding: 84px 0; }
.section.alt { background: var(--mist); }

.section-head { max-width: 60ch; margin-bottom: 44px; }
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 10px;
}
.section-head p { color: var(--ink-soft); margin: 0; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ---------- Services carousel (centered head + card rail + arrow controls) ---------- */

.svc-head {
  text-align: center;
  max-width: 62ch;
  margin: 0 auto 48px;
}
.svc-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 14px;
}
.svc-head p {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

.svc-shell { position: relative; }
.svc-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 14px 4px 20px;
  margin: 0 -4px;
}
.svc-rail::-webkit-scrollbar { display: none; }

/* Ecommerce-style card: illustration leads, copy reveals when the card floats */
.svc-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid #ececee;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(33, 37, 41, 0.05);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.svc-card:hover,
.svc-card:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 22px 48px rgba(33, 37, 41, 0.16);
  border-color: var(--accent);
}
.svc-link {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
  min-height: 320px;
}
.svc-media {
  flex: 1;
  min-height: 230px;
  background:
    radial-gradient(120% 130% at 20% 0%, #ffe4d3 0%, var(--accent-soft) 55%, #fff7f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.svc-media .svc-icon {
  width: 84px;
  height: 84px;
  color: var(--accent);
}
.svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.svc-card:hover .svc-media img { transform: scale(1.05); }
.svc-title { padding: 18px 24px 20px; }
.svc-card h3 {
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
  letter-spacing: -0.01em;
}
/* Ecommerce hover: the copy panel slides up over the media, card height never moves */
.svc-reveal {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--paper);
  padding: 20px 24px 22px;
  transform: translateY(102%);
  transition: transform 0.32s ease;
  border-top: 1px solid var(--line);
}
.svc-card:hover .svc-reveal,
.svc-card:focus-within .svc-reveal { transform: translateY(0); }
.reveal-h {
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.svc-card p:not(.reveal-h) {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 14px;
}
.svc-card .card-cta {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--accent-deep);
  text-decoration: none;
}
/* No hover on touch: panel sits statically below the media, single title */
@media (hover: none) {
  .svc-title { display: none; }
  .svc-reveal { position: static; transform: none; border-top: 0; }
  .svc-link { min-height: 0; }
  .svc-media { min-height: 190px; }
}

/* Edge arrows: right to explore, left appears only once you have moved */
.svc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid #d8dadd;
  background: var(--paper);
  color: var(--ink-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(33, 37, 41, 0.16);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.svc-prev { left: -14px; }
.svc-next { right: -14px; }
.svc-arrow:hover {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}
.svc-arrow[hidden] { display: none; }
.svc-arrow svg { width: 20px; height: 20px; }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card .glyph { width: 38px; height: 38px; color: var(--accent); }
.card h3 { margin: 0; font-size: 1.15rem; font-weight: 700; }
.card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
.card .card-cta {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-deep);
  text-decoration: none;
}
.card .card-cta:hover { text-decoration: underline; }

/* ---------- Full-width brand band (question headline + paired pill CTAs) ---------- */

.brand-band {
  background: var(--accent);
  padding: 118px 24px;
  text-align: center;
}
.brand-band h2 {
  margin: 0 0 44px;
  color: #fff;
  font-size: clamp(3rem, 7.5vw, 6.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.band-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}
.band-ctas .btn {
  font-size: 1.25rem;
  font-weight: 500;
  padding: 16px 36px;
}
.btn-white {
  background: #fff;
  color: var(--accent);
}
.btn-white:hover { background: #fff3ec; }
.btn-white-outline {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1.5px #fff;
}
.btn-white-outline:hover { background: rgba(255, 255, 255, 0.14); }

/* Storage callout */
.callout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.callout img.media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* Orange trace-line frame around photography */
.framed {
  outline: 2.5px solid var(--accent);
  outline-offset: 9px;
  border-radius: var(--radius);
}
.callout h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.callout p { color: var(--ink-soft); }
.callout ul {
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.callout li {
  display: flex;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}
.callout li::before {
  content: "";
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23e14a12' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='m5 10.5 3.2 3.2L15 7'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* About split — soft band, paired photos + copy */
.about-band {
  background: var(--accent-soft);
  border-radius: var(--radius);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 12px;
}
.about-photos img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.pos-left { object-position: 38% 50%; }
.about-copy h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.about-copy p { color: var(--ink-soft); margin: 0 0 16px; line-height: 1.65; }
.about-copy .strong-line { font-weight: 700; color: var(--ink); }
.about-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }

/* How it works — illustrated journey: route banner + six step cards */
.route-banner {
  width: 100%;
  aspect-ratio: 3.4 / 1;
  object-fit: cover;
  object-position: center 32%;
  border-radius: var(--radius);
  display: block;
  margin-bottom: 44px;
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
  counter-reset: jstep;
}
.j-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid #f0f0f2;
  display: block;
  margin-bottom: 18px;
}
.j-card .j-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 8px;
}
.j-card .j-title::before {
  counter-increment: jstep;
  content: "0" counter(jstep) ".";
  color: var(--accent);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.j-card h3 { margin: 0; font-size: 1.2rem; font-weight: 700; display: inline; }
.j-card p { margin: 0; color: var(--ink-soft); line-height: 1.6; font-size: 0.98rem; }

/* Detail strip */
.detail-strip img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}

/* Reviews */
.review-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 18px;
}
blockquote {
  margin: 0;
  font-size: 0.98rem;
}
blockquote footer {
  margin-top: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Areas */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.area-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--paper);
}

/* CTA banner */
.cta-banner {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.cta-banner p { margin: 0; opacity: 0.75; }

/* Footer */
/* ---------- Footer: crew pre-footer, dark NAP grid, map ---------- */
.pre-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 0;
  background: #fff;
  text-align: center;
}
.pre-footer img {
  display: block;
  width: min(1060px, 92%);
  margin: 0 auto;
  height: auto;
}
.footer-main {
  background: var(--ink);
  color: #cfd4d9;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 0 40px;
}
.footer-brand .footer-name {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.footer-brand .footer-name .micro-chip {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.62em;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  vertical-align: 0.35em;
  margin-right: 6px;
  letter-spacing: 0.04em;
}
.footer-brand address {
  font-style: normal;
  line-height: 1.9;
}
.footer-brand a {
  color: #fff;
  text-decoration: none;
}
.footer-brand a:hover { color: var(--accent); }
.footer-hours { margin: 14px 0 0; color: #9aa1a8; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-head {
  color: #fff;
  font-weight: 700;
  margin: 0 0 6px;
  font-size: 0.98rem;
}
.footer-col a {
  color: #cfd4d9;
  text-decoration: none;
}
.footer-col a:hover { color: var(--accent); }
.footer-map { padding: 0 0 40px; }
.footer-map #footerMap {
  width: 100%;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  background: #33383d;
  filter: grayscale(25%);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0 30px;
  font-size: 0.85rem;
  color: #9aa1a8;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 44px 0 30px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Why we're the best: editorial ledger rows ---------- */
.why-ledger { max-width: 1020px; margin: 0 auto; }
.why-row {
  display: grid;
  grid-template-columns: 190px 1fr 200px;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
}
.why-row + .why-row {
  border-top: 2px dotted rgba(255, 92, 0, 0.35);
}
.why-tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.why-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}
.why-copy p { margin: 0; color: var(--ink-soft); line-height: 1.7; font-size: 1.05rem; max-width: 62ch; }
.why-copy a { color: var(--accent); font-weight: 600; text-decoration: none; }
.why-copy a:hover { text-decoration: underline; }
/* Art slot: empty until the spot illustrations land, then it holds an img */
.why-art { display: none; }
.why-art:has(img) { display: block; }
.why-art img { width: 100%; height: auto; border-radius: 14px; }
.why-row:not(:has(.why-art img)) { grid-template-columns: 190px 1fr; }
@media (max-width: 860px) {
  .why-row, .why-row:not(:has(.why-art img)) { grid-template-columns: 1fr; gap: 14px; padding: 30px 0; }
}

/* ---------- Welcome band (team illustration) ---------- */
.welcome-band { text-align: center; }
.welcome-band img {
  display: block;
  width: min(980px, 100%);
  margin: 8px auto 0;
  height: auto;
}

/* ---------- Service-page prose (context bridge) ---------- */
.prose { max-width: 72ch; }
.prose h2 {
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}
.prose h3 { font-size: 1.15rem; font-weight: 700; margin: 26px 0 8px; }
.prose p { color: var(--ink-soft); line-height: 1.7; margin: 0 0 14px; }
.prose p strong { color: var(--ink); }

.svc-hero { padding: 72px 0 40px; }
.svc-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 14px;
  max-width: 22ch;
}
.svc-hero .lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 58ch; margin: 0 0 26px; }

.bridge-band {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
}
.bridge-band .line { font-weight: 700; font-size: 1.15rem; }
.bridge-band small { display: block; font-weight: 500; opacity: 0.85; margin-top: 2px; }
@media (max-width: 680px) { .bridge-band { flex-direction: column; text-align: center; } }

/* ---------- Wizard (book.html) ---------- */

.wizard-page { background: var(--mist); min-height: 100vh; }

.wizard-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.progress-rail {
  display: flex;
  gap: 6px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.progress-rail li {
  flex: 1;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-soft);
  padding-top: 10px;
  border-top: 4px solid var(--line);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.progress-rail li.active { border-top-color: var(--accent); color: var(--ink); }
.progress-rail li.done { border-top-color: var(--accent-deep); }

.wizard-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}

.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.panel h2 {
  margin: 0 0 6px;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.panel .hint { margin: 0 0 22px; color: var(--ink-soft); font-size: 0.95rem; }

.wizard-step { display: none; }
.wizard-step.active { display: block; }

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.option-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.option {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
  background: var(--paper);
  transition: border-color 0.15s ease;
}
.option:hover { border-color: var(--accent); }
.option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.option .glyph { width: 30px; height: 30px; color: var(--accent); }
.option .sub { font-weight: 500; font-size: 0.8rem; color: var(--ink-soft); }
.option:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.option:has(input:focus-visible) {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.field input,
.field select {
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
}
.field input:focus, .field select:focus { border-color: var(--accent); outline: none; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

fieldset.subgroup {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  margin: 0 0 18px;
}
fieldset.subgroup legend {
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0 8px;
}

/* Items step */
.item-list { display: grid; gap: 10px; }
.item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
}
.item-row .name { font-weight: 700; font-size: 0.95rem; }
.item-row .meta { font-size: 0.78rem; color: var(--ink-soft); }
.stepper { display: flex; align-items: center; gap: 10px; }
.stepper button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--paper);
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font);
  color: var(--ink);
  cursor: pointer;
  line-height: 1;
}
.stepper button:hover { border-color: var(--accent); color: var(--accent-deep); }
.stepper .count {
  min-width: 26px;
  text-align: center;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

/* Summary card */
.summary {
  position: sticky;
  top: 24px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
}
.summary h3 {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}
.summary dl { margin: 0; display: grid; gap: 10px; }
.summary .pair { display: flex; justify-content: space-between; gap: 12px; font-size: 0.88rem; }
.summary dt { opacity: 0.65; margin: 0; }
.summary dd { margin: 0; font-weight: 700; text-align: right; }
.summary .estimate {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.summary .estimate .price {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.summary .estimate .price .accent { color: var(--accent); }
.summary .estimate small { display: block; opacity: 0.6; margin-top: 6px; line-height: 1.45; }

.wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
}

.success {
  text-align: center;
  padding: 24px 0;
}
.success .glyph { width: 56px; height: 56px; color: var(--accent); margin: 0 auto 18px; }

.error-msg {
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 14px;
  display: none;
}
.error-msg.show { display: block; }

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .selector-bar {
    flex-wrap: wrap;
    border-radius: 22px;
    margin-left: 12px;
    margin-right: 12px;
    padding: 18px;
  }
  .selector-bar .label { width: 100%; margin: 0 0 4px; }
  .selector-bar .opts { flex-wrap: wrap; }
  .opt-btn { flex: 1 1 45%; }
  .selector-bar .btn-primary { width: 100%; }
}

@media (max-width: 920px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .stats .wrap { grid-template-columns: 1fr 1fr; }
  .callout { grid-template-columns: 1fr; }
  .about-band { grid-template-columns: 1fr; padding: 32px; }
  .journey-grid { grid-template-columns: 1fr 1fr; }
  .wizard-grid { grid-template-columns: 1fr; }
  .summary { position: static; order: -1; }
  .cta-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 680px) {
  .main-nav { display: none; }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
    color: var(--ink);
  }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 104px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px;
    gap: 14px;
  }
  .nav-drop .menu {
    position: static;
    display: block;
    box-shadow: none;
    border: 0;
    padding: 4px 0 0 14px;
    min-width: 0;
  }
  .header-cta .phone-link { display: none; }
  .card-grid { grid-template-columns: 1fr; }
  .option-grid, .option-grid.cols-3 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .progress-rail li { font-size: 0; }
  .progress-rail li.active { font-size: 0.78rem; }
  .hero { padding: 8px 8px 0; }
  .hero-media { min-height: 420px; }
  .hero-inner { padding: 56px 20px 96px; }
  .opt-btn { flex: 1 1 100%; }
  .journey-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}

/* Demoted tagline heads: heading look without heading semantics */
.h2-style {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  line-height: 1.15;
}
.brand-band .h2-style {
  color: #fff;
  font-size: clamp(3rem, 7.5vw, 6.25rem);
  font-weight: 700;
  margin: 0 0 44px;
  line-height: 1.05;
}
.about-copy .h2-style {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 700;
  margin: 0 0 16px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Wizard recap sentence + address fallback hint */
.recap-line {
  min-height: 1.2em;
  margin: 0 0 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-deep);
}
.addr-hint {
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* Embedded journey map in the wizard summary */
.route-map {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  margin-top: 18px;
  display: none;
  overflow: hidden;
}
.route-map.show { display: block; }

/* Looping dotted route accents between sections */
.route-divider {
  width: 100%;
  color: var(--accent);
  opacity: 0.4;
  line-height: 0;
}
.route-divider svg { width: 100%; height: 72px; display: block; }

/* Black keyword band, sibling of the orange brand band */
.dark-band {
  background: var(--ink);
  padding: 96px 24px;
  text-align: center;
  color: #fff;
}
.dark-band .h2-style {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 14px;
}
.band-sub {
  margin: 0 0 36px;
  font-size: 1.15rem;
  opacity: 0.8;
}
.brand-band .band-sub { color: #fff; }

/* ---------- TMS: track + crew console ---------- */
.tms-page { background: #f7f7f8; }
.tms-main { padding: 48px 0 72px; }
.tms-main h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.tms-sub { color: var(--ink-soft); max-width: 62ch; margin: 0 0 28px; }
.tms-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 26px;
  margin-bottom: 18px;
}
.tms-card-title { font-size: 1.15rem; font-weight: 700; margin: 0 0 8px; }
.tms-enter { max-width: 560px; }
.tms-code-form, .tms-login-form { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.tms-login-form { flex-direction: column; max-width: 360px; }
.tms-code-form input, .tms-login-form input {
  flex: 1;
  min-width: 180px;
  font: inherit;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
}
.tms-code-form input:focus, .tms-login-form input:focus {
  outline: none;
  border-color: var(--accent);
}
.tms-error { color: #c62828; margin-top: 12px; }
.tms-note { color: var(--ink-soft); font-size: 0.9rem; margin-top: 14px; }

.tms-status-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.tms-status-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 6px;
}
.tms-status-line { font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-weight: 800; margin: 0 0 6px; letter-spacing: -0.015em; }
.tms-status-blurb { color: var(--ink-soft); margin: 0; }
.tms-eta { text-align: center; background: var(--accent-soft); border-radius: 14px; padding: 14px 22px; }
.tms-eta-num { display: block; font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.tms-eta-label { font-size: 0.8rem; font-weight: 600; color: var(--accent); }

.tms-map-card { padding: 0; overflow: hidden; }
.tms-map { width: 100%; height: 380px; background: #e9ecef; }
.tms-stops { padding: 16px 22px; display: flex; flex-direction: column; gap: 6px; }
.tms-stops p { margin: 0; display: flex; align-items: center; gap: 10px; }
.stop-dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.stop-a { background: var(--ink); }
.stop-b { background: var(--accent); }

.tms-timeline { list-style: none; margin: 12px 0 0; padding: 0; }
.tms-timeline li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 0 0 20px 5px;
  position: relative;
}
.tms-timeline li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 18px;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
.tms-timeline li:last-child::before { display: none; }
.tl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--line);
  background: #fff;
  flex: none;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}
.tms-timeline li.done .tl-dot { border-color: var(--accent); background: var(--accent); }
.tms-timeline li.current .tl-dot { border-color: var(--accent); background: #fff; }
.tms-timeline li.todo { opacity: 0.5; }
.tl-label { margin: 0; font-weight: 600; }
.tms-timeline li.current .tl-label { color: var(--accent); }
.tl-time { margin: 2px 0 0; font-size: 0.85rem; color: var(--ink-soft); }

.tms-job-list { display: flex; flex-direction: column; gap: 12px; }
.tms-job {
  text-align: left;
  font: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tms-job:hover { border-color: var(--accent); }
.tms-job-code { font-size: 0.82rem; font-weight: 700; color: var(--accent); letter-spacing: 0.03em; }
.tms-job-route { font-weight: 600; }
.tms-job-stage { font-size: 0.88rem; color: var(--ink-soft); }
.tms-back { margin-bottom: 16px; }
.tms-advance { margin-top: 16px; width: 100%; }
.tms-btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
@media (max-width: 560px) {
  .tms-map { height: 300px; }
}
