/* ============================================================
   MEGAJUNK — styles.css
   Americana palette: Old Glory red & blue, white, cream, black
   Production stylesheet for the approved mockup direction.
   ============================================================ */

/* ---------- Self-hosted fonts ---------- */
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/anton-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/archivo-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/barlow-condensed-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/barlow-condensed-700.woff2') format('woff2');
}

/* ---------- Design tokens ---------- */
:root {
  --red: #C8102E;
  --red-bright: #E8253F;
  --red-dark: #9E0C24;
  --red-pale: #FFD9DE;
  --blue: #0A3161;
  --blue-mid: #10457F;
  --blue-pop: #2464C7;
  --blue-sky: #BEE3FF;
  --ink: #14161A;
  --ink-card: #1D2027;
  --ink-line: #2A2E36;
  --white: #FFFFFF;
  --cream: #F4F7FB;
  --cream-dark: #E2E8F1;
  --line: #D9E0EA;
  --mut: #4A5568;
  --dim: #B9C2D0;
  --dim-blue: #C9D4E4;

  --font-display: 'Anton', 'Arial Narrow', Impact, sans-serif;
  --font-cond: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Archivo', 'Helvetica Neue', Arial, sans-serif;

  --radius: 12px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(10, 22, 40, .06), 0 2px 8px rgba(10, 22, 40, .06);
  --shadow-md: 0 2px 6px rgba(10, 22, 40, .08), 0 10px 24px rgba(10, 22, 40, .10);
  --shadow-lg: 0 6px 16px rgba(10, 22, 40, .10), 0 20px 44px rgba(10, 22, 40, .14);
  --shadow-btn: 0 2px 5px rgba(10, 22, 40, .16), 0 6px 16px rgba(10, 22, 40, .13);

  --ease-snap: cubic-bezier(.2, .9, .3, 1.2);
  --ease-out: cubic-bezier(.22, .8, .3, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* anchor targets clear the sticky nav (scroll-margin only — never stacked with scroll-padding) */
[id] { scroll-margin-top: 90px; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--blue-pop); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--red); }
a[href^="tel:"] { white-space: nowrap; }

strong, b { font-weight: 700; }

::selection { background: var(--red); color: var(--white); }

:focus-visible { outline: 3px solid var(--blue-pop); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: min(1180px, 94%); margin-inline: auto; }
.container--narrow { width: min(860px, 94%); }

.section { padding: clamp(48px, 5.6vw, 72px) 0; }
.section--cream { background: var(--cream); }

