/* 1st Call Junk Removal — site system
   World: asphalt dispatch / safety-stripe haul crew
   Stitch-informed; logo palette authoritative */

:root {
  --ink: #1c1917;
  --asphalt: #f4f2ee;
  --asphalt-2: #ebe7e1;
  --asphalt-3: #ffffff;
  --asphalt-4: #ddd6cc;
  --paper: #1c1917;
  --mute: #57534e;
  --line: rgba(28, 25, 23, 0.12);
  --red: #f32618;
  --orange: #ff6b0a;
  --yellow: #ffd21a;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Work Sans", system-ui, sans-serif;
  --max: 72rem;
  --pad: clamp(1rem, 3vw, 1.5rem);
  --sticky-h: 3.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --stripe-h: 3.15rem;
  --header-band: 5.5rem;
  --header-stripe: repeating-linear-gradient(
    -45deg,
    #ffd21a,
    #ffd21a 10px,
    #111111 10px,
    #111111 20px
  );
}

@media (min-width: 720px) {
  :root {
    --stripe-h: 3.75rem;
    --header-band: 7.75rem;
  }
}

@media (min-width: 1080px) {
  :root {
    --stripe-h: 4.25rem;
    --header-band: 10.5rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--asphalt);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom));
}

@media (min-width: 960px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: inherit;
}

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

.hazard {
  display: none;
}

.wrap {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin-inline: auto;
}

/* Header — thin caution ribbon over the hero; logo + nav sit on top of it */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.site-header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: var(--header-band);
  padding-block: 0.45rem;
}

@media (min-width: 720px) {
  .site-header__inner {
    gap: 0.85rem;
    padding-block: 0.65rem;
  }
}

/* Full-bleed caution tape, centered on the real header row (not a fixed offset) */
.site-header__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: var(--stripe-h);
  transform: translate(-50%, -50%);
  background: var(--header-stripe);
  border-block: 2px solid #111;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  z-index: 0;
  pointer-events: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  min-width: 0;
  padding: 0.28rem 0.4rem 0.28rem 0.28rem;
  background: #fff;
  border: 2px solid #111;
  box-shadow: none;
  position: relative;
  z-index: 2;
  align-self: center;
  height: var(--header-band);
  min-height: var(--header-band);
  max-height: var(--header-band);
  box-sizing: border-box;
  flex-shrink: 0;
}

.brand img {
  width: auto;
  height: calc(var(--header-band) - 0.7rem);
  max-width: 4.75rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .brand {
    gap: 0.75rem;
    padding: 0.4rem 0.85rem 0.4rem 0.4rem;
  }

  .brand img {
    max-width: 7.25rem;
    height: calc(var(--header-band) - 0.9rem);
  }
}

@media (min-width: 1080px) {
  .site-header {
    --stripe-h: 4.25rem;
    --header-band: 10.5rem;
  }

  .brand {
    padding: 0.45rem 1.1rem 0.45rem 0.45rem;
    gap: 0.95rem;
  }

  .brand img {
    max-width: 9.25rem;
  }

  .brand__name {
    font-size: 2.55rem;
  }

  .brand__tag {
    font-size: 1.05rem;
  }
}

.brand__text {
  display: none;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

@media (min-width: 720px) {
  .brand__text {
    display: flex;
  }
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.65rem, 2.8vw, 2.1rem);
  letter-spacing: 0.04em;
  line-height: 0.92;
  text-transform: uppercase;
  color: #111;
}

.brand__tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.nav-desktop {
  display: none;
  align-items: center;
  align-self: center;
  gap: 0.45rem;
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  height: auto;
}

.nav-desktop a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111;
  height: 2.65rem;
  min-height: 2.65rem;
  max-height: 2.65rem;
  padding: 0 0.78rem;
  background: #fff;
  border: 1.5px solid #111;
  box-shadow: none;
  line-height: 1;
  box-sizing: border-box;
  transition: transform 0.15s var(--ease), background 0.15s var(--ease);
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: #111;
  background: var(--yellow);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 0.35rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  height: auto;
  margin-left: auto;
}

