/* ==========================================================================
   LN Transport - site stylesheet
   Industrial, confident, red/black/steel. Display type: Barlow Condensed.
   ========================================================================== */

:root {
  --red: #d3101a;
  --red-deep: #a30c14;
  --red-hot: #f0202b;
  --red-tint: #fbe9ea;
  --ink: #0b0d10;
  --ink-2: #14181d;
  --ink-3: #1d2229;
  --ink-4: #2a3039;
  --steel: #767676;
  --steel-2: #9aa0a6;
  --steel-3: #bcbdbf;
  --line: #e2e0da;
  --paper: #f4f3f0;
  --paper-2: #ebe9e4;
  --white: #ffffff;
  --text: #171a1e;
  --text-2: #464c54;
  --text-3: #6b727b;
  --success: #1f7a3f;
  --success-tint: #e6f4ea;
  --font-display: 'Barlow Condensed', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow: 0 18px 40px -20px rgb(0 0 0 / .35);
  --shadow-sm: 0 6px 18px -10px rgb(0 0 0 / .3);
  --container: 1240px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --topbar-h: 36px;
  --header-h: 84px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); line-height: 1.05; font-weight: 700; letter-spacing: -.005em; }
p { margin: 0 0 1rem; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
address { font-style: normal; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
::selection { background: var(--red); color: #fff; }

.icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 860px; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--red); color: #fff; padding: .6rem 1rem; z-index: 1000; font-weight: 600; }
.skip-link:focus { left: 8px; }
.small { font-size: .9rem; }

/* ---------- type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red); margin: 0 0 .9rem;
}
.eyebrow--light { color: #ff5b63; }
.eyebrow .icon { width: 1.1em; height: 1.1em; }

.section__title em, .hero__title em, .page-hero__title em, .error-page h1 em, .cta-band__title em { font-style: italic; color: var(--red); }
.section__head--light .section__title em { color: #ff5b63; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: .06em; text-transform: uppercase;
  padding: .8rem 1.35rem; border-radius: 4px; border: 2px solid transparent; text-decoration: none; line-height: 1.1;
  transition: transform .2s var(--ease), background .2s, border-color .2s, color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn .icon { width: 1.15em; height: 1.15em; transition: transform .2s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .icon:last-child { transform: translateX(3px); }
.btn:active { transform: translateY(0); }
.btn--lg { font-size: 1.15rem; padding: 1rem 1.7rem; }
.btn--sm { font-size: .9rem; padding: .5rem .9rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 10px 24px -12px rgb(211 16 26 / .8); }
.btn--primary:hover { background: var(--red-hot); color: #fff; }
.btn--ghost { background: rgb(255 255 255 / .08); color: #fff; border-color: rgb(255 255 255 / .35); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgb(255 255 255 / .16); border-color: #fff; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgb(255 255 255 / .5); }
.btn--outline-light:hover { border-color: #fff; background: rgb(255 255 255 / .08); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; color: #fff; }
.btn--outline-dark { background: transparent; color: #fff; border-color: rgb(255 255 255 / .7); }
.btn--outline-dark:hover { background: #fff; color: var(--red); border-color: #fff; }
.btn--ghost-dark { background: transparent; color: #fff; border-color: transparent; text-decoration: underline; text-underline-offset: .3em; }
.btn--ghost-dark:hover { color: #fff; }

.badge {
  display: inline-block; vertical-align: middle; font-family: var(--font-display); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .6rem; border-radius: 3px; background: rgb(255 255 255 / .14); color: #fff; margin-left: .5rem; position: relative; top: -.15em;
}
.badge--red { background: var(--red); color: #fff; margin: 0 0 .75rem; top: 0; }

/* ---------- topbar + header ---------- */
.topbar { background: var(--red); color: #fff; font-size: .85rem; height: var(--topbar-h); display: flex; align-items: center; }
.topbar__inner { display: flex; gap: 1.75rem; align-items: center; justify-content: space-between; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; text-decoration: none; white-space: nowrap; font-weight: 500; }
.topbar__item .icon { width: 1em; height: 1em; opacity: .9; }
.topbar__item:hover { text-decoration: underline; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgb(11 13 16 / .94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: #fff; border-bottom: 1px solid rgb(255 255 255 / .06);
  transition: box-shadow .3s;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -10px rgb(0 0 0 / .6); }
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; height: var(--header-h); }
.brand { display: flex; align-items: center; margin-right: auto; }
.brand img { width: 128px; height: auto; }
@media (max-width: 639px) { .brand img { width: 112px; } }

.site-nav { display: none; }
.site-nav__list { display: flex; list-style: none; gap: .25rem; }
.site-nav__item { position: relative; }
.site-nav__link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; text-decoration: none; padding: .6rem .8rem; border-radius: 4px; position: relative;
}
.site-nav__link .icon { width: 1em; height: 1em; transition: transform .2s; }
.site-nav__link::after { content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .25rem; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.site-nav__link:hover::after, .site-nav__link.is-active::after { transform: scaleX(1); }
.has-mega.is-open .site-nav__link .icon, .has-mega:hover .site-nav__link .icon { transform: rotate(180deg); }

.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--ink-2); color: #fff; border-top: 3px solid var(--red);
  box-shadow: 0 30px 50px -20px rgb(0 0 0 / .7);
  opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s, transform .25s var(--ease), visibility .2s;
}
.has-mega { position: static; }
.has-mega:hover .mega, .has-mega.is-open .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: none; }
.mega__inner { display: grid; grid-template-columns: 1fr 1fr 1fr 1.05fr; gap: 2.5rem; padding-block: 2rem 2.25rem; }
.mega__title { font-size: 1.35rem; text-transform: uppercase; letter-spacing: .05em; color: #fff; margin-bottom: .2rem; }
.mega__blurb { color: var(--steel-2); font-size: .92rem; margin-bottom: .9rem; }
.mega__list { list-style: none; display: grid; gap: .15rem; }
.mega__list a { display: flex; align-items: center; gap: .6rem; padding: .45rem .5rem; margin-left: -.5rem; border-radius: 4px; color: #e8e9eb; text-decoration: none; font-weight: 500; font-size: 1rem; }
.mega__list a .icon { color: var(--red-hot); width: 1.2em; height: 1.2em; }
.mega__list a:hover, .mega__list a[aria-current="page"] { background: rgb(255 255 255 / .06); color: #fff; }
.mega__cta { background: var(--ink-3); border-radius: var(--radius-lg); padding: 1.5rem; align-self: start; }
.mega__cta-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; text-transform: uppercase; margin-bottom: .25rem; color: #fff; }
.mega__cta p { color: var(--steel-2); font-size: .95rem; }
.mega__cta-all { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; color: #fff; font-weight: 600; text-decoration: none; }
.mega__cta-all:hover { color: var(--red-hot); }

.site-header__actions { display: flex; align-items: center; gap: 1rem; }
.header-phone { display: flex; align-items: center; gap: .6rem; color: #fff; text-decoration: none; }
.header-phone__icon { width: 42px; height: 42px; border-radius: 50%; background: var(--red); display: grid; place-items: center; flex: 0 0 auto; box-shadow: 0 0 0 0 rgb(211 16 26 / .6); animation: pulse 2.4s infinite; }
.header-phone__icon .icon { width: 20px; height: 20px; }
.header-phone__text { display: none; flex-direction: column; line-height: 1.05; }
.header-phone__label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--steel-2); font-weight: 600; }
.header-phone__number { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; letter-spacing: .02em; }
.site-header__cta { display: none; }
.nav-toggle { width: 44px; height: 44px; display: grid; place-items: center; color: #fff; border-radius: 4px; }
.nav-toggle .icon { width: 28px; height: 28px; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgb(211 16 26 / .55); } 70% { box-shadow: 0 0 0 12px rgb(211 16 26 / 0); } 100% { box-shadow: 0 0 0 0 rgb(211 16 26 / 0); } }

.mobile-nav { position: absolute; left: 0; right: 0; top: 100%; background: var(--ink); color: #fff; max-height: calc(100vh - var(--header-h) - var(--topbar-h)); overflow: auto; border-top: 1px solid rgb(255 255 255 / .08); box-shadow: 0 30px 50px -20px rgb(0 0 0 / .8); }
.mobile-nav__inner { padding-block: 1rem 1.5rem; }
.mobile-nav__list { list-style: none; }
.mobile-nav__list > li > a, .mobile-nav__group-btn { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: .9rem .25rem; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: #fff; text-decoration: none; border-bottom: 1px solid rgb(255 255 255 / .08); text-align: left; }
.mobile-nav__group-btn .icon { transition: transform .2s; }
.mobile-nav__group-btn[aria-expanded="true"] .icon { transform: rotate(180deg); }
.mobile-nav__sub { list-style: none; padding: .25rem 0 .5rem 1rem; border-bottom: 1px solid rgb(255 255 255 / .08); }
.mobile-nav__sub a { display: block; padding: .55rem .25rem; color: #d6d8db; text-decoration: none; font-weight: 500; }
.mobile-nav__contact { margin-top: 1.5rem; display: grid; gap: .6rem; }
.mobile-nav__label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em; color: var(--steel-2); font-size: .9rem; margin: 0 0 .25rem; }
.mobile-nav__mail { display: inline-flex; gap: .5rem; align-items: center; color: #fff; text-decoration: none; margin-top: .5rem; }
body.nav-open { overflow: hidden; }

@media (min-width: 640px) { .header-phone__text { display: flex; } }
@media (min-width: 1024px) {
  .site-nav { display: block; }
  .nav-toggle, .mobile-nav { display: none !important; }
  .brand { margin-right: 1rem; }
  .site-nav { margin-right: auto; }
}
@media (min-width: 1200px) { .site-header__cta { display: inline-flex; } }
@media (max-width: 899px) { .topbar__item--wide { display: none; } }
@media (max-width: 639px) { .topbar__inner { justify-content: center; } .topbar__item:not(:first-child) { display: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden; color: #fff; background: var(--ink);
  min-height: min(860px, max(600px, calc(100svh - var(--header-h) - var(--topbar-h))));
  display: flex; align-items: center;
}
.hero__media, .hero__media picture, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media img { object-fit: cover; object-position: 62% 50%; z-index: -2; }
.hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgb(11 13 16 / .94) 0%, rgb(11 13 16 / .78) 38%, rgb(11 13 16 / .35) 70%, rgb(11 13 16 / .15) 100%),
    linear-gradient(0deg, rgb(11 13 16 / 1) 0%, rgb(11 13 16 / 0) 30%);
}
.hero__content { position: relative; padding-block: clamp(4rem, 10vh, 7rem) clamp(5rem, 12vh, 8rem); max-width: calc(var(--container)); }
.hero__title { font-size: clamp(3.4rem, 9vw, 7.4rem); font-weight: 800; text-transform: uppercase; line-height: .92; letter-spacing: -.01em; max-width: 12ch; margin: .25rem 0 1.5rem; }
.hero__lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); max-width: 620px; color: #d9dbde; margin-bottom: 2.25rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero__scroll { position: absolute; left: 50%; bottom: 1.5rem; width: 2px; height: 46px; background: linear-gradient(var(--red), transparent); animation: drop 2s var(--ease) infinite; opacity: .8; }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

.trust-strip { background: var(--ink-2); color: #fff; border-top: 6px solid transparent; border-image: repeating-linear-gradient(135deg, var(--red) 0 14px, var(--ink) 14px 28px) 6; }
.trust-strip__list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: .5rem 1.5rem; padding-block: 1.1rem; }
.trust-strip__list li { display: flex; align-items: center; gap: .65rem; font-weight: 600; font-size: .95rem; padding: .4rem 0; }
.trust-strip__list .icon { color: var(--red-hot); width: 1.5em; height: 1.5em; }

/* ---------- sections ---------- */
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--dark { background: var(--ink); color: #fff; }
.section--paper { background: var(--paper); }
.section__head { max-width: 760px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section__head--row { display: flex; align-items: end; justify-content: space-between; gap: 2rem; max-width: none; flex-wrap: wrap; }
.section__title { font-size: clamp(2.2rem, 4.8vw, 3.6rem); font-weight: 800; text-transform: uppercase; line-height: .95; letter-spacing: -.005em; }
.section__text { color: var(--text-2); font-size: 1.1rem; margin-top: 1rem; max-width: 640px; }
.section--dark .section__text { color: #c9ccd1; }

/* feature cards */
.feature-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin-bottom: 2rem; }
.feature-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: inherit; transition: transform .3s var(--ease), box-shadow .3s; position: relative; }
.feature-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-3); }
.feature-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.feature-card:hover .feature-card__media img { transform: scale(1.05); }
.feature-card__body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.feature-card__title { font-size: 1.75rem; text-transform: uppercase; margin-bottom: .5rem; }
.feature-card__body p { color: var(--text-2); flex: 1; }
.feature-card__more { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--red); }
.feature-card__more .icon { transition: transform .2s; }
.feature-card:hover .feature-card__more .icon { transform: translateX(4px); }

.service-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.service-card { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.15rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); text-decoration: none; color: inherit; transition: border-color .2s, transform .25s var(--ease), box-shadow .25s; }
.service-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.service-card__icon { width: 52px; height: 52px; border-radius: 12px; background: var(--red-tint); color: var(--red); display: grid; place-items: center; flex: 0 0 auto; transition: background .2s, color .2s; }
.service-card__icon .icon { width: 26px; height: 26px; }
.service-card:hover .service-card__icon { background: var(--red); color: #fff; }
.service-card__body { display: flex; flex-direction: column; gap: .15rem; flex: 1; }
.service-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; text-transform: uppercase; line-height: 1.1; }
.service-card__text { color: var(--text-3); font-size: .95rem; line-height: 1.45; }
.service-card__arrow { color: var(--steel-3); transition: color .2s, transform .2s; }
.service-card:hover .service-card__arrow { color: var(--red); transform: translateX(4px); }
.section--dark .service-card { background: var(--ink-3); border-color: rgb(255 255 255 / .08); }
.section--dark .service-card__text { color: var(--steel-2); }

/* fleet teaser */
.fleet-teaser__grid { display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; }
.fleet-teaser__media { position: relative; }
.fleet-teaser__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.fleet-teaser__card { position: absolute; left: -1rem; bottom: -1.5rem; background: var(--red); color: #fff; padding: 1.1rem 1.4rem; border-radius: var(--radius); max-width: 300px; box-shadow: var(--shadow); }
.fleet-teaser__card-value { display: block; font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1; }
.fleet-teaser__card-value small { font-size: 1.1rem; font-weight: 600; margin-left: .2rem; }
.fleet-teaser__card-label { display: block; font-size: .9rem; line-height: 1.35; margin-top: .3rem; opacity: .95; }
.stat-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem; margin: 2rem 0 2.25rem; }
.stat__value { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; color: var(--red-hot); }
.stat__label { display: block; color: var(--steel-2); font-size: .95rem; margin-top: .25rem; }
.stat-list--inline { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); margin: 0; text-align: center; }
.stat-list--inline .stat__value { color: var(--red); }
.stat-list--inline .stat__label { color: var(--text-2); }
@media (min-width: 900px) { .fleet-teaser__grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; } .fleet-teaser__card { left: -2rem; } }

