/* ==========================================================================
   Pro Hauls — shared styles for the SEO landing pages
   (/nashville, /drivers, /contractors, /fees)

   Tokens mirror the homepage bundle so these pages read as the same site:
   off-black greys, one orange safety accent, Saira Condensed for display
   type, Saira for body. Aesthetic is industrial dispatch-board: hairline
   rules, numbered section markers, load-ticket tables, no soft shadows.
   ========================================================================== */

:root {
  --ink: #0a0a0c;          /* page base            */
  --ink-2: #0b0b0d;        /* nav / sticky surface */
  --ink-3: #0e0e11;        /* alternating section  */
  --ink-4: #08080a;        /* footer               */
  --panel: #121215;        /* cards, table cells   */
  --panel-2: #17171a;      /* raised panel         */
  --rule: #1c1c21;         /* hairline divider     */
  --rule-2: #26262c;       /* card border          */
  --text: #f4f4f5;         /* headings             */
  --text-2: #d4d4d8;       /* lede copy            */
  --text-3: #a1a1aa;       /* body copy            */
  --text-4: #71717a;        /* muted / footer links */
  --text-5: #52525b;       /* fine print           */
  --accent: #EC6A22;       /* safety orange        */
  --accent-soft: #ffb07a;  /* accent on dark text  */
  --accent-wash: rgba(236, 106, 34, .07);
  --accent-line: rgba(236, 106, 34, .4);

  --shell: 1100px;
  --gut: clamp(20px, 5vw, 64px);
  --display: 'Saira Condensed', 'Saira', system-ui, sans-serif;
  --body: 'Saira', system-ui, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text-3);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--accent-soft); text-decoration: none; }
a:hover { color: var(--text); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip link — stays on-page, never points at the site root. */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--accent);
  color: #111214;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.skip:focus { left: 12px; top: 12px; color: #111214; }

/* --------------------------------------------------------------------------
   Display type
   -------------------------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  line-height: .98;
  letter-spacing: .4px;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(33px, 5.4vw, 62px); }
h2 { font-size: clamp(27px, 3.6vw, 42px); }
h3 { font-size: clamp(19px, 2vw, 23px); font-weight: 700; line-height: 1.12; }
h4 { font-size: 16px; font-weight: 700; letter-spacing: 1px; }

p { margin: 0; }

strong { color: var(--text-2); font-weight: 700; }
.hl { color: var(--accent); font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  padding: 8px 20px;
  background: var(--accent-wash);
}

/* --------------------------------------------------------------------------
   Masthead — brand lockup is deliberately NOT a link
   -------------------------------------------------------------------------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px var(--gut);
  background: rgba(11, 11, 13, .88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand img:first-child { height: 32px; width: auto; }
.brand img:last-child { height: 19px; width: auto; }

.masthead nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 14px;
  font-weight: 500;
}
.masthead nav a { color: var(--text-3); }
.masthead nav a:hover { color: #fff; }
.masthead nav a[aria-current="page"] { color: var(--text); font-weight: 600; }

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 4px;
  background: var(--accent);
  color: #111214;
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-variant-numeric: tabular-nums;
  transition: filter .18s ease, transform .18s ease;
}
.call-btn:hover { filter: brightness(1.12); color: #111214; transform: translateY(-1px); }
.call-btn:active { transform: translateY(0); }
.call-btn svg { width: 15px; height: 15px; fill: currentColor; flex: none; }

/* On phones the masthead stacks: brand on the first row, page links plus the
   tap-to-call button wrap onto a second row. Everything stays in flow, so
   internal navigation is never hidden and nothing overlaps. */
@media (max-width: 860px) {
  .masthead {
    flex-wrap: wrap;
    row-gap: 10px;
    padding-bottom: 10px;
  }
  .masthead nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 9px 18px;
    padding-top: 10px;
    border-top: 1px solid var(--rule);
    font-size: 13.5px;
  }
  .masthead nav .call-btn { margin-left: auto; }
}

@media (max-width: 460px) {
  .masthead nav { gap: 9px 14px; }
  .masthead nav .call-btn { padding: 9px 14px; font-size: 12.5px; }
  .brand img:first-child { height: 28px; }
  .brand img:last-child { height: 16px; }
}

