@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,500;0,700;0,800;0,900;1,700&family=Work+Sans:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* Print-production palette — grounded in proof sheets, dielines, registration marks */
  --ink: #14171c;
  --paper: #f6f5f0;
  --panel: #ffffff;
  --line: #dedcd2;
  --blue: #0b4fe0;
  --blue-light: #3f74ff;
  --blue-text: #0a3fb0; /* AA-safe blue for small text on light bg (~8.9:1) */
  --magenta: #d6236e; /* spot accent — large text/icons/borders only, not small body copy */
  --muted: #5c6167; /* AA-safe muted text (~6.2:1) */
  --white: #ffffff;
  --radius: 3px;
  --radius-lg: 8px;
  --shadow-sm: 0 2px 10px rgba(20, 23, 28, 0.08);
  --shadow-md: 0 18px 40px rgba(20, 23, 28, 0.16);
  --max-width: 1180px;
  font-size: 16px;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Archivo', -apple-system, sans-serif;
  font-weight: 800;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

:focus-visible {
  outline: 2.5px solid var(--blue);
  outline-offset: 3px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.mono { font-family: 'Space Mono', monospace; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-text);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "+";
  display: inline-block;
  font-weight: 700;
  color: var(--blue-text);
}
.section--dark .eyebrow { color: var(--blue-light); }
.section--dark .eyebrow::before { color: var(--blue-light); }

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--dark { background: var(--ink); color: var(--paper); }

.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section--dark .section-head p { color: rgba(246, 245, 240, 0.72); }

/* Scroll reveal */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* Crop / registration mark — printer's alignment mark, used as the site's signature device */
.crop-mark { position: absolute; color: var(--blue); opacity: 0.75; pointer-events: none; }
.crop-mark--tl { top: 14px; left: 14px; }
.crop-mark--tr { top: 14px; right: 14px; }
.crop-mark--bl { bottom: 14px; left: 14px; }
.crop-mark--br { bottom: 14px; right: 14px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
  font-family: 'Work Sans', sans-serif;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn--blue { background: var(--blue); color: var(--white); }
.btn--blue:hover { background: var(--blue-light); box-shadow: var(--shadow-md); }

.btn--outline { border-color: rgba(246, 245, 240, 0.4); color: var(--paper); }
.btn--outline:hover { background: rgba(246, 245, 240, 0.1); border-color: var(--paper); }

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

.btn--sm { padding: 9px 18px; font-size: 0.82rem; }

/* Top bar */
.topbar {
  background: var(--ink);
  color: rgba(246, 245, 240, 0.85);
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap; gap: 6px; }
.topbar a { color: rgba(246, 245, 240, 0.85); }
.topbar a:hover { color: var(--blue-light); }
.topbar .contact-links { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .contact-links span { display: inline-flex; align-items: center; gap: 6px; }
.topbar .reg-no { opacity: 0.65; }

/* Header / Nav */
.site-header { background: var(--panel); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--ink); padding-left: 6px; }
.brand-mark { width: 34px; height: 34px; flex-shrink: 0; color: var(--ink); }
.brand-text small {
  display: block;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-text);
  margin-top: 2px;
}

.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--muted);
  position: relative;
  padding: 8px 14px;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--blue-text); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 3px;
  height: 2px;
  background: var(--blue);
}

.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Cart toggle */
.cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 0.8rem;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.cart-toggle:hover { background: var(--ink); color: var(--paper); transform: translateY(-1px); }
.cart-toggle.has-items { border-color: var(--blue); color: var(--blue-text); }
.cart-toggle.has-items:hover { background: var(--blue); color: var(--white); }
.cart-toggle__icon { flex-shrink: 0; }
.cart-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 4px;
  border-radius: 999px; background: var(--magenta); color: var(--white);
  font-size: 0.66rem; font-weight: 700; margin-left: -4px;
}
.cart-toggle--pulse { animation: cartPulse 0.4s ease; }
@keyframes cartPulse { 0% { transform: scale(1); } 35% { transform: scale(1.12); } 100% { transform: scale(1); } }

/* Cart drawer */
.cart-overlay { position: fixed; inset: 0; background: rgba(20, 23, 28, 0.55); opacity: 0; pointer-events: none; transition: opacity 0.25s ease; z-index: 90; }
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100%);
  background: var(--paper);
  box-shadow: var(--shadow-md);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
  z-index: 91;
  display: flex; flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); background: var(--panel); }
