:root {
  --color-bg: oklch(1 0 0);
  --color-surface: oklch(0.982 0.004 250);
  --color-surface-strong: oklch(0.957 0.012 248);
  --color-ink: oklch(0.210 0.060 258);
  --color-muted: oklch(0.420 0.035 255);
  --color-primary: oklch(0.265 0.110 259);
  --color-primary-strong: oklch(0.190 0.092 258);
  --color-primary-soft: oklch(0.930 0.030 255);
  --color-accent: oklch(0.690 0.145 83);
  --color-accent-strong: oklch(0.570 0.130 78);
  --color-accent-soft: oklch(0.925 0.070 86);
  --color-border: oklch(0.880 0.015 250);
  --color-white: oklch(1 0 0);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --shadow-tight: 0 8px 8px oklch(0.190 0.092 258 / 0.10);
  --header-height: 82px;
  --container: min(1180px, calc(100vw - 40px));
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
  padding: 12px max(24px, calc((100vw - 1280px) / 2));
  background: oklch(1 0 0 / 0.94);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 58px;
  height: 58px;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-mark path,
.brand-mark ellipse,
.hero-logo-mark path,
.hero-logo-mark ellipse,
.service-icon svg,
.proof-strip svg,
.contact-method svg,
.button svg,
.footer-brand svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.brand-mark svg {
  color: var(--color-accent);
}

.brand-mark circle {
  fill: var(--color-primary);
}

.brand-text strong,
.hero-logo strong {
  display: grid;
  gap: 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 1.1rem + 1vw, 2rem);
  font-weight: 800;
  line-height: 0.8;
  text-transform: uppercase;
}

.brand-text strong span:last-child,
.hero-logo strong span:last-child {
  color: var(--color-accent-strong);
}

.brand-text small,
.hero-logo small {
  display: block;
  max-width: 135px;
  margin-top: 7px;
  color: var(--color-muted);
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 32px);
}

.site-nav a {
  color: var(--color-ink);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease;
}

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

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  color: var(--color-white);
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.1;
}

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

.button-primary {
  background: var(--color-primary);
  box-shadow: 0 8px 8px oklch(0.190 0.092 258 / 0.16);
}

.button-primary:hover {
  background: var(--color-primary-strong);
}

.button-accent {
  background: var(--color-accent-strong);
  box-shadow: 0 8px 8px oklch(0.570 0.130 78 / 0.18);
}

.button-accent:hover {
  background: oklch(0.510 0.125 76);
}

.button-large {
  min-height: 56px;
  padding-inline: 28px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-bg);
  color: var(--color-primary);
}

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

.hero {
  position: relative;
  display: grid;
  min-height: clamp(620px, calc(100svh - var(--header-height)), 790px);
  overflow: clip;
  background: var(--color-bg);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(1 0 0 / 0.08) 0%, oklch(1 0 0 / 0.58) 33%, oklch(1 0 0 / 0.60) 55%, oklch(1 0 0 / 0.02) 100%),
    linear-gradient(0deg, oklch(1 0 0 / 0.34) 0%, oklch(1 0 0 / 0) 36%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  max-width: 790px;
  padding: 58px 0 132px;
  text-align: center;
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  text-align: left;
}

.hero-logo-mark {
  width: clamp(82px, 9vw, 132px);
  height: clamp(82px, 9vw, 132px);
  color: var(--color-accent-strong);
}

.hero-logo-mark circle {
  fill: var(--color-primary);
}

.hero-logo strong {
  font-size: clamp(3.1rem, 6vw, 5.7rem);
}

