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

:root {
  --ink: #050505;
  --asphalt: #0d0d0d;
  --asphalt-2: #141414;
  --asphalt-3: #1c1c1c;
  --asphalt-4: #262626;
  --paper: #f5f3f0;
  --mute: #a8a29e;
  --line: rgba(255, 255, 255, 0.1);
  --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);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  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 {
  height: 0.4rem;
  background: repeating-linear-gradient(
    -45deg,
    var(--yellow),
    var(--yellow) 12px,
    var(--ink) 12px,
    var(--ink) 24px
  );
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
  padding-block: 0.65rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 3.5rem;
  height: auto;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .brand img {
    width: 4.25rem;
  }
}

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

.brand__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

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

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-desktop a {
  text-decoration: none;
  color: var(--mute);
  transition: color 0.2s var(--ease);
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--paper);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.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(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn--ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.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(78vh, 40rem);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.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(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.78) 42%, rgba(5, 5, 5, 0.45) 70%, rgba(5, 5, 5, 0.55) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.35) 0%, transparent 35%, rgba(5, 5, 5, 0.75) 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(3rem, 8vw, 5.5rem) 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(--yellow);
}

.hero__lede {
  margin: 0;
  max-width: 34rem;
  color: #d6d3d1;
  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;
}

/* 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(--yellow);
}

.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: 1px solid var(--line);
  background: linear-gradient(165deg, var(--asphalt-3), var(--asphalt));
  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: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  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: rgba(255, 107, 10, 0.75);
  background: rgba(255, 107, 10, 0.08);
}

.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(--yellow);
}

.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(--yellow);
  color: var(--yellow);
}

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

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

.faq details {
  border: 1px solid var(--line);
  background: var(--asphalt-3);
}

.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: #d6d3d1;
  border-top: 1px solid transparent;
  font-size: 0.98rem;
}

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

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

/* 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: #000;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 0.92rem;
}

.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 {
  margin: 0;
  line-height: 1.7;
}

.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 {
  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: clamp(2.5rem, 6vw, 4rem) 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(255, 107, 10, 0.18), transparent 55%),
    var(--asphalt);
}

.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(--yellow);
}

.prose {
  max-width: 42rem;
}

.prose p {
  margin: 0 0 1rem;
  color: #d6d3d1;
}

.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: #d6d3d1;
}

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

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

.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: 1px solid var(--line);
  background: linear-gradient(165deg, var(--asphalt-3), var(--asphalt));
  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(--yellow);
}

.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: 1px solid rgba(255, 210, 26, 0.25);
  background: rgba(255, 210, 26, 0.06);
  color: #e7e5e4;
  font-size: 0.9rem;
}

.estimate-disclaimer strong {
  color: var(--yellow);
}

.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: 1px solid var(--line);
  background: var(--asphalt-3);
  padding: 1.35rem 1.4rem;
}

.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 {
  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: 1px solid var(--line);
  border-radius: 0.5rem;
  background: #0a0a0a;
  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);
}

.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(--yellow);
}

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

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


/* 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: 1px solid var(--line);
  background: rgba(0,0,0,0.35);
  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: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.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;
}