.cart-drawer__head h3 { font-size: 1.05rem; }
.cart-drawer__close { background: none; border: none; font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--muted); padding: 4px 8px; }
.cart-drawer__close:hover { color: var(--ink); }

.cart-drawer__body { flex: 1; overflow-y: auto; padding: 12px 24px; }
.cart-empty { color: var(--muted); font-size: 0.92rem; padding: 24px 0; }

.cart-line { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.cart-line__thumb { width: 56px; height: 56px; flex-shrink: 0; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); background: var(--panel); }
.cart-line__thumb--empty { background: var(--panel); background-image: repeating-linear-gradient(135deg, var(--line) 0 2px, transparent 2px 10px); }
.cart-line__main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 10px; }
.cart-line__info { display: flex; flex-direction: column; gap: 3px; }
.cart-line__name { font-size: 0.92rem; font-weight: 600; }
.cart-line__sku { font-size: 0.72rem; color: var(--muted); }
.cart-line__controls { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cart-line__price { font-size: 0.86rem; font-weight: 700; font-family: 'Space Mono', monospace; }
.cart-line__remove { background: none; border: none; font-size: 1.2rem; line-height: 1; color: var(--muted); cursor: pointer; padding: 2px 6px; }
.cart-line__remove:hover { color: var(--blue-text); }

.cart-drawer__foot { padding: 20px 24px 24px; border-top: 1px solid var(--line); background: var(--panel); display: flex; flex-direction: column; gap: 14px; }
.cart-drawer__subtotal { display: flex; align-items: baseline; justify-content: space-between; font-family: 'Space Mono', monospace; }
.cart-drawer__subtotal span { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.cart-drawer__subtotal strong { font-size: 1.3rem; color: var(--ink); }
.cart-drawer__clear { background: none; border: none; font-size: 0.8rem; color: var(--muted); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; align-self: center; }
.cart-drawer__clear:hover { color: var(--blue-text); }

body.cart-open { overflow: hidden; }

/* Quantity stepper */
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.qty-btn { background: var(--panel); border: none; width: 30px; height: 30px; font-size: 1rem; cursor: pointer; color: var(--ink); transition: background 0.15s ease; }
.qty-btn:hover { background: var(--paper); }
.qty-input {
  width: 44px; text-align: center; border: none;
  border-left: 1px solid var(--line); border-right: 1px solid var(--line);
  height: 30px; font-family: 'Space Mono', monospace; font-size: 0.85rem;
  background: var(--panel); color: var(--ink); -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-stepper--sm .qty-btn { width: 26px; height: 26px; }
.qty-stepper--sm .qty-input { width: 38px; height: 26px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

/* Registration strip — full-width plate-alignment graphic directly under the header */
.registration-strip { background: var(--ink); color: var(--paper); padding: 11px 0; border-bottom: 1px solid #2a2e35; overflow: hidden; }
.registration-strip .container { display: flex; align-items: center; gap: 18px; }
.registration-strip .stage { font-family: 'Space Mono', monospace; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; white-space: nowrap; color: var(--paper); display: flex; align-items: center; gap: 7px; }
.registration-strip .dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.registration-strip .dot--c { background: #16b8d6; }
.registration-strip .dot--m { background: #e5197f; }
.registration-strip .dot--y { background: #f4d40a; }
.registration-strip .dot--k { background: #f6f5f0; }
.registration-strip .rule { flex: 1; height: 1px; background: repeating-linear-gradient(90deg, rgba(246,245,240,0.35) 0 6px, transparent 6px 12px); }

/* Hero — proof sheet: headline + spec strip, mirrored by a crop-marked proof card */
.hero-proof { background: var(--panel); padding: 60px 0; border-bottom: 1px solid var(--line); }
.hero-proof__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero-proof h1 { font-size: clamp(2rem, 3.8vw, 2.9rem); margin-bottom: 16px; }
.hero-proof p.lead { font-size: 1.04rem; color: var(--muted); max-width: 520px; margin-bottom: 28px; }
.hero-proof__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-proof__specs { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 32px; }
.hero-proof__specs div { border-left: 2px solid var(--blue); padding-left: 12px; }
.hero-proof__specs span { display: block; font-family: 'Space Mono', monospace; font-size: 0.64rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.hero-proof__specs strong { font-size: 0.98rem; font-weight: 700; }

.proof-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  aspect-ratio: 4 / 3.1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.proof-card__label { font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.proof-card__title { font-size: 1.35rem; max-width: 260px; }
.proof-stamp {
  position: absolute;
  top: 30%; right: 14%;
  transform: rotate(-9deg) scale(1);
  border: 3px solid var(--blue);
  border-radius: 6px;
  padding: 8px 16px;
  color: var(--blue);
  text-align: center;
  opacity: 0;
  animation: stampIn 0.6s cubic-bezier(0.2, 0.9, 0.3, 1.1) 0.5s forwards;
}
.proof-stamp strong { display: block; font-family: 'Archivo', sans-serif; font-size: 1.15rem; font-weight: 900; letter-spacing: 0.04em; }
.proof-stamp span { display: block; font-family: 'Space Mono', monospace; font-size: 0.52rem; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; }
@keyframes stampIn {
  0% { opacity: 0; transform: rotate(-9deg) scale(1.7); }
  60% { opacity: 1; }
  100% { opacity: 1; transform: rotate(-9deg) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .proof-stamp { animation: none; opacity: 1; }
}

/* Stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--panel); }
.stat-strip div { padding: 24px; border-left: 1px solid var(--line); }
.stat-strip div:first-child { border-left: none; }
.stat-strip strong { display: block; font-family: 'Space Mono', monospace; font-size: 1.6rem; font-weight: 700; color: var(--ink); }
.stat-strip span { font-size: 0.76rem; color: var(--muted); }

/* Filter pills — category quick-filter, homepage preview + shop sidebar */
.filter-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--panel); color: var(--ink); font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.filter-pill:hover { border-color: var(--blue); }
.filter-pill.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.filter-pill .count { font-family: 'Space Mono', monospace; font-size: 0.68rem; opacity: 0.6; }

/* Trust line — plain text trust signals, no icon cards */
.trust-line { display: flex; flex-wrap: wrap; border-top: 1px solid var(--line); }
.trust-line div { flex: 1; min-width: 220px; padding: 30px 30px; border-left: 1px solid var(--line); }
.trust-line div:first-child { border-left: none; }
.trust-line h3 { font-size: 1rem; margin-bottom: 6px; }
.trust-line p { color: var(--muted); font-size: 0.9rem; }

/* Grid */
.grid { display: grid; gap: 26px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* Job ticket — production process (About page), styled as a real print job docket */
.job-ticket { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 2px solid var(--ink); margin-top: 12px; }
.job-step { padding: 22px 20px 4px; position: relative; border-left: 1px solid var(--line); }
.job-step:first-child { border-left: none; }
.job-step::before {
  content: ""; position: absolute; top: -2px; left: -5px; width: 9px; height: 9px;
  border-radius: 50%; background: var(--blue); margin-top: -3.5px;
}
.job-step:first-child::before { left: -4.5px; }
.job-stage { font-family: 'Space Mono', monospace; font-size: 0.68rem; color: var(--blue-text); font-weight: 700; letter-spacing: 0.04em; }
.job-step h3 { font-size: 0.96rem; margin: 8px 0; }
.job-step p { font-size: 0.85rem; color: var(--muted); }

/* Shop layout — sidebar category filter + live-filtered grid, not stacked sections */
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.shop-toolbar .search-bar { margin-bottom: 0; max-width: 360px; }
.shop-count { font-family: 'Space Mono', monospace; font-size: 0.8rem; color: var(--muted); white-space: nowrap; }
.shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: 44px; align-items: start; }
.shop-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 2px; }
.shop-sidebar button {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  width: 100%; text-align: left; padding: 11px 4px; border: none; background: none; cursor: pointer;
  font-family: 'Work Sans', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.shop-sidebar button:hover { color: var(--ink); }
.shop-sidebar button.is-active { color: var(--blue-text); }
.shop-sidebar button .count { font-family: 'Space Mono', monospace; font-size: 0.72rem; font-weight: 500; color: var(--muted); }
.product-category { margin-bottom: 44px; scroll-margin-top: 90px; }
.product-category:last-child { margin-bottom: 0; }
.product-category__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; }
.product-category__head .code { color: var(--blue-text); font-weight: 700; font-family: 'Space Mono', monospace; font-size: 0.78rem; }
.product-category__head h2 { font-size: 1.2rem; }

.search-bar { display: flex; gap: 10px; }
.search-bar input {
  flex: 1; padding: 14px 18px; border: 1.5px solid var(--line); border-radius: var(--radius);
  font-family: inherit; font-size: 0.98rem; background: var(--panel); color: var(--ink);
}
.search-bar input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11, 79, 224, 0.14); }
.search-bar button { flex-shrink: 0; }

/* Product card — dashed dieline border + corner registration mark */
.product-card {
  background: var(--panel); border: 1.5px dashed var(--line); border-radius: var(--radius);
  position: relative; display: flex; flex-direction: column; overflow: hidden; cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.2,0.7,0.3,1), box-shadow 0.25s ease, border-color 0.25s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue); border-style: solid; }
.product-card__media { display: block; position: relative; aspect-ratio: 1 / 1; background: var(--paper); display: flex; align-items: center; justify-content: center; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-card__media svg.placeholder-icon { color: var(--line); width: 56px; height: 56px; }
.product-card__media .crop-mark { width: 14px; height: 14px; }
.product-card__media .code {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(20, 23, 28, 0.8); color: var(--paper);
  padding: 4px 9px; border-radius: 3px; font-size: 0.62rem; font-family: 'Space Mono', monospace; letter-spacing: 0.02em;
}
.product-card__body { padding: 16px 20px 20px; display: flex; flex-direction: column; flex-grow: 1; }
.product-card h3 { font-size: 0.98rem; margin: 0 0 8px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; font-weight: 700; }
.product-card h3:hover { color: var(--blue-text); }
.product-card h3 small { font-size: 0.66rem; color: var(--muted); font-weight: 500; }
.product-card__body > p { font-size: 0.87rem; color: var(--muted); flex-grow: 1; margin-bottom: 18px; }

.product-card__footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px dashed var(--line); }
.product-price { font-family: 'Space Mono', monospace; font-weight: 700; font-size: 0.98rem; color: var(--ink); }
.product-price small { font-weight: 500; font-size: 0.7rem; color: var(--muted); margin-left: 3px; }

.product-card--link { text-decoration: none; }
.product-card--link:hover h3 { color: var(--blue-text); }

/* Product detail page */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--muted); flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--blue-text); }
.breadcrumb span[aria-hidden] { color: var(--line); }

.product-detail { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; margin-bottom: 56px; }
.product-detail__media { background: var(--panel); border: 1.5px dashed var(--line); border-radius: var(--radius-lg); position: relative; overflow: hidden; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.product-detail__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-detail__media svg.placeholder-icon { color: var(--line); width: 96px; height: 96px; }
.product-detail__media .code { position: absolute; bottom: 14px; right: 14px; background: rgba(20,23,28,0.8); color: var(--paper); padding: 5px 10px; border-radius: 3px; font-size: 0.7rem; font-family: 'Space Mono', monospace; letter-spacing: 0.02em; }
.product-detail__media .crop-mark { width: 18px; height: 18px; }
.product-detail__media--placeholder { padding: 50px 30px; flex-direction: column; text-align: center; gap: 18px; aspect-ratio: auto; min-height: 340px; }
.product-detail__media-label { font-size: 0.8rem; color: var(--muted); max-width: 240px; }

.product-detail__info h1 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 10px 0 14px; }
.product-detail__short { color: var(--muted); font-size: 1rem; margin-bottom: 26px; }
.product-detail__buy { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.product-detail__buy .product-price { font-size: 1.3rem; }

.product-detail__body { max-width: 780px; margin: 0 auto 64px; }
.product-detail__body h2 { font-size: 1.15rem; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.product-detail__body > p#detail-description { font-size: 1rem; line-height: 1.8; color: var(--ink); margin-bottom: 40px; }
.product-detail__body .info-table { margin-bottom: 20px; table-layout: fixed; }
.product-detail__body .info-table th { width: 240px; }
.product-detail__body .info-table td { word-break: break-word; }

.product-detail__related { border-top: 1px solid var(--line); padding-top: 48px; }

.info-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.info-table tr { border-bottom: 1px dotted var(--line); }
.info-table tr:last-child { border-bottom: none; }
.info-table th, .info-table td { text-align: left; padding: 16px 12px; font-size: 0.95rem; vertical-align: top; }
.info-table th { width: 200px; font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); font-weight: 700; }

/* Testimonials */
.testimonial-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--magenta);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.testimonial-quote { font-size: 0.98rem; line-height: 1.65; color: var(--ink); }
.testimonial-attrib { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-mark {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: var(--ink); color: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Mono', monospace; font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
}
.testimonial-attrib h4 { font-size: 0.88rem; margin: 0; }
.testimonial-attrib span { font-size: 0.78rem; color: var(--muted); }

/* Vision & Mission */
.vm-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid #2a2e35;
  height: 100%;
}
.vm-card .eyebrow { color: var(--blue-light); }
.vm-card .eyebrow::before { color: var(--blue-light); }
.vm-card h3 { color: var(--paper); font-size: 1.3rem; margin-bottom: 12px; }
.vm-card p { color: rgba(246,245,240,0.78); font-size: 0.98rem; }

/* CTA banner */
.cta-banner {
  background: var(--ink); color: var(--paper); border-radius: var(--radius-lg); padding: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden; border: 1px solid #2a2e35;
}
.cta-banner::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 90% 10%, rgba(11,79,224,0.28), transparent 50%); pointer-events: none; }
.cta-banner h2 { color: var(--white); font-size: 1.7rem; margin-bottom: 8px; position: relative; }
.cta-banner p { color: rgba(246,245,240,0.72); position: relative; }
.cta-banner .cta-actions { position: relative; display: flex; gap: 14px; flex-wrap: wrap; }

/* About page */
.about-hero { background: var(--panel); padding: 68px 0; border-bottom: 1px solid var(--line); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.checklist li { display: flex; gap: 12px; padding: 11px 0; font-size: 0.96rem; color: var(--ink); }
.checklist li svg { color: var(--blue); flex-shrink: 0; margin-top: 3px; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
.contact-card { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px dotted var(--line); }
.contact-card:last-child { border-bottom: none; }
.contact-card .icon { width: 42px; height: 42px; color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card h4 { font-family: 'Space Mono', monospace; font-size: 0.76rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 5px; color: var(--muted); }
.contact-card p, .contact-card a { color: var(--ink); font-size: 0.96rem; }

.form-panel { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; }
.form-row { margin-bottom: 22px; }
.form-row label { display: block; font-family: 'Space Mono', monospace; font-size: 0.68rem; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; color: var(--muted); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: inherit; font-size: 0.96rem; background: var(--paper); color: var(--ink);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11, 79, 224, 0.14); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 16px; }

/* Checkout */
.checkout-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: start; }
.checkout-form-section { margin-bottom: 32px; }
.checkout-form-section:last-of-type { margin-bottom: 0; }
.checkout-form-section h3 { font-size: 1.02rem; margin-bottom: 18px; }
.form-divider { border: none; border-top: 1px dashed var(--line); margin: 32px 0; }

.payment-notice { display: flex; gap: 14px; align-items: flex-start; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.payment-notice .icon { color: var(--blue-text); flex-shrink: 0; margin-top: 2px; }
.payment-notice p { font-size: 0.92rem; color: var(--ink); }
.payment-notice p + p { margin-top: 6px; color: var(--muted); font-size: 0.85rem; }

.terms-row { display: flex; gap: 10px; align-items: flex-start; margin: 28px 0 22px; }
.terms-row input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--blue); flex-shrink: 0; }
.terms-row label { font-size: 0.88rem; color: var(--muted); }
.terms-row a { color: var(--blue-text); text-decoration: underline; text-underline-offset: 2px; }

.order-summary-card { position: sticky; top: 96px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; }
.order-summary-card h3 { font-size: 1.05rem; margin-bottom: 18px; }
.order-summary-lines { max-height: 400px; overflow-y: auto; }
.order-summary-totals { border-top: 1px solid var(--line); margin-top: 14px; padding-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.order-summary-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.92rem; color: var(--muted); }
.order-summary-row.total { font-size: 1.2rem; color: var(--ink); font-weight: 700; font-family: 'Space Mono', monospace; padding-top: 10px; border-top: 1px dashed var(--line); margin-top: 4px; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 24px; height: 260px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(246,245,240,0.75); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.75fr 0.85fr 0.85fr 1.05fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(246,245,240,0.14); }
.footer-grid h4 { color: var(--paper); font-family: 'Space Mono', monospace; font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-grid ul li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-grid ul li a:hover { color: var(--blue-light); }
.footer-brand p { font-size: 0.88rem; margin-top: 14px; max-width: 320px; color: rgba(246,245,240,0.55); }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-family: 'Space Mono', monospace; font-size: 0.72rem; color: rgba(246,245,240,0.45); }

.legal-doc { max-width: 720px; margin: 0 auto; }
.legal-meta {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: var(--muted);
  padding-bottom: 24px;
  margin-bottom: 8px;
  border-bottom: 1px dashed var(--line);
}
.legal-toc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 28px 0 8px;
}
.legal-toc h2 {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 700;
}
.legal-toc ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  padding-left: 20px;
}
.legal-toc a { font-size: 0.9rem; color: var(--ink); }
.legal-toc a:hover { color: var(--blue-text); }

