/* ==========================================================================
   Oikonomopoulos Trans — theme
   Identity kept from the legacy site: brand red #ca1f26, charcoal #232331,
   logo gold. Wireframe kept. Execution modernised.
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
  --ink:      #14141b;
  --steel:    #232331;
  --steel-2:  #2d2d3a;
  --steel-3:  #3a3a4a;
  --red:      #ca1f26;
  --red-hi:   #ff3a2d;
  --gold:     #f5b301;
  --paper:    #f6f6f8;
  --paper-2:  #ecedf1;
  --white:    #ffffff;
  --body:     #4a4a58;

  --display: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --text:    "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --mono:    "Noto Sans Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --wrap: 1240px;
  --gut: clamp(1.25rem, 4vw, 2.5rem);
  --band: clamp(3.25rem, 6vw, 5.25rem);

  --r: 3px;
  --shadow: 0 1px 2px rgba(20,20,27,.05), 0 12px 32px -12px rgba(20,20,27,.18);
  --shadow-lift: 0 2px 4px rgba(20,20,27,.06), 0 28px 56px -20px rgba(20,20,27,.32);
  --ease: cubic-bezier(.2,.7,.3,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--text);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-hi); }
button { font: inherit; }

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -.012em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); letter-spacing: -.022em; }
h2 { font-size: clamp(1.6rem, 2.9vw, 2.25rem); letter-spacing: -.018em; }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); letter-spacing: -.01em; }
h4 { font-size: 1.125rem; }
p  { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

/* ---------- layout ---------- */
.wrap { width: min(100% - (var(--gut) * 2), var(--wrap)); margin-inline: auto; }
.band { padding-block: var(--band); }
.band--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.band--dark { background: var(--ink); color: #b9b9c6; }
.band--dark h2, .band--dark h3 { color: var(--white); }
.band--paper { background: var(--paper); }

/* section heading with rule — the rule encodes the band, not decoration */
.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 .9rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-weight: 700;
}
.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  max-width: 140px;
}
.band--dark .eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); max-width: 62ch; }

/* ==========================================================================
   SIGNATURE — the route manifest strip.
   A car-carrier's board: the countries the fleet actually runs, in mono,
   separated by gold pipes. Real coverage data, set like freight paperwork.
   ========================================================================== */
.manifest {
  background: var(--steel);
  border-block: 1px solid var(--steel-2);
  overflow: hidden;
  position: relative;
}
.manifest::before,
.manifest::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(40px, 8vw, 110px);
  z-index: 2;
  pointer-events: none;
}
.manifest::before { left: 0;  background: linear-gradient(90deg, var(--steel), transparent); }
.manifest::after  { right: 0; background: linear-gradient(270deg, var(--steel), transparent); }

