:root {
  --ink: #151922;
  --muted: #5d6472;
  --line: #dce1e8;
  --paper: #f3f5f8;
  --paper-strong: #e9edf2;
  --white: #ffffff;
  --red: #b4242f;
  --red-dark: #861924;
  --blue: #143b63;
  --steel: #778394;
  --shadow: 0 18px 55px rgba(17, 24, 39, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(20, 59, 99, 0.06) 0 25%, transparent 25% 100%),
    linear-gradient(180deg, #eef2f6 0%, #ffffff 44%, #eef1f5 100%);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 16px clamp(20px, 4vw, 56px);
  color: var(--ink);
  background: rgba(245, 247, 250, 0.9);
  border-bottom: 1px solid rgba(21, 25, 34, 0.08);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 40px rgba(18, 26, 39, 0.12);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-size: 0.9rem;
}

.brand small {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  color: currentColor;
  opacity: 0.78;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  opacity: 0.88;
}

.nav a:hover {
  opacity: 1;
}

.nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  color: currentColor;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 130px 0 64px;
  overflow: hidden;
  color: var(--ink);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 96px auto auto -140px;
  width: 520px;
  height: 520px;
  background: linear-gradient(135deg, rgba(180, 36, 47, 0.12), rgba(20, 59, 99, 0.08));
  transform: skewX(-12deg);
  z-index: -1;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-kicker span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(20, 59, 99, 0.18);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-weight: 800;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3rem, 5.4vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 16px 0 10px;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

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

.button.secondary {
  color: var(--ink);
  border-color: rgba(21, 25, 34, 0.18);
  background: rgba(255, 255, 255, 0.68);
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(680px, 100%);
  margin: 38px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.hero-details div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-details dt {
  margin-bottom: 8px;
  color: var(--steel);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-details dd {
  margin: 0;
  font-weight: 800;
}

.hero-panel {
  position: relative;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #111722;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(17, 23, 34, 0.04), rgba(17, 23, 34, 0.32)),
    url("assets/americanroll-trucking-hero.png");
  background-position: 62% center;
  background-size: cover;
}

.panel-strip {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(17, 23, 34, 0.86);
  backdrop-filter: blur(10px);
}

.panel-strip span {
  color: #c9d2df;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 4;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.stats div {
  min-height: 108px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

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

.stats strong {
  display: block;
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
}

.section,
.split-section,
.contact-section,
.work-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.coverage p,
.contact-info p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.03rem;
}

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

.service-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.88) inset;
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 72px);
  border-top: 1px solid var(--line);
}

.work-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(68px, 8vw, 96px);
  border: 1px solid rgba(20, 59, 99, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 59, 99, 0.96), rgba(17, 23, 34, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
  color: var(--white);
  overflow: hidden;
}

.work-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: clamp(34px, 7vw, 72px) auto 0;
  padding: clamp(36px, 6vw, 56px);
  border: 1px solid rgba(20, 59, 99, 0.16);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 59, 99, 0.96), rgba(17, 23, 34, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
  overflow: hidden;
}

.work-cta .eyebrow {
  color: #ffb1b7;
}

.work-cta p {
  max-width: 720px;
  color: #d6deea;
  line-height: 1.7;
}

.work-section::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border: 54px solid rgba(255, 255, 255, 0.08);
  transform: rotate(16deg);
}

.work-heading,
.work-grid {
  position: relative;
  z-index: 1;
}

.work-heading .eyebrow {
  color: #ffb1b7;
}

.work-heading p {
  color: #d6deea;
  line-height: 1.75;
}

.work-grid {
  display: grid;
  gap: 14px;
}

.work-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.work-grid span {
  color: #ffb1b7;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.work-grid h3 {
  margin-top: 10px;
}

.work-grid p {
  margin-bottom: 0;
  color: #d6deea;
  line-height: 1.65;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 8px;
  border-bottom: 3px solid var(--red);
  border-left: 3px solid var(--red);
  transform: rotate(-45deg);
}

.coverage {
  margin-top: clamp(72px, 10vw, 120px);
  background:
    linear-gradient(90deg, rgba(233, 237, 242, 0.98), rgba(247, 248, 250, 0.92)),
    repeating-linear-gradient(90deg, rgba(20, 59, 99, 0.08) 0 1px, transparent 1px 48px);
  border-block: 1px solid var(--line);
}

.coverage-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 11vw, 130px) 0;
}

.coverage-inner p {
  max-width: 720px;
}

.load-card {
  padding: 26px;
  border-radius: 8px;
  color: var(--white);
  background: #111722;
  box-shadow: var(--shadow);
}

.load-card span {
  display: block;
  margin-bottom: 16px;
  color: #ffb1b7;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.load-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.page-hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 clamp(54px, 8vw, 86px);
}

.page-hero.compact {
  padding-bottom: 44px;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.option-grid,
.requirements-section,
.application-section,
.shipper-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: clamp(78px, 10vw, 126px);
}

.option-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 390px;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.option-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -68px;
  width: 190px;
  height: 190px;
  border: 32px solid rgba(20, 59, 99, 0.08);
  transform: rotate(14deg);
}

.option-card.dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 59, 99, 0.96), rgba(17, 23, 34, 0.98)),
    url("assets/americanroll-trucking-hero.png");
  background-position: center;
  background-size: cover;
}

.option-card span,
.option-card strong {
  position: relative;
  z-index: 1;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.option-card.dark span,
.option-card.dark strong {
  color: #ffb1b7;
}

.option-card h2,
.option-card p {
  position: relative;
  z-index: 1;
}

.option-card h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.option-card p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.7;
}

.option-card.dark p {
  color: #d6deea;
}

.requirements-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: 0 0 clamp(72px, 9vw, 110px);
}

.requirements-copy p:not(.eyebrow),
.application-section p,
.shipper-section p {
  color: var(--muted);
  line-height: 1.75;
}

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

.requirement-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.88) inset;
}

.requirement-list span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-weight: 800;
}

.requirement-list h3 {
  margin-top: 0;
}

.requirement-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.application-section,
.shipper-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: clamp(56px, 8vw, 90px) 0 clamp(78px, 10vw, 126px);
  border-top: 1px solid var(--line);
}

.load-card.light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.load-card.light span {
  color: var(--red);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  font-weight: 800;
}

.contact-lines a {
  color: var(--blue);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

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

.quote-form textarea {
  resize: vertical;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: #111722;
}

.footer a {
  font-weight: 800;
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
    padding-top: 104px;
    padding-bottom: 42px;
  }

  .hero-content {
    width: min(100% - 32px, 650px);
    margin: 0 auto;
  }

  .hero-panel {
    min-height: 320px;
  }

  .stats,
  .service-grid,
  .split-section,
  .contact-section,
  .work-section,
  .work-cta,
  .coverage-inner,
  .option-grid,
  .requirements-section,
  .application-section,
  .shipper-section {
    grid-template-columns: 1fr;
  }

  .stats {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid var(--line);
  }

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

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

  .work-section {
    width: min(100% - 40px, 650px);
    padding: 32px 22px;
  }

  .work-cta {
    align-items: stretch;
  }

  .page-hero {
    padding-top: 118px;
  }

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

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

  .hero-actions,
  .footer {
    flex-direction: column;
  }

  .hero-details {
    display: none;
  }

  .hero-panel {
    min-height: 280px;
  }

  .panel-strip {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px;
  }

  .button {
    width: 100%;
  }

  .quote-form {
    padding: 20px;
  }

  .requirement-list article {
    grid-template-columns: 1fr;
  }
}
