:root {
  --ink: #111827;
  --muted: #5b6472;
  --line: #d8dee8;
  --paper: #ffffff;
  --soft: #f3f6fa;
  --dark: #11100d;
  --charcoal: #1a1712;
  --orange: #e95f10;
  --orange-bright: #ff7417;
  --orange-dark: #b84208;
  --amber-smoke: #7b642e;
  --shadow: 0 22px 70px rgba(17, 16, 13, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 22px;
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(17, 16, 13, 0.22);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(17, 16, 13, 0.14);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #263244;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  padding: 10px 0;
}

.header-call {
  font-weight: 800;
  white-space: nowrap;
}

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

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

.button-primary {
  color: #ffffff;
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 10px 24px rgba(233, 95, 16, 0.28);
}

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

.button-secondary {
  color: var(--dark);
  background: var(--paper);
  border-color: var(--line);
}

.button-dark {
  color: var(--paper);
  background: var(--dark);
  border-color: var(--dark);
}

.button-light {
  color: var(--dark);
  background: var(--paper);
  border-color: var(--paper);
}

.button-large {
  min-height: 54px;
  padding: 0 26px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--dark);
}

.section-band {
  background:
    linear-gradient(135deg, rgba(233, 95, 16, 0.1), rgba(123, 100, 46, 0.14)),
    var(--soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  gap: 52px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 72px max(20px, calc((100vw - var(--max)) / 2)) 64px;
  overflow: hidden;
}

.hero-copy h1,
.section-heading h2,
.why-copy h2,
.contact-band h2,
.service-area-copy h2,
.quote-copy h2 {
  margin: 0;
  max-width: 780px;
  color: var(--dark);
  font-size: clamp(2.35rem, 6vw, 5.35rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 620px;
  margin: 26px 0 0;
  color: #334155;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

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

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-highlights span {
  padding: 9px 13px;
  color: #1e293b;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.5);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 480px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2)),
    radial-gradient(circle at 65% 18%, rgba(233, 95, 16, 0.28), transparent 28%),
    linear-gradient(135deg, #f2e8d1 0%, #f8fafc 58%, #e2e8f0 100%);
  box-shadow: var(--shadow);
}

.hero-photo {
  min-height: 520px;
  overflow: hidden;
  background: var(--dark);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(17, 16, 13, 0), rgba(17, 16, 13, 0.62)),
    linear-gradient(90deg, rgba(17, 16, 13, 0.1), rgba(17, 16, 13, 0));
}

.hero-photo-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  display: grid;
  gap: 5px;
  padding: 18px;
  color: var(--paper);
  background: rgba(17, 16, 13, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.hero-photo-caption strong {
  font-size: 1.05rem;
}

.hero-photo-caption span {
  color: #d7dce5;
  font-size: 0.92rem;
}

.services,
.recent-work,
.process,
.why,
.service-area,
.reviews-callout,
.quote,
.site-footer {
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
}

.services,
.recent-work,
.why,
.quote {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading span,
.why-copy span,
.service-area-copy span,
.reviews-callout span,
.quote-copy span {
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2,
.why-copy h2,
.service-area-copy h2,
.quote-copy h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 260px;
  gap: 16px;
}

.work-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark);
  box-shadow: 0 16px 46px rgba(17, 16, 13, 0.12);
}

.work-card-large {
  grid-row: span 2;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 240ms ease;
}

.work-card:hover img {
  transform: scale(1.03);
}

.work-card::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(180deg, rgba(17, 16, 13, 0), rgba(17, 16, 13, 0.76));
}

.work-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  color: var(--paper);
  font-size: 0.92rem;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.service-card {
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.07);
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--dark);
  background: var(--orange);
  border-radius: 8px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-card h3,
.steps h3 {
  margin: 26px 0 10px;
  color: var(--dark);
  font-size: 1.4rem;
}

.service-card p,
.steps p,
.why-copy p,
.proof-list p,
.contact-band p,
.quote-copy p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.process {
  padding-top: 88px;
  padding-bottom: 88px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps article {
  padding: 28px;
  border-left: 5px solid var(--orange);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 8px;
}

.steps strong {
  color: var(--orange-dark);
  font-size: 0.92rem;
}

.steps h3 {
  margin-top: 18px;
}

.why {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 64px;
  align-items: start;
}

.why-copy p {
  max-width: 520px;
  margin-top: 22px;
  font-size: 1.08rem;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.proof-list div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.proof-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 1.05rem;
}

.service-area {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding-top: 82px;
  padding-bottom: 82px;
}

.service-area-copy p {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-keywords span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 16, 13, 0.1);
  border-radius: 8px;
  font-weight: 900;
}

.reviews-callout {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffaf7;
}

.reviews-callout span {
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reviews-callout h2 {
  margin: 6px 0 0;
  color: var(--dark);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1;
}

.reviews-callout p {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-band {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  padding: 54px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(233, 95, 16, 0.16), rgba(0, 0, 0, 0)),
    linear-gradient(135deg, var(--dark), #25170d);
}

.contact-band h2 {
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.contact-band p {
  max-width: 600px;
  margin-top: 12px;
  color: #cbd5e1;
}

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

.quote {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.quote-copy p {
  max-width: 460px;
  margin-top: 18px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.quote-form label:has(textarea),
.quote-form button,
.form-note {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--dark);
  background: #fbfdff;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(233, 95, 16, 0.13);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--orange-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 34px;
  padding-bottom: 34px;
  color: #dbe4f0;
  background: #070b14;
}

.site-footer strong {
  color: var(--paper);
}

.site-footer p {
  margin-top: 4px;
  color: #9aa6b8;
}

.site-footer div:last-child {
  display: grid;
  gap: 6px;
  text-align: right;
}

.mobile-action-bar {
  display: none;
}

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(233, 95, 16, 0.1), rgba(123, 100, 46, 0.14)),
    var(--soft);
}

.thanks-shell {
  display: grid;
  width: min(760px, calc(100% - 40px));
  min-height: 100vh;
  align-content: center;
  gap: 34px;
  margin: 0 auto;
  padding: 54px 0;
}

.thanks-card {
  padding: clamp(28px, 6vw, 56px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thanks-card span {
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.thanks-card h1 {
  margin: 10px 0 0;
  color: var(--dark);
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 0.95;
}

.thanks-card p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .main-nav,
  .header-call {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.is-open .main-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 8px;
    padding: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .hero,
  .why,
  .service-area,
  .quote {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-photo img {
    min-height: 400px;
  }

  .service-grid,
  .work-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-auto-rows: 300px;
  }

  .work-card-large {
    grid-row: auto;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-top: 10px;
  }

  .contact-band,
  .service-area,
  .reviews-callout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    width: min(var(--max), calc(100% - 28px));
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .site-header > .button {
    display: none;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 38px;
    padding-bottom: 44px;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .hero-visual {
    min-height: 310px;
  }

  .hero-photo img {
    min-height: 310px;
  }

  .hero-photo-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px;
  }

  .services,
  .recent-work,
  .process,
  .why,
  .service-area,
  .reviews-callout,
  .quote {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .proof-list,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-auto-rows: 250px;
  }

  .quote-form label:has(textarea),
  .quote-form button,
  .form-note {
    grid-column: auto;
  }

  .site-footer {
    display: grid;
  }

  .site-footer div:last-child {
    text-align: left;
  }

  .mobile-action-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(17, 16, 13, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(17, 16, 13, 0.28);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 7px;
    font-size: 0.9rem;
    font-weight: 900;
  }

  .mobile-action-bar a:first-child {
    color: var(--paper);
    background: var(--charcoal);
    border: 1px solid rgba(255, 255, 255, 0.22);
  }

  .mobile-action-bar a:last-child {
    color: var(--paper);
    background: var(--orange);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .truck,
  .trailer,
  .junk {
    animation: floatLoad 5s ease-in-out infinite;
  }

  .junk {
    animation-delay: 400ms;
  }
}

@keyframes floatLoad {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
