:root {
  --ink: #171512;
  --muted: #6c6254;
  --line: #d8c9b1;
  --paper: #f8f0df;
  --paper-deep: #eadcc3;
  --field: #fff8eb;
  --orange: #df592b;
  --orange-dark: #a6401e;
  --gold: #cf8f33;
  --cactus: #244e37;
  --charcoal: #171512;
  --charcoal-2: #252019;
  --shadow: 0 28px 70px rgba(64, 45, 25, 0.22);
  --motion: 520ms cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 78px;
  background:
    radial-gradient(circle at 8% 4%, rgba(207, 143, 51, 0.28), transparent 30vw),
    radial-gradient(circle at 86% 16%, rgba(36, 78, 55, 0.16), transparent 34vw),
    linear-gradient(180deg, rgba(255, 248, 235, 0.82), rgba(234, 220, 195, 0.4) 620px),
    var(--paper);
  color: var(--ink);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(23, 21, 18, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 18, 0.09) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mix-blend-mode: multiply;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 40;
  pointer-events: none;
  padding: 10px 14px;
  color: #fff;
  background: var(--charcoal);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform var(--motion);
}

.skip-link:focus {
  pointer-events: auto;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 34px);
  width: 100%;
  margin: 0 auto;
  padding: 16px clamp(22px, 4vw, 56px);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.brand-with-logo {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(104px, 10vw, 132px);
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform var(--motion);
}

.brand-with-logo:hover {
  transform: translateY(-1px);
}

.brand-with-logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 116px;
  object-fit: contain;
}

.brand {
  display: grid;
  gap: 0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand span {
  font-size: 21px;
  line-height: 0.95;
  font-weight: 950;
}

.brand strong {
  color: var(--orange);
  font-size: 10px;
  line-height: 1.1;
}

.top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(8px, 1.1vw, 16px);
  color: #fff8eb;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(14px, 0.95vw, 16px);
  font-weight: 800;
  line-height: 1;
}

.top-actions > * {
  flex: 0 0 auto;
}

.top-actions a,
.nav-dropdown summary {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  border-radius: 4px;
  padding: 9px 4px;
  font: inherit;
  letter-spacing: 0;
  transition: color var(--motion), background var(--motion), transform var(--motion);
}

.top-actions a:hover,
.nav-dropdown summary:hover {
  color: #ffc165;
  background: transparent;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
}

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

.nav-dropdown summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--motion);
}

.nav-dropdown[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 55;
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 4px;
  width: min(520px, calc(100vw - 36px));
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 248, 235, 0.98);
  border: 1px solid rgba(23, 21, 18, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.34);
  transform: translateX(-50%);
}

.location-panel {
  width: min(430px, calc(100vw - 36px));
}

.dropdown-panel a {
  justify-content: flex-start;
  min-height: 38px;
  padding: 9px 10px;
  border-radius: 4px;
  color: var(--ink);
  background: rgba(234, 220, 195, 0.72);
  font-weight: 850;
}

.dropdown-panel a:hover,
.dropdown-panel a:focus-visible {
  color: #fff8eb;
  background: var(--cactus);
  transform: none;
}

.nav-cta {
  padding: 12px 16px;
  background: var(--charcoal);
  border-radius: 4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.top-actions .nav-cta {
  color: #fff;
}

.top-actions .nav-cta:hover {
  color: #fff;
  background: var(--orange);
}

.phone-cta {
  border: 1px solid rgba(255, 248, 235, 0.42);
  background: rgba(23, 21, 18, 0.36);
  white-space: nowrap;
}

.hero {
  position: relative;
  display: block;
  min-height: max(980px, 180dvh);
  background: var(--charcoal);
  color: #fff8eb;
  margin-top: 0;
  overflow: visible;
  isolation: isolate;
  --hero-x: 50%;
  --hero-y: 42%;
  --hero-progress: 0;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at var(--hero-x) var(--hero-y), rgba(255, 193, 101, 0.12), transparent 20rem),
    radial-gradient(circle at 50% 48%, rgba(23, 21, 18, 0.02), rgba(23, 21, 18, 0.36) 58%, rgba(23, 21, 18, 0.78) 100%),
    linear-gradient(90deg, rgba(23, 21, 18, 0.68), rgba(23, 21, 18, 0.16) 50%, rgba(23, 21, 18, 0.68));
  content: "";
  transition: background-position 180ms linear;
}