/* sectors / values */
.sector-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.sector-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; }
.sector-card__icon { width: 54px; height: 54px; border-radius: 14px; background: var(--ink); color: #fff; display: grid; place-items: center; margin-bottom: 1.1rem; }
.sector-card__icon .icon { width: 26px; height: 26px; }
.sector-card h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: .5rem; }
.sector-card p { color: var(--text-2); margin: 0; }
.sector-card--dark, .section--dark .sector-card { background: var(--ink-3); border-color: rgb(255 255 255 / .08); color: #fff; }
.section--dark .sector-card__icon { background: var(--red); }
.section--dark .sector-card p { color: #c9ccd1; }

/* process */
.process__steps { list-style: none; display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); counter-reset: step; }
.process__step { position: relative; padding: 1.5rem 1.25rem 1.5rem 0; border-top: 3px solid var(--line); }
.process__step::before { content: ""; position: absolute; top: -3px; left: 0; width: 48px; height: 3px; background: var(--red); }
.process__num { display: block; font-family: var(--font-display); font-weight: 800; font-size: 3rem; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--steel-3); margin-bottom: .75rem; }
.process__step h3 { font-size: 1.45rem; text-transform: uppercase; margin-bottom: .5rem; }
.process__step p { color: var(--text-2); margin: 0; }