.manifest__track {
  display: flex;
  width: max-content;
  animation: manifest-run 46s linear infinite;
}
.manifest:hover .manifest__track { animation-play-state: paused; }
.manifest__set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.manifest__item {
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #cfcfdb;
  padding: .95rem 1.5rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.manifest__item::after {
  content: "";
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.manifest__item--flag { color: var(--gold); }

@keyframes manifest-run { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .manifest__track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  .manifest__set:nth-child(2) { display: none; }
  .manifest::before, .manifest::after { display: none; }
}

/* ---------- topbar ---------- */
.topbar {
  background: var(--ink);
  color: #9d9dae;
  font-size: .82rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__in {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.6rem;
  align-items: center;
  padding-block: .6rem;
  min-height: 44px;
}
.topbar__i { display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap; }
.topbar__i svg { width: 14px; height: 14px; flex: 0 0 14px; color: var(--red); }
.topbar a { color: #cdcdd8; }
.topbar a:hover { color: var(--gold); }
.topbar__spacer { flex: 1; }
.topbar__hours { color: #7d7d8e; font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; }
@media (max-width: 860px) { .topbar__hours, .topbar__spacer { display: none; } }

/* ---------- header ---------- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--paper-2);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 6px 24px -12px rgba(20,20,27,.28); }
.site-header__in {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 84px;
}
.brand { flex-shrink: 0; display: block; }
.brand img { height: clamp(38px, 5vw, 50px); width: auto; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: .96rem;
  letter-spacing: .01em;
  color: var(--steel);
  padding: .65rem .85rem;
  border-radius: var(--r);
  position: relative;
  transition: color .2s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: .85rem; right: .85rem; bottom: .35rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav__link:hover { color: var(--red); }
.nav__link:hover::after,
.nav__item--active > .nav__link::after { transform: scaleX(1); }
.nav__item--active > .nav__link { color: var(--red); }

.nav__item { position: relative; }
.nav__sub {
  position: absolute;
  top: calc(100% + .3rem);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--paper-2);
  border-top: 2px solid var(--red);
  border-radius: var(--r);
  box-shadow: var(--shadow-lift);
  list-style: none;
  margin: 0;
  padding: .4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .22s var(--ease);
  z-index: 5;
}
.nav__item:hover > .nav__sub,
.nav__item:focus-within > .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__sub .nav__link { font-size: .95rem; padding: .55rem .75rem; }
.nav__sub .nav__link::after { display: none; }
.nav__sub .nav__link:hover { background: var(--paper); }
.nav__item--has > .nav__link::before {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-right: .45rem;
  opacity: .5;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .005em;
  padding: .8rem 1.5rem;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .24s var(--ease);
  white-space: nowrap;
  text-align: center;
}
.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: var(--red-hi); color: var(--white); }
.btn--ghost { border-color: rgba(255,255,255,.3); color: var(--white); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--dark { background: var(--steel); color: var(--white); }
.btn--dark:hover { background: var(--ink); color: var(--gold); }
.btn--lg { padding: .95rem 1.9rem; font-size: 1rem; }
.header-cta { flex-shrink: 0; }
@media (max-width: 1140px) { .header-cta { display: none; } }

/* burger */
.burger {
  display: none;
  margin-left: auto;
  width: 46px; height: 46px;
  background: var(--paper);
  border: 1px solid var(--paper-2);
  border-radius: var(--r);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.burger span {
  position: absolute;
  left: 13px; right: 13px;
  height: 2px;
  background: var(--steel);
  transition: all .26s var(--ease);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

@media (max-width: 1024px) {
  .burger { display: block; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(88vw, 360px);
    background: var(--white);
    padding: 5.5rem 1.25rem 2rem;
    transform: translateX(100%);
    transition: transform .32s var(--ease);
    overflow-y: auto;
    box-shadow: -20px 0 60px -30px rgba(0,0,0,.5);
    z-index: 70;
    margin: 0;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { padding: .9rem .5rem; border-bottom: 1px solid var(--paper-2); border-radius: 0; }
  .nav__link::after { display: none; }
  .nav__sub {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-left: 2px solid var(--paper-2);
    margin: 0 0 0 .6rem; padding: 0 0 0 .5rem; min-width: 0;
  }
  .nav__item--has > .nav__link::before { display: none; }
  .nav-scrim {
    position: fixed; inset: 0; background: rgba(20,20,27,.55);
    opacity: 0; visibility: hidden; transition: all .3s var(--ease); z-index: 65;
  }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }
}

/* ---------- hero ---------- */
.hero { position: relative; background: var(--ink); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(20,20,27,.94) 0%, rgba(20,20,27,.72) 42%, rgba(20,20,27,.35) 100%),
    linear-gradient(0deg, rgba(20,20,27,.9) 0%, transparent 45%);
}
.hero__in {
  position: relative;
  z-index: 2;
  padding-block: clamp(3rem, 7vw, 5.5rem);
  max-width: 780px;
}
.hero__kicker {
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.4rem;
  padding: .45rem .9rem .45rem .7rem;
  border: 1px solid rgba(245,179,1,.32);
  border-radius: 2rem;
  background: rgba(245,179,1,.07);
}


.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #c3c3d1;
  max-width: 56ch;
  margin-bottom: 2.2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* page header (interior) */
.pagehead { position: relative; background: var(--steel); overflow: hidden; }
.pagehead__media { position: absolute; inset: 0; }
.pagehead__media img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.pagehead__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,20,27,.93), rgba(20,20,27,.6));
}
.pagehead__in { position: relative; z-index: 2; padding-block: clamp(3rem, 7vw, 5.5rem); }
.pagehead h1 { color: var(--white); margin-bottom: .35rem; }
.pagehead p { color: #b6b6c6; max-width: 60ch; margin: 0; }

.crumbs {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8b8b9d;
  margin-bottom: 1.1rem;
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.crumbs a { color: #b8b8c8; }
.crumbs a:hover { color: var(--gold); }
.crumbs span[aria-hidden] { color: var(--red); }

/* ---------- service cards over hero edge (legacy wireframe kept) ---------- */
.deck {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: var(--paper-2);
  border: 1px solid var(--paper-2);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: -68px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-lift);
}
@media (max-width: 720px) { .deck { margin-top: -36px; } }
.deck__cell {
  background: var(--white);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  position: relative;
  /* the whole cell is a link — reset the inherited link colour for body copy */
  color: var(--body);
  transition: background .26s var(--ease);
}
.deck__cell h3 { color: var(--ink); }
.deck__cell p { color: var(--body); }
.deck__more { color: var(--red); }
.deck__cell::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.deck__cell:hover { background: var(--paper); }
.deck__cell:hover::before { transform: scaleX(1); }
.deck__ico { width: 34px; height: 34px; color: var(--red); }
.deck__cell h3 { margin: 0; font-size: 1.2rem; text-transform: uppercase; letter-spacing: .01em; }
.deck__cell p { font-size: .95rem; margin: 0; }
.deck__more {
  margin-top: auto;
  padding-top: .8rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: .45rem;
}
.deck__more::after { content: "→"; transition: transform .24s var(--ease); }
.deck__cell:hover .deck__more::after { transform: translateX(4px); }

/* ---------- services grid ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.svc {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--paper-2);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.svc:hover { border-color: var(--steel-3); box-shadow: var(--shadow); }
.svc__fig { aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-2); position: relative; }
.svc__fig img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc:hover .svc__fig img { transform: scale(1.06); }
.svc__no {
  position: absolute; left: 0; bottom: 0;
  font-family: var(--mono); font-size: .7rem; font-weight: 700;
  letter-spacing: .16em;
  background: var(--red); color: var(--white);
  padding: .35rem .7rem;
}
.svc__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.svc__body h3 { margin: 0; text-transform: uppercase; font-size: 1.15rem; }
.svc__body p { font-size: .95rem; margin: 0; }
.svc__link {
  margin-top: auto; padding-top: 1rem;
  font-family: var(--mono); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .45rem;
}
.svc__link::after { content: "→"; transition: transform .24s var(--ease); }
.svc:hover .svc__link::after { transform: translateX(4px); }

/* ---------- pillars (their own "four axes") ---------- */
.axes { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; margin-top: 2.75rem; }
.axis {
  background: var(--steel);
  border: 1px solid var(--steel-2);
  border-radius: var(--r);
  padding: 1.9rem 1.5rem;
  display: flex; flex-direction: column; gap: .7rem;
  position: relative;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.axis:hover { border-color: var(--gold); }
.axis__ico { width: 30px; height: 30px; color: var(--gold); }
.axis h3 { font-size: 1.08rem; margin: 0; color: var(--white); text-transform: uppercase; }
.axis p { font-size: .92rem; margin: 0; color: #9d9dae; }

/* ---------- stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--steel-2);
  border: 1px solid var(--steel-2);
  border-radius: var(--r);
  overflow: hidden;
}
.stat { background: var(--ink); padding: 1.9rem 1.25rem; text-align: center; }
.stat__n {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat__n span { color: var(--gold); }
.stat__l {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8b8b9d;
  margin-top: .7rem;
  display: block;
}

/* ---------- split (image + copy) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split--flip .split__media { order: 2; }
@media (max-width: 900px) { .split--flip .split__media { order: 0; } }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--r); box-shadow: var(--shadow); }


/* checklist */
.checks { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: .8rem; }
.checks li { display: flex; align-items: flex-start; gap: .8rem; font-weight: 500; color: var(--ink); }
.band--dark .checks li { color: #dcdce6; }
.checks li::before {
  content: "";
  flex: 0 0 20px; height: 20px; margin-top: .3rem;
  background: var(--red);
  clip-path: polygon(14% 46%, 0 60%, 40% 100%, 100% 22%, 86% 8%, 38% 70%);
  border-radius: 2px;
}

/* ---------- gallery ---------- */
.gal { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: .75rem; }
.gal__i {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--paper-2);
  position: relative;
  cursor: zoom-in;
  display: block;
}
.gal__i img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.gal__i::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(202,31,38,.42), transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.gal__i:hover img { transform: scale(1.07); }
.gal__i:hover::after { opacity: 1; }

/* lightbox */
.lb {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(12,12,17,.95);
  display: none;
  align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lb.is-open { display: flex; }
.lb img { max-width: 100%; max-height: 86vh; object-fit: contain; border-radius: var(--r); }
.lb__close, .lb__nav {
  position: absolute;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem; line-height: 1;
  display: grid; place-items: center;
  transition: all .22s var(--ease);
}
.lb__close:hover, .lb__nav:hover { background: var(--red); border-color: var(--red); }
.lb__close { top: 1.4rem; right: 1.4rem; }
.lb__nav--prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lb__nav--next { right: 1.4rem; top: 50%; transform: translateY(-50%); }
.lb__count {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: .78rem; letter-spacing: .14em; color: #9d9dae;
}
@media (max-width: 640px) { .lb__nav { width: 42px; height: 42px; } .lb__nav--prev { left: .5rem; } .lb__nav--next { right: .5rem; } }

/* ---------- fleet table ---------- */
.fleet { display: grid; gap: 1px; background: var(--paper-2); border: 1px solid var(--paper-2); border-radius: var(--r); overflow: hidden; }
.fleet__row {
  background: var(--white);
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.15rem 1.5rem;
  transition: background .22s var(--ease);
}
.fleet__row:hover { background: var(--paper); }
.fleet__qty {
  font-family: var(--display);
  font-size: 2rem; font-weight: 700; line-height: 1;
  color: var(--red);
  display: flex; align-items: baseline; gap: .2rem;
}
.fleet__qty small { font-family: var(--mono); font-size: .6rem; letter-spacing: .12em; color: var(--body); font-weight: 700; }
.fleet__name { font-family: var(--display); font-size: 1.12rem; font-weight: 600; color: var(--ink); text-transform: uppercase; }
.fleet__body { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; color: var(--body); text-transform: uppercase; text-align: right; }
@media (max-width: 680px) {
  .fleet__row { grid-template-columns: 66px 1fr; gap: .8rem 1rem; }
  .fleet__body { grid-column: 2; text-align: left; }
}

/* ---------- certificates ---------- */
.certs { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.cert {
  border: 1px solid var(--paper-2);
  border-radius: var(--r);
  background: var(--white);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: block;
}
.cert:hover { border-color: var(--red); box-shadow: var(--shadow); }
.cert img { width: 100%; aspect-ratio: 3 / 4; object-fit: contain; background: var(--paper); padding: .75rem; }
.cert__c { padding: .9rem 1.1rem; border-top: 1px solid var(--paper-2); font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--body); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { display: grid; gap: 1.5rem; margin-top: 2rem; }
.info { display: flex; gap: 1.1rem; align-items: flex-start; }
.info__ico {
  flex: 0 0 46px; height: 46px;
  border-radius: var(--r);
  background: var(--red);
  color: var(--white);
  display: grid; place-items: center;
}
.info__ico svg { width: 20px; height: 20px; }
.info__k { font-family: var(--mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: .2rem; }
.info__v { font-weight: 600; color: var(--ink); line-height: 1.5; }
.info__v a { color: var(--ink); }
.info__v a:hover { color: var(--red); }
.band--dark .info__v, .band--dark .info__v a { color: var(--white); }

.map-frame { border: 0; width: 100%; height: 420px; border-radius: var(--r); display: block; filter: grayscale(1) contrast(1.05); transition: filter .4s var(--ease); }
.map-frame:hover { filter: grayscale(0); }

/* ---------- forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--paper-2);
  border-top: 3px solid var(--red);
  border-radius: var(--r);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow);
}
.band--dark .form-card { background: var(--steel); border-color: var(--steel-2); border-top-color: var(--red); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.field label {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--body);
  font-weight: 700;
}
.band--dark .field label { color: #9d9dae; }
.field input, .field textarea, .field select {
  font-family: var(--text);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--paper-2);
  border-radius: var(--r);
  padding: .85rem 1rem;
  width: 100%;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.band--dark .field input, .band--dark .field textarea, .band--dark .field select {
  background: var(--ink); border-color: var(--steel-2); color: var(--white);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--red);
  background: var(--white);
  outline: none;
}
.band--dark .field input:focus, .band--dark .field textarea:focus { background: #0f0f15; }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--body); margin-top: 1rem; }
.band--dark .form-note { color: #8b8b9d; }

.alert { padding: 1rem 1.25rem; border-radius: var(--r); margin-bottom: 1.25rem; font-size: .95rem; border-left: 3px solid; }
.alert--ok  { background: #ecf8f0; color: #1c6b38; border-color: #1c6b38; }
.alert--err { background: #fdecec; color: #9d1f24; border-color: var(--red); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--red); color: var(--white); position: relative; overflow: hidden; }
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 55%, rgba(255,255,255,.08));
}
.cta-band__in { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 1.75rem; align-items: center; justify-content: space-between; }
.cta-band h2 { color: var(--white); margin: 0 0 .3rem; }
.cta-band p { margin: 0; color: rgba(255,255,255,.9); max-width: 54ch; }
.cta-band .btn--dark:hover { color: var(--gold); }

/* ---------- article / prose ---------- */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.2em; }
.prose h3 { margin-top: 1.8em; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .45em; }
.prose img { border-radius: var(--r); margin: 2rem 0; }
.prose blockquote {
  border-left: 3px solid var(--red);
  margin: 2rem 0; padding: .3rem 0 .3rem 1.4rem;
  font-size: 1.1rem; color: var(--ink); font-style: italic;
}
.prose strong { color: var(--ink); font-weight: 700; }
.band--dark .prose strong { color: var(--white); }

/* ---------- post cards ---------- */
.posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.post {
  border: 1px solid var(--paper-2);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.post:hover { border-color: var(--steel-3); box-shadow: var(--shadow); }
.post__fig { aspect-ratio: 16/10; overflow: hidden; background: var(--paper-2); }
.post__fig img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post:hover .post__fig img { transform: scale(1.05); }
.post__b { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.post__meta { font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--red); }
.post__b h3 { margin: 0; font-size: 1.15rem; }
.post__b h3 a { color: var(--ink); }
.post__b h3 a:hover { color: var(--red); }
.post__b p { font-size: .93rem; margin: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #8b8b9d; padding-block: clamp(3rem, 6vw, 4.5rem) 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.3fr; gap: clamp(2rem, 5vw, 3.5rem); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1.2rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--steel-2);
  position: relative;
}
.site-footer h4::after {
  content: ""; position: absolute; left: 0; bottom: -1px; width: 42px; height: 1px; background: var(--red);
}
.footer-logo { height: 44px; width: auto; margin-bottom: 1.2rem; }
.site-footer p { font-size: .93rem; }
.flinks { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.flinks a { color: #9d9dae; font-size: .93rem; display: inline-flex; align-items: center; gap: .5rem; }
.flinks a::before { content: "›"; color: var(--red); font-size: 1.1rem; line-height: 1; }
.flinks a:hover { color: var(--gold); }

.espa {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-block: 1.5rem;
  border-top: 1px solid var(--steel-2);
  display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; justify-content: center;
}
.espa img { background: var(--white); border-radius: 2px; padding: 4px; max-height: 70px; width: auto; }

.copyright {
  border-top: 1px solid var(--steel-2);
  padding-block: 1.35rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; align-items: center; justify-content: space-between;
  font-size: .84rem;
}
.copyright a { color: #9d9dae; }
.copyright a:hover { color: var(--gold); }

/* to top */
.totop {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 55;
  width: 46px; height: 46px; border-radius: var(--r);
  background: var(--red); color: var(--white);
  border: 0; cursor: pointer;
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s var(--ease);
  box-shadow: 0 10px 26px -10px rgba(202,31,38,.8);
}
.totop.is-on { opacity: 1; visibility: visible; transform: translateY(0); }
.totop:hover { background: var(--red-hi); }
.totop svg { width: 18px; height: 18px; }

/* ---------- reveal ---------- */
/* Content is visible by default. Only a JS-capable browser opts into the
   reveal, so a failed/blocked script can never leave the page blank. */
.js .rv { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .rv.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .rv { opacity: 1; transform: none; transition: none; } }

/* ---------- utils ---------- */
.skip {
  position: absolute; left: -9999px;
  background: var(--red); color: #fff; padding: .8rem 1.2rem; z-index: 300; border-radius: var(--r);
}
.skip:focus { left: 1rem; top: 1rem; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .eyebrow::after { display: none; }
.center .lede { margin-inline: auto; }
.mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.vh { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ==========================================================================
   BUSINESS LAYER
   Trust proof surfaced early, a real process sequence, and a persistent
   mobile contact bar — the three things B2B logistics buyers look for.
   ========================================================================== */

/* ---------- hero proof chips: credentials inside the first screen ---------- */
.hero__proof {
  display: flex; flex-wrap: wrap; gap: .5rem .6rem;
  margin-top: 1.9rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero__chip {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 500; color: #d6d6e2;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 2rem;
  padding: .42rem .9rem;
}
.hero__chip svg { width: 14px; height: 14px; color: var(--gold); flex: 0 0 14px; }
.hero__chip b { color: var(--white); font-weight: 600; }

/* ---------- trust bar: sits directly under the hero ---------- */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--paper-2);
}
.trust__in {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
  gap: 1px;
  background: var(--paper-2);
  border-inline: 1px solid var(--paper-2);
}
.trust__i {
  background: var(--white);
  padding: 1.5rem 1.35rem;
  display: flex; align-items: flex-start; gap: .85rem;
}
.trust__i svg { width: 22px; height: 22px; color: var(--red); flex: 0 0 22px; margin-top: .15rem; }
.trust__n {
  font-family: var(--display); font-size: 1.35rem; font-weight: 600;
  color: var(--ink); line-height: 1.1; display: block; letter-spacing: -.02em;
}
.trust__l {
  font-size: .82rem; color: var(--body); display: block; margin-top: .2rem; line-height: 1.4;
}

/* ---------- process: a genuine sequence, so it is numbered ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-top: 2.75rem;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--paper-2);
  border-radius: var(--r);
  padding: 1.75rem 1.5rem 1.6rem;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--mono);
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  color: var(--red);
  display: block; margin-bottom: .85rem;
}
.step::after {
  content: "";
  position: absolute; top: 2.15rem; right: -1.25rem;
  width: 1.25rem; height: 1px; background: var(--paper-2);
}
.step:last-child::after { display: none; }
@media (max-width: 760px) { .step::after { display: none; } }
.step h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.step p { margin: 0; font-size: .92rem; }

/* ---------- certification strip ---------- */
.certbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1rem 2.25rem;
  padding: 1.5rem 0;
}
.certbar__i {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .88rem; color: var(--body);
}
.certbar__i svg { width: 26px; height: 26px; color: var(--red); flex: 0 0 26px; }
.certbar__i b { color: var(--ink); font-weight: 600; display: block; font-size: .95rem; }
.certbar__i span { font-size: .78rem; }

/* ---------- response promise ---------- */
.promise {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .88rem; font-weight: 500; color: var(--ink);
  background: #eef7f1; border: 1px solid #cfe7d8;
  border-radius: var(--r); padding: .6rem 1rem; margin-bottom: 1.35rem;
}
.promise svg { width: 16px; height: 16px; color: #1c6b38; flex: 0 0 16px; }
.band--dark .promise { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: #dcdce6; }
.band--dark .promise svg { color: var(--gold); }

/* ---------- sticky mobile contact bar ---------- */
.mobar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 58;
  display: none;
  background: var(--white);
  border-top: 1px solid var(--paper-2);
  box-shadow: 0 -6px 24px -14px rgba(20,20,27,.4);
  padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom));
  gap: .5rem;
}
.mobar a {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 46px;
  font-family: var(--display); font-weight: 600; font-size: .92rem;
  border-radius: var(--r);
}
.mobar svg { width: 16px; height: 16px; }
.mobar__call { background: var(--steel); color: var(--white); }
.mobar__quote { background: var(--red); color: var(--white); }
.mobar__call:hover, .mobar__quote:hover { color: var(--white); }
@media (max-width: 720px) {
  .mobar { display: flex; }
  body { padding-bottom: 62px; }
  .totop { bottom: 74px; }
}