.compact-hero .hero-media {
  min-height: 100%;
}

.hero-media {
  position: sticky;
  top: 0;
  z-index: -2;
  height: 100dvh;
  min-height: 100dvh;
  background: url("assets/hero-junk-removal.png") center / cover;
  filter: saturate(0.9) contrast(1.08);
  overflow: hidden;
}

.hero-video,
.hero-picture,
.hero-image {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-video,
.hero-image {
  object-fit: cover;
  object-position: 50% 47%;
  transform: scale(calc(1.18 + (var(--hero-progress, 0) * 0.04)));
  transform-origin: center;
}

.hero-image {
  background: var(--charcoal);
}

.hero-image-about {
  object-position: 52% 44%;
}

.hero-spotlight {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--hero-x) var(--hero-y), rgba(223, 89, 43, 0.12), transparent 14rem),
    linear-gradient(90deg, rgba(23, 21, 18, 0.72), rgba(23, 21, 18, 0.18) 48%, rgba(23, 21, 18, 0.78)),
    radial-gradient(circle at 50% 48%, transparent 0 30%, rgba(23, 21, 18, 0.38) 70%, rgba(23, 21, 18, 0.82) 100%);
  opacity: 0.74;
  transform: translate3d(calc((var(--hero-x) - 50%) * 0.02), calc((var(--hero-y) - 50%) * 0.02), 0);
  transition: opacity var(--motion), transform 260ms cubic-bezier(0.32, 0.72, 0, 1);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 100% 100%, rgba(23, 21, 18, 0.96) 0 6rem, rgba(23, 21, 18, 0.64) 11rem, transparent 19rem),
    linear-gradient(180deg, rgba(23, 21, 18, 0.28), transparent 24%, transparent 72%, rgba(23, 21, 18, 0.36)),
    linear-gradient(90deg, rgba(23, 21, 18, 0.48), transparent 28%, transparent 72%, rgba(23, 21, 18, 0.5));
  content: "";
}

.hero-scroll-meter {
  position: sticky;
  top: calc(100dvh - 78px);
  z-index: 2;
  width: min(320px, calc(100% - 40px));
  height: 4px;
  margin: -88px auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 248, 235, 0.2);
}

.hero-scroll-meter span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffc165, var(--orange));
  transform: scaleX(var(--hero-progress, 0));
  transform-origin: left center;
}

.hero-content {
  position: sticky;
  top: clamp(148px, 22dvh, 210px);
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(1780px, calc(100% - 72px));
  margin: -80dvh auto 0;
  padding: clamp(30px, 6vw, 58px) clamp(18px, 4vw, 52px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.78), 0 1px 2px rgba(0, 0, 0, 0.82);
  transition: transform 260ms cubic-bezier(0.32, 0.72, 0, 1), background var(--motion);
}

.service-area {
  margin: 0 0 12px;
  color: #ffc165;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1000px;
  margin-bottom: clamp(12px, 2vw, 18px);
  font-family: Archivo, "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(40px, 7.2vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 {
  max-width: min(1680px, calc(100vw - 96px));
  margin-bottom: clamp(18px, 2vw, 26px);
  font-size: clamp(64px, 7.2vw, 136px);
  line-height: 0.92;
}

h2 {
  margin-bottom: 10px;
  font-family: Archivo, "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(30px, 8vw, 48px);
  line-height: 1;
  text-transform: uppercase;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-family: Archivo, "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  line-height: 1.1;
  text-wrap: balance;
}

.hero p:not(.service-area),
.section-heading p,
.split p,
.service-card p {
  color: var(--muted);
  font-size: 17px;
}

.hero p:not(.service-area) {
  max-width: 1160px;
  color: rgba(255, 255, 255, 0.88);
}

