/* =========================================================================
   777 Junk Removal — styles
   Palette: EXACT logo shades only — navy #001333, orange #FA4802, white.
   Orange hazard stripes as the livery motif; header + cards stay light islands.
   Type: Bricolage Grotesque (display) + Hanken Grotesk (body).
   ========================================================================= */

:root {
  /* ---- Color — EXACT brand shades measured from the 777 logo.
     Navy #001333 + orange #FA4802 + white, nothing else; panel depth
     comes only from white-mixes of the brand navy. ---- */
  --brand-navy:    #001333;                  /* logo navy */
  --brand-orange:  #fa4802;                  /* logo orange */

  --bg:            var(--brand-navy);        /* body */
  --bg-deep:       var(--brand-navy);        /* stripe gaps, footer */
  --surface:       color-mix(in srgb, #fff 8%, var(--brand-navy));
  --surface-2:     color-mix(in srgb, #fff 13%, var(--brand-navy));
  --ink:           #fff;
  --ink-soft:      rgba(255, 255, 255, 0.76);

  --navy:          var(--brand-navy);
  --navy-deep:     var(--brand-navy);

  --orange:        var(--brand-orange);
  --orange-strong: var(--brand-orange);
  --orange-deep:   var(--brand-orange);
  --orange-bright: var(--brand-orange);
  --orange-tint:   color-mix(in srgb, var(--brand-orange) 11%, #fff);

  --link:          var(--brand-orange);
  --line:          rgba(255, 255, 255, 0.16);

  --truck-bed:     color-mix(in srgb, #fff 13%, var(--brand-navy));
  --truck-bed-deep: var(--brand-navy);

  /* orange hazard stripe — the 777 livery motif */
  --stripe: repeating-linear-gradient(-45deg,
      var(--orange) 0 18px, var(--bg-deep) 18px 36px);
  --stripe-chip: repeating-linear-gradient(-45deg,
      var(--orange) 0 9px, transparent 9px 18px);

  /* ---- Type ---- */
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* ---- Radius & shadow ---- */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.28), 0 2px 8px oklch(0 0 0 / 0.2);
  --shadow-md: 0 10px 30px oklch(0 0 0 / 0.32);
  --shadow-lg: 0 24px 60px oklch(0 0 0 / 0.42);

  /* ---- Motion ---- */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);      /* ease-out-quint-ish */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* ---- Z-index scale ---- */
  --z-header: 100;
  --z-nav-drawer: 200;
  --z-toast: 400;

  --container: 1140px;
}

/* Light islands on the navy page: the header bar and conversion cards keep
   a light scheme so the logo and quote forms stay crisp. */
.site-header, .site-footer, .cta-band,
.values, .price-anchor, .intro,
.hero-quote-card, .side-quote, .quote-form-card {
  color: var(--ink);
  --bg: #fff;
  --surface: #fff;
  --surface-2: color-mix(in srgb, var(--brand-navy) 6%, #fff);
  --ink: var(--brand-navy);
  --ink-soft: color-mix(in srgb, var(--brand-navy) 74%, #fff);
  --line: color-mix(in srgb, var(--brand-navy) 15%, #fff);
  --link: var(--brand-orange);
}

::selection { background: var(--orange); color: #fff; }

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  width: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Full-width guarantees: never let a stray child pin the page to a narrow column */
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-wrap: balance;
}
p { text-wrap: pretty; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.25rem);
}

.skip-link {
  position: absolute;
  left: 1rem; top: -3rem;
  background: var(--orange-strong);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--r-sm);
  z-index: var(--z-toast);
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  --_bg: var(--orange-strong);
  --_fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.8rem 1.3rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  background: var(--_bg);
  color: var(--_fg);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s var(--ease-out), box-shadow 0.2s var(--ease-out),
              background-color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.btn .icon { flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 1rem 1.6rem; font-size: 1.06rem; }

.btn-primary { --_bg: var(--orange-strong); box-shadow: var(--shadow-sm); }
.btn-primary:hover { filter: brightness(0.93); box-shadow: var(--shadow-md); }

.btn-ghost {
  --_bg: transparent;
  --_fg: #fff;
  border-color: color-mix(in oklch, #fff 65%, transparent);
  backdrop-filter: blur(2px);
}
.btn-ghost:hover { --_bg: color-mix(in oklch, #fff 16%, transparent); border-color: #fff; }

/* On the navy CTA band */
.btn-onblue { --_bg: #fff; --_fg: var(--navy-deep); box-shadow: var(--shadow-md); }
.btn-onblue:hover { --_bg: var(--orange-tint); }
.btn-ghost-onblue {
  --_bg: transparent; --_fg: #fff;
  border-color: color-mix(in oklch, #fff 60%, transparent);
}
.btn-ghost-onblue:hover { --_bg: color-mix(in oklch, #fff 15%, transparent); border-color: #fff; }

/* =========================================================================
   Header
   ========================================================================= */
/* Full-width bar pinned to the very top (sits on the hero photo) */
.site-header {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: var(--z-header);
  background: color-mix(in oklch, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.5) blur(14px);
  border-bottom: 1px solid color-mix(in oklch, var(--line) 75%, transparent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.25s var(--ease-out), background-color 0.25s var(--ease-out);
}
/* Brand hugs the left edge, nav hugs the right */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding: 0.5rem clamp(0.9rem, 1.8vw, 1.6rem);
  min-height: 66px;
}
.site-header.scrolled {
  background: color-mix(in oklch, var(--bg) 96%, transparent);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand-mark { flex: none; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: var(--brand-orange);
  line-height: 1;
  -webkit-text-stroke: 0.4px var(--brand-orange);   /* a touch thicker */
}
.brand-name-sub {
  color: var(--navy);
  font-weight: 800;
  -webkit-text-stroke: 0.4px var(--navy);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.7rem);
}
/* Nav items: flat links that blend with the bar */
.site-nav > a:not(.btn) {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  transition: color 0.15s var(--ease-out), background-color 0.15s var(--ease-out);
}
.site-nav > a:not(.btn):hover {
  color: var(--link);
  background: color-mix(in oklch, var(--orange-tint) 60%, transparent);
}
.site-nav > a:not(.btn)[aria-current="page"] { color: var(--link); }
.nav-cta { margin-left: 0.3rem; }
.nav-cta:hover { transform: translateY(-2px) scale(1.04); box-shadow: var(--shadow-md); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 0 11px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
}
.nav-toggle span {
  display: block; height: 2.5px; width: 100%;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.28s var(--ease-out), opacity 0.2s var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(80vh, 700px);
  display: flex;
  align-items: center;
  /* extra top padding clears the floating header bar */
  padding: clamp(6rem, 9vw, 8rem) 0 clamp(4rem, 9vw, 6.5rem);
  overflow: hidden;
  background:
    radial-gradient(1000px 520px at 82% 0%, color-mix(in srgb, var(--brand-orange) 26%, transparent), transparent 62%),
    repeating-linear-gradient(-55deg, transparent 0 150px, color-mix(in srgb, var(--brand-orange) 6%, transparent) 150px 190px),
    linear-gradient(180deg, color-mix(in srgb, #fff 7%, var(--brand-navy)) 0%, var(--brand-navy) 100%);
}
/* orange hazard band along the hero's base — the livery motif */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 12px;
  background: var(--stripe);
}
.hero-inner {
  position: relative;
  max-width: 1240px;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
  gap: clamp(2rem, 4.5vw, 4.5rem);
  align-items: center;
}
.hero-copy { max-width: 680px; }
.hero-title {
  font-size: clamp(1.85rem, 8.5vw, 4.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.hero-sub {
  margin-top: 1.15rem;
  font-size: clamp(1.06rem, 1.4vw, 1.28rem);
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.55;
}
@media (min-width: 981px) and (max-width: 1280px) {
  .hero-title { font-size: clamp(2.3rem, 3.4vw, 3.4rem); }
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.9rem;
}
.hero-note {
  margin-top: 1.15rem;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* =========================================================================
   Values
   ========================================================================= */
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
/* short hazard-stripe underline under every section title */
.section-title::after {
  content: "";
  display: block;
  width: 58px;
  height: 5px;
  margin-top: 0.65rem;
  border-radius: 2px;
  background: var(--stripe-chip);
}
.values .section-title::after,
.services .section-title::after,
.areas .section-title::after,
.faq .section-title::after,
.how-head .section-title::after,
.section-title[style*="text-align:center"]::after { margin-inline: auto; }
.values { padding-block: clamp(3.5rem, 8vw, 6rem); background: #fff; }
.values .section-title { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.value-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);   /* all four in one row on desktop */
  gap: clamp(1.25rem, 2.4vw, 2.25rem);
}
@media (max-width: 980px) {
  .value-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .value-list { grid-template-columns: 1fr; }
}
.value { text-align: left; }
.value-icon {
  display: inline-grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 16px;
  margin-bottom: 1.1rem;
  color: var(--orange);
  background: var(--navy);
}
.value h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}
.value p { color: var(--ink-soft); max-width: 34ch; }

/* =========================================================================
   How it works — three steps stacked: truck on a road (left), bright sign
   (right). Static, no motion.
   ========================================================================= */
.how {
  padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
  background: transparent;              /* blend into the page, not a standalone section */
}
.how-head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.how-sub { color: var(--ink-soft); font-size: 1.12rem; margin-top: 0.7rem; }

/* Three trucks side by side on one continuous road; copy under each truck. */
.how-lineup {
  max-width: 1420px;
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.25rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;                               /* road segments touch = one road */
  align-items: start;
}
.how-stop { padding-inline: clamp(0.9rem, 2vw, 1.7rem); }
.stop-scene { position: relative; }

/* the shared road: one segment per truck, edge to edge so they join */
.road-seg {
  position: absolute;
  /* extend 1.5px past the column edges so segments overlap — no seams */
  left: calc(-1 * clamp(0.9rem, 2vw, 1.7rem) - 1.5px);
  right: calc(-1 * clamp(0.9rem, 2vw, 1.7rem) - 1.5px);
  bottom: clamp(2px, 0.5vw, 6px);
  height: clamp(20px, 2.2vw, 30px);
  border-top: 2px solid color-mix(in srgb, #fff 34%, var(--brand-navy));
  background: linear-gradient(180deg,
    rgba(255,255,255,0.05) 0%, transparent 18%),
    linear-gradient(180deg, color-mix(in srgb, #fff 22%, var(--brand-navy)) 0%, color-mix(in srgb, #fff 12%, var(--brand-navy)) 45%, color-mix(in srgb, #fff 4%, var(--brand-navy)) 100%);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
  z-index: 1;
}
/* center dashes */
.road-seg::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 3px;
  transform: translateY(-50%);
  background-image: repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.6) 0 22px, transparent 22px 48px);
}
/* fade the outer ends of the road only */
.how-stop:first-child .road-seg {
  border-radius: 6px 0 0 6px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14%);
          mask-image: linear-gradient(90deg, transparent 0, #000 14%);
}
.how-stop:last-child .road-seg {
  border-radius: 0 6px 6px 0;
  -webkit-mask-image: linear-gradient(90deg, #000 86%, transparent 100%);
          mask-image: linear-gradient(90deg, #000 86%, transparent 100%);
}

/* ---- the truck: parked on the road, no motion ---- */
.truck-figure {
  position: relative;
  width: 100%;
  z-index: 2;
}
.truck-figure svg {
  display: block; width: 100%; height: auto;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.3));
}
.truck-decal {
  position: absolute;
  left: 4.5%; top: 13.5%;
  width: 51%; height: 50%;
  display: flex; flex-direction: column; justify-content: center;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.truck-decal .step-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(0.68rem, 0.95vw, 1rem);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.truck-decal .step-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.05rem, 1.55vw, 1.6rem);
  line-height: 1.02; letter-spacing: -0.01em; text-transform: uppercase;
  margin-top: 0.16rem;
}

/* step copy under each truck */
.how-stop .how-copy {
  margin: 1.2rem auto 0;
  max-width: 34ch;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.99rem;
  line-height: 1.55;
}

/* ---- Mobile: stack the steps, each truck keeps its road piece ---- */
@media (max-width: 720px) {
  .how-lineup { grid-template-columns: 1fr; gap: 2.25rem; }
  .how-stop { padding-inline: 0; }
  .truck-figure { width: min(500px, 94%); margin-inline: auto; }
  .road-seg {
    left: 0; right: 0;
    border-radius: 6px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
  }
}

/* Flashing hazard lights — always on. Slow ~1 Hz blink (seizure-safe), and
   held steady for anyone who prefers reduced motion. */
.jmf-hazard { animation: hazardBlink 1s infinite; }
@keyframes hazardBlink {
  0%, 46%   { opacity: 1; }
  54%, 100% { opacity: 0.16; }
}
@media (prefers-reduced-motion: reduce) {
  .jmf-hazard { animation: none; opacity: 1; }
}

/* =========================================================================
   Intro
   ========================================================================= */
.intro {
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.intro-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.intro-copy .section-title { margin-bottom: 1.1rem; }
.intro-copy p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 60ch; }
.intro-copy p:first-of-type { color: var(--ink); font-size: 1.1rem; }
.intro-copy .btn { margin-top: 0.6rem; }

.intro-points {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: var(--shadow-sm);
}
.intro-points ul { list-style: none; padding: 0; display: grid; gap: 0.95rem; }
.intro-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-weight: 600;
  color: var(--ink);
}
.intro-points .check {
  flex: none;
  display: inline-grid; place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--orange-strong);
  color: #fff;
  font-size: 0.85rem;
  margin-top: 1px;
}

/* =========================================================================
   CTA band
   ========================================================================= */
.cta-band {
  position: relative;
  isolation: isolate;
  --fade: clamp(120px, 15vw, 190px);
  padding-top: calc(var(--fade) + clamp(2.25rem, 4.5vw, 3.5rem));
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  background: linear-gradient(180deg, var(--brand-navy) 0%, #fff var(--fade));
}
.cta-inner { text-align: center; max-width: 640px; margin-inline: auto; }
.cta-inner h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; }
.cta-inner p { margin-top: 0.7rem; font-size: 1.15rem; color: var(--ink-soft); font-weight: 500; }
.cta-inner .hero-actions { justify-content: center; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer {
  position: relative;
  background: #fff;
  border-top: 1px solid color-mix(in srgb, var(--brand-navy) 10%, #fff);
}
.site-footer {
  color: var(--ink-soft);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: 2.5rem;
}
/* footer lockup dominates its corner: bare mark on white + 50%-larger name */
.site-footer .brand { gap: 1rem; }
.site-footer .brand-logo {
  height: 104px;
  padding: 0;
}
.site-footer .brand-name {
  font-size: 2.33rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, var(--brand-navy) 60%, #fff);
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col a { display: block; padding: 0.32rem 0; color: color-mix(in srgb, var(--brand-navy) 86%, #fff); transition: color 0.18s var(--ease-out); }
.footer-col a:hover { color: var(--brand-orange); }
.footer-contact { font-weight: 600; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  padding-block: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--brand-navy) 14%, #fff);
  font-size: 0.86rem;
  color: color-mix(in srgb, var(--brand-navy) 62%, #fff);
}

/* =========================================================================
   Motion — entrance (opt-in; content is fully visible by default)
   ========================================================================= */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > *, .hero-quote-card { opacity: 0; animation: rise 0.85s var(--ease-out-expo) both; }
  .hero-title    { animation-delay: 0.14s; }
  .hero-sub      { animation-delay: 0.26s; }
  .hero-actions  { animation-delay: 0.38s; }
  .hero-note     { animation-delay: 0.54s; }
  .hero-quote-card { animation-delay: 0.3s; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 860px) {
  .intro-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 74px clamp(0.8rem, 2.2vw, 1.6rem) auto;
    z-index: var(--z-nav-drawer);
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    padding: 0.9rem;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease-out), opacity 0.25s var(--ease-out), visibility 0.25s;
  }
  .site-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav > a:not(.btn) { text-align: center; padding: 0.7rem 1rem; font-size: 1.05rem; }
  .nav-cta { margin: 0.2rem 0 0; justify-content: center; }
}

@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .brand-name-sub { display: none; }
}

/* =========================================================================
   Conversion components (hero chips, services, pricing anchor, areas, FAQ,
   sticky mobile call/text bar, contact/pricing page pieces)
   ========================================================================= */

/* generic centered subheading under a section title */
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin: 0.4rem auto clamp(1.75rem, 3.5vw, 2.5rem);
  max-width: 52ch;
}


/* ---- services grid ---- */
.services { padding-block: clamp(2.5rem, 5vw, 4rem); }
.services .section-title { text-align: center; margin-bottom: 0.6rem; }
.services .section-title + .section-sub { margin-top: 0.35rem; }
.service-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.2rem);
  max-width: 1080px;
  margin-inline: auto;
}
.service-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.95rem 1.05rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out),
              border-color 0.15s var(--ease-out);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in oklch, var(--orange) 45%, var(--line));
}
.service-icon {
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--brand-orange) 16%, transparent);
  color: var(--orange-bright);
}
.services-cta {
  text-align: center;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink-soft);
  font-weight: 500;
}
.services-cta a { color: var(--link); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---- pricing anchor ---- */
.price-anchor { padding-block: clamp(2.5rem, 5vw, 4rem); background: #fff; }
.price-anchor-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3.5vw, 3rem);
  box-shadow: var(--shadow-sm);
}
.price-copy .section-title { margin-bottom: 1rem; }
.price-lede { color: var(--ink); font-size: 1.12rem; max-width: 46ch; }
.price-range {
  margin-top: 0.9rem;
  color: var(--ink-soft);
  max-width: 46ch;
}
.price-range strong { color: var(--link); font-weight: 800; }
.price-copy .hero-actions { margin-top: 1.4rem; }
.btn-outline {
  --_bg: transparent;
  --_fg: var(--link);
  border: 2px solid var(--orange-strong);
}
.btn-outline:hover { --_bg: color-mix(in srgb, var(--brand-orange) 14%, transparent); }
.price-trucks {
  display: grid;
  gap: clamp(0.9rem, 1.8vw, 1.4rem);
}
.price-truck {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: 0.9rem;
}
.price-truck svg { width: 96px; height: auto; display: block; }
.fill-gauge {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: color-mix(in srgb, currentColor 12%, transparent);
  border: 1px solid var(--line);
  overflow: hidden;
}
.fill-level {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--orange-strong));
}
.fill-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--ink);
  white-space: nowrap;
}