/* areas */
.areas__grid { display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: center; }
.route-list { list-style: none; display: grid; gap: .25rem; margin: 0 0 1.75rem; max-width: 480px; }
.route-list li { display: flex; align-items: baseline; gap: 1rem; padding: .55rem 0; border-bottom: 1px solid rgb(255 255 255 / .1); }
.route-list__label { font-family: var(--font-display); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; color: var(--steel-2); min-width: 92px; flex: 0 0 auto; }
.route-list strong { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: #fff; line-height: 1.1; }
.area-chips { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; }
.area-chips li { padding: .55rem .95rem; border: 1px solid rgb(255 255 255 / .18); border-radius: 999px; font-weight: 500; font-size: .95rem; color: #e6e8eb; background: rgb(255 255 255 / .04); }
.area-chips__more { border-style: dashed !important; color: var(--steel-2) !important; }
@media (min-width: 900px) { .areas__grid { grid-template-columns: 1fr 1fr; } }

/* posts */
.post-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: inherit; transition: transform .3s var(--ease), box-shadow .3s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card__media { aspect-ratio: 16 / 10; background: var(--ink-3); overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__placeholder { width: 100%; height: 100%; display: grid; place-items: center; background: linear-gradient(135deg, var(--ink-2), var(--ink-4)); }
.post-card__placeholder img { width: 72px; height: 72px; opacity: .9; }
.post-card__body { padding: 1.35rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.post-card time { font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); font-weight: 600; }
.post-card__title { font-size: 1.55rem; margin: .4rem 0 .5rem; }
.post-card p { color: var(--text-2); flex: 1; }
.post-card__more { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--red); }

/* cta band */
.cta-band { background: var(--red); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, rgb(0 0 0 / .18), transparent 55%); pointer-events: none; }
.cta-band__inner { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; padding-block: clamp(2.5rem, 6vw, 4rem); }
.cta-band__title { font-size: clamp(2rem, 4.5vw, 3.2rem); text-transform: uppercase; font-weight: 800; line-height: .95; margin-bottom: .5rem; }
.cta-band__text { margin: 0; max-width: 560px; font-size: 1.1rem; opacity: .95; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { position: relative; isolation: isolate; background: var(--ink); color: #fff; overflow: hidden; }
.page-hero__media, .page-hero__media picture, .page-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero__media img { object-fit: cover; object-position: 60% 50%; z-index: -2; }
.page-hero__media::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgb(11 13 16 / .95) 0%, rgb(11 13 16 / .8) 45%, rgb(11 13 16 / .45) 100%), linear-gradient(0deg, rgb(11 13 16 / .9) 0%, rgb(11 13 16 / 0) 40%); }
.page-hero__content { padding-block: clamp(3.5rem, 8vw, 6rem) clamp(3rem, 7vw, 5rem); max-width: var(--container); }
.page-hero__title { font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 800; text-transform: uppercase; line-height: .95; max-width: 16ch; margin: .25rem 0 1rem; }
.page-hero__lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: #d9dbde; max-width: 680px; margin: 0; }
.page-hero--short { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%); }
.page-hero--short .page-hero__content { padding-block: clamp(2.5rem, 6vw, 4rem) clamp(2.5rem, 6vw, 4rem); }
.crumbs { margin-bottom: 1.25rem; font-size: .9rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; color: var(--steel-2); }
.crumbs li + li::before { content: "/"; margin-right: .35rem; opacity: .5; }
.crumbs a { color: #d6d8db; text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }

/* ---------- service pages ---------- */
.service-layout { display: grid; gap: 3rem; grid-template-columns: 1fr; }
.service-aside { display: grid; gap: 1.25rem; align-content: start; }
@media (min-width: 1000px) {
  .service-layout { grid-template-columns: minmax(0, 1fr) 340px; gap: 4rem; }
  .service-aside { position: sticky; top: calc(var(--header-h) + 1.5rem); }
}
.prose { max-width: 70ch; }
.prose--narrow { max-width: 760px; }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); text-transform: uppercase; margin-top: 2.5rem; }
.prose h3 { font-size: 1.4rem; margin-top: 2rem; }
.prose h4 { font-size: 1.2rem; margin-top: 1.5rem; }
.prose p { margin: 0; color: var(--text-2); }
.prose--lead > p:first-child { font-size: 1.2rem; color: var(--text); }
.prose ul, .prose ol { padding-left: 1.3rem; color: var(--text-2); }
.prose li + li { margin-top: .35rem; }
.prose a { color: var(--red); text-decoration: underline; text-underline-offset: .2em; }
.prose a:hover { color: var(--red-deep); }
.prose blockquote { margin: 1.5rem 0; padding: .5rem 0 .5rem 1.25rem; border-left: 4px solid var(--red); font-size: 1.15rem; color: var(--text); }
.prose img { border-radius: var(--radius-lg); margin: 1.5rem 0; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
.prose code { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: .92em; background: var(--paper-2); padding: .1em .35em; border-radius: 4px; }
.prose strong { color: var(--text); }

.feature-box { background: var(--paper); border-left: 4px solid var(--red); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; padding: 1.75rem 1.75rem 1.5rem; margin: 2.5rem 0; }
.feature-box h2 { font-size: 1.6rem; text-transform: uppercase; margin-bottom: 1rem; }
.checklist { list-style: none; display: grid; gap: .6rem .75rem; grid-template-columns: 1fr; }
.checklist li { display: flex; gap: .6rem; align-items: flex-start; color: var(--text-2); }
.checklist .icon { color: var(--red); width: 1.35em; height: 1.35em; flex: 0 0 auto; margin-top: .1em; }
@media (min-width: 700px) { .checklist { grid-template-columns: 1fr 1fr; } }

.faq { margin-top: 3rem; }
.faq h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); text-transform: uppercase; margin-bottom: 1rem; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; cursor: pointer; list-style: none; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .icon { color: var(--red); transition: transform .25s var(--ease); flex: 0 0 auto; }
.faq__item[open] summary .icon { transform: rotate(180deg); }
.faq__answer { padding: 0 0 1.25rem; color: var(--text-2); max-width: 65ch; }
.faq__answer p { margin: 0; }

