:root {
  --press-black: #171a1f;
  --press-charcoal: #242930;
  --press-slate: #39414b;
  --press-paper: #f3f0e9;
  --press-paper-light: #fbfaf7;
  --press-cyan: #13aebe;
  --press-magenta: #dc3f76;
  --press-yellow: #ffc72c;
  --press-cmyk: linear-gradient(90deg, var(--press-cyan) 0 33.33%, var(--press-magenta) 33.33% 66.66%, var(--press-yellow) 66.66% 100%);
  --press-shadow: 0 18px 42px rgba(23, 26, 31, 0.14);
}

body {
  background:
    radial-gradient(circle at 15% 12%, rgba(19, 174, 190, 0.025), transparent 24rem),
    var(--press-paper-light);
}

::selection {
  color: #11151a;
  background: var(--press-yellow);
}

.site-header {
  min-height: 80px;
  border-bottom: 0;
  box-shadow: 0 8px 28px rgba(23, 26, 31, 0.12);
}

.site-header::after {
  content: "";
  height: 4px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--press-cmyk);
}

.main-nav {
  gap: 28px;
  font-size: 0.74rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.main-nav > a,
.dropdown-toggle {
  position: relative;
  transition: color 170ms ease;
}

.main-nav > a:hover,
.main-nav > a:focus,
.dropdown-toggle:hover,
.dropdown-toggle:focus {
  color: #0b8794;
}

.dropdown-menu {
  overflow: hidden;
  border: 0;
  border-top: 3px solid var(--press-cyan);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 18px 40px rgba(23, 26, 31, 0.18);
}

.dropdown-menu a {
  letter-spacing: 0;
  text-transform: none;
}

.button {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 4px;
  letter-spacing: 0.015em;
  box-shadow: 0 10px 24px rgba(23, 26, 31, 0.2);
  transition: transform 170ms ease, box-shadow 170ms ease, filter 170ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(23, 26, 31, 0.25);
  filter: brightness(1.03);
}

.button-gold {
  color: #14191f;
  background: var(--press-yellow);
}

.button-blue,
.button-bright {
  color: #fff;
  background: var(--press-charcoal);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero {
  min-height: 520px;
  padding-top: 68px;
  padding-bottom: 74px;
  background:
    linear-gradient(90deg, rgba(17, 20, 25, 0.96) 0%, rgba(26, 31, 37, 0.82) 46%, rgba(26, 31, 37, 0.2) 82%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.2));
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(17, 20, 25, 0.88), rgba(17, 20, 25, 0.1)),
    url("assets/hero-printing-machine.jpeg") center 42% / cover no-repeat;
  filter: saturate(0.92) contrast(1.08);
}

.hero::before {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.16) 0 1.2px, transparent 1.5px) right 4% top 12% / 14px 14px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(0, 0, 0, 0.18));
}

.hero-content {
  max-width: 780px;
}

.hero-content::before {
  content: "PRINT  •  FINISH  •  MAIL";
  display: block;
  margin-bottom: 18px;
  color: var(--press-yellow);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.36);
}

.hero p {
  max-width: 610px;
  margin-bottom: 32px;
  font-size: 1.13rem;
  line-height: 1.55;
}

.services {
  position: relative;
  padding-top: 68px;
  padding-bottom: 64px;
  background:
    linear-gradient(rgba(251, 250, 247, 0.94), rgba(243, 240, 233, 0.97)),
    radial-gradient(circle, rgba(23, 26, 31, 0.12) 0 1px, transparent 1.5px) 0 0 / 16px 16px;
}

.services-grid {
  max-width: 1180px;
  gap: 22px;
}

.services-grid::before {
  content: "CORE PRODUCTION SERVICES";
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: #707780;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-align: center;
}

.image-card {
  position: relative;
  border: 0;
  border-radius: 10px;
  box-shadow: var(--press-shadow);
  transition: transform 190ms ease, box-shadow 190ms ease;
}

a.image-card:hover,
a.image-card:focus,
.image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(23, 26, 31, 0.18);
}