/* ---- service areas ---- */
.areas { padding-block: clamp(2.5rem, 5vw, 4rem); }
.areas .section-title { text-align: center; margin-bottom: 0.6rem; }
.area-chips {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  max-width: 820px;
  margin-inline: auto;
}
.area-chips li {
  font-weight: 700;
  color: var(--ink);
  background: oklch(1 0 0 / 0.07);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 0.55rem 1.15rem;
}
.areas-note {
  text-align: center;
  margin-top: 1.4rem;
  color: var(--ink-soft);
}
.areas-note a { color: var(--link); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---- FAQ ---- */
.faq { padding-block: clamp(2.5rem, 5vw, 4rem); }
.faq-inner { max-width: 820px; }
.faq .section-title { text-align: center; margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem); }
.faq-list { display: grid; gap: 0.75rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand-orange) 18%, transparent);
  color: var(--orange-bright);
  font-weight: 800;
  font-size: 1.1rem;
  transition: transform 0.2s var(--ease-out);
}
.faq-item[open] summary::after { content: "–"; transform: rotate(180deg); }
.faq-answer { padding: 0 1.2rem 1.1rem; color: var(--ink-soft); line-height: 1.6; }
.faq-answer a { color: var(--link); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---- CTA band extras ---- */
.cta-alt { margin-top: 1.2rem; font-size: 0.98rem; color: var(--ink-soft); }
.cta-alt a { color: var(--link); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---- footer extras ---- */
.footer-nap { margin-top: 0.7rem; font-size: 0.95rem; line-height: 1.7; color: color-mix(in srgb, var(--brand-navy) 78%, #fff); }

/* ---- mobile sticky call/text bar ---- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: calc(var(--z-nav-drawer) - 10);
  display: none;                        /* mobile only; see media query */
  gap: 0.6rem;
  padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  background: color-mix(in oklch, var(--bg-deep) 94%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  border-top: none;
  box-shadow: 0 -8px 24px oklch(0 0 0 / 0.4);
  transition: transform 0.25s var(--ease-out);
}
.sticky-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--stripe-chip);
}
.sticky-cta a {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
}
.sticky-call {
  background: var(--orange-strong);
  color: #fff;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.22), 0 4px 10px rgba(0, 0, 0, 0.3);
}
.sticky-text {
  background: oklch(1 0 0 / 0.08);
  color: #fff;
  border: 1.5px solid oklch(1 0 0 / 0.45);
}
body.nav-open .sticky-cta { transform: translateY(110%); }

@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  /* keep the bar from covering the end of the page */
  body { padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)); }
}

