:root {
  --bg: #f4f5f6;
  --paper: rgba(255, 255, 255, 0.94);
  --paper-soft: rgba(255, 255, 255, 0.82);
  --ink: #132335;
  --muted: #667180;
  --line: rgba(19, 35, 53, 0.12);
  --navy: #11263d;
  --navy-soft: #1d3854;
  --shadow: 0 18px 42px rgba(19, 35, 53, 0.07);
  --radius-lg: 30px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 2rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  background: linear-gradient(180deg, #fafbfc 0%, #f4f5f6 100%);
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.container { width: var(--container); margin: 0 auto; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 999; background: #fff; padding: 0.8rem 1rem; border-radius: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 251, 252, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(19, 35, 53, 0.06);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.brand-copy { display: flex; flex-direction: column; gap: 0.1rem; }
.brand-name, h1, h2, h3, .site-nav a, .button {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: -0.045em;
}
.brand-name { font-size: clamp(1.9rem, 2.4vw, 2.35rem); line-height: 0.95; }
.brand-tag { font-size: 0.95rem; color: var(--muted); }

.site-nav { display: flex; align-items: center; gap: 1.35rem; }
.site-nav a, .footer-links a { text-decoration: none; color: #344557; }
.site-nav a:hover, .site-nav a:focus-visible, .footer-links a:hover, .footer-links a:focus-visible, .site-nav a.is-active { color: var(--navy); }

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0.8rem 1rem;
  border-radius: 999px;
}

.hero, .section, .page-hero { padding: 4.5rem 0; }

.hero-layout, .editorial-grid, .statement-layout, .contact-layout, .page-hero-layout {
  display: grid;
  gap: 1.5rem;
}

.hero-layout {
  grid-template-columns: minmax(0, 0.96fr) minmax(220px, 0.42fr);
  align-items: start;
}

.hero-home {
  position: relative;
  overflow: clip;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250, 251, 252, 0.82) 0%, rgba(250, 251, 252, 0.56) 34%, rgba(250, 251, 252, 0.18) 100%),
    url("images/shop facade.png") right 74% / min(72vw, 1220px) auto no-repeat;
  opacity: 0.52;
  filter: saturate(0.86) contrast(0.96) brightness(1.01);
  pointer-events: none;
}

.hero-home > .container {
  position: relative;
  z-index: 1;
}

.page-hero-layout, .statement-layout, .contact-layout {
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1fr);
  align-items: start;
}

.hero-shell, .section-block, .note-card, .page-hero-copy {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(19, 35, 53, 0.07);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-shell { padding: 2.2rem 2.4rem 2.4rem; max-width: 760px; justify-self: start; }
.page-hero-copy { padding: 1.8rem 1.9rem; max-width: 820px; grid-column: 2; }
.hero-aside { display: grid; gap: 1rem; align-content: start; padding-top: 2.5rem; }
.note-card, .section-block { padding: 1.4rem 1.45rem; }
.section-block.form-block { padding: 1.5rem; }

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--navy-soft);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

h1 { margin: 0; max-width: 15ch; font-size: clamp(1.85rem, 3vw, 2.5rem); line-height: 0.98; }
h2 { margin: 0 0 0.9rem; max-width: 18ch; font-size: clamp(1.45rem, 2.2vw, 1.95rem); line-height: 1.04; }
h3 { margin: 0 0 0.55rem; font-size: 1.18rem; line-height: 1.08; }
p, li, label, input, textarea { font-weight: 300; }
.hero-text, .section-block p, .note-card p, .contact-details p, .site-footer p, .statement-copy p { color: var(--muted); line-height: 1.82; }

.hero-actions, .form-actions, .footer-links, .social-follow { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero-actions, .social-follow-hero { margin-top: 1rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-1px); }
.button.primary { background: linear-gradient(135deg, var(--navy), var(--navy-soft)); color: #fff; }
.button.ghost { background: #fff; border-color: var(--line); }

.social-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 220px;
  padding: 0.9rem 1rem;
  border-radius: 1.1rem;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(19, 35, 53, 0.1);
  box-shadow: var(--shadow);
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1877f2, #0d5fd3);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: Arial, sans-serif;
}
.social-copy { display: flex; flex-direction: column; gap: 0.08rem; }
.social-copy strong { color: var(--ink); font-weight: 500; }
.social-copy small { color: var(--muted); font-size: 0.84rem; }

.editorial-grid {
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1fr);
  align-items: start;
}
.editorial-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.editorial-panels-wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.statement-copy { max-width: 760px; }

.section-lead {
  max-width: 30rem;
  color: var(--muted);
  line-height: 1.78;
}

.image-block {
  overflow: hidden;
}

.image-block-compact {
  padding: 1rem;
}

.stock-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 1rem;
  filter: saturate(0.86) contrast(0.98) brightness(1.01);
}

.stock-image-banner {
  min-height: 220px;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(244, 245, 246, 0.7), rgba(255, 255, 255, 0.94));
}

.knowledge-summary {
  background: linear-gradient(180deg, rgba(17, 38, 61, 0.04), rgba(255, 255, 255, 0.98));
}

.printing-menu-shell {
  padding-top: 0;
}

.printing-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.printing-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(19, 35, 53, 0.1);
  color: #334557;
  box-shadow: var(--shadow);
}

.printing-menu a.is-current {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #fff;
  border-color: transparent;
}

