:root {
  --ink: #111111;
  --ink-soft: #222222;
  --paper: #ffffff;
  --paper-soft: #f6f3ec;
  --muted: #6e6e6e;
  --line: #e9e4d9;
  --accent: #f6c500;
  --accent-strong: #e83f5b;
  --cyan: #20a4f3;
  --shadow: 0 26px 70px rgba(17, 17, 17, 0.16);
  --radius: 8px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: var(--container);
  margin: 18px auto 0;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
  transition: transform .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--accent);
  color: var(--ink);
  font-weight: 900;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 3px;
  background: var(--accent);
  content: "";
  transition: width .25s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.1;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.header-cta,
.btn-primary {
  background: var(--accent);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .32);
  color: var(--paper);
}

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}

.btn-outline {
  border: 1px solid var(--ink);
  background: transparent;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--paper);
}

.section,
.section-dark,
.blog-section {
  padding: 110px max(20px, calc((100vw - 1180px) / 2));
}

.section-dark {
  background: var(--ink);
  color: var(--paper);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 54px;
  min-height: 780px;
  align-items: center;
  padding-top: 145px;
  overflow: hidden;
  background: #070707;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.hero::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .48) 38%, rgba(0, 0, 0, .08) 100%),
    url("../../images/hero-printing-bg.png") center / cover;
  filter: saturate(1.08) brightness(.98) contrast(1.08);
  opacity: .98;
  transform: scale(1.01);
}

.hero::after {
  z-index: -1;
  background:
    radial-gradient(circle at 78% 32%, rgba(246, 197, 0, .16), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .42));
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.process-copy h2,
.split-faq h2,
.cta-band h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(40px, 6vw, 86px);
  line-height: .98;
  font-weight: 950;
}

.hero-text {
  max-width: 640px;
  margin: 28px 0;
  color: #d8d8d8;
  font-size: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  background: currentColor;
  content: "";
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-main-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border: 12px solid #252525;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  position: absolute;
  right: -70px;
  bottom: -70px;
  z-index: 0;
  width: 280px;
  height: 280px;
  background: url("../img/print-pattern.svg") center / cover;
  content: "";
}

.hero-main-img,
.hero-card {
  position: relative;
  z-index: 1;
}

.hero-card {
  position: absolute;
  width: 180px;
  padding: 22px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.hero-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.hero-card-top {
  top: 46px;
  left: -38px;
}

.hero-card-bottom {
  right: -16px;
  bottom: 66px;
  background: var(--accent);
}

.quick-services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--accent);
}

.quick-services span {
  display: grid;
  min-height: 96px;
  place-items: center;
  border-right: 1px solid rgba(17, 17, 17, .18);
  font-size: clamp(17px, 2vw, 26px);
  font-weight: 950;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.about-copy h2,
.process-copy h2,
.split-faq h2,
.contact-copy h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.section-heading p:not(.eyebrow),
.split-faq > div:first-child p:not(.eyebrow),
.about-copy p,
.process-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
}

.section-dark .section-heading p:not(.eyebrow),
.section-dark .about-copy p,
.section-dark .process-copy p,
.section-dark .contact-copy p {
  color: #d4d4d4;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card,
.price-card,
.blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.06);
}

.service-card {
  min-height: 300px;
  padding: 34px 28px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  background: #fffaf0;
}

.service-number {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 28px;
  background: var(--ink);
  color: var(--accent);
  font-weight: 950;
}

.service-card h3,
.price-card h3,
.blog-card h3,
.product-tile h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.15;
}

.service-card p,
.price-card p,
.blog-card p {
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 900;
}

.about-band {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 64px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.check-list span {
  position: relative;
  padding: 16px 18px 16px 52px;
  background: #1d1d1d;
  font-weight: 800;
}

.check-list span::before {
  position: absolute;
  top: 16px;
  left: 18px;
  color: var(--accent);
  content: "✓";
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  overflow-x: auto;
  background: var(--ink-soft);
}

.product-tile {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  color: var(--paper);
}

.product-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, .78));
  content: "";
}

