﻿:root {
  --ink: #17212b;
  --muted: #5f6f7c;
  --paper: #fffaf2;
  --surface: #ffffff;
  --teal: #0f766e;
  --aqua: #16b8b1;
  --coral: #ff6b5f;
  --yellow: #ffd166;
  --blue: #3b82f6;
  --green: #59c36a;
  --violet: #8b5cf6;
  --line: rgba(23, 33, 43, 0.14);
  --shadow: 0 22px 70px rgba(23, 33, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(26px, 5vw, 72px);
  background: rgba(255, 250, 242, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  width: min(340px, 44vw);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 0;
  text-decoration: none;
}

.brand-logo {
  width: min(312px, 42vw);
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.corner-x {
  position: fixed;
  left: clamp(10px, 2vw, 28px);
  bottom: clamp(10px, 2vw, 28px);
  width: clamp(54px, 7vw, 104px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 3;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(15, 118, 110, 0.08);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(42px, 7vw, 90px) clamp(18px, 5vw, 72px) clamp(28px, 5vw, 64px);
  overflow: hidden;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5.8vw, 5rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 3.2vw, 3rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
  line-height: 1.1;
}

.hero-text {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 8px;
}

.button.primary {
  color: #fff;
  background: var(--teal);
}

.button.secondary {
  color: var(--ink);
  background: var(--yellow);
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 8% -10% -8% 8%;
  background: linear-gradient(135deg, rgba(255, 107, 95, 0.2), rgba(22, 184, 177, 0.18), rgba(255, 209, 102, 0.24));
  border-radius: 8px;
  transform: rotate(-3deg);
}

.hero-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-image {
  margin: 0;
  align-self: stretch;
  min-height: 320px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 12px;
  background: #fff;
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
  background: #fff;
}
.section {
  padding: clamp(62px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.intro {
  max-width: 1120px;
}

.intro p,
.quality-grid p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.product-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
}

.product {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  overflow: hidden;
}

.product-image {
  margin: 0;
  height: 220px;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  padding: 10px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
  background: #fff;
}

.product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: clamp(14px, 2vw, 22px);
  padding: clamp(18px, 2.4vw, 26px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(23, 33, 43, 0.18);
}

.product h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.16rem, 1.7vw, 1.45rem);
  line-height: 1.16;
}

.product p {
  max-width: 28rem;
  margin-bottom: 0;
  color: #344555;
  font-size: 0.94rem;
}

.product-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #0f766e;
  font-weight: 900;
  background: #fff;
  border: 1px solid rgba(15, 118, 110, 0.28);
  border-radius: 8px;
}

.mono {
  background: #0f766e;
}

.labels {
  background: #ef476f;
}

.books {
  background: #2563eb;
}

.pop {
  background: #e11d48;
}

.corrugated {
  background: #c77922;
}

.tags {
  background: #6d5dfc;
}

.rigid {
  background: #198754;
}

.small-run {
  background: #334155;
}


.work-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(320px, 1.45fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(62px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background: #ffffff;
}

.gallery-copy {
  align-self: start;
  position: sticky;
  top: 118px;
}

.gallery-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
  gap: 18px;
}

.gallery-item {
  display: flex;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(23, 33, 43, 0.12);
  padding: 12px;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 296px;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
}

.gallery-item.tall {
  grid-row: auto;
}

.gallery-item.wide {
  grid-column: auto;
}

.compact-gallery {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.mono-work {
  background: linear-gradient(135deg, #fff, #f2f7ff 54%, #fff6df);
}

.corrugated-work {
  background: linear-gradient(135deg, #fffaf2, #eefaf4 54%, #eef5ff);
}

.labels-work {
  background: linear-gradient(135deg, #ffffff, #f7f0ff 48%, #ecfff7);
}

.rigid-work {
  background: linear-gradient(135deg, #fff, #f5f0ea 52%, #edf7ff);
}

.tags-work {
  background: linear-gradient(135deg, #fffaf2, #eef4ff 50%, #fff1f1);
}

.pops-work {
  background: linear-gradient(135deg, #ffffff, #eafaff 50%, #fff7dc);
}

.quality {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  background: #fff;
}

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

.quality-grid p {
  min-height: 220px;
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fff9ea);
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.9fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(62px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background: #0f172a;
  color: #fff;
}

.process .section-kicker {
  color: var(--yellow);
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.steps span {
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(62px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #fffaf2, #e7fbf9 55%, #fff3d1);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 88px;
  padding: 20px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.contact-actions span {
  color: var(--muted);
  font-weight: 800;
}

.contact-actions strong {
  text-align: right;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 18px;
    background: rgba(255, 250, 242, 0.98);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 13px 12px;
  }

  .hero,
  .work-gallery,
  .quality,
  .process,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .product-band,
  .gallery-grid,
  .steps,
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .product {
    min-height: 390px;
  }

  .section-image {
    min-height: 260px;
  }

  .gallery-copy {
    position: static;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
  }
}

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

  .brand {
    width: min(238px, 58vw);
    margin-left: 8px;
  }

  .brand-logo {
    width: min(228px, 56vw);
    max-height: 46px;
  }

  .corner-x {
    width: 58px;
    opacity: 0.1;
  }

  .hero-actions,
  .site-footer,
  .contact-actions a {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .contact-actions strong {
    width: 100%;
    text-align: left;
  }

  h1 {
    font-size: 2.65rem;
  }
}























