.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  z-index: 100;
}
.skip-link:focus { top: 8px; }

.site-header {
  background: #fff;
  position: relative;
  z-index: 20;
}
.header-inner {
  display: grid;
  grid-template-columns: 15% minmax(0, 1fr);
  align-items: center;
  min-height: 119px;
}
.logo {
  display: flex;
  justify-content: center;
  padding: 0 10px;
}
.logo img { width: 85%; height: auto; display: block; }
.header-inner > nav { display: flex; justify-content: center; align-items: center; }

.nav-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-desktop a {
  display: inline-block;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  padding: 8px 11px;
  transition: background-color .25s, color .25s;
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  background: var(--blue);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 36px;
  border: 1px solid #d5d5d5;
  background: #fff;
  color: #333;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-panel {
  background: #fff;
  border-top: 1px solid #eee;
}
.mobile-panel ul { list-style: none; margin: 0; padding: 8px 0 16px; }
.mobile-panel a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 15px;
  color: #000;
}
.mobile-panel a[aria-current="page"] { background: var(--blue); color: #fff; }

/* Slider */
.hero { position: relative; background: #111; overflow: hidden; }
.hero-track { display: flex; transition: transform .5s ease; }
.slide {
  min-width: 100%;
  height: 550px;
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
}
.slide.is-on .slide-bg { animation: ken 10s linear forwards; }
.slide-copy { opacity: 0; }
.slide.is-on .slide-copy { animation: fadeInUp 1.25s both; }
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #00000054;
}
@keyframes ken {
  from { transform: scale(1); }
  to { transform: scale(1.3); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInLeft { from { opacity: 0; transform: translate3d(-100%, 0, 0); } to { opacity: 1; transform: none; } }
@keyframes fadeInUp { from { opacity: 0; transform: translate3d(0, 100%, 0); } to { opacity: 1; transform: none; } }
@keyframes zoomIn { from { opacity: 0; transform: scale3d(.3, .3, .3); } 50% { opacity: 1; } }
@keyframes bounceInUp {
  0% { opacity: 0; transform: translate3d(0, 80px, 0); animation-timing-function: cubic-bezier(.215, .61, .355, 1); }
  60% { opacity: 1; transform: translate3d(0, -20px, 0); animation-timing-function: cubic-bezier(.215, .61, .355, 1); }
  75% { transform: translate3d(0, 10px, 0); }
  90% { transform: translate3d(0, -5px, 0); }
  100% { transform: none; }
}
html.js [data-anim]:not(.is-in) { opacity: 0; }
html.js [data-anim].is-in { animation-duration: 1.25s; animation-fill-mode: both; }
html.js [data-anim="fadeIn"].is-in { animation-name: fadeIn; }
html.js [data-anim="fadeInLeft"].is-in { animation-name: fadeInLeft; }
html.js [data-anim="fadeInUp"].is-in { animation-name: fadeInUp; }
html.js [data-anim="zoomIn"].is-in { animation-name: zoomIn; }
html.js [data-anim="bounceInUp"].is-in { animation-name: bounceInUp; }
html.js [data-anim][data-speed="slow"].is-in { animation-duration: 2s; }
html.js [data-anim][data-speed="fast"].is-in { animation-duration: .75s; }
.logo-row a { position: relative; }
.logo-row a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .28);
  opacity: 0;
  transition: opacity .3s;
}
.logo-row a:hover::after { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  html.js [data-anim]:not(.is-in),
  .slide-copy { opacity: 1; }
  .slide.is-on .slide-bg,
  .slide.is-on .slide-copy,
  html.js [data-anim].is-in { animation: none; }
}
.slide-copy {
  position: relative;
  z-index: 1;
  max-width: 60%;
  padding: 0 24px;
}
.slide-copy p {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 600;
  line-height: 39px;
  text-transform: uppercase;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  border: 0;
  padding: 12px 22px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn:hover { background: #fff; color: var(--blue-deep); }
.btn-green {
  background: var(--green);
  font-family: "Raleway", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 14px 22px;
}
.btn-green:hover { background: transparent; color: #fff; outline: 1px solid #fff; }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.hero-arrow svg { width: 22px; height: 22px; display: block; margin: auto; }
.hero-arrow.prev { left: 14px; }
.hero-arrow.next { right: 14px; }
.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.55);
  padding: 0;
  cursor: pointer;
}
.hero-dots button[aria-current="true"] { background: #222; }

/* About */
.about {
  background: var(--ink);
  color: #fff;
  padding: 90px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.truck-frame {
  background: linear-gradient(180deg, #FFB738 0%, #f2295b 100%);
  border-radius: 20px;
  padding-left: 12px;
  overflow: hidden;
}
.truck-frame img { display: block; width: 100%; height: auto; }
.about-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 8px;
}
.about-kicker i {
  display: block;
  width: 68px;
  height: 3px;
  background: var(--blue);
}
.bracket {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
}
.bracket::before,
.bracket::after {
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0;
}
.bracket::before { content: "["; margin-right: 4px; }
.bracket::after { content: "]"; margin-left: 4px; }
.about h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 2.8em;
  font-weight: 800;
  line-height: 0.95;
  color: #fff;
}
.about .sub {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
  color: var(--blue);
}
.about p { margin: 0 0 22px; font-size: 16px; line-height: 1.7; color: #fff; }

/* Services */
.services { background: #fff; padding: 80px 0 40px; text-align: center; }
.services .kicker {
  margin: 0;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #212121;
}
.services h2 {
  margin: 10px 0 8px;
  font-family: var(--display);
  font-size: 1.8em;
  font-weight: 500;
  line-height: 1;
  color: #28211a;
}
.rule {
  width: 72px;
  height: 3px;
  background: var(--red);
  margin: 8px auto 36px;
  border: 0;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 22px;
  text-align: center;
  padding-top: 36px;
}
.svc {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.17);
  padding: 78px 18px 26px;
  position: relative;
  margin-top: 48px;
}
.svc img {
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  object-fit: cover;
}
.svc h2,
.svc h3 {
  margin: 14px 0 10px;
  color: #fff;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}
.svc .tick {
  width: 66px;
  height: 3px;
  background: var(--red);
  margin: 8px auto 16px;
  border: 0;
}
.svc .btn { font-weight: 300; font-size: 13px; padding: 10px 18px; }

/* Differentials band */
.diff {
  position: relative;
  background: linear-gradient(180deg, #2c93f4 0%, #FFA548 100%);
  color: #fff;
  padding: 48px 0 120px;
  overflow: hidden;
}
.diff-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 30px;
  align-items: end;
  position: relative;
  z-index: 1;
}
.diff h1,
.diff h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}
.services .bracket {
  color: #212121;
  font-weight: 400;
  font-size: 16px;
}
.diff .lead { margin: 0 0 8px; font-weight: 400; }
.checks { list-style: none; margin: 0 0 22px; padding: 0; }
.checks li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 4px 0;
  color: #fff;
}
.checks svg { width: 16px; height: 16px; flex: 0 0 16px; margin-top: 4px; }
.diff-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: cover;
  object-position: center top;
}
.wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 120px;
  z-index: 2;
  pointer-events: none;
}

/* Flip */
.flips { padding: 50px 0 70px; background: #fff; }
.flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.flip { height: 280px; perspective: 1000px; }
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .6s;
}
.flip:hover .flip-inner,
.flip:focus-within .flip-inner,
.flip.is-flipped .flip-inner { transform: rotateX(180deg); }
.flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 24px;
}
.flip-front { background: var(--card); color: #fff; }
.flip-front h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .3px;
}
.flip-front svg { width: 54px; height: 54px; }
.flip-back { background: #eee; transform: rotateX(180deg); }
.flip-back .btn { font-weight: 300; min-width: 120px; }
.flip.tone-red .flip-back .btn { background: var(--red); }
.flip.tone-red .flip-back .btn:hover { background: #fff; color: var(--red); }
.flip.tone-dark .flip-back .btn { background: #333; }
.flip.tone-dark .flip-back .btn:hover { background: #fff; color: #333; }

/* Footer */
.site-footer { background: var(--footer); padding: 80px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.site-footer h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--blue);
}
.foot-logo { width: 55%; max-width: 220px; height: auto; }
.icon-list { list-style: none; margin: 0; padding: 0; }
.icon-list li {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  font-size: 15px;
  color: #000;
  line-height: 1.45;
  margin: 0 0 5px;
}
.icon-list svg { width: 14px; height: 14px; flex: 0 0 14px; margin-top: 3px; color: var(--red); }
.icon-list a { color: #000; text-decoration: none; }
.foot-links { list-style: none; margin: 0; padding: 0; }
.foot-links a {
  display: block;
  color: #000;
  text-decoration: none;
  font-weight: 300;
  font-size: 16px;
  padding: 3px 0;
}
.foot-links a:hover { text-decoration: underline; }
.copyright {
  background: var(--bar);
  text-align: center;
  padding: 20px 16px;
}
.copyright a {
  color: rgba(255,255,255,.32);
  font-size: 13px;
  font-weight: 300;
  text-decoration: none;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 40;
}
.wa-float a {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.wa-float a:hover { background: #036628; }
.wa-float svg { width: 36px; height: 36px; }

/* Interior */
.page-title { background: #eee; padding: 25px 0; }
.page-title h1 {
  margin: 0;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
  color: #5C5C5C;
}
.page { padding: 50px 0; }
.panel {
  background: #f3f3f3;
  padding: 36px 40px 40px;
}
.panel + .panel { margin-top: 28px; }
.red-title {
  margin: 0 0 18px;
  text-align: center;
  color: var(--red);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.split p, .prose p { color: #6b6b6b; margin: 0 0 14px; }
.prose h3, .split h3 {
  margin: 16px 0 8px;
  font-size: 16px;
  color: #4a4a4a;
}
.subhead-red {
  margin: 22px 0 8px;
  color: var(--red);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.checks.blue { color: #5c5c5c; }
.checks.blue li { color: #5c5c5c; }
.checks.blue svg { color: var(--blue); }
.who { margin-top: 28px; }
.who p { color: #8a8a8a; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.contact-card {
  background: #f7f7f7;
  text-align: center;
  padding: 36px 18px 28px;
}
.contact-card svg { width: 36px; height: 36px; color: var(--red); }
.contact-card h2 {
  margin: 12px 0 8px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .4px;
  color: #333;
}
.contact-card p { margin: 0; color: #777; font-size: 15px; }
.contact-card a { color: #e23b62; text-decoration: none; }
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.logo-row a {
  background: #fff;
  display: grid;
  place-items: center;
  padding: 6px;
  width: 110px;
  height: 64px;
}
.logo-row img { max-width: 100%; max-height: 52px; width: auto; height: auto; }

.lb {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lb.open { display: flex; }
.lb img { max-width: min(920px, 100%); max-height: 86vh; }
.lb button {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  width: 44px;
  height: 44px;
}

@media (max-width: 1024px) {
  .about h2 { font-size: 2.2em; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .slide { height: 420px; }
  .slide-copy { max-width: 80%; }
}

@media (max-width: 767px) {
  .header-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    padding: 16px 0 12px;
    gap: 10px;
  }
  .logo img { width: 210px; }
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .slide { height: 280px; }
  .slide-copy { max-width: 100%; }
  .slide-copy p { font-size: 18px; line-height: 1.25; }
  .about { padding: 20px 0; }
  .about-grid, .diff-grid, .split, .svc-grid, .flip-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .about h2 { font-size: 2.2em; }
  .about .sub { font-size: 20px; }
  .services { padding: 28px 0; }
  .services h2 { font-size: 1.2em; }
  .diff { padding: 28px 0 70px; }
  .diff h1, .diff h2 { font-size: 20px; }
  .btn-green { font-size: 12px; width: 100%; }
  .wave { height: 48px; }
  .site-footer { padding: 28px 0; }
  .foot-logo { width: 200px; }
  .panel { padding: 22px 16px; }
  .page { padding: 28px 0; }
  .icon-list li { font-size: 13px; }
}
