:root {
  --ink: #0d0c0a;
  --ink-2: #17130f;
  --panel: #211b16;
  --panel-2: #2c241d;
  --line: rgba(255, 255, 255, 0.14);
  --text: #f8efe5;
  --muted: #c5b8aa;
  --orange: #f27622;
  --orange-2: #ff9a3d;
  --cream: #fff4e6;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 0%, rgba(242, 118, 34, 0.2), transparent 28rem),
    linear-gradient(180deg, var(--ink), #120f0d 45%, #0a0908);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(13, 12, 10, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 58px;
  height: 58px;
  overflow: hidden;
  background: #050403;
  border: 1px solid rgba(242, 118, 34, 0.42);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

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

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

.brand strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.28rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.header-actions a {
  text-decoration: none;
}

.header-call {
  padding: 10px 14px;
  border: 1px solid rgba(242, 118, 34, 0.5);
  color: var(--cream);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 5vw, 74px);
  align-items: end;
  min-height: calc(100vh - 81px);
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 76px) 64px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(120deg, rgba(13, 12, 10, 0.16), rgba(13, 12, 10, 0.8)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 18px);
  pointer-events: none;
}

.hero-panel,
.hero-card {
  position: relative;
}

.eyebrow,
.section-kicker {
  color: var(--orange-2);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(3.9rem, 9.2vw, 8.8rem);
}

.hero-subtitle {
  max-width: 760px;
  color: var(--cream);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 15px 22px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 154, 61, 0.45);
  outline-offset: 3px;
}

.button-primary {
  background: var(--orange);
  color: #160b05;
}

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

.button-secondary {
  border: 1px solid rgba(255, 154, 61, 0.7);
  background: rgba(255, 255, 255, 0.05);
  color: var(--cream);
}

.icon {
  font-size: 1.2rem;
}

.hero-card {
  overflow: hidden;
  padding: 0;
  background: rgba(33, 27, 22, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-truck {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.hero-card-copy {
  padding: 24px 26px 26px;
}

.hero-card p {
  margin: 18px 0;
  color: var(--cream);
  font-size: 1.08rem;
  font-weight: 700;
}

.hero-card a {
  color: var(--orange-2);
  font-weight: 900;
  text-decoration: none;
}

.status-dot {
  display: block;
  width: 14px;
  height: 14px;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(242, 118, 34, 0.16);
}

.section {
  padding: clamp(66px, 9vw, 112px) clamp(18px, 5vw, 76px);
}

.intro-section {
  border-top: 1px solid var(--line);
}

.truck-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: end;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 76px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 48%),
    #100d0b;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.truck-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(2.1rem, 4.4vw, 4rem);
}

.truck-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.truck-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(140deg, rgba(13, 12, 10, 0.18), transparent 52%);
  pointer-events: none;
}

.truck-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 5vw, 70px);
  margin-top: 14px;
}

.intro-grid h2,
.section-heading h2,
.areas-content h2,
.contact-copy h2 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

.intro-grid p,
.areas-content p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.services-section {
  background: var(--ink-2);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 34px;
}

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

.service-card {
  grid-column: span 4;
  min-height: 260px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card:nth-child(2),
.service-card:nth-child(5) {
  transform: translateY(28px);
}

.service-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 22px;
  background: rgba(242, 118, 34, 0.16);
  color: var(--orange-2);
  font-size: 1.55rem;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--cream);
  font-size: 2rem;
}

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

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.why-grid article {
  min-height: 220px;
  padding: 26px;
  background: #15110e;
}

.why-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--orange-2);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.areas-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(66px, 9vw, 112px) clamp(18px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(242, 118, 34, 0.15), transparent),
    #100d0b;
  border-block: 1px solid var(--line);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-tags span {
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--cream);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
  padding: clamp(66px, 9vw, 112px) clamp(18px, 5vw, 76px);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-methods a {
  color: var(--orange-2);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.estimate-form {
  padding: clamp(22px, 4vw, 34px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hidden-field {
  display: none;
}

.form-row {
  margin-bottom: 18px;
}

.form-row.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: #120f0d;
  color: var(--text);
  font: inherit;
}

textarea {
  resize: vertical;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--orange-2) 50%), linear-gradient(135deg, var(--orange-2) 50%, transparent 50%);
  background-position: calc(100% - 18px) 20px, calc(100% - 12px) 20px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

::placeholder {
  color: #8d8278;
}

.form-submit {
  width: 100%;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 76px);
  background: #090807;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
  font-weight: 800;
}

.footer-links a {
  color: var(--orange-2);
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero,
  .intro-grid,
  .truck-section,
  .section-heading,
  .areas-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-column: span 6;
  }

  .service-card:nth-child(2),
  .service-card:nth-child(5) {
    transform: none;
  }

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

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .header-actions a:not(.header-call) {
    display: none;
  }

  .header-call {
    width: 100%;
    text-align: center;
  }

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

  .hero-truck {
    aspect-ratio: 16 / 11;
  }

  .truck-photo img {
    aspect-ratio: 4 / 3;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-grid,
  .why-grid,
  .form-row.split {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-column: 1;
    min-height: auto;
  }

  .contact-methods a {
    font-size: 1.65rem;
  }
}
