* {
  box-sizing: border-box;
}

:root {
  --ink: #111827;
  --muted: #5e6876;
  --paper: #f6f7f4;
  --white: #ffffff;
  --steel: #c7cbd0;
  --line: #d9dde1;
  --accent: #d26a2c;
  --accent-dark: #a84c1a;
  --charcoal: #171a1f;
  --charcoal-2: #22262d;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 244, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--charcoal);
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.04em;
  border: 2px solid var(--accent);
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.73rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav a {
  text-decoration: none;
}

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

.nav-cta {
  padding: 10px 15px;
  border: 1px solid var(--ink);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 9px 10px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}

.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;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(210,106,44,0.16), transparent 22rem),
    linear-gradient(135deg, #f8f8f5 0%, #eceeea 100%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(17,24,39,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,24,39,.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to right, transparent, black 45%);
}

.hero-grid {
  position: relative;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 72px;
  padding-block: 80px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-dark);
}

.eyebrow-light {
  color: #f2aa7c;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 7.2vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
  max-width: 780px;
}

h1 span {
  color: var(--accent);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 5vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.lead {
  max-width: 720px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #404956;
}

.lead.compact {
  max-width: 610px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease;
}

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

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

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

.button-secondary {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.button-light {
  color: var(--charcoal);
  background: var(--white);
}

.hero-note {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: 0 35px 80px rgba(17, 24, 39, .18);
}

.steel-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 49%, rgba(255,255,255,.035) 50%, transparent 51%),
    linear-gradient(45deg, transparent 49%, rgba(255,255,255,.03) 50%, transparent 51%);
  background-size: 42px 42px;
}

.trailer-illustration {
  position: absolute;
  width: 78%;
  height: 42%;
  left: 8%;
  top: 23%;
}

.trailer-bed {
  position: absolute;
  left: 2%;
  top: 30%;
  width: 72%;
  height: 30%;
  border: 7px solid #d8dde2;
  border-top-width: 12px;
  transform: skewY(-3deg);
}

.trailer-rail {
  position: absolute;
  left: 5%;
  top: 10%;
  width: 66%;
  height: 42%;
  border: 6px solid #9ea7af;
  border-bottom: none;
  transform: skewY(-3deg);
}

.trailer-tongue {
  position: absolute;
  left: 73%;
  top: 44%;
  width: 28%;
  height: 7px;
  background: #c8ced4;
  transform: rotate(8deg);
  transform-origin: left center;
}

.wheel {
  position: absolute;
  top: 57%;
  width: 74px;
  height: 74px;
  background: #0c0e11;
  border: 8px solid #444b53;
  border-radius: 50%;
  box-shadow: inset 0 0 0 10px #171a1f;
}

.wheel-one { left: 28%; }
.wheel-two { left: 49%; }

.hero-card-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 4px;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: white;
}

.hero-card-caption span {
  color: #efad83;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .16em;
}

.hero-card-caption strong {
  font-size: 1.1rem;
}