@media (min-width: 720px) {
  .header-actions {
    gap: 0.5rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.85rem;
  padding: 0.65rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

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

.btn:active {
  transform: translateY(0);
}

.btn--fire {
  color: #fff;
  background: linear-gradient(105deg, var(--red), var(--orange));
  box-shadow: 0 10px 24px -12px rgba(243, 38, 24, 0.7);
}

.btn--ghost {
  color: var(--orange);
  background: #fff;
  border-color: #111;
  box-shadow: 2px 2px 0 #111;
}

.btn--ghost:hover {
  border-color: #111;
  color: var(--red);
  background: #fff;
}

/* Header CTAs: stay inside the caution tape on mobile */
.site-header .btn--ghost,
.site-header .btn--fire,
.nav-toggle {
  height: 2.2rem;
  min-height: 2.2rem;
  max-height: 2.2rem;
  box-sizing: border-box;
  box-shadow: none;
}

/* Sticky call bar covers phone on small screens */
.site-header .btn--ghost {
  display: none;
}

@media (min-width: 960px) {
  .site-header .btn--ghost {
    display: inline-flex;
    position: relative;
    padding: 0 0.9rem;
    width: auto;
    height: 2.65rem;
    min-height: 2.65rem;
    max-height: 2.65rem;
    background: #111;
    color: var(--yellow);
    border-color: #111;
    border-radius: 0.3rem;
    font-size: 0.95rem;
  }

  .site-header .btn--ghost .header-phone-text {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }
}

.site-header .btn--ghost:hover {
  background: #000;
  color: #fff;
}

.site-header .btn--fire {
  padding: 0 0.7rem;
  color: #fff;
  border-radius: 0.3rem;
  font-size: 0.78rem;
  background: linear-gradient(105deg, var(--red), var(--orange));
}

@media (min-width: 720px) {
  .site-header .btn--fire {
    padding: 0 1.05rem;
    font-size: 0.95rem;
    height: 2.65rem;
    min-height: 2.65rem;
    max-height: 2.65rem;
  }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  padding: 0;
  border: 1.5px solid #111;
  border-radius: 0.3rem;
  background: #fff;
  color: #111;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.nav-toggle .material-symbols-outlined {
  font-size: 1.35rem;
}

.nav-toggle[aria-expanded="true"] {
  background: var(--yellow);
}

@media (min-width: 1080px) {
  .nav-toggle {
    display: none;
  }
}

.nav-mobile {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  z-index: 5;
  padding: 0.75rem;
  background: #fff;
  border: 2px solid #111;
  box-shadow: 4px 4px 0 #111;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.55rem 0.85rem;
  text-decoration: none;
  color: #111;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid #111;
  background: #fff;
}

.nav-mobile a:hover,
.nav-mobile a[aria-current="page"] {
  background: var(--yellow);
}

@media (min-width: 1080px) {
  .nav-mobile {
    display: none !important;
  }
}

.btn--dark {
  color: var(--yellow);
  background: var(--ink);
  border-color: rgba(255, 210, 26, 0.35);
}

.btn--lg {
  min-height: 3.35rem;
  padding-inline: 1.4rem;
  font-size: 1.15rem;
}

.btn .material-symbols-outlined {
  font-size: 1.25rem;
}

@media (min-width: 1080px) {
  .nav-desktop {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 48rem);
  display: grid;
  align-items: start;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
  /* Match locked logo/header band + clear breathing room under overhang */
  padding-top: calc(var(--header-band) + 3.25rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 242, 238, 0.96) 0%, rgba(244, 242, 238, 0.88) 36%, rgba(244, 242, 238, 0.4) 58%, rgba(244, 242, 238, 0.12) 78%, rgba(244, 242, 238, 0.06) 100%),
    linear-gradient(180deg, rgba(244, 242, 238, 0.35) 0%, transparent 42%, rgba(28, 25, 23, 0.18) 100%);
}

.hero .wrap {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin-inline: auto;
}

.hero__inner {
  display: grid;
  gap: 1.75rem;
  max-width: 38rem;
  padding: clamp(0.5rem, 2vw, 1.25rem) 0 clamp(3.5rem, 7vw, 5rem);
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.75rem, 8vw, 4.75rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  animation: hero-in 0.9s var(--ease) both;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero__lede {
  margin: 0;
  max-width: 34rem;
  color: var(--mute);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  animation: hero-in 0.9s var(--ease) 0.1s both;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: hero-in 0.9s var(--ease) 0.16s both;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.section--alt {
  background: var(--asphalt-2);
}

.section__head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 40rem;
}

.section__kicker {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.15rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section__intro {
  margin: 0;
  color: var(--mute);
  max-width: 36rem;
}

.home-serve {
  display: grid;
  gap: 1.75rem;
  margin: 0 0 2rem;
}

@media (min-width: 720px) {
  .home-serve {
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem;
  }
}

.home-serve h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-serve__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  color: var(--mute);
}

.home-serve__list li {
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
}

.home-serve__list strong {
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Services — list, not card farm */
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title arrow"
    "desc desc";
  column-gap: 1rem;
  row-gap: 0.35rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.service-list a:hover {
  color: var(--orange);
}

.service-list strong {
  grid-area: title;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.service-list a > span:not(.material-symbols-outlined) {
  grid-area: desc;
  color: var(--mute);
  font-size: 0.95rem;
}

.service-list .material-symbols-outlined {
  grid-area: arrow;
  color: var(--orange);
  justify-self: end;
}

.service-list a:hover > span:not(.material-symbols-outlined) {
  color: #d6d3d1;
}

@media (min-width: 800px) {
  .service-list a {
    grid-template-columns: minmax(14rem, 18rem) 1fr auto;
    grid-template-areas: "title desc arrow";
    align-items: baseline;
  }
}

/* Steps */
.steps {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.step {
  position: relative;
  padding-top: 0.25rem;
}

.step__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: var(--orange);
  letter-spacing: 0.02em;
}

.step h3 {
  margin: 0.65rem 0 0.45rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.step p {
  margin: 0;
  color: var(--mute);
  font-size: 0.98rem;
}

/* Load tiers teaser */
.load-panel {
  border: 2px solid #111;
  background: #fff;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.load-panel__head {
  margin-bottom: 0;
  max-width: 40rem;
}

.load-tiers {
  display: grid;
  gap: 1rem;
  margin: 1.75rem 0;
  align-items: stretch;
}

@media (min-width: 800px) {
  .load-tiers {
    grid-template-columns: repeat(3, 1fr);
  }
}

.load-tier {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 100%;
  padding: 1.15rem 1.2rem 1.25rem;
  border: 2px solid #111;
  background: var(--asphalt);
  text-decoration: none;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.load-tier:hover {
  border-color: rgba(255, 107, 10, 0.55);
  transform: translateY(-2px);
}

.load-tier.is-featured {
  border-color: var(--orange);
  background: #fff7ed;
}

.load-tier.is-featured .load-tier__label {
  color: #fdba74;
}

.load-tier__label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

.load-tier__size {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--orange);
}

.load-tier.is-featured .load-tier__size {
  color: var(--orange);
}

.load-bar {
  display: block;
  width: 100%;
  height: 0.5rem;
  margin: 0.55rem 0 0.65rem;
  background: var(--asphalt-4);
  overflow: hidden;
}

.load-bar__fill {
  display: block;
  height: 100%;
  background: var(--yellow);
}

.load-bar__fill--min {
  width: 25%;
}

.load-bar__fill--half {
  width: 50%;
  background: linear-gradient(90deg, var(--red), var(--orange));
}

.load-bar__fill--full {
  width: 100%;
}

.load-tier p {
  margin: 0;
  margin-top: auto;
  color: var(--mute);
  font-size: 0.9rem;
  line-height: 1.45;
}

.load-note {
  margin: 0 0 1.35rem;
  color: var(--mute);
  font-size: 0.92rem;
  max-width: 42rem;
  line-height: 1.5;
}

.load-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Areas */
.area-note {
  margin: 0 0 1.25rem;
  color: var(--mute);
  max-width: 38rem;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.area-chips a,
.area-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--line);
  background: var(--asphalt-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.area-chips a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.area-chips span {
  color: var(--mute);
  border-style: dashed;
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.65rem;
  max-width: 46rem;
}

.faq details {
  border: 2px solid #111;
  background: #fff;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary .material-symbols-outlined {
  color: var(--orange);
  transition: transform 0.25s var(--ease);
}

.faq details[open] summary .material-symbols-outlined {
  transform: rotate(180deg);
}

.faq details[open] {
  border-color: rgba(255, 107, 10, 0.45);
}

.faq .faq__a {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--mute);
  border-top: 1px solid transparent;
  font-size: 0.98rem;
}

.faq .faq__a a {
  color: var(--orange);
  text-underline-offset: 0.15em;
}

.faq .faq__a a:hover {
  color: var(--red);
}

/* CTA band */
.cta-band {
  padding: clamp(2.5rem, 6vw, 3.75rem) 0;
  background: linear-gradient(105deg, var(--red), var(--orange) 55%, #f5a524);
  color: #fff;
}

.cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

@media (min-width: 800px) {
  .cta-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-band h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  max-width: 32rem;
}

/* Footer */
.site-footer {
  padding: clamp(2.75rem, 6vw, 4rem) 0 2rem;
  background: #111;
  border-top: 4px solid var(--yellow);
  color: #a8a29e;
  font-size: 0.92rem;
}

.site-footer .footer-brand strong,
.site-footer .footer-col h3 {
  color: #fff;
}

.site-footer a:hover {
  color: var(--yellow);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.25rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 4.5rem;
  flex-shrink: 0;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.45rem;
  color: var(--paper);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.footer-brand span {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

.nap a[href^="tel:"],
.prose a[href^="tel:"]:not(.btn) {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}

.nap a[href^="tel:"]:hover,
.prose a[href^="tel:"]:not(.btn):hover {
  color: var(--red);
}

.prose a.btn--fire,
.stack-ctas a.btn--fire,
a.btn--fire[href^="tel:"] {
  color: #fff;
}

.nap {
  margin: 0;
  line-height: 1.7;
}

/* NAP labels on light page sections (asphalt / gray) */
.nap strong {
  color: var(--orange);
  font-weight: 700;
}

/* Footer is dark — yellow still reads well */
.site-footer .nap strong {
  color: var(--yellow);
  font-weight: 600;
}

.footer-col h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-col a {
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom a {
  color: #a8a29e;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.82rem;
}

/* Sticky call — mobile */
.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--sticky-h);
  padding: 0.85rem 1.25rem max(0.85rem, env(safe-area-inset-bottom));
  text-decoration: none;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(105deg, var(--red), var(--orange));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sticky-call .material-symbols-outlined {
  font-size: 1.35rem;
}

@media (min-width: 960px) {
  .sticky-call {
    display: none;
  }
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 24;
  display: inline-block;
  vertical-align: middle;
  user-select: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* Inner page hero */
.page-hero {
  padding: calc(var(--header-band) + clamp(1.5rem, 4vw, 2.75rem)) 0 clamp(2.5rem, 6vw, 4rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(255, 107, 10, 0.12), transparent 55%),
    #fff;
}

.page-hero__inner {
  max-width: 42rem;
  display: grid;
  gap: 0.85rem;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.page-hero p {
  margin: 0;
  color: #d6d3d1;
  font-size: 1.05rem;
  max-width: 36rem;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}

.crumbs a {
  color: var(--orange);
  text-decoration: none;
}

.crumbs a:hover {
  color: var(--red);
}

.prose {
  max-width: 42rem;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--mute);
}

.prose h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.prose h3 {
  margin: 1.5rem 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--mute);
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose a {
  color: var(--orange);
  font-weight: 700;
}

.prose a:hover {
  color: var(--red);
}

.prose a.btn--ghost {
  color: var(--orange);
}

.prose a.btn--ghost:hover {
  color: var(--red);
}

.prose a.btn--fire {
  color: #fff;
}

.prose a.btn--fire:hover {
  color: #fff;
}

.pay-list {
  list-style: none;
  margin: 0.85rem 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .pay-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.prose .pay-list {
  padding-left: 0;
}

.pay-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0.85rem 1rem;
  border: 2px solid #111;
  background: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
}

.pay-list .material-symbols-outlined {
  font-size: 1.45rem;
  color: var(--orange);
}

.stack-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Estimate page */
.estimate-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .estimate-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.estimate-card {
  border: 2px solid #111;
  background: #fff;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.12);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.estimate-price {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.75rem, 7vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--orange);
}

.estimate-price span {
  color: var(--mute);
  font-size: 0.45em;
  letter-spacing: 0.06em;
}

.estimate-tier-name {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.estimate-visual {
  margin: 0 0 1.5rem;
}

.truck-bed {
  position: relative;
  height: 7.5rem;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: #0a0a0a;
  overflow: hidden;
}

.truck-bed__fill {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  transform: scaleX(0.25);
  transform-origin: left center;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 210, 26, 0.95),
      rgba(255, 210, 26, 0.95) 10px,
      rgba(255, 107, 10, 0.9) 10px,
      rgba(255, 107, 10, 0.9) 20px
    );
  transition: transform 0.2s var(--ease);
  will-change: transform;
}

.truck-bed__label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.estimate-slider-wrap {
  margin: 0 0 1.25rem;
}

.estimate-slider-wrap label {
  display: block;
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
}

.estimate-slider {
  width: 100%;
  accent-color: var(--orange);
  height: 1.5rem;
  cursor: pointer;
}

.estimate-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
}

.estimate-example {
  margin: 0 0 1.25rem;
  color: #d6d3d1;
  font-size: 0.98rem;
}

.estimate-disclaimer {
  margin: 0;
  padding: 1rem;
  border: 2px solid #111;
  background: #fff8db;
  color: var(--orange);
  font-size: 0.9rem;
}

.estimate-disclaimer strong {
  color: var(--orange);
  font-weight: 800;
}

.tier-pills {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.tier-pill {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: center;
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  color: var(--paper);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.tier-pill strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tier-pill span {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--yellow);
}

.tier-pill.is-active {
  border-color: rgba(255, 107, 10, 0.75);
  background: rgba(255, 107, 10, 0.1);
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-panel {
  border: 2px solid #111;
  background: #fff;
  padding: 1.35rem 1.4rem;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.08);
}

.contact-panel h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.contact-panel p,
.contact-panel li {
  color: #d6d3d1;
}

.contact-panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

.form-stack {
  position: relative;
  display: grid;
  gap: 0.85rem;
}

.form-stack label {
  display: grid;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}

.form-stack input,
.form-stack textarea,
.form-stack select {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.65rem 0.85rem;
  border: 2px solid #111;
  border-radius: 0.5rem;
  background: #fff;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-stack textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--mute);
}

.form-note a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}

.form-note a:hover {
  color: var(--red);
}

.form-status {
  margin: 0;
  font-size: 0.92rem;
  color: var(--mute);
}

.form-status.is-error {
  color: var(--red);
  font-weight: 600;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-file input[type="file"] {
  min-height: 0;
  padding: 0.55rem;
  font-size: 0.92rem;
  cursor: pointer;
}

.form-file__hint {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--mute);
  line-height: 1.45;
}

.form-success {
  display: grid;
  gap: 0.85rem;
  padding: 1.1rem 0 0.25rem;
}

.form-success[hidden],
.form-stack[hidden] {
  display: none !important;
}

.form-success h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--paper);
}

.form-success p {
  margin: 0;
  color: var(--mute);
  line-height: 1.55;
}

.legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.legal-list a {
  display: block;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: var(--asphalt-3);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-list a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.phone-link {
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.phone-link:hover {
  color: var(--red);
}


/* Estimate load stages (JDog-style) */
.load-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 2px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, #1a1a1a 0%, #0c0c0c 100%);
  overflow: hidden;
}

.load-stage__bed {
  position: absolute;
  inset: 12% 8% 10% 8%;
  border: 2px solid rgba(255, 210, 26, 0.35);
  background: #151515;
  overflow: hidden;
}

.load-stage__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 12.5% 100%, 100% 20%;
  pointer-events: none;
}

.load-item {
  position: absolute;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(10px) scale(0.92);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  pointer-events: none;
}

.load-item.is-on {
  opacity: 1;
  transform: none;
}

.load-item .material-symbols-outlined {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--yellow);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.55));
}

.load-item--sofa { left: 6%; bottom: 8%; }
.load-item--sofa .material-symbols-outlined { font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--orange); }

.load-item--fridge { right: 8%; bottom: 10%; }
.load-item--fridge .material-symbols-outlined { color: #e7e5e4; }

.load-item--box1 { left: 28%; bottom: 12%; }
.load-item--chair { left: 42%; bottom: 14%; }
.load-item--box2 { left: 18%; bottom: 28%; }
.load-item--mattress { left: 34%; bottom: 30%; width: 36%; }
.load-item--mattress .material-symbols-outlined { font-size: clamp(2rem, 5vw, 3rem); color: #fdba74; }

.load-item--dresser { right: 22%; bottom: 28%; }
.load-item--bags { left: 8%; bottom: 42%; }
.load-item--table { left: 48%; bottom: 46%; }
.load-item--bike { right: 10%; bottom: 48%; }
.load-item--tv { left: 30%; bottom: 58%; }
.load-item--washer { right: 28%; bottom: 52%; }
.load-item--brush { left: 12%; bottom: 62%; }
.load-item--extra1 { left: 55%; bottom: 62%; }
.load-item--extra2 { right: 16%; bottom: 66%; }

.load-stage__caption {
  position: absolute;
  left: 0.75rem;
  top: 0.65rem;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(0,0,0,0.65);
  padding: 0.35rem 0.55rem;
}

.estimate-steps {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 0.25rem;
  margin: 0.85rem 0 0.35rem;
}

.estimate-step {
  min-height: 2.4rem;
  padding: 0.35rem 0.15rem;
  border: 2px solid #111;
  background: #fff;
  color: var(--mute);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.65rem, 1.5vw, 0.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.estimate-step.is-active {
  color: #111;
  background: var(--yellow);
  border-color: #111;
}

.estimate-range {
  margin: 0.25rem 0 1rem;
  color: #d6d3d1;
  font-size: 0.98rem;
}

.estimate-price-note {
  margin: 0 0 1rem;
  color: var(--mute);
  font-size: 0.9rem;
}


.load-stage--photo {
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #000;
}

.load-stage__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.load-stage--photo .load-stage__caption {
  left: 0.75rem;
  top: 0.65rem;
}

.load-stage__note {
  margin: 0.55rem 0 0;
  color: var(--mute);
  font-size: 0.85rem;
}


.hero .btn--ghost {
  color: var(--orange);
  background: #fff;
  border-color: #111;
  box-shadow: 2px 2px 0 #111;
}

.hero .btn--ghost:hover {
  color: var(--red);
  background: #fff;
  border-color: #111;
}

.hero h1 {
  color: var(--ink);
  text-shadow: none;
}

.page-hero p,
.section__intro,
.area-note,
.estimate-range,
.estimate-example,
.estimate-price-note,
.step p,
.load-tier p,
.load-note {
  color: var(--mute);
}

.crumbs {
  color: var(--mute);
}

.contact-panel p,
.contact-panel li {
  color: var(--mute);
}

.load-tier__size {
  color: var(--orange);
}

.load-bar {
  background: #ddd6cc;
}

.estimate-slider {
  accent-color: var(--orange);
}

.load-stage__caption {
  color: #111;
  background: rgba(255, 210, 26, 0.95);
  border: 2px solid #111;
}

.legal-list a {
  border: 2px solid #111;
  background: #fff;
  color: #111;
}