/* ---- responsive: new sections ---- */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .price-anchor-inner { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .service-grid { grid-template-columns: 1fr; }
  .price-truck { grid-template-columns: 72px 1fr auto; }
  .price-truck svg { width: 72px; }
}

/* =========================================================================
   Interior pages (Pricing, What We Take, Contact)
   ========================================================================= */

/* compact page header band (fixed pill header floats above it) */
.page-hero {
  position: relative;
  padding: calc(94px + clamp(2rem, 4vw, 3.25rem)) 0 calc(clamp(2rem, 4vw, 3rem) + 10px);
  background:
    radial-gradient(1000px 380px at 80% -10%, color-mix(in srgb, var(--brand-orange) 20%, transparent), transparent 65%),
    linear-gradient(180deg, color-mix(in srgb, #fff 7%, var(--brand-navy)), var(--brand-navy));
  text-align: center;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 10px;
  background: var(--stripe);
}
.page-hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.page-hero .page-sub {
  margin-top: 0.8rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 56ch;
  margin-inline: auto;
}
.page-hero .hero-actions { justify-content: center; margin-top: 1.5rem; }

.page-section { padding-block: clamp(2.25rem, 4.5vw, 3.75rem); }
.page-section .section-title { margin-bottom: 1rem; }

/* ---- pricing page ---- */
.price-table-wrap { overflow-x: auto; }
.price-table {
  width: 100%;
  max-width: 780px;
  margin-inline: auto;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-table th, .price-table td {
  text-align: left;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--line);
}
.price-table th {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: oklch(1 0 0 / 0.08);
  color: var(--ink);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td strong { color: var(--link); }
.price-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-top: 1rem;
  max-width: 62ch;
  margin-inline: auto;
}
.factor-list {
  list-style: none;
  padding: 0;
  max-width: 680px;
  margin-inline: auto;
  display: grid;
  gap: 0.7rem;
}
.factor-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.85rem 1.05rem;
}
.factor-list .check { flex: none; color: var(--link); font-weight: 800; }

/* ---- what-we-take page ---- */
.take-cat {
  max-width: 880px;
  margin-inline: auto;
  padding-block: clamp(1.5rem, 3vw, 2.25rem);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;             /* clear the floating header on anchor jumps */
}
.take-cat:last-of-type { border-bottom: none; }
.take-cat h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-bottom: 0.6rem;
}
.take-cat p { color: var(--ink-soft); max-width: 70ch; }
.take-cat .cat-cta { margin-top: 0.8rem; font-weight: 600; }
.take-cat .cat-cta a { color: var(--link); text-decoration: underline; text-underline-offset: 3px; }
.take-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.take-col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1rem 1.2rem;
}
.take-col h3 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}
.take-col ul { list-style: none; padding: 0; display: grid; gap: 0.35rem; color: var(--ink-soft); }
.take-col.take h3 { color: var(--ink); }
.take-col.no-take h3 { color: rgba(255, 255, 255, 0.9); }
.take-col li::before { content: "✓ "; color: var(--link); font-weight: 800; }
.take-col.no-take li::before { content: "✗ "; color: rgba(255, 255, 255, 0.9); }