.product-tile img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform .35s ease;
}

.product-tile:hover img {
  transform: scale(1.06);
}

.product-tile span,
.product-tile h3 {
  position: absolute;
  z-index: 1;
  left: 26px;
}

.product-tile span {
  top: 24px;
  color: var(--accent);
  font-size: 48px;
  font-weight: 950;
  line-height: 1;
}

.product-tile h3 {
  bottom: 28px;
}

.process {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 50px;
  align-items: center;
}

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

.stats-grid div {
  min-height: 170px;
  padding: 32px;
  background: #1d1d1d;
  border-left: 6px solid var(--accent);
}

.stats-grid strong {
  display: block;
  color: var(--accent);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  font-weight: 950;
}

.stats-grid span {
  display: block;
  margin-top: 14px;
  color: #d8d8d8;
  font-weight: 800;
}

.split-faq {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 58px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--paper);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.faq-item button span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--accent);
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.faq-item.is-open p {
  display: block;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 70px max(20px, calc((100vw - 1180px) / 2));
  background: var(--accent);
}

.cta-band h2 {
  max-width: 850px;
  font-size: clamp(30px, 4vw, 54px);
}

.cta-band p {
  margin: 14px 0 0;
  font-weight: 800;
}

.pricing-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  padding: 32px;
}

.price-card strong {
  display: block;
  margin: 12px 0;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--accent-strong);
  content: "•";
  font-size: 24px;
  line-height: 1;
}

.blog-card {
  overflow: hidden;
}

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

.blog-card div {
  padding: 26px;
}

.blog-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-strong);
  font-weight: 900;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 52px;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: var(--paper);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 30px;
  background: var(--paper);
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 15px;
  background: #fbfaf6;
  color: var(--ink);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(246, 197, 0, .2);
}

.contact-form .full,
.form-alert {
  grid-column: 1 / -1;
}

.form-alert {
  margin: 0;
  padding: 14px 16px;
  font-weight: 800;
}

.form-alert.success {
  background: #e9f9ee;
  color: #17692c;
}

.form-alert.warning {
  background: #fff4cf;
  color: #735300;
}

.form-alert.error,
.contact-form.has-error {
  background: #fff0f0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
  padding: 70px max(20px, calc((100vw - 1180px) / 2));
  background: #070707;
  color: var(--paper);
}

.site-footer p,
.site-footer a {
  color: #bdbdbd;
}

.site-footer h3 {
  margin: 0 0 18px;
  color: var(--paper);
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
}

.site-footer .brand,
.site-footer .brand + p {
  color: var(--paper);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 4px;
    padding: 8px 0 0;
  }

  .site-nav.is-open a {
    padding: 14px;
    background: #f5f5f5;
  }

  .hero,
  .about-band,
  .process,
  .split-faq,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card-top {
    left: 18px;
  }

  .hero-card-bottom {
    right: 18px;
  }

  .service-grid,
  .pricing-grid,
  .blog-grid,
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 24px, 1180px);
  }

  .section,
  .section-dark,
  .blog-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .site-header {
    margin-top: 10px;
    padding: 10px;
  }

  .hero {
    padding-top: 118px;
    gap: 34px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-main-img,
  .about-image img {
    height: 360px;
  }

  .hero-card {
    width: 148px;
    padding: 16px;
  }

  .hero-card strong {
    font-size: 26px;
  }

  .quick-services,
  .service-grid,
  .pricing-grid,
  .blog-grid,
  .stats-grid,
  .site-footer,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .quick-services span {
    min-height: 68px;
    border-bottom: 1px solid rgba(17, 17, 17, .18);
  }

  .product-strip {
    grid-template-columns: repeat(5, 230px);
  }

  .cta-band {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
