:root {
  --ink: #231a1c;
  --navy: #171214;
  --navy2: #241b1e;
  --red: #d71920;
  --red-dark: #a90f16;
  --paper: #f8f6f6;
  --white: #fff;
  --muted: #63707c;
  --line: #dfe3e6;
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--sans);
  line-height: 1.65;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.section {
  padding: 96px 0;
}
.paper {
  background: var(--paper);
}
.dark {
  color: #fff;
  background: var(--navy);
}
.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--red-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.dark .eyebrow {
  color: #ff8589;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h3 {
  line-height: 1.2;
}
.lead {
  color: var(--muted);
  font-size: 1.12rem;
}
.dark .lead {
  color: #c7d0d8;
}
.section-heading {
  max-width: 730px;
  margin: 0 auto 48px;
  text-align: center;
}
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 23px;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}
.button:hover {
  border-color: #ef3037;
  background: #ef3037;
}
.button-outline {
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
  color: #fff;
}
.button-outline:hover {
  border-color: #fff;
  background: #fff;
  color: var(--navy);
}
.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  color: var(--navy);
  box-shadow: 0 4px 18px rgba(16, 24, 32, 0.06);
}
.nav {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.brand-logo {
  width: 82px;
  height: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav-links a {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--red-dark);
}
.nav-cta {
  padding: 9px 15px;
  border: 1px solid var(--red);
  color: var(--red-dark) !important;
}
.nav-cta:hover {
  background: var(--red);
  color: #fff !important;
}
.hero {
  min-height: 690px;
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  color: #fff;
  background: #1a2229 url("images/Warehouse%20Landing%20Page.png")
    center 44% / cover no-repeat;
}
.hero:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(9, 15, 20, 0.93),
    rgba(9, 15, 20, 0.72) 48%,
    rgba(9, 15, 20, 0.24)
  );
}
.hero-content {
  max-width: 730px;
  padding: 110px 0 120px;
}
.hero .eyebrow {
  color: #ff8589;
}
h1 {
  max-width: 700px;
  margin-bottom: 19px;
  font-size: clamp(3rem, 7vw, 5.65rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
}
.hero-subtitle {
  margin-bottom: 22px;
  color: #ffb0b3;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1.2;
}
.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: #e2e7eb;
  font-size: 1.1rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(45px, 7vw, 90px);
}
.about-image {
  position: relative;
  width: min(100%, 420px);
  justify-self: center;
}
.about-image:after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 62%;
  height: 62%;
  background: var(--red);
}
.about-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 304 / 273;
}
.stats {
  margin-top: 80px;
  padding: 32px 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}
.stat {
  padding: 3px 25px;
  text-align: center;
}
.stat + .stat {
  border-left: 1px solid var(--line);
}
.stat strong {
  display: block;
  color: var(--red-dark);
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: 1.1;
}
.stat span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #46515a;
}
.service {
  position: relative;
  z-index: 0;
  min-height: 275px;
  padding: 34px 30px;
  background: #25313a;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}
.service::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.service:hover {
  z-index: 1;
  background: #7f151b;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  transform: translateY(-6px);
}
.service:hover::before {
  transform: scaleX(1);
}
.service h3 {
  margin-bottom: 13px;
  font-size: 1.35rem;
  transition: color 180ms ease;
}
.service:hover h3 {
  color: #fff;
}
.service p {
  margin-bottom: 0;
  color: #bbc5cd;
  font-size: 0.94rem;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.process-step {
  position: relative;
  padding-top: 22px;
  border-top: 2px solid var(--line);
}
.process-step:before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}
.process-step span {
  color: var(--red-dark);
  font-family: var(--serif);
  font-size: 2.3rem;
}
.process-step h3 {
  margin: 14px 0 12px;
  font-size: 1.5rem;
}
.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}
.clients {
  padding: 65px 0;
}
.client-heading {
  margin-bottom: 32px;
  text-align: center;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.logo-card {
  min-height: 125px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}
.logo-card:hover {
  border-color: rgba(215, 25, 32, 0.7);
  box-shadow: 0 14px 30px rgba(23, 32, 42, 0.12);
  transform: translateY(-5px);
}
.logo-card img {
  width: auto;
  max-width: 150px;
  max-height: 64px;
  object-fit: contain;
  transition: transform 180ms ease;
}
.logo-card:hover img {
  transform: scale(1.08);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
blockquote {
  margin: 0;
  padding: 36px;
  border-top: 3px solid var(--red);
  background: #fff;
  box-shadow: 0 12px 35px rgba(20, 28, 35, 0.07);
}
blockquote p {
  color: #46525d;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.75;
}
blockquote footer {
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
}
blockquote footer span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-weight: 500;
}
.proof {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 65px;
  align-items: stretch;
}
.proof p {
  color: #c9d1d8;
}
.proof-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  list-style: none;
}
.proof-list li {
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  padding: 16px 0 16px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: #e2e6e9;
}
.proof-list li:before {
  content: "\2713";
  position: absolute;
  top: 50%;
  left: 0;
  color: var(--red);
  font-weight: 900;
  transform: translateY(-50%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
#contact {
  background: #f2f3f4;
}
.contact-intro p {
  max-width: 500px;
}
.contact-details {
  display: grid;
  gap: 15px;
}
.contact-card {
  padding: 24px 26px;
  border-left: 3px solid var(--red);
  background: var(--paper);
}
.contact-card small {
  display: block;
  margin-bottom: 5px;
  color: var(--red-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.contact-card address,
.contact-card a {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 650;
  text-decoration: none;
}
.contact-card a:hover {
  color: var(--red-dark);
}
.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--navy);
  color: var(--muted);
  background: #fff;
  font-size: 0.82rem;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.site-footer .brand {
  color: var(--navy);
}
.site-footer .brand-logo {
  width: 76px;
}
@media (max-width: 900px) {
      .nav {
        min-height: 92px;
    flex-wrap: wrap;
    padding: 15px 0;
  }
  .brand {
    width: 100%;
  }
  .nav-links {
    width: 100%;
    gap: 16px;
    overflow-x: auto;
  }
  .hero {
    min-height: 620px;
  }
  .about-grid,
  .proof,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .proof-list {
    grid-template-rows: none;
  }
  .about-image {
    order: -1;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 0;
  }
  .stat:nth-child(3) {
    border-left: 0;
  }
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    gap: 35px;
  }
}
@media (max-width: 640px) {
  html {
    scroll-padding-top: 125px;
  }
  .container {
    width: min(calc(100% - 28px), var(--max));
  }
  .section {
    padding: 70px 0;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    overflow-x: visible;
  }
  .nav-links a {
    font-size: 0.76rem;
  }
  .nav-cta {
    margin-left: 0;
  }
  .hero {
    min-height: 610px;
    background-position: 61% center;
  }
  .hero:before {
    background: rgba(9, 15, 20, 0.72);
  }
  .hero-content {
    padding: 90px 0 100px;
  }
  h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }
  .hero-actions .button {
    width: 100%;
  }
  .about-image:after {
    right: -8px;
    bottom: -8px;
  }
  .stats {
    padding-inline: 0;
  }
  .stat {
    padding-inline: 12px;
  }
  .stat strong {
    font-size: 1.9rem;
  }
  .services-grid,
  .process-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .service {
    min-height: 0;
  }
  .logo-card {
    min-height: 100px;
    padding: 17px;
  }
  blockquote {
    padding: 27px;
  }
  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service,
  .service::before,
  .service h3,
  .logo-card,
  .logo-card img {
    transition: none;
  }
}
