/* ============================================================
   HOME — showcases both services. No imagery; pure type + color.
   Bridges the two page identities: amber (truck) + yellow (equip).
   ============================================================ */

/* ---------- LMM emblem badge (transparent, no plate) ---------- */
.brand__logo { height: 54px; flex: none; display: flex; align-items: center; }
.brand__logo img { height: 100%; width: auto; object-fit: contain; display: block; filter: drop-shadow(0 1px 2px rgba(0,0,0,.4)); }
.site-footer .brand__logo { height: 60px; }

:root {
  --hazard:      oklch(0.865 0.176 96);
  --hazard-deep: oklch(0.79 0.158 84);
  --black-2:     oklch(0.205 0.006 250);
}

/* ============ HERO ============ */
.home-hero {
  background: var(--ink-deep); color: var(--on-ink);
  text-align: center; position: relative; overflow: hidden;
  padding-block: clamp(72px, 13vh, 150px) clamp(64px, 10vh, 120px);
}
.home-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% -10%, oklch(0.80 0.142 71 / .14), transparent 55%),
    radial-gradient(80% 70% at 50% 120%, oklch(0.36 0.018 248 / .5), transparent 60%);
}
.home-hero__inner { position: relative; z-index: 1; max-width: 940px; margin-inline: auto; }
.home-hero .eyebrow { justify-content: center; }
.home-hero .display { color: #fff; margin: 20px auto 22px; max-width: 16ch; }
.home-hero .display em { font-style: normal; color: var(--amber); }
.home-hero .lead { color: var(--on-ink-soft); margin-inline: auto; max-width: 60ch; }
.home-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }
.home-hero__meta {
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; align-items: center;
  margin-top: 40px; padding-top: 28px; border-top: 1px solid oklch(1 0 0 /.1);
}
.home-hero__meta span {
  font-family: var(--font-semi); font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; font-size: 14px; color: var(--on-ink);
  display: inline-flex; align-items: center; gap: 10px;
}
.home-hero__meta span::before { content: ""; width: 7px; height: 7px; background: var(--amber); transform: rotate(45deg); flex: none; }

/* ============ SERVICES SPLIT ============ */
.home-services { background: var(--ink); display: grid; grid-template-columns: 1fr 1fr; }
.home-svc {
  position: relative; overflow: hidden; color: var(--on-ink);
  padding: clamp(40px, 5vw, 76px) clamp(28px, 4vw, 60px) clamp(36px, 4vw, 60px);
  display: flex; flex-direction: column; gap: 18px;
  transition: background .3s var(--ease);
}
.home-svc--truck { background: var(--ink); border-top: 5px solid var(--amber); }
.home-svc--equip { background: var(--black-2); border-top: 5px solid var(--hazard); }
.home-svc--truck:hover { background: oklch(0.235 0.016 248); }
.home-svc--equip:hover { background: oklch(0.245 0.008 250); }
.home-svc--equip::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: repeating-linear-gradient(-45deg, var(--hazard) 0 14px, var(--ink-deep) 14px 28px);
}

.home-svc__tag {
  font-family: var(--font-semi); font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; font-size: 13px;
}
.home-svc--truck .home-svc__tag { color: var(--amber); }
.home-svc--equip .home-svc__tag { color: var(--hazard); }
.home-svc h2 { font-size: clamp(30px, 3.6vw, 46px); color: #fff; line-height: .98; }
.home-svc__desc { color: var(--on-ink-soft); font-size: 17px; line-height: 1.55; max-width: 44ch; }

.home-svc__list { list-style: none; padding: 0; margin: 4px 0 8px; display: grid; gap: 11px; }
.home-svc__list li {
  display: flex; align-items: center; gap: 13px;
  font-family: var(--font-semi); font-weight: 600; font-size: 16.5px; color: var(--on-ink);
}
.home-svc__list svg { width: 18px; height: 18px; flex: none; }
.home-svc--truck .home-svc__list svg { color: var(--amber); }
.home-svc--equip .home-svc__list svg { color: var(--hazard); }

.home-svc__cta { margin-top: auto; padding-top: 14px; }
.home-svc--equip .btn { --bg: var(--hazard); box-shadow: 0 8px 22px -10px oklch(0.79 0.158 84 / .8); }
.home-svc--equip .btn:hover { background: var(--hazard-deep); }

/* ============ VALUES ============ */
.home-values { background: var(--paper); }
.home-values__head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.home-values__head .eyebrow { justify-content: center; }
.home-values__head .h2 { margin: 14px 0 18px; }
.home-values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--paper-line); border: 1px solid var(--paper-line); border-radius: 8px; overflow: hidden; }
.home-value { background: #fff; padding: clamp(28px, 3vw, 42px); }
.home-value__k { font-family: var(--font-mono); font-size: 13px; color: var(--amber-deep); font-weight: 500; }
.home-value h3 { font-size: clamp(22px, 2.4vw, 28px); margin: 12px 0 12px; color: var(--txt); }
.home-value p { color: var(--txt-soft); font-size: 16px; line-height: 1.55; }

/* ============ CTA STRIP ============ */
.home-cta { background: var(--amber); color: var(--ink-deep); text-align: center; }
.home-cta__inner { padding-block: clamp(48px, 6vw, 80px); }
.home-cta h2 { font-size: clamp(32px, 4.4vw, 56px); color: var(--ink-deep); margin-bottom: 14px; }
.home-cta p { font-family: var(--font-semi); font-weight: 600; font-size: 19px; color: oklch(0.30 0.04 60); margin-bottom: 30px; }
.home-cta .btn--dark { background: var(--ink-deep); color: #fff; }
.home-cta .btn--dark:hover { background: #000; color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .home-services { grid-template-columns: 1fr; }
  .home-values__grid { grid-template-columns: 1fr; }
  .home-contact__grid { grid-template-columns: 1fr; }
  /* CTAs go full-width so long phone-number buttons never overflow / clip / off-center */
  .home-hero__cta { flex-direction: column; align-items: stretch; }
  .home-hero__cta .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .home-svc__cta { width: 100%; }
  .home-svc__cta .btn { display: flex; width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .home-cta .btn { display: flex; width: 100%; max-width: 420px; margin-inline: auto; justify-content: center; white-space: normal; }
}
@media (max-width: 560px) {
  .home-form .field-row { grid-template-columns: 1fr; }
}
