@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --paper-warm: #f4f0e8;
  --paper-cream: #faf7f2;
  --paper-white: #fdfcfa;
  --paper-kraft: #e8e2d6;
  --ink-black: #1a1a1f;
  --ink-navy: #1e2a3a;
  --ink-charcoal: #2c2c32;
  --ink-grey: #6b6560;
  --ink-taupe: #8a8278;
  --proof-white: #f8f5ef;
  --cyan: #00a8c8;
  --magenta: #d4145a;
  --yellow: #e8b820;
  --reg-red: #c41e3a;
  --ink-green: #2d6a4f;
  --cobalt: #2b5ea8;
  --salmon: #e8c4b8;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --header-h: 72px;
  --section-pad: clamp(3rem, 6vw, 6rem);
  --container: min(1200px, 92vw);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html,
body {
  overflow-x: hidden !important;
  max-width: 100vw;
  position: relative;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-black);
  background-color: var(--paper-warm);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
  max-width: 100%;
}

.section {
  padding-block: var(--section-pad);
  overflow-x: clip;
  max-width: 100%;
  position: relative;
}

.section--ink {
  background: var(--ink-navy);
  color: var(--proof-white);
}

.section--cream {
  background: var(--paper-cream);
}

.halftone-bg {
  position: relative;
}

.halftone-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26, 26, 31, 0.07) 1px, transparent 1px);
  background-size: 8px 8px;
  pointer-events: none;
  z-index: 0;
}

.paper-grain {
  position: relative;
}

.paper-grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.crop-marks {
  position: relative;
}

.crop-marks::before,
.crop-marks::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: rgba(26, 26, 31, 0.2);
  border-style: solid;
  pointer-events: none;
  z-index: 1;
}

.crop-marks::before {
  top: 12px;
  left: 12px;
  border-width: 1px 0 0 1px;
}

.crop-marks::after {
  bottom: 12px;
  right: 12px;
  border-width: 0 1px 1px 0;
}

.reg-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  position: relative;
}

.reg-mark::before,
.reg-mark::after {
  content: '';
  position: absolute;
  background: var(--reg-red);
}

.reg-mark::before {
  width: 100%;
  height: 2px;
}

.reg-mark::after {
  width: 2px;
  height: 100%;
}

.proof-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-grey);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.proof-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.section--ink .proof-label {
  color: rgba(248, 245, 239, 0.6);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: 1.125rem;
}

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  color: var(--ink-grey);
}

.section--ink .lead {
  color: rgba(248, 245, 239, 0.75);
}

.mono-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--ink-taupe);
}

.section--ink .mono-meta {
  color: rgba(248, 245, 239, 0.5);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--ink-black);
  color: var(--proof-white);
}

.btn--primary:hover {
  background: var(--cyan);
  color: var(--ink-black);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 168, 200, 0.25);
}

.btn--cyan {
  background: var(--cyan);
  color: var(--ink-black);
}

.btn--cyan:hover {
  background: var(--ink-black);
  color: var(--proof-white);
  transform: translateY(-2px);
}

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

.btn--outline:hover {
  background: var(--ink-black);
  color: var(--proof-white);
  transform: translateY(-2px);
}

.section--ink .btn--outline {
  color: var(--proof-white);
  border-color: rgba(248, 245, 239, 0.4);
}

.section--ink .btn--outline:hover {
  background: var(--proof-white);
  color: var(--ink-black);
}

.btn--full {
  width: 100%;
}

.link-crop {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding-bottom: 2px;
}

.link-crop::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--cyan);
  transition: width 0.4s var(--ease);
}

.link-crop:hover::after {
  width: 100%;
}

.link-crop .arrow {
  transition: transform 0.3s var(--ease);
}

.link-crop:hover .arrow {
  transform: translateX(4px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(244, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 26, 31, 0.08);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  max-width: 100vw;
  overflow-x: clip;
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(26, 26, 31, 0.08);
  background: rgba(253, 252, 250, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ink-black);
  transition: width 0.35s var(--ease);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-status {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-grey);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.header-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-green);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.header-cta {
  display: inline-flex;
}

@media (max-width: 1024px) {
  .header-cta {
    display: none;
  }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  z-index: 1100;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink-black);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  transform-origin: center;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(244, 240, 232, 0.98);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
  overflow: hidden;
  max-width: 100vw;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  padding: 1rem 2rem;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(26, 26, 31, 0.06);
  transition: color 0.3s var(--ease);
}

.mobile-menu a:hover {
  color: var(--cyan);
}

.mobile-menu-cta {
  margin-top: 2rem;
}

.mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--ink-black);
}