.image-card::after {
  content: "";
  height: 4px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: var(--press-cyan);
}

.image-card:nth-child(3n + 2)::after {
  background: var(--press-magenta);
}

.image-card:nth-child(3n)::after {
  background: var(--press-yellow);
}

.image-card img {
  height: 155px;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 260ms ease, filter 260ms ease;
}

.image-card:hover img {
  filter: saturate(1.04) contrast(1.05);
  transform: scale(1.025);
}

.image-card div {
  min-height: 126px;
  padding: 22px 22px 24px;
}

.image-card h2,
.image-card h3 {
  font-size: 1.26rem;
  letter-spacing: -0.015em;
}

.image-card p {
  font-size: 0.84rem;
  line-height: 1.5;
}

.why {
  position: relative;
  overflow: hidden;
  padding-top: 66px;
  padding-bottom: 70px;
  color: #fff;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.07) 0 1px, transparent 1.5px) right -60px top -30px / 15px 15px,
    linear-gradient(135deg, var(--press-black), #2b3139);
}

.why::after {
  content: "";
  width: 430px;
  height: 430px;
  position: absolute;
  right: -230px;
  bottom: -280px;
  border: 70px solid rgba(19, 174, 190, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.why .section-heading h2,
.why .feature h3 {
  color: #fff;
}

.why .section-heading span {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5));
}

.why .section-heading span:last-child {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent);
}

.why .section-kicker,
.why .feature p {
  color: #c9ced5;
}

.why .feature {
  position: relative;
  z-index: 1;
  border-color: rgba(255, 255, 255, 0.15);
}

.why .feature svg {
  padding: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.industries {
  padding-top: 68px;
  padding-bottom: 64px;
  background:
    linear-gradient(rgba(247, 244, 237, 0.96), rgba(251, 250, 247, 0.98)),
    repeating-linear-gradient(115deg, rgba(23, 26, 31, 0.035) 0 1px, transparent 1px 18px);
}

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

.section-heading span,
.footer-service span {
  background: linear-gradient(90deg, transparent, #9ca3aa);
}

.section-heading span:last-child,
.footer-service span:last-child {
  background: linear-gradient(90deg, #9ca3aa, transparent);
}

.section-heading h2 {
  font-size: clamp(1.95rem, 3vw, 2.55rem);
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section-kicker {
  margin-top: 16px;
  margin-bottom: 36px;
  color: #66707a;
  line-height: 1.55;
}

.industry-card img {
  height: 180px;
}

.industry-card h3 {
  min-height: auto;
  padding: 20px 22px 22px;
}

.cta {
  position: relative;
  overflow: hidden;
  padding-top: 58px;
  padding-bottom: 62px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 0 1px, transparent 1.5px) right 5% top 20% / 15px 15px,
    linear-gradient(135deg, #242930, #15191e);
}

.cta::before {
  content: "";
  height: 5px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: var(--press-cmyk);
}

.cta p {
  color: #d5d9de;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: 68px;
  padding-bottom: 62px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.09) 0 1px, transparent 1.5px) right 4% top 12% / 14px 14px,
    linear-gradient(135deg, #20252b, #3c454f);
}

.page-hero::after {
  content: "";
  height: 5px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--press-cmyk);
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.6rem);
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.page-hero p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: #e4e7ea;
  line-height: 1.6;
}

.about-section,
.detail-section,
.upload {
  background:
    linear-gradient(rgba(251, 250, 247, 0.97), rgba(246, 243, 237, 0.98)),
    radial-gradient(circle, rgba(23, 26, 31, 0.045) 0 0.8px, transparent 1.2px) 0 0 / 18px 18px;
}

.detail-card,
.industry-detail-card,
.capability-card,
.product-card,
.promise-list li {
  border: 0;
  border-radius: 9px;
  box-shadow: 0 14px 34px rgba(23, 26, 31, 0.1);
}

.detail-card,
.industry-detail-card,
.capability-card,
.product-card {
  position: relative;
  overflow: hidden;
}

.detail-card::before,
.industry-detail-card::before,
.capability-card::before,
.product-card::before {
  content: "";
  width: 4px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: var(--press-cyan);
}

.detail-card:nth-child(3n + 2)::before,
.industry-detail-card:nth-child(3n + 2)::before,
.capability-card:nth-child(3n + 2)::before,
.product-card:nth-child(3n + 2)::before {
  background: var(--press-magenta);
}

.detail-card:nth-child(3n)::before,
.industry-detail-card:nth-child(3n)::before,
.capability-card:nth-child(3n)::before,
.product-card:nth-child(3n)::before {
  background: var(--press-yellow);
}

.capability-card {
  border-top: 0;
}

.detail-intro h2,
.about-copy h2,
.product-category h3 {
  letter-spacing: -0.03em;
}

.detail-intro p,
.about-copy p,
.detail-card p,
.industry-detail-card p,
.capability-card p,
.product-card p {
  color: #4b5560;
  font-weight: 600;
}

.product-card,
.detail-card,
.industry-detail-card,
.capability-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover,
.product-card:focus,
a.detail-card:hover,
a.detail-card:focus {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(23, 26, 31, 0.15);
}

.upload-form input,
.upload-form textarea,
.product-form select,
.product-form input,
.product-form textarea {
  border: 1px solid #cfd3d6;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.82);
}

.upload-form input:focus,
.upload-form textarea:focus,
.product-form select:focus,
.product-form input:focus,
.product-form textarea:focus {
  border-color: var(--press-cyan);
  box-shadow: 0 0 0 3px rgba(19, 174, 190, 0.16);
}

.footer {
  color: #d9dde1;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.06) 0 1px, transparent 1.5px) left -30px bottom -40px / 16px 16px,
    var(--press-black);
  border-top: 5px solid transparent;
  border-image: var(--press-cmyk) 1;
}

.footer-inner {
  max-width: 940px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.footer-service,
.footer-nav a,
.footer-contact {
  color: #d9dde1;
}

.footer-nav a {
  border-color: rgba(255, 255, 255, 0.22);
}

.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--press-yellow);
}