.section-printing-detail {
  position: relative;
  overflow: clip;
}
.section-printing-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 245, 246, 0.97) 0%, rgba(244, 245, 246, 0.9) 38%, rgba(244, 245, 246, 0.82) 100%),
    url("images/professional tools and workflow.png") right center / min(52vw, 760px) auto no-repeat;
  opacity: 0.30;
  filter: grayscale(0.08) saturate(0.7) contrast(0.95);
  pointer-events: none;
}
.section-printing-detail > .container { position: relative; z-index: 1; }

.contact-details p { margin: 0 0 0.95rem; }
.map-card {
  margin-top: 1.15rem;
  padding: 1rem 1.05rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(19, 35, 53, 0.08);
  box-shadow: var(--shadow);
}
.map-card p { margin: 0 0 0.9rem; color: var(--muted); line-height: 1.72; }

.map-embed {
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 1.15rem;
  border: 1px solid rgba(19, 35, 53, 0.08);
  background: #fff;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.facade-card {
  margin: 1.15rem 0 0;
  overflow: hidden;
  max-width: 420px;
  border-radius: 1.1rem;
  border: 1px solid rgba(19, 35, 53, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}
.facade-card img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  object-position: 18% 94%;
  filter: saturate(0.78) contrast(1.02) brightness(1.01);
  transform: scale(1.14) translate(-7%, -11%);
  transform-origin: center;
}

.content-list,
.resource-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.78;
}

.content-list li + li,
.resource-list li + li {
  margin-top: 0.48rem;
}

.resource-list a {
  color: var(--navy-soft);
  text-decoration: none;
}

.resource-list a:hover,
.resource-list a:focus-visible {
  text-decoration: underline;
}

.contact-form { display: grid; gap: 1rem; }
.hp-field { position: absolute; left: -9999px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field-wide { grid-column: 1 / -1; }
.contact-form label { display: grid; gap: 0.45rem; }
.contact-form span { color: #34485a; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(19, 35, 53, 0.14);
  background: #fff;
  color: var(--ink);
}
.contact-form textarea { resize: vertical; }

.site-footer {
  padding: 0.85rem 0 1rem;
  border-top: 1px solid rgba(19, 35, 53, 0.08);
  background: rgba(255, 255, 255, 0.62);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1.2rem;
}
.footer-brand {
  max-width: 250px;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.95rem;
  max-width: 620px;
}
.footer-contact p,
.footer-meta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
  font-size: 0.9rem;
}
.footer-contact strong {
  color: var(--ink);
  font-weight: 500;
}
.footer-meta {
  margin-top: 0.3rem;
}
.footer-brand p {
  margin: 0.18rem 0 0;
  line-height: 1.35;
  font-size: 0.9rem;
}
.footer-links {
  gap: 0.65rem;
}
.footer-links a {
  font-size: 0.9rem;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  margin-left: auto;
}
.footer-social-button {
  min-width: 0;
  padding: 0.45rem 0.7rem;
  gap: 0.5rem;
  box-shadow: none;
}
.footer-social-button .social-icon {
  width: 1.7rem;
  height: 1.7rem;
  font-size: 0.95rem;
}
.footer-social-button .social-copy strong {
  font-size: 0.82rem;
}
.footer-social-button .social-copy small {
  font-size: 0.72rem;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 500ms ease, transform 500ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.consent-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  background: rgba(17, 38, 61, 0.96);
  color: #fff;
  box-shadow: 0 22px 42px rgba(17, 38, 61, 0.26);
}
.consent-banner-copy { display: grid; gap: 0.35rem; max-width: 840px; }
.consent-banner-title { margin: 0; font-size: 1.08rem; }
.consent-banner-text { margin: 0; color: rgba(255, 255, 255, 0.82); }
.consent-banner-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.consent-banner .button.ghost { color: #fff; background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.14); }

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(19, 35, 53, 0.08);
    border-radius: 1rem;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero-layout, .editorial-grid, .statement-layout, .contact-layout, .page-hero-layout, .editorial-panels, .form-grid { grid-template-columns: 1fr; }
  .page-hero-copy { grid-column: auto; }
  .hero-aside { padding-top: 0; }
  .footer-inner, .consent-banner { flex-direction: column; align-items: flex-start; }
  .social-button { min-width: 0; width: 100%; }
  .footer-contact { gap: 0.28rem; }
  .footer-social {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }
  .hero-home::before {
    background:
      linear-gradient(180deg, rgba(250, 251, 252, 0.9) 0%, rgba(250, 251, 252, 0.72) 100%),
      url("images/shop facade.png") center 90% / 138% auto no-repeat;
    opacity: 0.24;
  }
  .section-printing-detail::before {
    background:
      linear-gradient(180deg, rgba(244, 245, 246, 0.98) 0%, rgba(244, 245, 246, 0.92) 100%),
      url("images/professional tools and workflow.png") center bottom / 95% auto no-repeat;
    opacity: 0.16;
  }
}

@media (max-width: 560px) {
  .hero, .section, .page-hero { padding: 3.5rem 0; }
  .brand-name { font-size: 1.58rem; }
  .brand-tag { font-size: 0.82rem; }
  .hero-shell, .section-block, .note-card, .page-hero-copy { padding: 1.2rem; border-radius: 1.2rem; }
  h1 { font-size: clamp(1.5rem, 10vw, 2rem); }
  h2 { font-size: clamp(1.22rem, 6vw, 1.55rem); }
}

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