.hero {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: var(--section-pad);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow-x: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-reg-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(26, 26, 31, 0.12);
  margin-top: 0.5rem;
  max-width: 420px;
}

.hero-reg-cell {
  padding: 0.75rem 1rem;
  border-right: 1px solid rgba(26, 26, 31, 0.08);
  text-align: center;
}

.hero-reg-cell:last-child {
  border-right: none;
}

.hero-reg-cell .cell-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-taupe);
  margin-bottom: 0.25rem;
}

.hero-reg-cell .cell-value {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-black);
}

.hero-reg-cell.active .cell-value {
  color: var(--cyan);
}

.hero-passes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.pass-card {
  background: var(--paper-white);
  border: 1px solid rgba(26, 26, 31, 0.08);
  padding: 1rem;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.pass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 26, 31, 0.08);
}

.pass-card .pass-id {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--magenta);
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.pass-card h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 31, 0.1);
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.hero-image-wrap:hover img {
  transform: scale(1.03);
}

.hero-image-wrap .crop-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--reg-red);
  border-style: solid;
  opacity: 0.6;
  z-index: 2;
}

.hero-image-wrap .crop-corner--tl {
  top: 8px;
  left: 8px;
  border-width: 2px 0 0 2px;
}

.hero-image-wrap .crop-corner--br {
  bottom: 8px;
  right: 8px;
  border-width: 0 2px 2px 0;
}

.hero-parallax-layer {
  position: absolute;
  inset: -10%;
  background-image: radial-gradient(circle, rgba(0, 168, 200, 0.04) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  pointer-events: none;
  z-index: 0;
}

.production-passes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.production-pass {
  background: var(--paper-white);
  border: 1px solid rgba(26, 26, 31, 0.08);
  padding: 2rem;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.production-pass:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 26, 31, 0.1);
}

.production-pass .pass-stage {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.production-pass .pass-stage .cmyk-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.production-pass h3 {
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
}

.production-pass .input-label,
.production-pass .output-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.production-pass .input-label {
  color: var(--magenta);
}

.production-pass .output-label {
  color: var(--cyan);
  margin-top: 1rem;
}

.production-pass .pass-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan), var(--yellow));
  opacity: 0.3;
  margin: 1rem 0;
}

.registration-standard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.registration-visual img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border: 1px solid rgba(248, 245, 239, 0.1);
}

.proof-checks {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border: 1px solid rgba(248, 245, 239, 0.12);
}

.proof-check {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(248, 245, 239, 0.08);
  transition: background 0.3s var(--ease);
}

.proof-check:last-child {
  border-bottom: none;
}

.proof-check:hover {
  background: rgba(248, 245, 239, 0.05);
}

.proof-check .check-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan);
  min-width: 28px;
}

.proof-check .check-text {
  font-size: 0.9375rem;
  font-weight: 500;
}

.line-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.line-icon path,
.line-icon line,
.line-icon circle {
  stroke: var(--cyan);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  transition: stroke-dashoffset 1s var(--ease);
}

.line-icon.drawn path,
.line-icon.drawn line,
.line-icon.drawn circle {
  stroke-dashoffset: 0;
}

.editions-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
}

.edition-featured {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 31, 0.08);
  background: var(--paper-white);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.edition-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 26, 31, 0.1);
}

.edition-featured img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.edition-featured .edition-body {
  padding: 1.75rem;
}

.edition-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.edition-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  background: var(--paper-white);
  border: 1px solid rgba(26, 26, 31, 0.08);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.edition-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26, 26, 31, 0.08);
}

.edition-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 90px;
}

.edition-card .edition-info {
  padding: 1rem 1rem 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.edition-id {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--reg-red);
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.edition-meta {
  font-size: 0.8125rem;
  color: var(--ink-grey);
  margin-top: 0.35rem;
}

.printworks-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.note-highlight {
  background: var(--ink-black);
  color: var(--proof-white);
  padding: 2rem;
  margin-top: 2rem;
  position: relative;
  border-left: 3px solid var(--cyan);
}

.note-highlight p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  line-height: 1.4;
}

.note-visual img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 1px solid rgba(26, 26, 31, 0.08);
}

.service-editions {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(26, 26, 31, 0.1);
}

.service-edition {
  border-bottom: 1px solid rgba(26, 26, 31, 0.08);
}

.service-edition:last-child {
  border-bottom: none;
}

.service-edition-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
  background: var(--paper-white);
  transition: background 0.3s var(--ease);
  gap: 1rem;
}

.service-edition-header:hover {
  background: var(--paper-cream);
}

.service-edition-header h3 {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
}

.service-edition-header .edition-code {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--magenta);
  letter-spacing: 0.08em;
}

