:root {
  --red: #c41224;
  --red-dark: #8f0f1c;
  --green: #148a43;
  --black: #111111;
  --charcoal: #25272a;
  --muted: #666b72;
  --line: #e7e8ea;
  --light: #f6f7f8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--black));
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

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

.nav-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  padding: 9px 10px;
  font-weight: 700;
}

.nav-toggle span {
  display: block;
  width: 15px;
  height: 2px;
  background: var(--black);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.55) 48%, rgba(0, 0, 0, 0.15)),
    linear-gradient(180deg, rgba(196, 18, 36, 0.2), rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 84px);
  padding: 84px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #7ef0a6;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-size: clamp(2.4rem, 8vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(1.25rem, 3vw, 2.2rem);
  line-height: 1.15;
}

.hero p {
  max-width: 680px;
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.button.disabled-button {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 64px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section h2,
.service-band h2 {
  margin-bottom: 14px;
  color: var(--black);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--white);
}

.section-copy {
  max-width: 760px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stats-grid div,
.why-card,
.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.stats-grid div {
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.stats-grid strong {
  display: block;
  color: var(--red);
  font-size: 2rem;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.product-section,
.team-section,
.testimonials-section {
  background: var(--light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.placeholder-photo {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(196, 18, 36, 0.94), rgba(17, 17, 17, 0.96)),
    radial-gradient(circle at 70% 25%, rgba(20, 138, 67, 0.5), transparent 32%);
}

.placeholder-photo span {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
}

.team-card div:last-child {
  padding: 18px;
}

.team-card h3 {
  margin-bottom: 4px;
  color: var(--black);
  font-size: 1.08rem;
}

.team-card p,
.team-note {
  color: var(--muted);
}

.team-card p {
  margin-bottom: 0;
  font-weight: 700;
}

.team-note {
  margin: 20px 0 0;
  font-size: 0.95rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.product-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.product-card div {
  padding: 18px;
}

.product-card h3 {
  margin-bottom: 8px;
  color: var(--black);
  font-size: 1.08rem;
}

.product-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(48px, 7vw, 86px) clamp(18px, 4vw, 64px);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(17, 17, 17, 0.96), rgba(196, 18, 36, 0.9)),
    url("images/warehouse-hero.png") center / cover;
}

.service-band div {
  max-width: 780px;
}

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

.why-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(150px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.why-card {
  min-height: 160px;
  padding: 20px;
  background: linear-gradient(180deg, var(--white), #fbfbfb);
}

.why-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--black);
  font-size: 0.84rem;
  font-weight: 800;
}

.why-card h3 {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

blockquote {
  margin: 0;
  padding: 24px;
  border-left: 5px solid var(--red);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.contact-details {
  padding: 30px;
  border-radius: 8px;
  color: var(--white);
  background: var(--black);
  box-shadow: var(--shadow);
}

.contact-details h2,
.contact-details a {
  color: var(--white);
}

.contact-details .note {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #cfd3d8;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--black);
  font: inherit;
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 3px solid rgba(196, 18, 36, 0.18);
  border-color: var(--red);
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.map-frame {
  height: 380px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: var(--black);
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
  box-shadow: var(--shadow);
}

@media (max-width: 1100px) {
  .product-grid,
  .team-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: min(640px, calc(100% - 36px));
    margin: 0 auto;
  }

  .about-section,
  .contact-layout,
  .service-band {
    grid-template-columns: 1fr;
  }

  .service-band {
    display: grid;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
  }
}

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

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .stats-grid,
  .team-grid,
  .product-grid,
  .testimonial-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .product-card img {
    height: 210px;
  }

  .site-footer {
    display: grid;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
  }
}