.legal-doc section { margin-top: 44px; }
.legal-doc h2 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 1.25rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.legal-doc h2 .clause-no {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-text);
  flex-shrink: 0;
}
.legal-doc h3 { font-size: 1.02rem; margin: 20px 0 8px; }
.legal-doc p { font-size: 0.98rem; color: var(--ink); line-height: 1.8; margin-bottom: 14px; }
.legal-doc p.muted-note { color: var(--muted); font-size: 0.88rem; }
.legal-doc ul, .legal-doc ol.plain { padding-left: 22px; margin-bottom: 14px; }
.legal-doc li { font-size: 0.98rem; color: var(--ink); line-height: 1.75; margin-bottom: 8px; }
.legal-doc strong { font-weight: 600; }
.legal-doc a.inline-link { color: var(--blue-text); text-decoration: underline; text-underline-offset: 2px; }

/* Responsive */
@media (max-width: 900px) {
  .hero-proof__grid { grid-template-columns: 1fr; }
  .proof-card { order: -1; max-width: 460px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip div:nth-child(3) { border-left: none; }
  .trust-line { flex-direction: column; }
  .trust-line div { border-left: none; border-top: 1px solid var(--line); }
  .trust-line div:first-child { border-top: none; }
  .job-ticket { grid-template-columns: 1fr; border-top: none; }
  .job-step { border-left: 2px solid var(--ink); padding-left: 20px; padding-bottom: 20px; }
  .job-step::before { top: 4px; left: -6px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .shop-sidebar button { width: auto; border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-detail { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--panel); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 4px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; }
  .nav-actions { gap: 6px; }
  .cart-toggle { padding: 9px 11px; gap: 0; }
  .cart-toggle__total { display: none; }
  .cart-count { margin-left: 0; }
  .nav-toggle { display: flex; padding: 10px; }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .cta-banner { padding: 36px 24px; flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; text-align: center; gap: 2px; padding-top: 8px; padding-bottom: 8px; }
  .topbar .contact-links { gap: 2px; justify-content: center; width: 100%; }
  .topbar .reg-no { font-size: 0.68rem; }
  .registration-strip .stage span:last-child { display: none; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .shop-toolbar { flex-direction: column; align-items: stretch; }
  .shop-toolbar .search-bar { max-width: none; }
  .product-card__footer .btn { width: 100%; }
  .product-detail__buy .btn { width: 100%; }
  .form-row input, .form-row select, .form-row textarea, .qty-input { font-size: 16px; }
  .cart-line__controls { flex-wrap: wrap; row-gap: 10px; }
  .qty-stepper--sm .qty-btn { width: 30px; height: 30px; }
  .qty-stepper--sm .qty-input { width: 40px; height: 30px; }
  .cart-line__remove { padding: 8px 10px; }
  .cart-drawer__close { padding: 8px 10px; }
  .legal-toc ol { grid-template-columns: 1fr; }
  .legal-doc h2 { flex-direction: column; gap: 2px; }
  .hero-proof__specs { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td { display: block; width: auto !important; }
  .info-table tr { padding: 12px 0; }
  .info-table th { padding: 0 0 6px; }
  .info-table td { padding: 0; }
  .registration-strip { display: none; }
}
