:root {
  --ink: #152f2e;
  --muted: #66736f;
  --line: #dfe4ea;
  --paper: #ffffff;
  --soft: #f4f7f5;
  --accent: #ff5400;
  --accent-dark: #d84400;
  --gold: #f6b83f;
  --green: #7acca9;
  --slate: #5b5b5b;
  --deep: #1c4744;
  --shadow: 0 18px 45px rgba(21, 47, 46, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.top-bar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(20px, 5vw, 72px);
  color: #fff;
  background: var(--deep);
  font-size: 0.88rem;
  font-weight: 800;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
}

.brand-mark svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark .brand-window {
  fill: currentColor;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.nav-cta {
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
  padding: 10px 15px;
}

.site-nav .nav-cta:hover {
  color: #fff;
  background: var(--accent-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px) 48px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 84, 0, 0.18), transparent 28%),
    linear-gradient(135deg, var(--deep), var(--slate));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 5.4vw, 5.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 {
  color: #fff;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  padding: 8px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--accent);
}

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

.button.secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.phone-display {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 54px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
}

.route-line {
  position: absolute;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0.86;
}

.route-one {
  top: 96px;
  left: 64px;
  width: 44%;
}

.route-two {
  right: 42px;
  bottom: 104px;
  width: 54%;
  background: #fff;
}

.van {
  position: absolute;
  right: 12%;
  bottom: 88px;
  width: min(360px, 72%);
  height: 160px;
}

.van-body {
  position: absolute;
  inset: 18px 0 38px;
  border-radius: 18px 28px 10px 10px;
  background: #fff;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.22);
}

.van-body::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64%;
  height: 18px;
  background: var(--accent);
}

.van-logo {
  position: absolute;
  left: 30px;
  top: 32px;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 900;
}

.van-window {
  position: absolute;
  right: 38px;
  top: 24px;
  width: 74px;
  height: 42px;
  border-radius: 10px 16px 8px 8px;
  background: #b8dff0;
}

.van-light {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: 12px;
  height: 18px;
  background: var(--gold);
  border-radius: 5px 0 0 5px;
}

.wheel {
  position: absolute;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border: 10px solid var(--ink);
  border-radius: 50%;
  background: #fff;
}

.wheel-front {
  right: 42px;
}

.wheel-back {
  left: 44px;
}

.delivery-card {
  position: absolute;
  width: 150px;
  padding: 14px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

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

.delivery-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.card-one {
  top: 36px;
  right: 30px;
}

.card-two {
  left: 28px;
  bottom: 34px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 0;
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 24px clamp(20px, 5vw, 72px);
  background: #fff;
}

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

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

.section,
.split-section,
.quote-section,
.process-section {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

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

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-card p,
.section-heading p,
.split-section p,
.why-list p,
.quote-copy p {
  color: var(--muted);
}

.service-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
  font-size: 1.12rem;
  font-weight: 900;
}

.process-section {
  color: #fff;
  background: var(--deep);
}

.process-section .eyebrow {
  color: var(--gold);
}

.process-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

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

.process-grid article {
  min-height: 210px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.process-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--ink);
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: var(--soft);
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-list article {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.why-list h3 {
  margin-bottom: 6px;
}

.why-list p {
  margin-bottom: 0;
}

.service-area {
  background: #fff;
}

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

.coverage-list span {
  padding: 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.route-support {
  background: var(--soft);
}

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

.support-grid div {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 22px;
  background: #fff;
}

.support-grid strong,
.support-grid span {
  display: block;
}

.support-grid span {
  color: var(--muted);
  font-size: 0.94rem;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: linear-gradient(135deg, var(--slate), var(--deep));
  color: #fff;
}

.quote-section .eyebrow {
  color: var(--green);
}

.quote-section h2 {
  color: #fff;
}

.quote-section .quote-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.botcheck {
  display: none;
}

label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

::placeholder {
  color: #8c96a5;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(226, 61, 47, 0.14);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: #fff;
  background: var(--deep);
}

.site-footer p,
.site-footer address {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer address {
  display: grid;
  gap: 8px;
  font-style: normal;
  text-align: right;
}

.footer-services {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.site-footer a:hover {
  color: #fff;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 8px 4px;
  }

  .hero,
  .split-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

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

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

  .site-footer address {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .top-bar {
    display: grid;
    gap: 4px;
  }

  .site-header {
    min-height: 68px;
  }

  .site-nav {
    top: 68px;
  }

  .brand small {
    font-size: 0.72rem;
  }

  h1 {
    font-size: 2.65rem;
  }

  .hero {
    padding-top: 42px;
  }

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

  .van {
    right: 8%;
    width: 84%;
    transform: scale(0.82);
    transform-origin: right bottom;
  }

  .delivery-card {
    width: 132px;
  }

  .trust-strip,
  .service-grid,
  .coverage-list {
    grid-template-columns: 1fr;
  }

  .process-grid article,
  .support-grid div,
  .service-card {
    min-height: auto;
  }
}
