:root {
  --ink: #10130f;
  --charcoal: #171c18;
  --night: #0a0d0b;
  --steel: #303730;
  --concrete: #ecebe3;
  --paper: #fbfaf3;
  --soft-paper: #f4f0e6;
  --muted: #6f756a;
  --lime: #d4ef46;
  --copper: #e36332;
  --line: rgba(16, 19, 15, 0.14);
  --white-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 22px 70px rgba(16, 19, 15, 0.22);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  border: 0;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--paper);
  transition:
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    min-height 220ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  color: var(--ink);
  background: rgba(251, 250, 243, 0.9);
  box-shadow: 0 12px 42px rgba(16, 19, 15, 0.1);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(16, 19, 15, 0.28);
  background: var(--lime);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a,
.footer-grid a {
  position: relative;
}

.nav-links a::after,
.footer-grid > a:last-child::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.footer-grid > a:last-child:hover::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--lime);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100svh;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--paper);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/handy-haul-hero.jpg") 66% 42% / cover no-repeat;
  filter: saturate(0.88) contrast(1.08) brightness(0.9);
  transform: scale(1.04);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 44%, rgba(212, 239, 70, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(8, 11, 10, 0.95) 0%, rgba(8, 11, 10, 0.78) 42%, rgba(8, 11, 10, 0.22) 76%),
    linear-gradient(0deg, rgba(8, 11, 10, 0.82), rgba(8, 11, 10, 0.08) 56%);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(251, 250, 243, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 250, 243, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.72) 34%, transparent 68%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(820px, calc(100% - 36px));
  padding: 132px 0 156px clamp(18px, 7vw, 112px);
  animation: heroEnter 760ms ease both;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 9.5ch;
  margin-bottom: 22px;
  font-size: 10.2rem;
  line-height: 0.84;
  letter-spacing: 0;
}

h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: 5.4rem;
  line-height: 0.92;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.48rem;
  line-height: 1;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(251, 250, 243, 0.86);
  font-size: 1.34rem;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
  color: rgba(251, 250, 243, 0.78);
  font-size: 0.98rem;
  font-weight: 850;
}

.hero-contact-line a {
  text-decoration: underline;
  text-decoration-color: rgba(212, 239, 70, 0.55);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.hero-contact-line a:hover {
  color: var(--lime);
  text-decoration-color: var(--lime);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(212, 239, 70, 0.2);
}

.button-primary:hover {
  background: var(--paper);
}

.button-secondary {
  border-color: rgba(251, 250, 243, 0.24);
  background: transparent;
  color: var(--paper);
}

.button-secondary:hover {
  border-color: var(--lime);
  background: rgba(212, 239, 70, 0.08);
}

.button-ghost {
  border-color: rgba(251, 250, 243, 0.4);
  color: var(--paper);
}

.button-ghost:hover {
  border-color: var(--lime);
  background: rgba(212, 239, 70, 0.08);
}

.hero-status {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 76px);
  bottom: clamp(86px, 9vw, 118px);
  display: grid;
  gap: 10px;
  width: min(286px, calc(100% - 36px));
  animation: heroEnter 860ms 140ms ease both;
}

.hero-status span {
  border-top: 1px solid rgba(251, 250, 243, 0.26);
  padding-top: 10px;
  color: rgba(251, 250, 243, 0.8);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-service-rail {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 4vw, 54px);
  bottom: 0;
  left: clamp(18px, 4vw, 54px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(251, 250, 243, 0.18);
  list-style: none;
}

.hero-service-rail li {
  min-height: 62px;
  border-right: 1px solid rgba(251, 250, 243, 0.14);
  display: flex;
  align-items: center;
  color: rgba(251, 250, 243, 0.84);
  font-size: 0.92rem;
  font-weight: 850;
}

.hero-service-rail li:last-child {
  border-right: 0;
}

.section-pad {
  padding: clamp(78px, 11vw, 152px) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.intro-section {
  background: var(--night);
  color: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: end;
}

.intro-grid h2 {
  max-width: 11ch;
}

.intro-text {
  margin-bottom: 8px;
  color: rgba(251, 250, 243, 0.74);
  font-size: 1.28rem;
  line-height: 1.55;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(48px, 7vw, 86px);
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}

.proof-strip span {
  min-height: 82px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--white-line);
  color: rgba(251, 250, 243, 0.76);
  font-weight: 850;
}

.proof-strip span:last-child {
  border-right: 0;
}

.services {
  background:
    linear-gradient(180deg, rgba(212, 239, 70, 0.12), rgba(212, 239, 70, 0) 34%),
    var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(42px, 7vw, 86px);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 70px minmax(210px, 0.45fr) minmax(240px, 1fr);
  gap: clamp(18px, 4vw, 56px);
  align-items: center;
  min-height: 132px;
  border-bottom: 1px solid var(--line);
  cursor: default;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-row:hover {
  background: var(--ink);
  color: var(--paper);
  box-shadow: inset 8px 0 0 var(--lime);
}

.service-row:hover .service-number,
.service-row:hover p {
  color: rgba(251, 250, 243, 0.74);
}

.service-number {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.service-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.45;
}

.process {
  position: relative;
  background: var(--soft-paper);
}

.process::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 19, 15, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 19, 15, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 72%, transparent);
}