.call-card { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 1.75rem; display: grid; gap: .65rem; }
.call-card__title { font-size: 1.7rem; text-transform: uppercase; }
.call-card p { color: #c9ccd1; margin: 0 0 .5rem; }
.call-card__mail { display: inline-flex; align-items: center; gap: .5rem; color: #fff; text-decoration: none; margin-top: .5rem; font-weight: 500; word-break: break-all; }
.call-card__mail:hover { color: var(--red-hot); }
.call-card__link { display: inline-flex; align-items: center; gap: .4rem; color: var(--steel-2); text-decoration: none; font-size: .95rem; }
.call-card__link:hover { color: #fff; }
.related-card { background: var(--paper); border-radius: var(--radius-lg); padding: 1.5rem; }
.related-card h3 { font-size: 1.3rem; text-transform: uppercase; margin-bottom: .75rem; letter-spacing: .04em; }
.related-card ul { list-style: none; display: grid; gap: .35rem; }
.related-card a { display: flex; align-items: center; gap: .6rem; padding: .6rem .75rem; margin-inline: -.75rem; border-radius: 6px; text-decoration: none; font-weight: 500; }
.related-card a .icon:first-child { color: var(--red); }
.related-card a .icon:last-child { margin-left: auto; color: var(--steel-3); }
.related-card a:hover { background: #fff; }
.related-card a:hover .icon:last-child { color: var(--red); }

.service-group + .service-group { margin-top: 3.5rem; }
.service-group__head { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.service-group__head h2 { font-size: 2rem; text-transform: uppercase; }
.service-group__head p { color: var(--text-3); margin: 0; }

/* ---------- fleet ---------- */
.unit-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.unit-card { background: var(--ink-3); border: 1px solid rgb(255 255 255 / .08); border-radius: var(--radius-lg); overflow: hidden; }
.unit-card__head { padding: 1.5rem 1.5rem 1.25rem; background: linear-gradient(135deg, var(--ink-4), var(--ink-3)); border-bottom: 3px solid var(--red); }
.unit-card__count { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red-hot); }
.unit-card__name { font-size: 2rem; text-transform: uppercase; margin-top: .25rem; }
.unit-card__type { color: var(--steel-2); font-size: .95rem; margin: .25rem 0 0; }
.spec-list { margin: 0; padding: .75rem 1.5rem 1.25rem; }
.spec-list > div { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem 0; border-bottom: 1px solid rgb(255 255 255 / .08); }
.spec-list > div:last-child { border-bottom: 0; }
.spec-list dt { color: var(--steel-2); font-size: .92rem; }
.spec-list dd { margin: 0; font-weight: 600; text-align: right; }
.gallery { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
.gallery__item { margin: 0; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; background: var(--ink-3); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.04); }
@media (min-width: 900px) { .gallery { grid-template-columns: repeat(4, 1fr); } }

/* ---------- about ---------- */
.about-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 1000px) { .about-grid { grid-template-columns: minmax(0, 1fr) 380px; gap: 4rem; } }
.detail-card { background: var(--paper); border-radius: var(--radius-lg); padding: 1.6rem 1.6rem 1.4rem; }
.detail-card h3 { font-size: 1.4rem; text-transform: uppercase; margin-bottom: .75rem; letter-spacing: .04em; }
.detail-card a { color: var(--text); }
.detail-card__big { font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; margin: 0 0 .25rem; }
.detail-card__big a { text-decoration: none; color: var(--red); }
.detail-card__link { display: inline-flex; align-items: center; gap: .4rem; margin-top: .75rem; font-weight: 600; color: var(--red) !important; text-decoration: none; }
.detail-list { margin: 0; display: grid; gap: .6rem; }
.detail-list > div { display: grid; gap: .1rem; }
.detail-list dt { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); font-weight: 600; }
.detail-list dd { margin: 0; font-weight: 500; }

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 1000px) { .contact-grid { grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: 4rem; } }
.contact-form__title { font-size: 2rem; text-transform: uppercase; margin-bottom: 1.25rem; }
.contact-form { display: grid; gap: 1.1rem; }
.form-row { display: grid; gap: .4rem; }
.form-row--2 { grid-template-columns: 1fr; gap: 1.1rem; }
.form-row--2 > div { display: grid; gap: .4rem; }
@media (min-width: 640px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.form-row label, .field label { font-family: var(--font-display); font-weight: 600; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.req { color: var(--red); }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgb(211 16 26 / .12); }
.contact-form textarea { resize: vertical; min-height: 150px; }
.form-row--hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-note { color: var(--text-3); font-size: .9rem; margin: 0; }
.form-note a { color: var(--red); }
.form-status { margin: 0; font-weight: 600; }
.form-status.is-error { color: var(--red); }
.contact-details { display: grid; gap: 1.25rem; align-content: start; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; background: var(--paper-2); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.notice { padding: 1.5rem 1.75rem; border-radius: var(--radius-lg); border: 1px solid; }
.notice h2 { font-size: 1.8rem; text-transform: uppercase; margin-bottom: .5rem; }
.notice--success { background: var(--success-tint); border-color: #bfe3c8; color: #14532d; }
.notice--success a:not(.btn) { color: inherit; }
.notice--success .btn { margin-top: .5rem; }
.notice--error { background: var(--red-tint); border-color: #f3c0c3; color: #7f1d1d; padding: 1rem 1.25rem; margin-bottom: 1rem; font-weight: 500; }

/* ---------- blog ---------- */
.empty-state { text-align: center; padding: 3rem 1rem; max-width: 480px; margin-inline: auto; }
.empty-state img { margin: 0 auto 1rem; opacity: .9; }
.empty-state h2 { font-size: 2rem; text-transform: uppercase; margin-bottom: .5rem; }
.empty-state a { color: var(--red); }
.post__header { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%); color: #fff; padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2.5rem, 6vw, 4rem); }
.post__title { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; text-transform: uppercase; line-height: .95; margin-top: .5rem; }
.post__media { margin-top: -2rem; position: relative; z-index: 1; }
.post__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.post__body { padding-block: clamp(2.5rem, 6vw, 4rem) 1rem; max-width: none; font-size: 1.1rem; }
.post__body h2 { margin-top: 2.25rem; }
.post__footer { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1rem; padding: 1.5rem 0 clamp(2.5rem, 6vw, 4rem); border-top: 1px solid var(--line); margin-top: 2rem; font-weight: 600; }
.post__footer a { color: var(--red); text-decoration: none; }
.post__footer a:hover { text-decoration: underline; }

/* ---------- error pages ---------- */
.error-page { text-align: center; padding-block: clamp(4rem, 12vw, 8rem); }
.error-page h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); text-transform: uppercase; font-weight: 800; margin-bottom: 1rem; }
.error-page p { color: var(--text-2); font-size: 1.1rem; }
.error-page p a { color: var(--red); }
.error-page__links { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 1.5rem; }

.draft-banner { background: #fff4d6; color: #7a5200; border-bottom: 1px solid #f0d58a; padding: .75rem var(--gutter); text-align: center; font-size: .95rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #d6d8db; border-top: 6px solid transparent; border-image: repeating-linear-gradient(135deg, var(--red) 0 14px, var(--ink-3) 14px 28px) 6; }
.footer__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; padding-block: clamp(3rem, 6vw, 4.5rem) 3rem; }
@media (min-width: 700px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .footer__grid { grid-template-columns: 1.7fr 1fr 1fr 1fr 1.1fr; gap: 2rem; } }
.footer__brand img { width: 160px; }
.footer__blurb { margin: 1.25rem 0; max-width: 380px; color: var(--steel-2); }
.footer__contact { list-style: none; display: grid; gap: .55rem; }
.footer__contact li { display: flex; align-items: flex-start; gap: .6rem; }
.footer__contact .icon { color: var(--red-hot); margin-top: .2em; }
.footer__contact a { color: #fff; text-decoration: none; font-weight: 600; }
.footer__contact a:hover { color: var(--red-hot); }
.footer__contact .sep { color: var(--steel); margin: 0 .2rem; }
.footer__title { font-size: 1.15rem; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--red); display: inline-block; }
.footer__links { list-style: none; display: grid; gap: .45rem; }
.footer__links a { color: var(--steel-2); text-decoration: none; }
.footer__links a:hover { color: #fff; }
.footer__address { color: var(--steel-2); line-height: 1.6; }
.footer__map { display: inline-flex; align-items: center; gap: .4rem; margin-top: .75rem; color: #fff; font-weight: 600; text-decoration: none; }
.footer__map:hover { color: var(--red-hot); }
.footer__bottom { background: #000; border-top: 1px solid rgb(255 255 255 / .06); font-size: .85rem; color: var(--steel-2); }
.footer__bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem 2rem; padding-block: 1.1rem; }
.footer__bottom p { margin: 0; max-width: 760px; }
.footer__legal { list-style: none; display: flex; gap: 1.25rem; }
.footer__legal a { color: var(--steel-2); text-decoration: none; }
.footer__legal a:hover { color: #fff; }

/* ---------- mobile call bar ---------- */
.call-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); border-top: 1px solid rgb(255 255 255 / .1); padding: .5rem; gap: .5rem; padding-bottom: calc(.5rem + env(safe-area-inset-bottom)); }
.call-bar__btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .8rem; border-radius: 4px; color: #fff; text-decoration: none; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: 1.05rem; background: var(--ink-3); }
.call-bar__btn--primary { background: var(--red); }
@media (max-width: 899px) { body { padding-bottom: 68px; } }
@media (min-width: 900px) { .call-bar { display: none; } }

/* ---------- motion ---------- */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll, .header-phone__icon { animation: none; }
  .btn, .feature-card, .service-card, .post-card { transition: none; }
}

@media print {
  .topbar, .site-header, .call-bar, .cta-band, .hero__scroll, .site-footer { display: none !important; }
  body { padding: 0; color: #000; }
}