@media (max-width: 900px) {
  .site-header {
    min-height: 0;
  }

  .main-nav {
    letter-spacing: 0;
    text-transform: none;
  }

  .main-nav > a:hover,
  .main-nav > a:focus,
  .dropdown-toggle:hover,
  .dropdown-toggle:focus {
    color: var(--press-charcoal);
    background: #f1f3f4;
  }

  .hero {
    min-height: 390px;
  }

  .services-grid::before {
    text-align: left;
  }

  .detail-card::before,
  .industry-detail-card::before,
  .capability-card::before,
  .product-card::before {
    width: 100%;
    height: 4px;
    right: 0;
    bottom: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .hero {
    min-height: 390px;
    padding: 44px 6% 34px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(17, 20, 25, 0.25), rgba(17, 20, 25, 0.94)),
      url("assets/hero-printing-machine.jpeg") center top / cover no-repeat;
  }

  .hero-content::before {
    margin-bottom: 13px;
    font-size: 0.66rem;
    letter-spacing: 0.17em;
  }

  .hero h1 {
    margin-bottom: 17px;
    font-size: clamp(2.15rem, 10.5vw, 3rem);
    line-height: 1.02;
  }

  .hero p {
    margin-bottom: 23px;
    font-size: 0.95rem;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .button {
    min-width: 0;
    flex: 1 1 145px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .services,
  .why,
  .industries {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .services-grid::before {
    margin-bottom: 0;
  }

  .image-card img,
  .industry-card img {
    height: 190px;
  }

  .image-card div {
    min-height: 0;
  }

  .page-hero {
    padding-top: 52px;
    padding-bottom: 48px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .footer-nav a {
    padding-right: 11px;
    padding-left: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .image-card,
  .image-card img,
  .product-card,
  .detail-card {
    transition: none;
  }
}
