:root {
  --bg: #ffffff;
  --ink: #111111;
  --muted: #5c636d;
  --line: #dedfe3;
  --soft: #f4f5f7;
  --accent: #f25c05;
  --accent-dark: #c24400;
  --charcoal: #22252a;
  --radius: 8px;
  --shadow: 0 16px 40px rgba(17, 17, 17, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

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

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 176px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.brand-fallback {
  display: none;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.05;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--ink);
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.hero {
  display: grid;
  min-height: calc(100vh - 75px);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: 6.25rem;
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-subheadline {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--charcoal);
  font-size: 1.6rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
}

.button-primary {
  padding: 0 24px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(242, 92, 5, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
}

.button-primary:disabled {
  cursor: wait;
  opacity: 0.72;
}

.phone-link {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.truck-card,
.quick-stats,
.card,
.why-list > div,
.photo-card,
.quote-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.truck-card {
  display: grid;
  gap: 22px;
  padding: clamp(18px, 4vw, 30px);
}

.truck-card strong,
.truck-card span {
  display: block;
}

.truck-card strong {
  margin-bottom: 5px;
  font-size: 1.25rem;
}

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

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

.quick-stats div {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
}

.quick-stats div:last-child {
  border-right: 0;
}

.quick-stats strong,
.quick-stats span {
  display: block;
}

.quick-stats strong {
  font-size: 1.15rem;
}

.quick-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-heading {
  margin-bottom: 30px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

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

.card p,
.steps p,
.why-list span,
.contact-copy p,
.site-footer {
  color: var(--muted);
}

.card-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 900;
}

.split-section {
  background: var(--soft);
}

.steps {
  display: grid;
  max-width: 980px;
  margin: 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-weight: 900;
}

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

.why-list > div {
  min-height: 150px;
  padding: 22px;
}

.why-list strong,
.why-list span {
  display: block;
}

.why-list strong {
  margin-bottom: 8px;
}

.photos-section {
  background: #111;
  color: #fff;
}

.photos-section .eyebrow {
  color: #ffb187;
}

.photo-placeholders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.photo-card {
  overflow: hidden;
  margin: 0;
  background: #1d1f23;
  border-color: #35383e;
  box-shadow: none;
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-card figcaption {
  padding: 14px 18px;
  color: #dfe3e8;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy h2 {
  margin-bottom: 20px;
}

.contact-phone {
  display: inline-block;
  margin-top: 12px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: clamp(20px, 4vw, 32px);
}

.form-row {
  display: grid;
  gap: 8px;
}

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

label {
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd3d8;
  border-radius: var(--radius);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(242, 92, 5, 0.18);
}

.upload-box {
  display: grid;
  min-height: 132px;
  place-items: center;
  padding: 22px;
  text-align: center;
  border: 2px dashed #b9bec5;
  border-radius: var(--radius);
  cursor: pointer;
}

.upload-box input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-title,
.upload-text {
  display: block;
}

.upload-title {
  font-size: 1.05rem;
  font-weight: 900;
}

.upload-text {
  color: var(--muted);
  font-weight: 700;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.thank-you-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: var(--soft);
}

.thank-you-card {
  width: min(100%, 760px);
  padding: clamp(28px, 6vw, 56px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.thank-you-brand {
  margin-bottom: 36px;
}

.thank-you-card h1 {
  max-width: 620px;
  font-size: 4.4rem;
}

.thank-you-card p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 700;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 4.7rem;
  }

  h2 {
    font-size: 3rem;
  }

  .services-grid,
  .why-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .hero-panel {
    max-width: 720px;
  }
}

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

  .nav-links {
    display: none;
  }

  .section {
    padding: 52px 20px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-subheadline {
    font-size: 1.25rem;
  }

  .thank-you-card h1 {
    font-size: 3rem;
  }

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

  .phone-link {
    text-align: center;
  }

  .quick-stats,
  .services-grid,
  .why-list,
  .photo-placeholders,
  .contact-section,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .quick-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-stats div:last-child {
    border-bottom: 0;
  }

  .contact-copy {
    position: static;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: 148px;
    height: 50px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .steps li {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 16px;
  }

  .steps li > span {
    width: 40px;
    height: 40px;
  }
}