.process-grid {
  position: relative;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  min-height: 300px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  display: block;
  margin-bottom: 88px;
  color: var(--copper);
  font-weight: 900;
}

.process-step p {
  max-width: 24ch;
  color: var(--muted);
  line-height: 1.52;
}

.quote {
  background:
    linear-gradient(140deg, rgba(212, 239, 70, 0.1), transparent 26%),
    var(--ink);
  color: var(--paper);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 112px;
}

.quote-copy h2 {
  max-width: 9ch;
}

.quote-copy p:last-child {
  max-width: 34ch;
  margin-top: 22px;
  color: rgba(251, 250, 243, 0.68);
  font-size: 1.1rem;
  line-height: 1.55;
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--white-line);
  background: rgba(251, 250, 243, 0.055);
  box-shadow: var(--shadow);
}

.contact-kicker {
  margin-bottom: 6px;
  color: var(--lime);
  font-weight: 900;
}

.contact-link {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 76px;
  border: 1px solid rgba(251, 250, 243, 0.16);
  padding: 16px 18px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 239, 70, 0.62);
  background: rgba(212, 239, 70, 0.08);
}

.contact-link span {
  color: rgba(251, 250, 243, 0.56);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-link strong {
  color: var(--paper);
  font-size: clamp(1.12rem, 2.2vw, 1.5rem);
  overflow-wrap: anywhere;
}

.contact-link-primary {
  border-color: rgba(212, 239, 70, 0.74);
  background: rgba(212, 239, 70, 0.12);
}

.contact-note {
  margin-top: 16px;
  border-top: 1px solid var(--white-line);
  padding-top: 22px;
}

.contact-note h3 {
  margin-bottom: 14px;
}

.contact-note ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-note li {
  color: rgba(251, 250, 243, 0.68);
}

.contact-note li::before {
  color: var(--lime);
  content: "+ ";
  font-weight: 900;
}

.contact-toast {
  position: fixed;
  z-index: 50;
  right: 18px;
  bottom: 18px;
  max-width: min(360px, calc(100% - 36px));
  border: 1px solid rgba(212, 239, 70, 0.72);
  background: rgba(16, 19, 15, 0.94);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  color: var(--paper);
  padding: 14px 16px;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.contact-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  padding: 30px 0;
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.footer-grid > a:last-child {
  color: var(--ink);
  font-weight: 900;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 1;
  transform: translateY(18px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.08) translate3d(-22px, 12px, 0);
  }
}

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

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    min-height: 68px;
    padding-inline: 16px;
  }

  .nav-links {
    display: none;
  }

  .brand-icon {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-media {
    background-position: 64% 38%;
  }

  .hero-content {
    width: min(100% - 32px, 640px);
    padding: 118px 0 310px 16px;
  }

  h1 {
    font-size: 6rem;
  }

  h2 {
    max-width: 10ch;
    font-size: 4rem;
  }

  .hero-status {
    left: 16px;
    right: 16px;
    bottom: 148px;
    width: auto;
  }

  .hero-service-rail {
    left: 16px;
    right: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-service-rail li {
    min-height: 52px;
    border-bottom: 1px solid rgba(251, 250, 243, 0.14);
  }

  .hero-service-rail li:nth-child(even) {
    padding-left: 14px;
  }

  .hero-service-rail li:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .intro-grid,
  .section-heading,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip span {
    min-height: 66px;
    border-right: 0;
    border-bottom: 1px solid var(--white-line);
  }

  .proof-strip span:last-child {
    border-bottom: 0;
  }

  .quote-copy {
    position: static;
  }

  .service-row {
    grid-template-columns: 48px 1fr;
    gap: 14px 20px;
    min-height: 140px;
    padding: 22px 0;
  }

  .service-row p {
    grid-column: 2;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step span {
    margin-bottom: 46px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand-mark span:last-child {
    max-width: 112px;
    line-height: 1;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 14px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 3.05rem;
  }

  .button {
    width: 100%;
  }

  .contact-link {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