.hero .inline-links {
  display: none !important;
}

.hero > .hero-content > .hero-actions,
.hero .inline-links {
  display: none !important;
}

.hero .local-intro {
  display: block !important;
  margin: clamp(22px, 2.4vw, 34px) auto 0;
  color: rgba(255, 248, 235, 0.86);
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 600;
  line-height: 1.45;
  text-wrap: balance;
}

.scroll-sequence {
  position: relative;
  min-height: 330vh;
  background:
    linear-gradient(180deg, #171512 0%, #211b14 42%, #f8f0df 100%);
  color: #fff8eb;
  view-timeline-name: --sequence-view;
  view-timeline-axis: block;
}

.sequence-sticky {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100dvh;
  place-items: center;
  overflow: hidden;
}

.sequence-stage {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 36px));
  min-height: min(760px, calc(100dvh - 56px));
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 235, 0.16);
  border-radius: 30px;
  background: #171512;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 34px 90px rgba(0, 0, 0, 0.28);
  transform: translateZ(0) scale(calc(0.985 + (var(--sequence-progress, 0) * 0.015)));
  transform-origin: center;
}

.sequence-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08);
  transform: scale(calc(1.04 + (var(--sequence-progress, 0) * 0.035)));
  transform-origin: center;
}

.sequence-mask {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 48%, rgba(23, 21, 18, 0.06), rgba(23, 21, 18, 0.18) 34%, rgba(23, 21, 18, 0.82) 78%, rgba(23, 21, 18, 0.98) 100%),
    linear-gradient(90deg, rgba(23, 21, 18, 0.9), transparent 44%, rgba(23, 21, 18, 0.88)),
    linear-gradient(180deg, rgba(23, 21, 18, 0.72), transparent 36%, rgba(23, 21, 18, 0.88));
}

.sequence-frame {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  top: clamp(18px, 3vw, 34px);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 248, 235, 0.18);
  border-radius: 999px;
  background: rgba(23, 21, 18, 0.54);
  color: rgba(255, 248, 235, 0.82);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.sequence-frame i {
  position: relative;
  display: block;
  width: clamp(54px, 8vw, 112px);
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 248, 235, 0.18);
}

.sequence-frame i::before {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffc165, var(--orange));
  content: "";
  transform: scaleX(var(--sequence-progress, 0));
  transform-origin: left center;
}

.sequence-progress {
  color: #ffc165;
  font-variant-numeric: tabular-nums;
}

.sequence-copy {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 330px;
  align-items: end;
  padding: clamp(24px, 6vw, 72px);
  transform: translate3d(0, calc((1 - var(--sequence-progress, 0)) * 18px), 0);
}

.sequence-panel {
  grid-area: 1 / 1;
  max-width: 760px;
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.98);
  transition: opacity 520ms cubic-bezier(0.32, 0.72, 0, 1), transform 620ms cubic-bezier(0.32, 0.72, 0, 1);
}

.sequence-panel.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.sequence-panel span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #ffc165;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.sequence-panel h2 {
  max-width: 820px;
  font-size: clamp(38px, 7.6vw, 88px);
  line-height: 0.9;
}

.sequence-panel p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 248, 235, 0.82);
  font-size: clamp(17px, 2vw, 22px);
}

@keyframes sequenceStageFloat {
  0% {
    transform: translateZ(0) scale(0.985);
  }

  48% {
    transform: translate3d(0, -1.5vh, 0) scale(1);
  }

  100% {
    transform: translateZ(0) scale(1.012);
  }
}

@keyframes sequenceVideoExpand {
  0% {
    transform: scale(1.04);
    filter: saturate(0.86) contrast(1.04);
  }

  100% {
    transform: scale(1.095);
    filter: saturate(1.02) contrast(1.12);
  }
}