/* --------------------------------------------------------------------------
   Hero — left-aligned, photo bed, staggered reveal
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 9vh, 108px) var(--gut) clamp(44px, 7vh, 80px);
  background: var(--ink);
  border-bottom: 1px solid var(--rule);
}

.hero-bed {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: 32% 34%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(9,9,11,.93) 0%, rgba(9,9,11,.74) 42%, rgba(9,9,11,.3) 74%, rgba(9,9,11,.12) 100%),
    linear-gradient(0deg, rgba(9,9,11,.9) 0%, rgba(9,9,11,.28) 34%, rgba(9,9,11,.5) 100%);
}

/* Diagonal hazard hatch — fixed, non-interactive, cheap. */
.hero-hatch {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .18;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(236,106,34,.5) 0 1px,
    transparent 1px 9px
  );
  -webkit-mask-image: linear-gradient(200deg, #000 0%, transparent 46%);
  mask-image: linear-gradient(200deg, #000 0%, transparent 46%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--shell), 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(16px, 2.4vh, 26px);
}

.hero h1 { max-width: 18ch; text-shadow: 0 2px 18px rgba(0,0,0,.72); }

.hero .lede {
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.55;
  color: var(--text-2);
  max-width: 60ch;
  text-shadow: 0 1px 10px rgba(0,0,0,.7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--rule-2);
  border-radius: 4px;
  background: rgba(18,18,21,.72);
  color: var(--text-2);
  font-weight: 600;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.ghost-btn:hover { border-color: var(--accent-line); color: var(--text); background: var(--panel-2); }

/* Staggered load-in. */
.hero-inner > * {
  animation: rise .62s cubic-bezier(.2, .8, .3, 1) both;
}
.hero-inner > *:nth-child(1) { animation-delay: .04s; }
.hero-inner > *:nth-child(2) { animation-delay: .12s; }
.hero-inner > *:nth-child(3) { animation-delay: .2s; }
.hero-inner > *:nth-child(4) { animation-delay: .28s; }
.hero-inner > *:nth-child(5) { animation-delay: .36s; }

@keyframes rise {
  from { opacity: 0; transform: translate3d(0, 14px, 0); }
  to   { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Stat strip — hairline grid, no card shadows
   -------------------------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(170px, 100%), 1fr));
  gap: 1px;
  width: 100%;
  background: var(--rule-2);
  border: 1px solid var(--rule-2);
  border-radius: 8px;
  overflow: hidden;
}

.stats div {
  background: var(--panel);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stats b {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.stats div:first-child b { color: var(--accent); }
.stats span { font-size: 12.5px; color: var(--text-4); line-height: 1.4; }

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

main { display: block; }

section {
  padding: clamp(52px, 8vh, 92px) var(--gut);
  border-bottom: 1px solid var(--rule);
}
section:nth-of-type(even) { background: var(--ink-3); }

.shell {
  width: min(var(--shell), 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* Numbered marker + rule, sitting to the left of the heading. */
.sec-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 2px;
}
.sec-head .idx {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.sec-head .idx::after {
  content: '';
  display: inline-block;
  width: 26px;
  height: 1px;
  margin-left: 10px;
  vertical-align: middle;
  background: var(--accent-line);
}
.sec-head h2 { grid-column: 1 / -1; }

.prose { display: flex; flex-direction: column; gap: 18px; max-width: 74ch; }
.prose p { color: var(--text-3); }
.prose h3 { margin-top: 12px; }

/* Bulleted lists as dispatch checklists. */
.ticks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.ticks li {
  position: relative;
  padding-left: 24px;
  color: var(--text-3);
  line-height: 1.55;
}
.ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .62em;
  width: 9px;
  height: 2px;
  background: var(--accent);
}

/* Numbered flow, counter-driven. */
.flow { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 1px; background: var(--rule-2); border: 1px solid var(--rule-2); border-radius: 8px; overflow: hidden; }
.flow li {
  counter-increment: step;
  background: var(--panel);
  padding: 18px 22px 18px 60px;
  position: relative;
  color: var(--text-3);
}
.flow li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 18px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

/* Asymmetric card grid — intentionally uneven spans, not 3-in-a-row. */
.cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cards article {
  grid-column: span 3;
  background: var(--panel);
  border: 1px solid var(--rule-2);
  border-radius: 10px;
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: border-color .2s ease, transform .2s ease;
}
.cards article:hover { border-color: var(--accent-line); transform: translateY(-2px); }
.cards article p { font-size: 14.5px; line-height: 1.55; color: var(--text-3); }
.cards article:nth-child(4n+1) { grid-column: span 4; }
.cards article:nth-child(4n+2) { grid-column: span 2; }
.cards article:nth-child(4n+3) { grid-column: span 2; }
.cards article:nth-child(4n+4) { grid-column: span 4; }

@media (max-width: 780px) {
  .cards { grid-template-columns: 1fr; }
  .cards article,
  .cards article:nth-child(4n+1),
  .cards article:nth-child(4n+2),
  .cards article:nth-child(4n+3),
  .cards article:nth-child(4n+4) { grid-column: 1 / -1; }
}

/* County / coverage chips. */
.coverage { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(238px, 100%), 1fr)); gap: 1px; background: var(--rule-2); border: 1px solid var(--rule-2); border-radius: 8px; overflow: hidden; }
.coverage div { background: var(--panel); padding: 17px 20px; display: flex; flex-direction: column; gap: 3px; }
.coverage b { font-family: var(--display); font-weight: 700; font-size: 17px; text-transform: uppercase; color: var(--text); letter-spacing: .4px; }
.coverage span { font-size: 13.5px; color: var(--text-4); line-height: 1.45; }

/* --------------------------------------------------------------------------
   Load-ticket table — tabular figures, right-aligned money
   -------------------------------------------------------------------------- */

.ticket { width: 100%; overflow-x: auto; border: 1px solid var(--rule-2); border-radius: 8px; background: var(--panel); }

table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  font-size: 15px;
  min-width: 420px;
}

caption {
  caption-side: top;
  text-align: left;
  padding: 15px 20px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--text-4);
  border-bottom: 1px solid var(--rule-2);
}