/* ---------- Utility ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; left: 8px; top: -80px; z-index: 300;
  background: var(--blue); color: var(--white);
  padding: 12px 20px; border-radius: 0 0 10px 10px;
  font-family: var(--font-cond); font-weight: 700; font-size: 18px;
  letter-spacing: .05em; text-transform: uppercase; text-decoration: none;
  transition: top .25s var(--ease-out);
}
.skip-link:focus { top: 0; color: var(--white); }

.star { width: 14px; height: 14px; fill: currentColor; flex: none; }
.star--sm { width: 11px; height: 11px; }
.icon { width: 20px; height: 20px; fill: currentColor; flex: none; }

.text-red { color: var(--red); }
.text-blue { color: var(--blue); }

.flagband {
  height: 4px;
  background: linear-gradient(to bottom, var(--red) 0 2px, var(--blue) 2px 4px);
}

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.eyebrow--center { display: flex; justify-content: center; text-align: center; }
.eyebrow .star { fill: currentColor; }

.section__title,
.hero h1, .hero h2,
.band h2, .band h1 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .015em;
  line-height: 1.04;
  color: var(--blue);
  text-wrap: balance;
}
.section__title { font-size: clamp(30px, 4.2vw, 40px); text-align: center; }
.section__title--light { color: var(--white); }
.section__title--left { text-align: left; }
.section__title em, .hero h1 em, .hero h2 em { font-style: normal; color: var(--red); }

.section__sub {
  max-width: 660px;
  margin: 12px auto 36px;
  text-align: center;
  font-size: clamp(16px, 1.7vw, 18px);
  color: var(--mut);
}

/* section head: title block left, "see all" link right */
.sechead {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.sechead .section__title { text-align: left; margin-top: 10px; }
.sechead--center { display: block; text-align: center; }
.sechead--center .section__title { text-align: center; }

.more {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 6px;
}
.more:hover { color: var(--red-bright); text-decoration: underline; }

/* light prose (careers / privacy / terms / service detail copy) */
.prose h2 {
  font-family: var(--font-cond); font-weight: 700; font-size: 22px;
  letter-spacing: .06em; text-transform: uppercase; color: var(--blue);
  margin: 32px 0 12px;
}
.prose h3 {
  font-family: var(--font-cond); font-weight: 700; font-size: 19px;
  letter-spacing: .05em; text-transform: uppercase; color: var(--blue);
  margin: 24px 0 10px;
}
.prose p { margin-bottom: 14px; color: var(--mut); font-size: 16px; }
.prose ul, .prose ol { margin: 0 0 18px 20px; color: var(--mut); }
.prose li { margin-bottom: 7px; }
.prose > :first-child { margin-top: 0; }

.crumb {
  font-family: var(--font-cond); font-weight: 600; font-size: 16px;
  letter-spacing: .05em; color: var(--mut); margin-bottom: 16px;
}
.crumb a { color: var(--mut); text-decoration: none; }
.crumb a:hover { color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue);
  --btn-fg: var(--white);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px;
  padding: 15px 30px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 0;
  border-radius: 10px;
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  overflow: hidden;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform .18s var(--ease-snap), box-shadow .18s var(--ease-snap), background .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--btn-fg); }
.btn:active { transform: translateY(0); box-shadow: var(--shadow-sm); }
.btn .star, .btn .icon { fill: currentColor; }

/* shine sweep */
.btn::after {
  content: "";
  position: absolute; top: -40%; bottom: -40%; left: -70%;
  width: 34%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-22deg);
  transition: left .5s var(--ease-out);
  pointer-events: none;
}
.btn:hover::after { left: 140%; }

.btn--red { --btn-bg: var(--red); }
.btn--red:hover { background: var(--red-bright); }
.btn--blue { --btn-bg: var(--blue); }
.btn--blue:hover { background: var(--blue-mid); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--blue);
  border: 2px solid var(--blue);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(10, 49, 97, .06); box-shadow: var(--shadow-sm); }
.btn--ghost:active { box-shadow: none; }
.btn--lg { padding: 18px 36px; font-size: 21px; min-height: 56px; }
.btn--nav { padding: 11px 22px; font-size: 16px; min-height: 44px; }
.btn--block { width: 100%; }

/* ---------- Top bar (BLACK) ---------- */
.topbar {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .05em;
}
.topbar__inner {
  width: min(1180px, 94%);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item .star { width: 12px; height: 12px; fill: var(--red-bright); }
.topbar__item b { font-weight: 700; font-size: 16px; letter-spacing: .06em; }
.topbar__item a { color: var(--white); text-decoration: none; }
.topbar__item a:hover { color: var(--red-bright); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s var(--ease-out);
}
.nav.is-scrolled { box-shadow: var(--shadow-md); }
.nav__inner {
  width: min(1180px, 94%);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
}
.nav__links {
  display: flex; align-items: center;
  gap: clamp(14px, 2vw, 28px);
}
.nav__links > a:not(.btn) {
  position: relative;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--blue);
  padding: 6px 2px;
}
.nav__links > a:not(.btn)::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease-out);
}
.nav__links > a:not(.btn):hover { color: var(--red); }
.nav__links > a:not(.btn):hover::after { transform: scaleX(1); }
.nav__links > a.is-active:not(.btn),
.nav__links > a[aria-current="page"]:not(.btn) { color: var(--red); }
.nav__links > a.is-active:not(.btn)::after,
.nav__links > a[aria-current="page"]:not(.btn)::after { transform: scaleX(1); }

