:root {
  --accent: #0274be;
  --accent-hover: #025a91;
  --dark: #0a1a2a;
  --dark-2: #142536;
  --light: #f4f7fb;
  --white: #ffffff;
  --tint: #eaf3fa;
  --border: #cdd9e4;
  --text: #162234;
  --text-mid: #4a5a6e;
  --max: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Saira', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

/* === HEADER / NAV === */
.site-header {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid var(--dark-2);
}

.nav-bar {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 64px;
}

.wordmark {
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 180ms ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  font-weight: 700;
  transition: background 180ms ease;
}

.nav-cta:hover { background: var(--accent-hover); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  transition: transform 200ms ease, opacity 200ms ease;
  display: block;
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* === HERO === */
.hero {
  background: var(--dark);
  padding: 4.5rem 1.5rem 4rem;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 1.1rem;
}

.hero-text .eyebrow {
  color: #6ba8d4;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 36ch;
  margin-bottom: 1.8rem;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--dark-2);
}

/* === ROUTE STRIP === */
.route-strip {
  width: 100%;
  overflow: hidden;
  background: var(--dark);
  border-bottom: 1px solid var(--dark-2);
}

.route-strip img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 80px;
  object-fit: cover;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.85rem 1.6rem;
  min-height: 48px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-filled {
  background: var(--accent);
  color: var(--white);
}

.btn-filled:hover { background: var(--accent-hover); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover { border-color: var(--white); }

.btn-outline-light {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline-light:hover { background: var(--accent); color: var(--white); }

/* === TRUST === */
.trust {
  background: var(--light);
  padding: 5rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: var(--border);
}

.stat-num {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--text-mid);
  max-width: 18ch;
}

/* === SERVICES === */
.services {
  background: var(--white);
  padding: 6rem 1.5rem;
}

.section-head {
  max-width: var(--max);
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  color: var(--text);
}

.services-list {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-row--reverse .service-text { order: 2; }

.service-text { max-width: 42ch; }

.service-num {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.service-text h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 0.7rem;
  color: var(--text);
}

.service-text p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.65;
}

.service-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tint);
  padding: 2.5rem;
  min-height: 280px;
}

.service-visual svg {
  width: 100%;
  max-width: 200px;
  height: auto;
  color: var(--accent);
}

/* === WAREHOUSE === */
.warehouse {
  background: var(--light);
  padding: 6rem 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.warehouse-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.warehouse-image img {
  width: 100%;
  height: auto;
  display: block;
}

.warehouse-text h2 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.warehouse-text p {
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.warehouse-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
}

.warehouse-list li {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  padding-left: 1.3rem;
  position: relative;
}

.warehouse-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 2px;
  background: var(--accent);
}

/* === ABOUT === */
.about {
  background: var(--white);
  padding: 6rem 1.5rem;
}

.about-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about-inner h2 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  margin-bottom: 1.5rem;
  color: var(--text);
}

.about-inner p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  text-align: left;
}

/* === FINAL CTA === */
.final-cta {
  background: var(--dark);
  padding: 5.5rem 1.5rem;
}

.final-cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.cta-message h2 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-message p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 32ch;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-form {
  background: var(--dark-2);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-form h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form textarea {
  margin-bottom: 1rem;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
}

.form-notice {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: #6ba8d4;
  min-height: 1.2em;
}

.contact-info {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-info p {
  margin-bottom: 0.7rem;
}

.contact-info strong {
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

/* === FOOTER === */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--dark-2);
  padding: 3.5rem 1.5rem 0;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-top: 0.8rem;
  max-width: 30ch;
  line-height: 1.55;
}

.footer-col h4 {
  font-size: 0.78rem;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  font-weight: 800;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color 180ms ease;
}

.footer-col a:hover { color: var(--white); }

.footer-col p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.footer-address { margin-top: 0.6rem; }

.footer-note { color: #6ba8d4 !important; }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

/* === SCROLL REVEAL (JS-applied) === */
.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* === RESPONSIVE === */
@media (max-width: 700px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 280ms ease;
    border-bottom: 1px solid var(--dark-2);
  }

  .nav-links.open {
    max-height: 400px;
    padding: 0.5rem 1.5rem 1.5rem;
  }

  .nav-links a {
    padding: 0.9rem 0;
    min-height: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links a:last-child { border-bottom: none; }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
  }

  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    padding: 3rem 1.25rem 2.5rem;
  }

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .stat:not(:last-child)::after {
    top: auto;
    right: 25%;
    left: 25%;
    bottom: -1.25rem;
    width: auto;
    height: 1px;
  }

  .services { padding: 4rem 1.25rem; }
  .services-list { gap: 2.5rem; }
  .service-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-row--reverse .service-text { order: 0; }
  .service-visual { min-height: 180px; padding: 1.5rem; }
  .service-visual svg { max-width: 140px; }

  .warehouse { padding: 4rem 1.25rem; }
  .warehouse-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .warehouse-list { grid-template-columns: 1fr; }

  .about { padding: 4rem 1.25rem; }
  .about-inner p { text-align: center; }

  .final-cta { padding: 4rem 1.25rem; }
  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cta-buttons .btn { width: 100%; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 400px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}