.service-edition-toggle {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.service-edition-toggle::before,
.service-edition-toggle::after {
  content: '';
  position: absolute;
  background: var(--ink-black);
  transition: transform 0.35s var(--ease);
}

.service-edition-toggle::before {
  width: 14px;
  height: 1.5px;
}

.service-edition-toggle::after {
  width: 1.5px;
  height: 14px;
}

.service-edition.active .service-edition-toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}

.service-edition-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
  background: var(--paper-cream);
}

.service-edition.active .service-edition-body {
  max-height: 600px;
}

.service-edition-content {
  padding: 0 2rem 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-col h4 {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-taupe);
  margin-bottom: 0.5rem;
}

.service-col p {
  font-size: 0.9rem;
  color: var(--ink-grey);
}

.proofing-sequence {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  position: relative;
}

.proofing-sequence::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow), var(--reg-red), var(--ink-green), var(--cobalt), var(--cyan));
  opacity: 0.3;
  z-index: 0;
}

.sequence-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}

.sequence-step .step-marker {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--paper-white);
  border: 1.5px solid rgba(26, 26, 31, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.sequence-step:hover .step-marker {
  transform: translateY(-4px);
  border-color: var(--cyan);
}

.sequence-step h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.sequence-step p {
  font-size: 0.75rem;
  color: var(--ink-grey);
  line-height: 1.5;
}

.imprint-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.imprint-stat {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(248, 245, 239, 0.05);
  border: 1px solid rgba(248, 245, 239, 0.1);
  transition: transform 0.35s var(--ease);
}

.imprint-stat:hover {
  transform: translateY(-4px);
}

.imprint-stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.imprint-stat .stat-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.6);
}

.imprint-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.imprint-quote {
  padding: 1.75rem;
  background: rgba(248, 245, 239, 0.04);
  border-left: 2px solid var(--cyan);
}

.imprint-quote p {
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 0.75rem;
  color: rgba(248, 245, 239, 0.85);
}

.imprint-quote cite {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: rgba(248, 245, 239, 0.5);
  font-style: normal;
}

.marquee-section {
  overflow: hidden;
  max-width: 100vw;
  padding-block: 1.25rem;
  background: var(--ink-black);
  border-block: 1px solid rgba(248, 245, 239, 0.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-left 40s linear infinite;
}

.marquee-track--reverse {
  animation: marquee-right 35s linear infinite;
  margin-top: 0.5rem;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.7);
  white-space: nowrap;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.marquee-item .sep {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.cta-section {
  text-align: center;
  position: relative;
}

.cta-section .cta-inner {
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  background: var(--paper-white);
  border: 1px solid rgba(26, 26, 31, 0.1);
  padding: 2.5rem;
  margin-top: 2rem;
  text-align: left;
}

.contact-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-item .contact-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-taupe);
}

.contact-item .contact-value {
  font-size: 0.9375rem;
  font-weight: 500;
}

.contact-map-preview {
  border: 1px solid rgba(26, 26, 31, 0.1);
  overflow: hidden;
  min-height: 220px;
}

.contact-map-preview iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
}

.site-footer {
  background: var(--ink-black);
  color: var(--proof-white);
  padding-block: clamp(3rem, 5vw, 5rem);
  overflow-x: clip;
}

.footer-imprint {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.3;
  margin-bottom: 3rem;
  max-width: 600px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(248, 245, 239, 0.1);
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.5);
  margin-bottom: 1.25rem;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.875rem;
  color: rgba(248, 245, 239, 0.75);
  margin-bottom: 0.6rem;
  transition: color 0.3s var(--ease);
}

.footer-col a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(248, 245, 239, 0.08);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: rgba(248, 245, 239, 0.4);
  letter-spacing: 0.04em;
}

.footer-logo img {
  height: 28px;
  opacity: 0.7;
}

.page-hero {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 3rem;
  position: relative;
}

.page-hero-content {
  max-width: 720px;
}

.page-hero-content h1 {
  margin-bottom: 1rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.content-block p {
  color: var(--ink-grey);
}

.content-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid rgba(26, 26, 31, 0.08);
}

.standards-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.standard-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--paper-white);
  border: 1px solid rgba(26, 26, 31, 0.06);
  transition: transform 0.3s var(--ease);
}

.standard-item:hover {
  transform: translateX(4px);
}

.standard-item .std-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan);
  min-width: 32px;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-detail-card {
  background: var(--paper-white);
  border: 1px solid rgba(26, 26, 31, 0.08);
  padding: 2rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 26, 31, 0.08);
}

.service-detail-card .svc-code {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--magenta);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.service-detail-card h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-detail-card p {
  font-size: 0.9rem;
  color: var(--ink-grey);
  margin-bottom: 1rem;
}