/* ---- contact page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 4.5vw, 3.5rem);
  align-items: start;
}
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.contact-phone:hover { text-decoration: underline; text-underline-offset: 5px; }
.contact-methods { display: grid; gap: 1.1rem; margin-top: 1.2rem; }
.contact-method {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.contact-method h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.contact-method p { color: var(--ink-soft); font-size: 0.97rem; }
.contact-method .btn { margin-top: 0.8rem; }
.contact-fineprint { margin-top: 1rem; font-size: 0.85rem; color: var(--ink-soft); }

.quote-form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.4rem, 2.8vw, 2rem);
  scroll-margin-top: 110px;
}
.quote-form-card h2 { margin-bottom: 0.5rem; }
.quote-form-card > p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.form-fallback {
  border: 2px dashed color-mix(in oklch, var(--orange) 40%, var(--line));
  border-radius: var(--r-md);
  background: var(--surface-2);
  padding: 1.5rem;
  text-align: center;
  color: var(--link);
  font-weight: 600;
}
.form-fallback .hero-actions { justify-content: center; margin-top: 1rem; }
.quote-form-embed iframe {
  width: 100%;
  min-height: 640px;
  border: none;
  border-radius: var(--r-md);
}
.map-slot {
  margin-top: clamp(2rem, 4vw, 3rem);
  border: 2px dashed var(--line);
  border-radius: var(--r-lg);
  background: var(--surface-2);
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  text-align: center;
  padding: 1.5rem;
}

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

/* =========================================================================
   Hero quote card (right side of the hero)
   ========================================================================= */