.nav__burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px;
  background: none; border: 0; cursor: pointer;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
}
.nav__burger span {
  width: 26px; height: 3px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .2s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* dim scrim under the open mobile menu (inserted by JS) */
.nav-scrim {
  position: fixed; inset: 0;
  background: rgba(20, 22, 26, .5);
  z-index: 95;
  border: 0; padding: 0;
  cursor: default;
}

/* ---------- Logo ---------- */
.logo {
  position: relative;
  display: inline-flex; align-items: baseline; gap: 6px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: .02em;
  line-height: 1;
  text-decoration: none;
  padding-bottom: 11px;
  transform: skewX(-6deg);
}
.logo__mega { color: var(--blue); }
.logo__junk { color: var(--red); }
.logo__star {
  width: 25px; height: 25px; fill: var(--red);
  align-self: center;
  margin-top: -2px;
  transition: transform .4s var(--ease-snap);
}
.logo:hover .logo__star { transform: rotate(144deg) scale(1.2); }
.logo:hover { color: inherit; }
.logo__swoosh {
  position: absolute;
  left: 2px; right: 0; bottom: 0;
  width: calc(100% - 2px);
  height: 9px;
}
.logo__swoosh .sw-a { fill: var(--red); }
.logo__swoosh .sw-b { fill: var(--blue); }

.logo--footer { font-size: 34px; padding-bottom: 11px; }
.logo--footer .logo__mega { color: var(--white); }
.logo--footer .logo__junk { color: var(--red-bright); }
.logo--footer .logo__star { fill: var(--red-bright); }
.logo--footer .logo__swoosh .sw-a { fill: var(--red-bright); }
.logo--footer .logo__swoosh .sw-b { fill: var(--white); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  padding: 64px 0 58px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}
.hero h1, .hero h2 { font-size: clamp(38px, 5.4vw, 64px); }
.hero p:not([class]) {
  font-size: 19px;
  color: var(--mut);
  margin: 18px 0 26px;
  max-width: 480px;
}
.hero .section__sub { text-align: left; margin: 18px 0 26px; max-width: 480px; }

.hero__zip {
  display: flex;
  gap: 12px;
  max-width: 470px;
}
.hero__zip input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 15px 18px;
  font-family: var(--font-body);
  font-size: 18px;
  letter-spacing: .06em;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 10px;
}
.hero__zip input::placeholder { color: #94A3B4; letter-spacing: .02em; }
.hero__zip input:focus {
  outline: none;
  border-color: var(--blue-pop);
  box-shadow: 0 0 0 3px rgba(36, 100, 199, .22);
}
.hero__msg {
  min-height: 1.6em;
  margin-top: 14px;
  max-width: 470px;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .03em;
  color: var(--blue);
}
.hero__msg.is-in { color: #17753A; }
.hero__msg.is-out { color: var(--red-dark); }
.hero__msg a { color: inherit; }

/* real truck photo in the hero — wider than the old illustration so the
   lettering on the box stays readable */
.herophoto {
  display: block;
  margin-top: 34px;
  max-width: 620px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.herophoto img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ---------- Quote card ---------- */
.qcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px 30px 26px;
}
.qcard h3 {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.qcard h3 .star { fill: var(--red); }
.qcard__list {
  list-style: none;
  display: grid;
  gap: 15px;
  margin: 18px 0 20px;
}
.qcard__list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15.5px;
  color: var(--mut);
}
.qcard__list li b { color: var(--ink); }
.qnum {
  flex: none;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 17px;
}
.qcard .btn { width: 100%; }
.qcard__beat {
  margin-top: 14px;
  font-size: 14px;
  color: var(--mut);
  text-align: center;
}
.qcard__beat b { color: var(--red); }
.qcard__legal {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dotted var(--line);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--mut);
  text-align: center;
}

/* ---------- Trust band (navy) — HOMEPAGE ONLY ---------- */
.trust { background: var(--blue); color: var(--white); padding: 22px 0; }
.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
}
.trust__inner > * {
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .05em;
}
.trust__inner svg { width: 22px; height: 22px; fill: var(--white); flex: none; opacity: .9; }