@keyframes sequenceCopyLift {
  0% {
    transform: translate3d(0, 28px, 0);
  }

  100% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes sequenceRailFill {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

@supports (animation-timeline: view()) {
  .sequence-stage {
    animation: sequenceStageFloat linear both;
    animation-timeline: --sequence-view;
    animation-range: entry 10% exit 90%;
  }

  .sequence-video {
    animation: sequenceVideoExpand linear both;
    animation-timeline: --sequence-view;
    animation-range: entry 12% exit 88%;
  }

  .sequence-copy {
    animation: sequenceCopyLift linear both;
    animation-timeline: --sequence-view;
    animation-range: entry 18% exit 86%;
  }

  .sequence-frame i::before {
    animation: sequenceRailFill linear both;
    animation-timeline: --sequence-view;
    animation-range: entry 0% exit 100%;
  }
}

.tagline {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: clamp(18px, 5vw, 28px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.hero-actions.three-actions {
  grid-template-columns: 1fr;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 850;
}

.inline-links a {
  color: #ffc165;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: color var(--motion), background var(--motion), box-shadow var(--motion), transform var(--motion);
}

.button:hover,
.area-links a:hover,
.bottom-cta a:hover {
  transform: translateY(-2px);
}

.button:active,
.area-links a:active,
.bottom-cta a:active {
  transform: translateY(1px) scale(0.98);
}

:focus-visible {
  outline: 3px solid rgba(223, 89, 43, 0.42);
  outline-offset: 3px;
}

.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 14px 28px rgba(164, 64, 30, 0.25);
}

.secondary {
  color: #fff;
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.dark {
  color: #fff;
  background: var(--charcoal);
}

.light {
  color: var(--ink);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
}

.trust-strip {
  display: grid;
  gap: 1px;
  background: rgba(23, 21, 18, 0.16);
  border-bottom: 1px solid rgba(23, 21, 18, 0.16);
}

.trust-strip div {
  padding: 20px 18px;
  background: rgba(255, 248, 235, 0.76);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 20px;
  font-family: Archivo, "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 72px 18px 84px;
}

.brand-statement {
  background:
    linear-gradient(90deg, rgba(23, 21, 18, 0.92), rgba(36, 78, 55, 0.86)),
    var(--charcoal);
}

.brand-statement p {
  max-width: 980px;
  margin: 0;
  color: #fff8eb;
  font-size: clamp(22px, 5vw, 36px);
  font-weight: 800;
  line-height: 1.14;
  text-wrap: pretty;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.service-grid {
  display: grid;
  gap: 12px;
}

.service-grid article {
  min-height: 156px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 248, 235, 0.84)),
    var(--field);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 16px 34px rgba(64, 45, 25, 0.1);
  transition: border-color var(--motion), box-shadow var(--motion), transform var(--motion);
}

.service-grid article:hover {
  border-color: rgba(223, 89, 43, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 24px 46px rgba(64, 45, 25, 0.16);
  transform: translateY(-4px);
}

.service-grid span {
  color: var(--cactus);
  font-size: 13px;
  font-weight: 950;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-grid a {
  color: inherit;
  text-decoration-color: rgba(223, 89, 43, 0.42);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.why-choose {
  background:
    radial-gradient(circle at 86% 8%, rgba(240, 90, 40, 0.12), transparent 30vw),
    linear-gradient(180deg, rgba(244, 234, 215, 0.86), rgba(255, 248, 235, 0.72));
}

.why-grid {
  display: grid;
  gap: 12px;
}

.why-grid article {
  min-height: 180px;
  padding: 20px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 36px rgba(64, 45, 25, 0.08);
}

.why-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 8px;
  color: #fff;
  background: var(--cactus);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.why-grid p {
  margin: 0;
  color: var(--muted);
}

.before-after {
  background:
    radial-gradient(circle at 14% 10%, rgba(207, 143, 51, 0.16), transparent 34vw),
    linear-gradient(145deg, var(--charcoal), var(--charcoal-2));
  color: #fff8eb;
}

.before-after .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.project-grid {
  display: grid;
  gap: 18px;
  align-items: start;
}

.project-card {
  display: grid;
  gap: 14px;
  padding: 10px;
  border: 1px solid rgba(255, 248, 235, 0.14);
  border-radius: 22px;
  background: rgba(255, 248, 235, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform var(--motion), background var(--motion), border-color var(--motion);
}

.project-card:hover {
  border-color: rgba(207, 143, 51, 0.42);
  background: rgba(255, 248, 235, 0.1);
  transform: translateY(-3px);
}

.project-card h3 {
  margin: 0;
  color: #fff;
}

.project-card p {
  margin: -6px 0 4px;
  color: rgba(255, 255, 255, 0.72);
}

.review-grid {
  display: grid;
  gap: 12px;
}

.review-grid article {
  padding: 18px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.08);
}

.review-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.review-grid span {
  display: block;
  margin-top: 14px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.compare-toggle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
}

.compare-toggle button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.compare-toggle button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.compare-pair {
  display: grid;
  gap: 8px;
}

.compare-pair figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 16px;
  background: #111;
  aspect-ratio: 4 / 5;
}

.compare-pair img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-pair figcaption {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 5px 8px;
  border-radius: 5px;
  color: #fff;
  background: rgba(23, 24, 23, 0.82);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.split {
  display: grid;
  gap: 22px;
  background: linear-gradient(180deg, rgba(255, 248, 235, 0.88), rgba(234, 220, 195, 0.72));
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--cactus);
  content: "✓";
}

.service-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  background: rgba(255, 248, 235, 0.92);
  box-shadow: var(--shadow);
}

.service-card a {
  color: var(--orange-dark);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.service-card .button {
  width: 100%;
  margin: 8px 0 14px;
  color: #fff;
}

.contact-link {
  display: inline-block;
}

.areas {
  background: var(--field);
}

.area-links {
  display: grid;
  gap: 10px;
}

.area-links a {
  padding: 15px 16px;
  border: 1px solid rgba(216, 201, 177, 0.92);
  border-radius: 14px;
  color: var(--charcoal);
  background: rgba(248, 240, 223, 0.7);
  font-weight: 850;
  text-decoration: none;
  transition: border-color var(--motion), background var(--motion), transform var(--motion);
}

.area-links a:hover {
  border-color: rgba(223, 89, 43, 0.36);
  background: #fff8eb;
}

.seo-content {
  display: grid;
  gap: 24px;
  color: #fff8eb;
  background:
    radial-gradient(circle at 14% 18%, rgba(246, 166, 45, 0.16), transparent 32vw),
    linear-gradient(135deg, #111, #28593d 115%);
}

.seo-copy {
  max-width: 900px;
}

.seo-copy .service-area {
  color: #f6a62d;
}

.seo-copy h2 {
  max-width: 880px;
}

.seo-copy p {
  color: rgba(255, 248, 235, 0.82);
  font-size: 18px;
}

.seo-card {
  align-self: start;
  padding: 24px;
  border: 1px solid rgba(255, 248, 235, 0.16);
  border-radius: 8px;
  background: rgba(255, 248, 235, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 60px rgba(0, 0, 0, 0.22);
}

.seo-card p {
  color: rgba(255, 248, 235, 0.76);
}

.seo-card .button {
  width: 100%;
  margin: 8px 0 14px;
}

.seo-card .contact-link {
  color: #ffc165;
  font-weight: 900;
}

.steps ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  padding: 20px 20px 20px 66px;
  border: 1px solid var(--line);
  border-radius: 18px;
  counter-increment: steps;
}

.steps li::before {
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  content: counter(steps);
  font-weight: 950;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  color: var(--muted);
}

.estimate {
  background: var(--field);
}

.cta-section {
  color: #fff8eb;
  background:
    linear-gradient(120deg, rgba(23, 21, 18, 0.88), rgba(223, 89, 43, 0.86)),
    url("assets/hero-junk-removal.png") center / cover;
}

.cta-section h2 {
  max-width: 720px;
}

.cta-section p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

form {
  display: grid;
  gap: 13px;
  max-width: 980px;
  padding: 16px;
  border: 1px solid rgba(216, 201, 177, 0.9);
  border-radius: 18px;
  background: rgba(255, 248, 235, 0.58);
}

label {
  display: grid;
  gap: 6px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cfc3ad;
  border-radius: 12px;
  background: #fff8eb;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  transition: border-color var(--motion), box-shadow var(--motion), background var(--motion);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(223, 89, 43, 0.68);
  outline: none;
  box-shadow: 0 0 0 4px rgba(223, 89, 43, 0.12);
}

textarea {
  resize: vertical;
}

input[type="file"] {
  padding: 10px;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.form-note a {
  color: var(--orange-dark);
  font-weight: 800;
}

.faq {
  background: linear-gradient(180deg, var(--field), var(--paper));
}

details {
  max-width: 900px;
  border-bottom: 1px solid rgba(216, 201, 177, 0.92);
}

summary {
  padding: 18px 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 17px;
}

.bottom-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 0.86fr 1.18fr 0.96fr;
  gap: 1px;
  padding: 8px;
  background: rgba(23, 21, 18, 0.94);
  box-shadow: 0 -12px 30px rgba(17, 17, 17, 0.2);
}

.bottom-cta a {
  display: grid;
  min-height: 52px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #252019;
  font-size: 13px;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
}

.bottom-cta a:nth-child(2) {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 32px 18px;
  color: #fff8eb;
  background: #171512;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 22px;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer a {
  color: #ffc165;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  text-decoration: none;
}

@media (min-width: 680px) {
  .section,
  .site-footer {
    padding-left: max(28px, calc((100vw - 1120px) / 2));
    padding-right: max(28px, calc((100vw - 1120px) / 2));
  }

  .site-header {
    padding: 16px clamp(24px, 4vw, 56px);
  }

  .brand span {
    font-size: 30px;
  }

  .brand strong {
    font-size: 13px;
  }

  .top-actions {
    font-size: clamp(14px, 0.95vw, 16px);
  }

  .brand-with-logo {
    width: 132px;
  }

  .hero {
    min-height: max(980px, 180dvh);
  }

  .compact-hero {
    min-height: max(980px, 180dvh);
  }

  .hero-media {
    height: 100dvh;
    min-height: 100dvh;
  }

  .compact-hero .hero-media {
    min-height: 100dvh;
  }

  .hero-content {
    padding-top: clamp(52px, 7vw, 82px);
    padding-bottom: clamp(52px, 7vw, 82px);
  }

  .hero-actions {
    justify-content: center;
    grid-template-columns: max-content max-content;
  }

  .hero > .hero-content > .hero-actions {
    display: grid;
  }

  .hero-actions:not(.three-actions),
  .cta-section .hero-actions {
    grid-template-columns: max-content max-content;
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

  .service-grid article:nth-child(1),
  .service-grid article:nth-child(6) {
    grid-column: span 2;
  }

  .why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-card {
    padding: 14px;
  }

  .compare-toggle {
    display: none;
  }

  .compare-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .area-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .seo-content {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
    align-items: start;
  }

  .split {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.55fr);
    align-items: center;
  }

  .steps ol {
    grid-template-columns: repeat(3, 1fr);
  }

  form {
    grid-template-columns: repeat(2, 1fr);
    padding: 22px;
  }

  body {
    padding-bottom: 0;
  }

  .bottom-cta {
    display: none;
  }
}

@media (min-width: 980px) {
  .trust-strip {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 380px) {
  .site-header {
    align-items: center;
  }

  h1 {
    font-size: 34px;
  }
}

@media (max-width: 679px) {
  .site-header {
    top: 0;
    grid-template-columns: auto 1fr;
    width: 100%;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 0;
  }

  .brand-with-logo {
    width: clamp(82px, 24vw, 106px);
    padding: 0;
    border-radius: 0;
  }

  .brand-with-logo img {
    max-height: 92px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    justify-self: end;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #fff;
    background: var(--charcoal);
    border: 0;
    border-radius: 4px;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
  }

  .menu-toggle i,
  .menu-toggle i::before,
  .menu-toggle i::after {
    display: block;
    width: 16px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    content: "";
  }

  .menu-toggle i {
    position: relative;
  }

  .menu-toggle i::before,
  .menu-toggle i::after {
    position: absolute;
    left: 0;
  }

  .menu-toggle i::before {
    top: -5px;
  }

  .menu-toggle i::after {
    top: 5px;
  }

  .top-actions {
    grid-column: 1 / -1;
    display: none;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-content: stretch;
    gap: 6px;
    padding-top: 8px;
    font-size: 14px;
  }

  .site-header.nav-open .top-actions {
    display: grid;
  }

  .top-actions a,
  .nav-dropdown summary {
    width: 100%;
    min-height: 44px;
    justify-content: space-between;
    padding: 10px 12px;
    border: 1px solid rgba(255, 248, 235, 0.16);
    color: #fff8eb;
    background: rgba(23, 21, 18, 0.82);
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-panel,
  .location-panel {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 6px;
    padding: 7px;
    color: var(--ink);
    background: rgba(255, 248, 235, 0.98);
    border: 1px solid rgba(23, 21, 18, 0.18);
    border-radius: 6px;
    box-shadow: none;
    transform: none;
  }

  .dropdown-panel a {
    min-height: 42px;
    padding-left: 14px;
    border-color: rgba(23, 21, 18, 0.08);
    color: var(--ink);
    background: rgba(234, 220, 195, 0.72);
  }

  .phone-cta,
  .nav-cta {
    justify-content: center;
    text-align: center;
  }

  .compact-hero .hero-media {
    min-height: 100dvh;
  }

  .hero-content {
    width: calc(100% - 32px);
    top: clamp(132px, 20dvh, 174px);
    margin-top: -80dvh;
    padding: 22px 8px 26px;
    border-radius: 0;
  }

  .hero {
    min-height: 185dvh;
  }

  .hero-video,
  .hero-image {
    object-position: 50% 47%;
    transform: scale(calc(1.3 + (var(--hero-progress, 0) * 0.04)));
  }

  .hero-image-about {
    object-position: 52% 44%;
  }

  .hero-media::after {
    background:
      radial-gradient(ellipse at 100% 100%, rgba(23, 21, 18, 0.96) 0 5.5rem, rgba(23, 21, 18, 0.62) 9.5rem, transparent 16rem),
      linear-gradient(180deg, rgba(23, 21, 18, 0.22), transparent 22%, transparent 72%, rgba(23, 21, 18, 0.34)),
      linear-gradient(90deg, rgba(23, 21, 18, 0.42), transparent 34%, transparent 70%, rgba(23, 21, 18, 0.46));
  }

  .hero-scroll-meter {
    top: calc(100dvh - 92px);
    margin-top: -100px;
  }

  h1 {
    font-size: clamp(38px, 11.5vw, 50px);
    line-height: 0.9;
  }

  .hero h1 {
    max-width: calc(100vw - 32px);
    margin-bottom: 16px;
    font-size: clamp(44px, 12vw, 58px);
    line-height: 0.94;
  }

  .tagline {
    font-size: clamp(18px, 5.7vw, 24px);
    line-height: 1.05;
  }

  .hero p:not(.service-area) {
    font-size: 16px;
  }

  .hero .local-intro {
    max-width: calc(100vw - 46px);
    margin-top: 18px;
    font-size: clamp(17px, 4.8vw, 20px);
    line-height: 1.42;
  }

  .inline-links {
    justify-content: center;
  }

  .scroll-sequence {
    min-height: 300vh;
  }

  .sequence-stage {
    width: calc(100% - 24px);
    min-height: calc(100dvh - 24px);
    border-radius: 24px;
  }

  .sequence-copy {
    min-height: 70dvh;
    padding: 88px 20px 52px;
    align-items: center;
    text-align: center;
  }

  .sequence-panel {
    max-width: 100%;
  }

  .sequence-panel h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .sequence-frame {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }

  .project-card:not([data-view="after"]) .compare-pair .after,
  .project-card[data-view="after"] .compare-pair .before {
    display: none;
  }
}