.proof-strip {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid div {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 92px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.proof-grid div:first-child {
  border-left: 1px solid var(--line);
}

.proof-grid strong {
  color: var(--accent);
  font-size: .78rem;
}

.proof-grid span {
  font-weight: 750;
  line-height: 1.25;
}

.section {
  padding-block: 110px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.category-card {
  min-height: 330px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform .18s ease, box-shadow .18s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(17,24,39,.09);
}

.category-number {
  margin-bottom: auto;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 900;
}

.category-card p {
  color: var(--muted);
}

.category-card a,
.text-link {
  margin-top: 18px;
  text-decoration: none;
  font-weight: 850;
}

.category-card a span,
.text-link span {
  color: var(--accent);
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-dark .lead {
  color: #c9d0d7;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.feature-list {
  border-top: 1px solid rgba(255,255,255,.18);
}

.feature-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.feature-list article > span {
  color: #efad83;
  font-size: .78rem;
  font-weight: 900;
}

.feature-list p {
  margin-bottom: 0;
  color: #b8c0c8;
}

.use-section {
  background: #eef0ec;
}

.work-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  color: white;
  background:
    linear-gradient(145deg, rgba(210,106,44,.95), rgba(145,67,26,.98)),
    var(--accent);
}

.work-lines {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    repeating-linear-gradient(135deg, transparent 0 20px, rgba(255,255,255,.3) 20px 22px);
}

.work-label,
.work-panel strong {
  position: relative;
}

.work-label {
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.work-panel strong {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: .9;
  letter-spacing: -.05em;
}

.story-section {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
}

.story-copy blockquote {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 900;
}

.story-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-section {
  padding-top: 0;
  background: var(--white);
}

.contact-card {
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  background: var(--charcoal-2);
  color: var(--white);
}

.contact-card h2 {
  max-width: 850px;
}

.contact-card p {
  max-width: 760px;
  color: #c9d0d7;
}

.site-footer {
  padding: 44px 0;
  background: #101216;
  color: #d3d7dc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 40px;
}

.footer-grid > div {
  display: grid;
  gap: 3px;
}

.footer-grid > div:nth-child(2) {
  text-align: right;
}

.legal {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #8f98a3;
  font-size: .78rem;
}

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

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    display: none;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(17,24,39,.12);
  }

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

  .hero-grid,
  .section-heading,
  .split,
  .story-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 40px;
    padding-block: 64px;
  }

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

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

  .proof-grid div {
    border-bottom: 1px solid var(--line);
  }

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

  .section-heading,
  .split,
  .story-grid {
    gap: 36px;
  }

  .section {
    padding-block: 80px;
  }

  .contact-card {
    align-items: start;
    padding: 38px 28px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand-copy small {
    display: none;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 5rem);
  }

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

  .wheel {
    width: 54px;
    height: 54px;
  }

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

  .proof-grid div,
  .proof-grid div:first-child {
    border-left: 0;
    border-right: 0;
  }

  .section {
    padding-block: 64px;
  }

  .category-card {
    min-height: 270px;
  }

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

  .footer-grid > div:nth-child(2) {
    text-align: left;
  }
}


/* --- V0.2 brand system --- */
.brand-image-link {
  display: flex;
  align-items: center;
  min-width: 0;
}

.header-logo {
  display: block;
  width: min(460px, 42vw);
  height: auto;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

.story-brand {
  display: grid;
  grid-template-columns: minmax(120px, 210px) 1fr;
  gap: 28px;
  align-items: center;
}

.story-crest {
  width: 100%;
  max-width: 210px;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.footer-brand {
  display: flex !important;
  grid-template-columns: none !important;
  flex-direction: row !important;
  align-items: center;
  gap: 14px !important;
}

.footer-brand > img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 8px;
}

.footer-brand > div {
  display: grid;
  gap: 2px;
}

@media (max-width: 900px) {
  .header-logo {
    width: min(330px, 58vw);
    max-height: 54px;
  }

  .story-brand {
    grid-template-columns: 150px 1fr;
  }
}

@media (max-width: 560px) {
  .header-logo {
    width: min(255px, 68vw);
    max-height: 48px;
  }

  .story-brand {
    grid-template-columns: 1fr;
  }

  .story-crest {
    max-width: 150px;
  }
}


/* --- V0.3 header cleanup --- */
.header-logo {
  display: block;
  width: min(400px, 34vw);
  height: auto;
  max-height: 46px;
  object-fit: contain;
  object-position: left center;
}

.brand-image-link {
  padding: 2px 0;
}

.site-nav {
  gap: 20px;
  font-size: 0.88rem;
}

.nav-cta {
  padding: 9px 14px;
}

.footer-brand > img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

@media (max-width: 900px) {
  .nav-wrap {
    min-height: 66px;
  }

  .header-logo {
    width: min(285px, 52vw);
    max-height: 40px;
  }
}

@media (max-width: 560px) {
  .header-logo {
    width: min(225px, 62vw);
    max-height: 34px;
  }
}


/* --- V0.4 wordmark-only header --- */
.header-logo {
  display: block;
  width: min(520px, 38vw);
  height: auto;
  max-height: 40px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 900px) {
  .header-logo {
    width: min(320px, 58vw);
    max-height: 34px;
  }
}

@media (max-width: 560px) {
  .header-logo {
    width: min(245px, 66vw);
    max-height: 28px;
  }
}