.hero-quote-card {
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.3rem, 2.2vw, 1.8rem);
}
.hero-quote-card h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.quote-card-sub {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0.35rem 0 1rem;
}
.hero-quote-card label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0.75rem 0 0.3rem;
}
.hero-quote-card input,
.hero-quote-card textarea {
  width: 100%;
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.65rem 0.8rem;
  resize: vertical;
}
.hero-quote-card input:focus-visible,
.hero-quote-card textarea:focus-visible {
  outline: 3px solid var(--orange-strong);
  outline-offset: 1px;
  border-color: var(--orange-strong);
}
.quote-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1.1rem;
}
.quote-card-alt {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
}
.quote-card-alt a { color: var(--link); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.quote-fineprint {
  margin-top: 1rem;
  font-size: 0.74rem;
  line-height: 1.5;
  color: var(--ink-soft);
  text-align: center;
}
.quote-fineprint a { color: var(--link); text-decoration: underline; text-underline-offset: 2px; }

/* stack the hero on smaller screens: copy first, card below */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-quote-card { max-width: 480px; width: 100%; }
}

/* =========================================================================
   Quote card — static, top right of every interior page's header
   ========================================================================= */
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px);
  gap: clamp(2rem, 4.5vw, 4.5rem);
  align-items: center;
  text-align: left;
}
.page-hero-inner .page-sub { margin-inline: 0; }
.page-hero-inner .hero-actions { justify-content: flex-start; }
.side-quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.6rem 1.7rem 1.5rem;
}
.side-quote-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
.side-quote label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin: 0.95rem 0 0.35rem;
  color: var(--ink);
}
.side-quote input {
  width: 100%;
  font: inherit;
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.85rem 0.95rem;
}
.side-quote input:focus-visible {
  outline: 3px solid var(--orange-strong);
  outline-offset: 1px;
  border-color: var(--orange-strong);
}
.side-quote .quote-submit { width: 100%; justify-content: center; margin-top: 1.25rem; }
.side-quote .quote-card-alt { margin-top: 0.7rem; font-size: 0.84rem; }
.side-quote-call {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.side-quote-call a { color: var(--link); font-weight: 800; }
.side-quote-call a:hover { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .page-hero-inner .page-sub { margin-inline: auto; }
  .page-hero-inner .hero-actions { justify-content: center; }
  .side-quote { max-width: 480px; margin-inline: auto; width: 100%; text-align: left; }
}

/* header logo image (full lockup: truck + name + tagline) */
.brand-logo {
  display: block;
  height: 84px;
  width: auto;
  padding-block: 3px;
}
@media (max-width: 520px) {
  .brand-logo { height: 56px; }
}