/* ---------- Service cards ---------- */
/* 3 columns: the nine services fill a 3x3 grid with no orphan card */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 24px 22px 20px;
  color: inherit;
  text-decoration: none;
  transition: transform .22s var(--ease-snap), box-shadow .22s var(--ease-snap), border-color .25s;
}
a.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #B9C6D8;
  color: inherit;
}
.card__icon,
.card > svg {
  width: 40px; height: 40px;
  fill: var(--red);
  margin-bottom: 14px;
  display: block;
}
.card__icon svg { width: 40px; height: 40px; fill: var(--red); display: block; }
.card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.card p { font-size: 14.5px; color: var(--mut); }
.card__more {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
}

/* ---------- How it works (BLACK) ---------- */
.how { background: var(--ink); color: var(--white); }
.how .eyebrow { color: var(--red-bright); }
.how .section__title, .how h2 { color: var(--white); }
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 26px;
  align-items: start;
  margin-top: 8px;
}
.step {
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-radius: 14px;
  padding: 26px 24px;
}
.step__num {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.step p { font-size: 15px; color: var(--dim); }
.step p b { color: var(--white); }
.step a { color: var(--white); }
.step a:hover { color: var(--red-bright); }
.step__conn {
  align-self: center;
  width: 34px; height: 4px;
  margin-top: 40px;
  background: linear-gradient(to bottom, var(--red-bright) 0 2px, var(--white) 2px 4px);
}
.how__cta { text-align: center; margin-top: 38px; }

/* ---------- Pricing ---------- */
.price {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: start;
}
.price .section__title { text-align: left; }
.truck { margin: 26px 0 8px; }
.truck svg { width: 100%; height: auto; display: block; }
.price .note, .price p:not([class]) { font-size: 14px; color: var(--mut); }

.ptable,
.dontcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.ptable__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 14px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 24px;
}
.ptable__head span + span {
  font-size: 14px;
  letter-spacing: .06em;
  color: var(--dim);
  white-space: nowrap;
}
.ptable__sub,
.ptable > p:not([class]) {
  padding: 12px 24px 0;
  font-size: 13.5px;
  color: var(--mut);
}
.ptable__list { list-style: none; padding: 8px 24px; }
.ptable__list li {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dotted var(--line);
  font-size: 15.5px;
}
.ptable__list li:last-child { border-bottom: 0; }
.ptable__list em {
  font-style: normal;
  color: var(--mut);
  font-size: 13px;
  margin-left: 8px;
}
.ptable__list strong {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .01em;
  color: var(--red);
  white-space: nowrap;
}
.ptable__foot {
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 13px 24px;
  font-size: 13.5px;
  color: var(--mut);
}

.surgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
  align-items: start;
}
.surgrid .ptable__head span + span { color: var(--red-pale); font-size: 14px; }

.legalnote {
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--mut);
  text-align: center;
}
.legalnote b { color: var(--ink); }

/* ---------- Area band (homepage, under pricing) ---------- */
.areaband {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.areaband .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.areaband p { color: var(--mut); font-size: 15.5px; }
.areaband p b { color: var(--ink); }

/* ---------- Areas we serve ---------- */
.citygrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.citycard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 24px 24px 20px;
}
.citycard h3 {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--blue);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.citycard h3 .star { fill: var(--red); }
.citycard__home {
  margin-left: auto;
  flex: none;
  background: var(--red);
  color: var(--white);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11px;
  letter-spacing: .09em;
}
.citycard ul {
  list-style: none;
  columns: 2;
  column-gap: 18px;
  font-size: 14.5px;
  color: var(--mut);
}
.citycard li { padding: 3.5px 0; break-inside: avoid; }