.hero-logo small {
  max-width: 280px;
  font-size: clamp(0.8rem, 1.3vw, 1.15rem);
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.7vw, 4.75rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1::after {
  content: "";
  display: block;
  width: min(300px, 60vw);
  height: 3px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.hero p {
  max-width: 690px;
  margin: 20px auto 0;
  color: oklch(0.255 0.045 255);
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  font-weight: 600;
  text-wrap: pretty;
}

.hero-actions {
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.proof-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: var(--color-primary);
  color: var(--color-white);
}

.proof-strip article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  min-height: 104px;
  padding: 22px 20px;
  border-right: 1px solid oklch(1 0 0 / 0.23);
}

.proof-strip article:last-child {
  border-right: 0;
}

.proof-strip svg {
  width: 46px;
  height: 46px;
  color: var(--color-accent);
  stroke-width: 1.8;
}

.proof-strip h2 {
  margin: 0 0 4px;
  font-size: 0.96rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.proof-strip p {
  margin: 0;
  color: oklch(0.940 0.018 250);
  font-size: 0.86rem;
  line-height: 1.25;
}

.section {
  padding: clamp(64px, 8vw, 112px) 0;
}

.section-heading {
  max-width: 670px;
  margin-bottom: 36px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.quote-band h2,
.contact-copy h2 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.7vw, 4rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-heading p,
.about-copy p,
.about-panel p,
.quote-band p,
.contact-copy p {
  max-width: 70ch;
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 1.08rem;
  font-weight: 500;
}

.import-section {
  background: var(--color-bg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: var(--shadow-tight);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: -31px 0 -24px 20px;
  border: 5px solid var(--color-bg);
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
}

.service-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.8;
}

.service-body {
  padding: 38px 24px 24px;
}

.service-body h3 {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.52rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.service-body ul,
.about-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-body li {
  position: relative;
  padding-left: 22px;
  color: var(--color-ink);
  font-weight: 600;
}

.service-body li + li {
  margin-top: 6px;
}

.service-body li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: inset 0 0 0 2px var(--color-accent-strong);
}

.about-section {
  background: linear-gradient(180deg, var(--color-surface), var(--color-bg));
}

.about-layout,
.services-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.about-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-list span {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-bg);
  color: var(--color-primary);
  font-weight: 800;
}

.about-panel {
  padding: clamp(28px, 4vw, 42px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, oklch(0.190 0.092 258 / 0.95), oklch(0.280 0.120 259 / 0.92)),
    url("assets/hero-logistics.png") center / cover;
  color: var(--color-white);
}

.about-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.about-panel p {
  color: oklch(0.930 0.016 250);
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--color-accent);
  font-weight: 800;
  text-transform: uppercase;
}

.services-section {
  background: var(--color-primary);
  color: var(--color-white);
}

.services-section .section-heading h2,
.services-section .section-heading p {
  color: var(--color-white);
}

.services-section .section-heading p {
  color: oklch(0.920 0.018 250);
}

.service-rail {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: oklch(1 0 0 / 0.22);
}

.service-rail article {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  padding: 26px;
  background: oklch(0.220 0.090 258 / 0.94);
}

.service-rail span {
  color: var(--color-accent);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-rail h3,
.service-rail p {
  grid-column: 2;
}

.service-rail h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.service-rail p {
  margin: 0;
  color: oklch(0.910 0.015 250);
}

.process-section {
  background: var(--color-surface);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 230px;
  padding: 28px 20px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-bg);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-primary-strong);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.process-list h3 {
  margin: 22px 0 8px;
  color: var(--color-primary);
  font-size: 1.16rem;
  text-transform: uppercase;
}

.process-list p {
  margin: 0;
  color: var(--color-muted);
  font-weight: 500;
}

.quote-band {
  padding: clamp(42px, 6vw, 72px) 0;
  background:
    linear-gradient(90deg, oklch(0.190 0.092 258 / 0.96), oklch(0.290 0.120 259 / 0.90)),
    url("assets/hero-logistics.png") center 62% / cover;
  color: var(--color-white);
}

.quote-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.quote-band h2,
.quote-band p {
  color: var(--color-white);
}

.quote-band p {
  color: oklch(0.920 0.018 250);
}

.contact-section {
  background: var(--color-bg);
}

.contact-layout {
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-method {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--color-primary);
  font-weight: 800;
}

.contact-method svg {
  width: 25px;
  height: 25px;
  color: var(--color-accent-strong);
  stroke-width: 1.8;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: var(--shadow-tight);
}

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

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-bg);
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 600;
}

.quote-form input,
.quote-form select {
  min-height: 48px;
  padding: 0 14px;
}

.quote-form textarea {
  resize: vertical;
  min-height: 132px;
  padding: 12px 14px;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: oklch(0.470 0.030 255);
}

.form-note {
  margin: -4px 0 0;
  color: var(--color-muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-footer {
  padding: 34px 0;
  background: var(--color-primary-strong);
  color: var(--color-white);
}

.footer-layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer-brand .brand-text small,
.site-footer p {
  color: oklch(0.900 0.015 250);
}

.footer-brand .brand-mark circle {
  fill: oklch(0.300 0.120 258);
}

.footer-brand .brand-text strong span:first-child {
  color: var(--color-white);
}

.site-footer p {
  margin: 0;
}

.footer-cta {
  color: var(--color-accent);
  font-weight: 800;
  text-transform: uppercase;
}

[data-reveal] {
  transform: translateY(18px);
  opacity: 1;
  transition: transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
  }

  .site-nav {
    display: none;
    justify-content: start;
    flex-wrap: wrap;
    padding-top: 12px;
  }

  .header-actions {
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: flex;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 74px;
    --container: min(100% - 28px, 760px);
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    opacity: 0.82;
    object-position: center bottom;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, oklch(1 0 0 / 0.72) 0%, oklch(1 0 0 / 0.62) 42%, oklch(1 0 0 / 0.18) 100%),
      linear-gradient(90deg, oklch(1 0 0 / 0.28), oklch(1 0 0 / 0.10));
  }

  .hero-content {
    padding: 50px 0 28px;
  }

  .proof-strip {
    position: relative;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  .proof-strip article:nth-child(2) {
    border-right: 0;
  }

  .proof-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid oklch(1 0 0 / 0.23);
  }

  .about-layout,
  .services-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list li {
    min-height: 0;
  }

  .quote-layout,
  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
    display: flex;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    padding-inline: 14px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-text strong {
    font-size: 1.35rem;
  }

  .brand-text small {
    max-width: 112px;
    font-size: 0.54rem;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    gap: 0;
  }

  .site-nav a {
    padding: 11px 0;
    border-bottom: 1px solid var(--color-border);
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-logo {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .hero-logo-mark {
    width: 84px;
    height: 84px;
  }

  .hero-logo strong {
    font-size: 3rem;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4.1rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .header-actions {
    width: 100%;
  }

  .button,
  .button-large {
    width: 100%;
    min-height: 52px;
    padding-inline: 16px;
  }

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

  .proof-strip article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid oklch(1 0 0 / 0.23);
  }

  .proof-strip article:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 58px;
  }

  .section-heading h2,
  .about-copy h2,
  .quote-band h2,
  .contact-copy h2 {
    font-size: clamp(2.25rem, 13vw, 3.25rem);
  }

  .service-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .service-card img {
    aspect-ratio: 1.62 / 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    transform: none;
  }
}
