@font-face {
  font-family: "MundoSans";
  src: url("../fonts/MundoSansStd-Light.otf") format("opentype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "MundoSans";
  src: url("../fonts/MundoSansStd-Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "MundoSans";
  src: url("../fonts/MundoSansStd-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --ink: #2e2925;
  --yellow: #fcce01;
  --orange: #ff9e19;
  --green: #94d60a;
  --blue: #15a7e0;
  --red: #e31d1a;
  --page-width: 1004px;
  --content-width: 860px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #000;
  background: #fff;
  font-family: "MundoSans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.38;
}

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

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

p {
  margin: 0 0 22px;
}

strong {
  font-weight: 600;
}

.container {
  width: min(calc(100% - 44px), var(--page-width));
  margin-inline: auto;
}

.content-container {
  width: min(calc(100% - 44px), var(--content-width));
  margin-inline: auto;
  padding-inline: 22px;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 50px;
  color: #fff;
  background: var(--ink);
  border-bottom: 4px solid #fff;
}

.primary-nav {
  height: 46px;
  display: flex;
  justify-content: center;
}

.primary-nav ul {
  display: flex;
  align-items: stretch;
  height: 46px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav li {
  position: relative;
  display: flex;
}

.primary-nav li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 9px;
  width: 2px;
  height: 23px;
  background: #666;
}

.primary-nav a {
  display: flex;
  align-items: center;
  padding: 3px 11px 0;
  border-bottom: 2px solid #fff;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.primary-nav .home-link {
  width: 60px;
  overflow: hidden;
  color: transparent;
  background: url("../images/multi-services-icon.png") center no-repeat;
  border-bottom-color: transparent;
}

.primary-nav .packaging a { border-bottom-color: var(--yellow); }
.primary-nav .storage a { border-bottom-color: var(--orange); }
.primary-nav .transport a { border-bottom-color: var(--green); }
.primary-nav .printing a { border-bottom-color: var(--blue); }
.primary-nav .labels a { border-bottom-color: var(--red); }
.primary-nav .packaging a:hover,
.page-packaging .primary-nav .packaging a { color: var(--yellow); }
.primary-nav .storage a:hover,
.page-storage .primary-nav .storage a { color: var(--orange); }
.primary-nav .transport a:hover,
.page-transport .primary-nav .transport a { color: var(--green); }
.primary-nav .printing a:hover,
.page-printing .primary-nav .printing a { color: var(--blue); }
.primary-nav .labels a:hover,
.page-labels .primary-nav .labels a { color: var(--red); }

.utility-nav {
  position: absolute;
  z-index: 25;
  top: 50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0;
  height: 28px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.utility-nav a {
  display: inline-flex;
  align-items: center;
  height: 27px;
  padding: 0 8px;
}

.utility-nav .contact-link::before {
  content: "|";
  margin-right: 9px;
}

.utility-nav .utility-button {
  margin-left: 8px;
  border-radius: 0 0 4px 4px;
  color: #fff;
  background: var(--ink);
  border: 1px solid #ddd;
  border-top: 0;
}

.utility-nav.utility-light {
  color: #fff;
}

.utility-nav.utility-light .utility-button {
  color: #000;
  background: #fff;
}

.mobile-nav {
  display: none;
  padding: 5px;
  background: var(--ink);
}

.mobile-nav label {
  position: relative;
  display: block;
}

.mobile-nav label::after {
  content: "\25BC";
  position: absolute;
  right: 14px;
  top: 7px;
  color: #fff;
  pointer-events: none;
}

.mobile-nav select {
  width: 100%;
  height: 36px;
  padding: 0 42px 0 14px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 5px;
  font: 800 18px "MundoSans", sans-serif;
  text-transform: uppercase;
  appearance: none;
}

.hero {
  position: relative;
  overflow: hidden;
  height: 340px;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 50% 100%, 0 76%);
}

.hero-inner {
  width: min(calc(100% - 44px), 740px);
  height: 310px;
  margin-inline: auto;
  padding-top: 44px;
  display: flex;
  align-items: center;
  gap: 51px;
}

.hero-logo {
  width: 200px;
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
}

.hero-logo img {
  max-height: 220px;
  width: auto;
  transform: translate(15px, -7px);
}

.hero h1 {
  margin: 0;
  font-size: clamp(37px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
  transform: translate(-7px, -20px);
}

.theme-dark { background: var(--ink); }
.theme-yellow { background: var(--yellow); }
.theme-orange { background: var(--orange); }
.theme-green { background: var(--green); }
.theme-blue { background: var(--blue); }
.theme-red { background: var(--red); }
.theme-black { background: #000; }

.section-gradient {
  background: linear-gradient(180deg, #dedede 0, #fff 58%, #f0f0f0 100%);
}

.section-title {
  margin: 0 0 24px;
  color: var(--accent, #000);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.04;
  text-transform: uppercase;
}

.home-process {
  height: 802px;
  margin-top: -82px;
  background: #000 var(--process-image) center bottom / 1400px 1000px no-repeat;
}

.home-intro {
  padding: 40px 0 21px;
  background: linear-gradient(180deg, #fff, #e0e0e0);
}

.home-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 66px;
}

.home-intro h2 {
  margin: 0 0 26px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.02;
}

.service-cards {
  padding: 76px 0;
  background: var(--ink);
}

.service-cards ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.service-cards li:nth-child(1) { background: var(--yellow); }
.service-cards li:nth-child(2) { background: var(--orange); }
.service-cards li:nth-child(3) { background: var(--green); }
.service-cards li:nth-child(4) { background: var(--blue); }
.service-cards li:nth-child(5) { background: var(--red); }

.service-cards a {
  display: block;
  padding: 20px 50px;
}

.warehouse-photo img {
  width: 100%;
}

.standard-content {
  min-height: 810px;
  padding: 135px 0 90px;
}

.two-column-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 70px;
  align-items: start;
}

.storage-content {
  min-height: 1150px;
}

.storage-content .two-column-content {
  grid-template-columns: minmax(0, 1fr) 263px;
  gap: 90px;
}

.transport-content {
  min-height: 1140px;
  padding-bottom: 0;
}

.transport-illustration {
  width: min(100%, 948px);
  margin: 58px auto 0;
}

.simple-content {
  min-height: 685px;
}

.labels-content {
  min-height: 735px;
}

.labels-art {
  position: relative;
  min-height: 570px;
}

.labels-art img:first-child {
  width: 311px;
}

.labels-art img:last-child {
  width: 314px;
  margin-top: 16px;
}

.packaging-top {
  padding: 135px 0 0;
  background: linear-gradient(180deg, #dedede, #fff 48%);
}

.packaging-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 70px;
  min-height: 365px;
  align-items: start;
}

.packaging-row > img {
  margin-top: 20px;
  transform: translate(-12px, -7px);
}

.packaging-row:nth-child(2) > img {
  transform: translate(-12px, -83px);
}

.packaging-row + .packaging-row {
  margin-top: 8px;
}

.packaging-band {
  min-height: 500px;
  padding: 34px 0;
  display: flex;
  align-items: center;
}

.packaging-band .band-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.packaging-band.band-light .band-grid {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.packaging-band.band-dark {
  color: #fff;
  background: linear-gradient(180deg, #000, var(--ink));
}

.packaging-band.band-light {
  background: #fff;
}

.packaging-band.band-fade {
  min-height: 565px;
  background: linear-gradient(180deg, #fff, #e5e5e5);
}

.contact-hero .hero-logo img {
  width: 196px;
}

.contact-photo {
  margin-top: -82px;
  height: 815px;
  overflow: hidden;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-details {
  height: 445px;
  min-height: 445px;
  padding: 44px 0 58px;
  background: linear-gradient(180deg, #fff, #e5e5e5);
}

.contact-map {
  min-height: 345px;
  padding-left: 0;
  background: url("../images/map.png") right top / 78% auto no-repeat;
}

.contact-card {
  width: 360px;
}

.contact-card img {
  width: 123px;
  margin-bottom: 30px;
}

.site-footer {
  min-height: 95px;
  color: #fff;
  background: var(--ink);
}

.site-footer .content-container {
  min-height: 95px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-footer .footer-logo {
  width: 40px;
  flex: 0 0 40px;
}

.footer-address {
  line-height: 1.25;
}

.footer-phone {
  font-weight: 800;
}

.footer-email-icon {
  display: inline-block;
  width: 24px;
  height: 14px;
  margin-left: 8px;
  vertical-align: -2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 8px 12px;
  color: #000;
  background: #fff;
}

.skip-link:focus {
  left: 8px;
}

@media (max-width: 780px) {
  .site-header {
    height: auto;
    border-bottom: 0;
  }

  .primary-nav,
  .utility-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    height: 350px;
  }

  .hero-inner {
    height: 310px;
    padding-top: 20px;
    gap: 28px;
  }

  .hero-logo {
    flex-basis: 180px;
    width: 180px;
  }

  .hero h1 {
    font-size: clamp(31px, 6.8vw, 44px);
  }

  .home-process {
    height: 600px;
    background-size: auto 760px;
  }

  .service-cards {
    padding: 36px 0;
  }

  .service-cards a {
    padding: 12px 22px;
  }
}

@media (max-width: 650px) {
  .container,
  .content-container,
  .hero-inner {
    width: min(calc(100% - 32px), var(--page-width));
  }

  .content-container {
    padding-inline: 0;
  }

  .hero {
    height: 410px;
    clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%);
  }

  .hero-inner {
    height: 360px;
    padding-top: 20px;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    text-align: center;
  }

  .hero-logo {
    flex: 0 0 auto;
    width: 145px;
  }

  .hero-logo img {
    max-height: 180px;
    transform: none;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 38px);
    transform: none;
  }

  .home-process,
  .contact-photo {
    display: none;
  }

  .home-columns,
  .two-column-content,
  .storage-content .two-column-content,
  .packaging-row,
  .packaging-band .band-grid,
  .packaging-band.band-light .band-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-intro,
  .standard-content,
  .packaging-top,
  .packaging-band {
    padding: 58px 0;
  }

  .standard-content,
  .storage-content,
  .transport-content,
  .simple-content,
  .labels-content,
  .packaging-band,
  .packaging-band.band-fade {
    min-height: 0;
  }

  .two-column-content > img,
  .packaging-row > img,
  .packaging-band img {
    width: min(100%, 360px);
    margin-inline: auto;
    transform: none;
  }

  .packaging-band.band-dark .band-grid img {
    order: 2;
  }

  .labels-art {
    min-height: 0;
  }

  .labels-art img {
    margin-inline: auto;
  }

  .service-cards ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-cards li:last-child {
    grid-column: 1 / -1;
    width: 50%;
    margin-inline: auto;
  }

  .contact-details {
    height: auto;
    min-height: 0;
  }

  .contact-map {
    min-height: 0;
    background: none;
  }

  .contact-card {
    width: 100%;
  }
}

@media (max-width: 430px) {
  body {
    font-size: 15px;
  }

  .service-cards ul {
    grid-template-columns: 1fr;
  }

  .service-cards li:last-child {
    grid-column: auto;
    width: 100%;
  }

  .site-footer .content-container {
    gap: 16px;
  }

  .site-footer .footer-logo {
    width: 30px;
    flex-basis: 30px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