/* ---------- Chips ---------- */
.chips {
  list-style: none;
  display: flex; flex-wrap: wrap;
  gap: 9px;
}
.chips li {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: .04em;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--blue);
}
.chips .chips__more,
.chips__more {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
a.chips__more { text-decoration: none; }
.chips--dont li {
  background: #FBEEF0;
  border-color: #EFC7CE;
  color: var(--red);
}

/* ---------- What we take ---------- */
.alsobox {
  margin-top: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 24px 26px;
}
.alsobox h3 {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.alsobox h3 .star { fill: var(--red); }

.dontcard__body { padding: 20px 26px 24px; }
.dontcard__body p { margin-top: 14px; font-size: 14.5px; color: var(--mut); }

/* ---------- FAQ accordion ---------- */
.faq__list {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-inline: auto;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .2s var(--ease-snap), transform .2s var(--ease-snap);
}
.faq__item:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.faq__h { margin: 0; line-height: 1.5; }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 18px 22px;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  text-align: left;
  color: var(--ink);
  touch-action: manipulation;
}
.faq__q:hover { color: var(--red); }
.faq__chev {
  width: 18px; height: 18px; fill: var(--blue); flex: none;
  transition: transform .3s var(--ease-snap);
}
.faq__item.is-open .faq__chev { transform: rotate(180deg); fill: var(--red); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows .38s var(--ease-out), visibility 0s .38s;
}
.faq__item.is-open .faq__a {
  grid-template-rows: 1fr;
  visibility: visible;
  transition-delay: 0s, 0s;
}
.faq__a-inner { overflow: hidden; }
.faq__a-inner p {
  padding: 0 22px 18px;
  font-size: 15px;
  color: var(--mut);
}
.faq__a-inner p + p { padding-top: 10px; }

/* ---------- Closing CTA band (red) ---------- */
.band {
  background: var(--red);
  color: var(--white);
  padding: 52px 0;
  text-align: center;
}
.band h1, .band h2 { color: var(--white); font-size: clamp(30px, 4.4vw, 42px); }
.band p { margin: 12px 0 24px; font-size: 17px; color: var(--red-pale); }
.band .btn {
  --btn-bg: var(--white);
  --btn-fg: var(--red);
}
.band .btn:hover { background: var(--white); color: var(--red); }
.band__call {
  display: block;
  margin-top: 14px;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .05em;
  color: var(--red-pale);
}
.band__call b { color: var(--white); font-size: 19px; }
.band__call a { color: inherit; text-decoration: none; }
.band__call a:hover { color: var(--white); }

/* ---------- Footer (BLACK) ---------- */
.footer { background: var(--ink); color: var(--dim); padding: 56px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer__brand p { font-size: 15px; max-width: 300px; margin: 14px 0; }
.footer__brand .footer__phone,
.footer__phone {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .05em;
  color: var(--white);
  margin: 14px 0 4px;
}
.footer__phone span { display: block; font-family: var(--font-body); font-weight: 400; font-size: 14px; letter-spacing: 0; color: #8b93a2; }
.footer__phone a { color: var(--white); text-decoration: none; }
.footer__phone a:hover { color: var(--red-bright); }
.footer__col h4 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.footer__col a {
  display: block;
  font-size: 15px;
  padding: 4px 0;
  color: var(--dim);
  text-decoration: none;
  transition: color .2s, transform .2s var(--ease-out);
}
.footer__col a:hover { color: var(--red-bright); transform: translateX(4px); }
.footer__promise { font-size: 15px; list-style: none; margin: 0; padding: 0; }
.footer__promise li, .footer__promise p {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 4px 0;
  list-style: none;
}
.footer__promise i, .footer__promise .star { font-style: normal; color: var(--red-bright); fill: var(--red-bright); flex: none; }
.footer__flag { color: var(--red-bright); letter-spacing: .22em; }
.footer__bar {
  border-top: 1px solid var(--ink-line);
  padding: 18px 0;
  font-size: 13.5px;
}
.footer__bar .container {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 10px 16px;
}
.footer__bar a { color: var(--dim); text-decoration: none; }
.footer__bar a:hover { color: var(--red-bright); }

/* ---------- Sticky mobile call/text bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none;
  grid-template-columns: 1fr 1.4fr;
  background: var(--ink);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -4px 16px rgba(10, 22, 40, .2);
}
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 56px;
  padding: 13px 10px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  touch-action: manipulation;
}
.callbar a .icon { fill: currentColor; }
.callbar__call { background: var(--blue); }
.callbar__book { background: var(--red); }

/* ---------- Reveal on scroll (gated on .js) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }

/* ---------- Hero truck drive-in ---------- */
@keyframes truck-in {
  0%   { transform: translateX(-120%); }
  62%  { transform: translateX(3.5%); }
  80%  { transform: translateX(-1.6%); }
  92%  { transform: translateX(.6%); }
  100% { transform: translateX(0); }
}
@keyframes truck-speedlines {
  0%   { opacity: 0; transform: translateX(-16px); }
  30%  { opacity: 1; transform: translateX(0); }
  70%  { opacity: .85; }
  100% { opacity: 0; transform: translateX(10px); }
}
@media (prefers-reduced-motion: no-preference) {
  .js .truck-in {
    animation: truck-in 1.1s cubic-bezier(.22, .78, .28, 1.02) both;
    will-change: transform;
  }
  .js .truck-in .speedlines {
    animation: truck-speedlines 1.1s var(--ease-out) both;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .hero__grid { gap: 36px; }
  .cards { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .price { gap: 34px; }
  .citygrid { gap: 16px; }
  .footer__grid { gap: 28px; }
}

@media (max-width: 920px) {
  /* nav collapses to burger */
  .nav__burger { display: flex; order: 3; }
  .nav__inner { position: relative; }
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    z-index: 96;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 10px 0 18px;
    max-height: calc(100dvh - 140px);
    overflow-y: auto;
  }
  .nav__links.is-open { display: flex; }
  .nav__links > a:not(.btn) { padding: 14px 24px; font-size: 20px; }
  .nav__links > a:not(.btn)::after { display: none; }
  .nav__links > a.is-active:not(.btn),
  .nav__links > a[aria-current="page"]:not(.btn) {
    border-left: 4px solid var(--red);
    padding-left: 20px;
  }
  .nav__links .btn--nav { margin: 12px 24px 0; justify-content: center; }

  /* topbar: hide the left half */
  .topbar__inner { justify-content: center; }
  .topbar__item:first-child { display: none; }

  .hero { padding: 44px 0 48px; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .herophoto { max-width: 100%; }

  .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 12px 18px; }
  .trust__inner > * { justify-content: flex-start; font-size: 15px; }

  .section { padding: 52px 0; }
  .sechead { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 26px; }
  .sechead .section__title { font-size: clamp(28px, 5.2vw, 32px); }

  .cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .step__conn { display: none; }

  .price { grid-template-columns: 1fr; gap: 30px; }
  .surgrid { grid-template-columns: 1fr; }

  .areaband .container { flex-direction: column; align-items: flex-start; gap: 8px; }

  .citygrid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .faq__list { max-width: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 720px) {
  .callbar { display: grid; }
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
  .band { padding: 44px 0; }
  .qcard { padding: 26px 22px 22px; }
  .footer { padding-top: 44px; }
  .footer__bar .container { justify-content: center; text-align: center; }
}

@media (max-width: 600px) {
  .hero { padding: 34px 0 40px; }
  .hero h1, .hero h2 { font-size: clamp(32px, 9vw, 38px); }
  .hero p:not([class]), .hero .section__sub { font-size: 17px; }

  .hero__zip { flex-direction: column; max-width: none; }
  .hero__zip .btn { width: 100%; }
  .hero__msg { max-width: none; }
  .herophoto { max-width: none; margin-top: 28px; }

  .trust__inner { grid-template-columns: 1fr; gap: 10px; }
  .cards { grid-template-columns: 1fr; }
  .citygrid { grid-template-columns: 1fr; }
  .surgrid { gap: 16px; }
  .footer__grid { grid-template-columns: 1fr; }

  .qcard { padding: 24px 20px 22px; }
  .qcard h3 { font-size: 19px; letter-spacing: .06em; }

  .ptable__head { flex-direction: column; gap: 2px; }
  .ptable__head span + span { color: var(--dim); }
  .surgrid .ptable__head span + span { color: var(--red-pale); }
  .ptable__list { padding: 8px 18px; }
  .ptable__list li { font-size: 14.5px; }
  .ptable__foot, .ptable__sub, .ptable > p:not([class]) { padding-inline: 18px; }
  .dontcard__body { padding: 18px 18px 22px; }
  .alsobox { padding: 20px 18px; }
  .citycard { padding: 20px 18px 16px; }

  .band .btn, .btn--block, .how__cta .btn { width: 100%; }
  .band h1, .band h2 { font-size: clamp(28px, 8vw, 34px); }
  .btn { padding: 15px 22px; font-size: 18px; }
  .btn--lg { padding: 17px 24px; font-size: 19px; }
}

/* ---------- Touch niceties ---------- */
@media (pointer: coarse) {
  .btn { min-height: 50px; }
  .btn--nav { min-height: 46px; }
  .nav__links > a:not(.btn) { padding: 15px 24px; min-height: 46px; display: flex; align-items: center; }
  .faq__q { min-height: 60px; padding-block: 20px; }
  .footer__col a { padding: 9px 0; }
  .more { padding-block: 8px; }
  .callbar a { min-height: 58px; }
}

/* ---------- Print ---------- */
@media print {
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .topbar, .nav, .callbar, .flagband, .skip-link { display: none !important; }
  .how, .footer, .band, .trust {
    background: var(--white) !important;
    color: var(--ink) !important;
  }
  .how .section__title, .band h2, .section__title--light { color: var(--blue) !important; }
  .step { border-color: var(--line) !important; background: var(--white) !important; }
  .step h3, .step p, .footer__col h4, .footer__phone { color: var(--ink) !important; }
  .ptable, .card, .citycard, .qcard, .faq__item { box-shadow: none !important; }
  .ptable__head { background: var(--white) !important; color: var(--ink) !important; border-bottom: 2px solid var(--ink); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Quote page ---------- */
.quote__grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 28px; align-items: start; }
.quote__ph {
  background: var(--cream); border: 2px dashed var(--line); border-radius: var(--radius-lg);
  padding: 40px 32px; text-align: center;
}
.quote__ph-h {
  font-family: var(--font-cond); font-weight: 700; font-size: 22px; letter-spacing: .07em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.quote__ph p { color: var(--mut); max-width: 460px; margin: 0 auto; }
.quote__ph-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 20px; }
.quote__side {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: 26px 28px;
}
.quote__side h2 {
  font-family: var(--font-cond); font-weight: 700; font-size: 17px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 8px;
}
.quote__side p { font-size: 15px; color: var(--mut); }
.quote__side hr { border: 0; border-top: 1px solid var(--line); margin: 20px 0; }
.quote__phone a {
  font-family: var(--font-cond); font-weight: 700; font-size: 30px; letter-spacing: .04em;
  color: var(--blue); text-decoration: none;
}
.quote__phone a:hover { color: var(--red); }
.quote__hours { font-size: 14px; }
#quoteiq-instaquote { border: none; border-radius: var(--radius-lg); min-height: 900px; width: 100%; }
@media (max-width: 900px) { .quote__grid { grid-template-columns: 1fr; } }

/* current page in nav */
.nav__links a.is-active { color: var(--red); }
.nav__links a.is-active::after { content: ""; display: block; height: 2px; background: var(--red); margin-top: 3px; }