.service-detail-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.service-detail-card li {
  font-size: 0.8125rem;
  color: var(--ink-grey);
  padding-left: 1rem;
  position: relative;
}

.service-detail-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  background: var(--cyan);
  border-radius: 50%;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(26, 26, 31, 0.1);
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid rgba(26, 26, 31, 0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: var(--paper-white);
  transition: background 0.3s var(--ease);
  gap: 1rem;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-black);
}

.faq-question:hover {
  background: var(--paper-cream);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink-black);
  transition: transform 0.35s var(--ease);
}

.faq-toggle::before {
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  width: 1.5px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
  background: var(--paper-cream);
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-grey);
  line-height: 1.7;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.portfolio-case {
  background: var(--paper-white);
  border: 1px solid rgba(26, 26, 31, 0.08);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.portfolio-case:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 26, 31, 0.1);
}

.portfolio-case img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.portfolio-case .case-body {
  padding: 1.75rem;
}

.case-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 26, 31, 0.06);
}

.case-meta h5 {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-taupe);
  margin-bottom: 0.25rem;
}

.case-meta p {
  font-size: 0.8125rem;
  color: var(--ink-grey);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
}

.contact-form-panel {
  background: var(--paper-white);
  border: 1px solid rgba(26, 26, 31, 0.1);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-taupe);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 1px solid rgba(26, 26, 31, 0.15);
  background: var(--paper-cream);
  border-radius: 2px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  color: var(--ink-black);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 168, 200, 0.12);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--reg-red);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  font-size: 0.75rem;
  color: var(--reg-red);
  margin-top: 0.35rem;
  display: none;
}

.form-group.has-error .form-error {
  display: block;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-hours {
  padding: 1.5rem;
  background: var(--paper-white);
  border: 1px solid rgba(26, 26, 31, 0.08);
}

.contact-hours h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-hours p {
  font-size: 0.875rem;
  color: var(--ink-grey);
}

.contact-full-map {
  border: 1px solid rgba(26, 26, 31, 0.1);
  overflow: hidden;
  min-height: 350px;
}

.contact-full-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-h);
}

.thanks-content {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.thanks-mark {
  width: 64px;
  height: 64px;
  border: 2px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.thanks-mark::before,
.thanks-mark::after {
  content: '';
  position: absolute;
  background: var(--reg-red);
}

.thanks-mark::before {
  width: 24px;
  height: 2px;
}

.thanks-mark::after {
  width: 2px;
  height: 24px;
}

.legal-page {
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: var(--section-pad);
}

.legal-content {
  max-width: 800px;
  margin-inline: auto;
}

.legal-content h1 {
  margin-bottom: 0.5rem;
}

.legal-content .legal-updated {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-taupe);
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  font-size: 0.9375rem;
  color: var(--ink-grey);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  font-size: 0.9375rem;
  color: var(--ink-grey);
  margin-bottom: 0.5rem;
  line-height: 1.7;
  list-style: disc;
}

.legal-content ol li {
  list-style: decimal;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(26, 26, 31, 0.08);
}

.legal-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-grey);
  transition: color 0.3s var(--ease);
}

.legal-nav a:hover {
  color: var(--cyan);
}

.section-header {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  max-width: 640px;
}

.section-header--center {
  margin-inline: auto;
  text-align: center;
}

.section-header .proof-label {
  margin-bottom: 0.75rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.47s; opacity: 1; transform: translateY(0); }

.calibration-strip {
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow), var(--ink-black));
  opacity: 0.6;
  margin-bottom: 2rem;
}

@media (min-width: 1025px) and (hover: hover) {
  .hero-parallax-layer {
    will-change: transform;
  }
}

@media (max-width: 1024px) {
  .header-nav,
  .header-status,
  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-grid,
  .registration-standard,
  .printworks-note,
  .content-grid,
  .contact-layout,
  .contact-preview,
  .editions-layout {
    grid-template-columns: 1fr;
  }

  .production-passes {
    grid-template-columns: repeat(2, 1fr);
  }

  .proofing-sequence {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .proofing-sequence::before {
    display: none;
  }

  .imprint-proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .imprint-quotes {
    grid-template-columns: 1fr;
  }

  .service-edition-content {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .portfolio-grid,
  .services-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .production-passes,
  .hero-passes,
  .hero-reg-panel {
    grid-template-columns: 1fr;
  }

  .imprint-proof {
    grid-template-columns: 1fr;
  }

  .edition-card {
    grid-template-columns: 80px 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .case-meta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .proofing-sequence {
    grid-template-columns: 1fr;
  }
}