th, td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--rule); }
thead th {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-4);
  background: #0f0f12;
}
tbody th { font-weight: 600; color: var(--text-2); font-family: var(--body); font-size: 15px; text-transform: none; letter-spacing: 0; }
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody tr.mine { background: rgba(236,106,34,.06); }
tbody tr.mine th, tbody tr.mine td { color: var(--text); font-weight: 700; }
tbody tr.mine td.keep { color: var(--accent); }

/* --------------------------------------------------------------------------
   Disambiguation block — hazard bar, this is the "we are not X" callout
   -------------------------------------------------------------------------- */

.notus {
  border: 1px solid var(--rule-2);
  border-left: 0;
  border-radius: 0 10px 10px 0;
  background: var(--panel);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.notus::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  border-radius: 2px 0 0 2px;
  background-image: repeating-linear-gradient(-45deg, var(--accent) 0 5px, #111214 5px 10px);
}
.notus p, .notus li { font-size: 14.5px; }
.notus .reg {
  font-size: 12.5px;
  color: var(--text-5);
  letter-spacing: .3px;
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   FAQ accordions
   -------------------------------------------------------------------------- */

.faq { display: grid; gap: 1px; background: var(--rule-2); border: 1px solid var(--rule-2); border-radius: 8px; overflow: hidden; }

.faq details { background: var(--panel); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 54px 18px 22px;
  position: relative;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17.5px;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--text);
  line-height: 1.2;
  transition: background .18s ease, color .18s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--panel-2); color: var(--accent-soft); }

/* Plus/minus built from two rules, transform-only animation. */
.faq summary::before,
.faq summary::after {
  content: '';
  position: absolute;
  right: 22px;
  top: 50%;
  width: 13px;
  height: 2px;
  background: var(--accent);
  transition: transform .22s ease;
}
.faq summary::after { transform: rotate(90deg); }
.faq details[open] summary::after { transform: rotate(180deg); }
.faq details[open] summary { color: var(--accent); }

.faq .answer { padding: 0 22px 20px; }
.faq .answer p { font-size: 14.8px; line-height: 1.6; color: var(--text-3); }
.faq details[open] .answer { animation: rise .3s ease-out both; }

/* --------------------------------------------------------------------------
   Download / conversion block — anchors stay on this page
   -------------------------------------------------------------------------- */

.download {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 10vh, 110px) var(--gut);
  background: var(--ink-3);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.download .hero-bed { background-position: center 40%; }
.download .hero-scrim {
  background: linear-gradient(0deg, rgba(9,9,11,.9) 0%, rgba(9,9,11,.6) 46%, rgba(9,9,11,.7) 100%);
}
.download .inner {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.download h2 { text-shadow: 0 2px 16px rgba(0,0,0,.7); }
.download p { color: var(--text-2); text-shadow: 0 1px 10px rgba(0,0,0,.7); }

.storebadges { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 4px; }
.storebadges a { display: block; transition: filter .18s ease, transform .18s ease; }
.storebadges a:hover { filter: brightness(1.12); transform: translateY(-2px); }
.storebadges img { height: 52px; width: auto; }

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 6px;
}

.fineprint { font-size: 13px; color: var(--text-4); }

/* --------------------------------------------------------------------------
   Sibling page links — the three other landing pages, never the site root
   -------------------------------------------------------------------------- */

.siblings { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 14px; }
.siblings a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  background: var(--panel);
  border: 1px solid var(--rule-2);
  border-radius: 10px;
  color: var(--text-3);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.siblings a:hover { border-color: var(--accent-line); background: var(--panel-2); transform: translateY(-2px); color: var(--text-3); }
.siblings b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--text);
}
.siblings span { font-size: 13.5px; line-height: 1.5; color: var(--text-4); }
.siblings a:hover b { color: var(--accent-soft); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

footer {
  background: var(--ink-4);
  padding: 46px var(--gut) 28px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.foot-grid {
  width: min(var(--shell), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 30px;
}
.foot-grid > div { display: flex; flex-direction: column; gap: 10px; }
.foot-grid h4 { color: var(--text-2); font-size: 12.5px; letter-spacing: 1px; }
.foot-grid a { color: var(--text-4); font-size: 14px; }
.foot-grid a:hover { color: #fff; }
.foot-grid p { font-size: 13.5px; line-height: 1.55; color: var(--text-4); }

.foot-legal {
  width: min(var(--shell), 100%);
  margin: 0 auto;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-5);
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   Motion opt-out
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-delay: 0ms !important;
    transition-duration: .001ms !important;
  }
  .hero-inner > * { opacity: 1; transform: none; }
}
