/* ============================================================
   FINGERPRINT IDEAS — the printer's work table
   Paper + ink + safety orange. Misregistered on purpose.
   ============================================================ */

:root {
  --paper: #f2eee5;
  --paper-deep: #e9e3d3;
  --paper-edge: #dcd4bf;
  --mat: #dfd8c4;
  --ink: #16130f;
  --ink-soft: #3c362c;
  --ink-faint: #79715f;
  --orange: #f04a0e;
  --orange-deep: #c93a06;
  --cyan: #009fd1;
  --magenta: #e5127d;
  --yellow: #ffc400;
  --tape: rgba(226, 214, 172, 0.75);
  --hairline: 1px solid rgba(22, 19, 15, 0.22);
  --hairline-strong: 1.5px solid var(--ink);
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Archivo", "Helvetica Neue", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-hand: "Caveat", cursive;
  --gutter: clamp(1.25rem, 4vw, 4rem);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (pointer: fine) {
  body {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Ccircle cx='14' cy='14' r='8' fill='none' stroke='%2316130f' stroke-width='1.6'/%3E%3Cline x1='14' y1='0' x2='14' y2='28' stroke='%2316130f' stroke-width='1.6'/%3E%3Cline x1='0' y1='14' x2='28' y2='14' stroke='%2316130f' stroke-width='1.6'/%3E%3Ccircle cx='14' cy='14' r='2' fill='%23f04a0e'/%3E%3C/svg%3E") 14 14, crosshair;
  }
  a, button, .btn { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Ccircle cx='14' cy='14' r='8' fill='none' stroke='%23f04a0e' stroke-width='2'/%3E%3Cline x1='14' y1='0' x2='14' y2='28' stroke='%23f04a0e' stroke-width='2'/%3E%3Cline x1='0' y1='14' x2='28' y2='14' stroke='%23f04a0e' stroke-width='2'/%3E%3Ccircle cx='14' cy='14' r='2.4' fill='%2316130f'/%3E%3C/svg%3E") 14 14, pointer; }
}

/* paper grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--orange); color: var(--paper); }

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

a { color: inherit; }

/* ---------- type utilities ---------- */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.005em;
}

.serif-note {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* misregistered second ink pass */
.misreg { text-shadow: 0.05em 0.05em 0 var(--orange); }
.misreg-cyan { text-shadow: 0.05em 0.05em 0 var(--cyan); }
.misreg-soft { text-shadow: 0.04em 0.04em 0 rgba(240, 74, 14, 0.55); }

/* stroke-only poster type */
.outline-type {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--ink);
  text-stroke: 2.5px var(--ink);
}

.section-dark .outline-type { -webkit-text-stroke-color: var(--paper); }

.kicker {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}

.kicker::before {
  content: "";
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background: var(--orange);
  flex: none;
}

.meta-mono {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* grease-pencil annotations */
.note {
  font-family: var(--font-hand);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.15;
  color: var(--orange-deep);
  transform: rotate(-3deg);
  display: inline-block;
}

.note.ink { color: var(--ink-soft); }

/* rubber stamp */
.stamp {
  display: inline-block;
  position: relative;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-deep);
  border: 3px solid currentColor;
  border-radius: 5px;
  padding: 0.45em 0.9em;
  transform: rotate(-6deg);
  line-height: 1.1;
  text-align: center;
}

.stamp::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 5px;
  background-image: radial-gradient(var(--paper) 1px, transparent 1px);
  background-size: 5px 5px;
  opacity: 0.55;
  pointer-events: none;
}

.stamp.ink { color: var(--ink); }
.stamp.big { font-size: clamp(1.2rem, 2.4vw, 1.9rem); border-width: 4px; }

.section-dark .stamp::after { background-image: radial-gradient(var(--ink) 1px, transparent 1px); }
.section-orange .stamp::after { background-image: radial-gradient(var(--orange) 1px, transparent 1px); }

/* masking tape */
.taped { position: relative; }

.taped::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 110px;
  height: 30px;
  background: var(--tape);
  transform: translateX(-50%) rotate(-4deg);
  box-shadow: 0 1px 3px rgba(22, 19, 15, 0.12);
  z-index: 3;
  opacity: 0.9;
}

/* barcode */
.barcode {
  height: 34px;
  width: 150px;
  background: repeating-linear-gradient(90deg,
    var(--ink) 0 2px, transparent 2px 5px,
    var(--ink) 5px 6px, transparent 6px 8px,
    var(--ink) 8px 12px, transparent 12px 14px,
    var(--ink) 14px 15px, transparent 15px 20px);
}

/* caution tape divider */
.caution {
  height: 14px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 18px, var(--ink) 18px 36px);
  border-top: var(--hairline-strong);
  border-bottom: var(--hairline-strong);
}

/* registration + crop marks */
.regmark { width: 22px; height: 22px; flex: none; }

.cropped { position: relative; }

.cropped::before,
.cropped::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--ink);
  border-style: solid;
  border-width: 0;
  opacity: 0.85;
}

.cropped::before { top: -1px; left: -1px; border-top-width: 1.5px; border-left-width: 1.5px; }
.cropped::after { bottom: -1px; right: -1px; border-bottom-width: 1.5px; border-right-width: 1.5px; }

/* slow press-cylinder spin */
.spin-slow { animation: spin 140s linear infinite; transform-origin: 50% 50%; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: var(--hairline-strong);
}

.header-inner { display: flex; align-items: stretch; min-height: 64px; }

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 var(--gutter);
  text-decoration: none;
  border-right: var(--hairline);
}

.brand-mark { width: 34px; height: 34px; flex: none; }

.brand-logo { height: 34px; width: auto; }

.brand-word {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-word small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--ink-faint);
  margin-top: 3px;
}

.main-nav { display: flex; align-items: stretch; margin-left: auto; }

.main-nav a {
  display: flex;
  align-items: center;
  padding: 0 1.4rem;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-left: var(--hairline);
  transition: background 0.2s, color 0.2s;
}

.main-nav a:hover { background: var(--ink); color: var(--paper); }

.main-nav a.nav-cta { background: var(--orange); color: var(--paper); border-left: var(--hairline-strong); }
.main-nav a.nav-cta:hover { background: var(--ink); }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  border-left: var(--hairline);
  padding: 0 1.25rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    background: var(--paper);
    border-bottom: var(--hairline-strong);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { border-left: 0; border-top: var(--hairline); padding: 1rem var(--gutter); }
  .nav-toggle { display: block; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: clamp(3rem, 9vh, 6.5rem) var(--gutter) clamp(4rem, 10vh, 7rem);
  border-bottom: var(--hairline-strong);
  overflow: hidden;
  min-height: 78vh;
}

.hero-print {
  position: absolute;
  top: 47%;
  right: -14%;
  width: min(74vw, 900px);
  translate: 0 -50%;
  opacity: 0.9;
  pointer-events: none;
}

.hero-edgeword {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.hero-inner { position: relative; max-width: 1400px; margin: 0 auto; }

.hero-stamp {
  position: absolute;
  top: 0.5rem;
  right: clamp(0.5rem, 12vw, 14rem);
  z-index: 4;
  transform: rotate(7deg);
}

.hero-topline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(1.6rem, 4vh, 3rem);
}

.hero-pre {
  font-family: var(--font-hand);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--ink-soft);
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 0.4rem;
  margin-left: 0.4rem;
}

.hero h1 {
  font-size: clamp(4rem, 15vw, 14rem);
  max-width: 12ch;
  position: relative;
  z-index: 2;
}

.hero h1 .line { display: block; overflow: hidden; }

.hero h1 .line > span {
  display: block;
  transform: translateY(112%);
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h1 .line:nth-child(1) > span { rotate: -1.2deg; }
.hero h1 .line:nth-child(2) > span { animation-delay: 0.12s; rotate: 0.8deg; margin-left: 0.35em; }
.hero h1 .line:nth-child(3) > span { animation-delay: 0.24s; rotate: -0.6deg; }

.hero h1 .accent { color: var(--orange); }

@keyframes rise { to { transform: translateY(0); } }

.hero-deck {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 2.5rem;
  margin-top: clamp(2rem, 5vh, 3.5rem);
  position: relative;
  z-index: 2;
}

.hero-deck p {
  max-width: 42ch;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.5;
  opacity: 0;
  animation: fade 0.8s ease 0.5s forwards;
}

@keyframes fade { to { opacity: 1; } }

.hero-deck .serif-note { font-size: 1.2em; }

.hero-cta-block { position: relative; opacity: 0; animation: fade 0.8s ease 0.7s forwards; }

.hero-cta-block .note {
  position: absolute;
  top: -2.4em;
  left: 55%;
  white-space: nowrap;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.95em 1.7em;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--ink);
  transition: transform 0.18s, background 0.2s, color 0.2s, box-shadow 0.18s;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
}

.btn:hover { transform: translate(-2px, -2px) rotate(-0.5deg); box-shadow: 4px 4px 0 var(--ink); }

.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { box-shadow: 4px 4px 0 var(--orange); }

.btn-orange { background: var(--orange); color: var(--paper); border-color: var(--orange-deep); rotate: -1deg; }
.btn-orange:hover { box-shadow: 4px 4px 0 var(--ink); }

.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

@media (max-width: 760px) {
  .hero { min-height: auto; padding-top: 1.3rem; padding-bottom: 2.6rem; }
  .hero-print { opacity: 0.15; width: 130vw; right: -55%; }
  .hero-stamp { position: static; display: inline-block; margin-bottom: 0.7rem; font-size: 0.78rem; }
  .hero-edgeword { display: none; }
  .hero-topline { margin-bottom: 0.8rem; }
  .hero-pre { font-size: 1.3rem; margin-bottom: 0.15rem; }
  .hero h1 { font-size: clamp(3.2rem, 16.5vw, 4.6rem); }
  .hero-deck { margin-top: 1.1rem; gap: 1rem; }
  .hero-cta-block { order: -1; }
  .hero-cta-block .note { position: static; display: block; margin-bottom: 0.4rem; }
  .hero-deck p { font-size: 0.98rem; }
  .page-hero { padding-top: 1.6rem; }
  .page-hero .hero-print { opacity: 0.12 !important; }
}

/* CMYK production bar */
.cmyk-strip { display: flex; border-bottom: var(--hairline-strong); }

.cmyk-strip span { height: 12px; flex: 1; }

.cmyk-strip span:nth-child(1) { background: var(--cyan); }
.cmyk-strip span:nth-child(2) { background: color-mix(in srgb, var(--cyan) 55%, var(--paper)); }
.cmyk-strip span:nth-child(3) { background: var(--magenta); }
.cmyk-strip span:nth-child(4) { background: color-mix(in srgb, var(--magenta) 55%, var(--paper)); }
.cmyk-strip span:nth-child(5) { background: var(--yellow); }
.cmyk-strip span:nth-child(6) { background: color-mix(in srgb, var(--yellow) 55%, var(--paper)); }
.cmyk-strip span:nth-child(7) { background: var(--ink); }
.cmyk-strip span:nth-child(8) { background: color-mix(in srgb, var(--ink) 55%, var(--paper)); }
.cmyk-strip span:nth-child(9) { background: var(--orange); }
.cmyk-strip span:nth-child(10) { background: color-mix(in srgb, var(--orange) 55%, var(--paper)); }

/* ---------- tickers (crossing, tilted) ---------- */

.ticker-zone { position: relative; padding: clamp(1.5rem, 4vh, 3rem) 0; overflow: hidden; border-bottom: var(--hairline-strong); }

.ticker {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  width: 110vw;
  margin-left: -5vw;
  border-top: var(--hairline-strong);
  border-bottom: var(--hairline-strong);
}

.ticker-a { transform: rotate(-1.6deg); }

.ticker-b {
  transform: rotate(1.1deg);
  background: var(--orange);
  margin-top: -0.4rem;
  position: relative;
  z-index: 2;
}

.ticker-track { display: inline-flex; animation: ticker 38s linear infinite; }

.ticker-b .ticker-track { animation-direction: reverse; animation-duration: 46s; }

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

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.7rem 1.4rem 0.7rem 0;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-a .tick-dot { color: var(--orange); }
.ticker-b .tick-dot { color: var(--ink); }

@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- generic section scaffolding ---------- */

.section {
  padding: clamp(4rem, 10vh, 7.5rem) var(--gutter);
  border-bottom: var(--hairline-strong);
  position: relative;
}

.section-inner { max-width: 1400px; margin: 0 auto; }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 6vh, 4.5rem);
}

.section-head h2 { font-size: clamp(2.6rem, 6.5vw, 5.5rem); max-width: 16ch; }

/* margin annotation, like a note scrawled on the proof sheet */
.section-head .side-note {
  max-width: 36ch;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink-soft);
  border-left: 3px solid var(--orange);
  padding-left: 1.2rem;
  position: relative;
}

.section-head .side-note::before {
  content: "\2731";
  position: absolute;
  left: -0.6rem;
  top: -1.15em;
  font-family: var(--font-hand);
  font-style: normal;
  font-size: 1.05rem;
  color: var(--orange-deep);
}

@media (max-width: 880px) {
  .section-head .side-note { margin-top: 0.4rem; font-size: 1.08rem; }
}

/* ---------- work table (services) ---------- */

.worktable {
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(22, 19, 15, 0.07) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(22, 19, 15, 0.07) 39px 40px),
    repeating-linear-gradient(0deg, transparent 0 199px, rgba(22, 19, 15, 0.13) 199px 200px),
    repeating-linear-gradient(90deg, transparent 0 199px, rgba(22, 19, 15, 0.13) 199px 200px),
    var(--mat);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.4rem, 2.5vw, 2.4rem);
  align-items: start;
}

@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  padding: 1.5rem 1.5rem 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: 3px 5px 0 rgba(22, 19, 15, 0.18);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
}

.service-card:nth-child(1) { rotate: -2.2deg; }
.service-card:nth-child(2) { rotate: 1.4deg; margin-top: 2.2rem; }
.service-card:nth-child(3) { rotate: -1deg; margin-top: 0.8rem; }
.service-card:nth-child(4) { rotate: 2deg; margin-top: 2.8rem; }

@media (max-width: 640px) {
  .service-card:nth-child(n) { margin-top: 0; }
}

.service-card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 6px 10px 0 rgba(22, 19, 15, 0.22);
  z-index: 5;
}

.swatch { height: 110px; position: relative; overflow: hidden; }

.swatch::after {
  content: attr(data-code);
  position: absolute;
  bottom: 8px;
  left: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--paper);
  mix-blend-mode: difference;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}

.service-card ul { list-style: none; display: flex; flex-direction: column; }

.service-card li {
  padding: 0.55rem 0;
  border-bottom: var(--hairline);
  font-size: 0.92rem;
  display: flex;
  gap: 0.6em;
  align-items: baseline;
}

.service-card li::before { content: "→"; color: var(--orange); font-weight: 700; flex: none; }

.service-card .card-index {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink-faint);
}

/* ---------- orange manifesto band ---------- */

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

.section-orange .manifesto blockquote { color: var(--ink); }

.manifesto { max-width: 1100px; margin: 0 auto; text-align: center; position: relative; }

.manifesto blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  line-height: 1.22;
}

.manifesto blockquote strong {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-orange .manifesto blockquote strong { color: var(--paper); text-shadow: 0.04em 0.04em 0 var(--ink); }

.manifesto cite { display: block; margin-top: 1.8rem; font-style: normal; }

.section-orange .meta-mono { color: rgba(22, 19, 15, 0.65); }

.manifesto .stamp.floater {
  position: absolute;
  right: -1rem;
  top: -3rem;
  transform: rotate(9deg);
}

@media (max-width: 900px) { .manifesto .stamp.floater { position: static; display: inline-block; margin-bottom: 1.5rem; } }

/* ---------- industries (dark press-room) ---------- */

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

.section-dark .kicker { color: var(--paper); }
.section-dark .section-head .side-note { color: rgba(242, 238, 229, 0.82); border-left-color: var(--orange); }

.industries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid rgba(242, 238, 229, 0.28); }

@media (max-width: 900px) { .industries { grid-template-columns: 1fr; } }

.industry {
  padding: 2.2rem 1.8rem 2.6rem;
  border-right: 1px solid rgba(242, 238, 229, 0.28);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.industry:last-child { border-right: 0; }

@media (max-width: 900px) {
  .industry { border-right: 0; border-bottom: 1px solid rgba(242, 238, 229, 0.28); }
  .industry:last-child { border-bottom: 0; }
}

.industry .ghost-num {
  position: absolute;
  right: -0.08em;
  bottom: -0.28em;
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(242, 238, 229, 0.28);
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.3s;
}

.industry:hover .ghost-num { -webkit-text-stroke-color: var(--orange); }

.industry h3 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  text-transform: uppercase;
  line-height: 0.95;
}

.industry .big-num { font-family: var(--font-display); font-size: 1rem; color: var(--orange); }

.industry p { font-size: 0.95rem; color: rgba(242, 238, 229, 0.78); max-width: 38ch; position: relative; z-index: 1; }

/* ---------- stamped client wall ---------- */

.stamp-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 1.8rem;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.stamp-wall .stamp {
  font-size: clamp(1rem, 1.9vw, 1.6rem);
  transition: transform 0.2s, color 0.2s;
}

.stamp-wall .stamp:nth-child(3n) { color: var(--ink); }
.stamp-wall .stamp:nth-child(4n) { transform: rotate(4deg); }
.stamp-wall .stamp:nth-child(2n) { transform: rotate(-3deg); }
.stamp-wall .stamp:nth-child(5n) { transform: rotate(1.5deg); }
.stamp-wall .stamp:nth-child(7n) { color: var(--cyan); }

.stamp-wall .stamp:hover { transform: rotate(0deg) scale(1.06); color: var(--orange); }

/* ---------- job ticket sheet (process) ---------- */

.process-sheet {
  position: relative;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  box-shadow: 5px 8px 0 rgba(22, 19, 15, 0.16);
  padding: clamp(1.5rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem);
  rotate: -0.5deg;
  max-width: 1200px;
  margin: 0 auto;
}

/* punched binder holes */
.process-sheet::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(0.9rem, 2vw, 1.8rem);
  width: 18px;
  background-image: radial-gradient(circle 8px, var(--paper-deep) 7px, var(--ink) 7.5px, transparent 8.5px);
  background-size: 18px 90px;
  background-repeat: repeat-y;
  background-position: center 40px;
}

.sheet-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 1.2rem;
  margin-bottom: 0.5rem;
}

.sheet-head .job-no { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.06em; }

.process-list { counter-reset: step; }

.process-step {
  display: grid;
  grid-template-columns: 90px 1fr 2fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1.5px dashed rgba(22, 19, 15, 0.4);
  transition: background 0.2s, padding-left 0.25s;
  position: relative;
}

.process-step:last-child { border-bottom: 0; }

.process-step:hover { background: var(--paper-deep); padding-left: 0.8rem; }

@media (max-width: 900px) {
  .process-step { grid-template-columns: 56px 1fr; }
  .process-step p { grid-column: 2; }
  .process-step .step-tag { display: none; }
}

.process-step .num { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--orange); }

.process-step h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2.2rem); text-transform: uppercase; line-height: 1; }

.process-step p { font-size: 0.95rem; color: var(--ink-soft); max-width: 52ch; }

.process-step .step-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  padding: 0.45em 0.9em;
  white-space: nowrap;
}

.process-step .note {
  position: absolute;
  right: clamp(0.5rem, 3vw, 3rem);
  top: -0.6rem;
  z-index: 2;
}

@media (max-width: 900px) { .process-step .note { display: none; } }

.sheet-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.6rem;
}

/* ---------- job tickets (pricing) ---------- */

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 2.5vw, 2.4rem);
  align-items: start;
}

@media (max-width: 980px) { .shop-grid { grid-template-columns: 1fr; } }

.job-ticket {
  border: 1.5px solid var(--ink);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s;
  position: relative;
  box-shadow: 3px 5px 0 rgba(22, 19, 15, 0.15);
}

.shop-grid .job-ticket:nth-child(1) { rotate: -1.4deg; margin-top: 1.4rem; }
.shop-grid .job-ticket:nth-child(2) { rotate: 0.6deg; }
.shop-grid .job-ticket:nth-child(3) { rotate: 1.6deg; margin-top: 2rem; }

@media (max-width: 980px) { .shop-grid .job-ticket:nth-child(n) { margin-top: 0; } }

.job-ticket:hover { transform: rotate(0deg) translate(-3px, -5px); box-shadow: 7px 10px 0 rgba(22, 19, 15, 0.2); z-index: 5; }

.job-ticket.featured { outline: 3px solid var(--orange); outline-offset: -1px; }

.ticket-head {
  padding: 1.1rem 1.3rem;
  border-bottom: 1.5px dashed var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.ticket-head h3 { font-family: var(--font-display); font-size: 1.45rem; text-transform: uppercase; line-height: 1; }

.ticket-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--paper);
  padding: 0.4em 0.8em;
  white-space: nowrap;
  rotate: 2deg;
}

.ticket-body { padding: 1.3rem; display: flex; flex-direction: column; gap: 1rem; flex: 1; }

.ticket-price { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; }

.ticket-price sup { font-size: 0.45em; top: -0.9em; position: relative; }

.ticket-price .per { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; color: var(--ink-faint); letter-spacing: 0.06em; text-transform: uppercase; }

.ticket-body ul { list-style: none; flex: 1; }

.ticket-body li { padding: 0.5rem 0; border-bottom: var(--hairline); font-size: 0.9rem; display: flex; gap: 0.6em; }

.ticket-body li::before { content: "✓"; color: var(--orange); font-weight: 700; flex: none; }

.ticket-foot { padding: 1.1rem 1.3rem; border-top: 1.5px dashed var(--ink); }

.ticket-foot .btn { width: 100%; justify-content: center; }

/* ---------- press check (stats) ---------- */

.press-check {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 4rem);
  justify-content: center;
  align-items: baseline;
}

.check-cell { text-align: center; }

.check-cell:nth-child(odd) { rotate: -1.5deg; }
.check-cell:nth-child(even) { rotate: 1.2deg; }

.check-cell .stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  color: var(--ink);
  text-shadow: 0.045em 0.045em 0 var(--orange);
}

.check-cell .stat-label {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  max-width: 18ch;
}

/* ---------- policy blocks (AI page) ---------- */

.policy-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: start; }

@media (max-width: 900px) { .policy-cols { grid-template-columns: 1fr; } }

.policy-block { border: 1.5px solid var(--ink); background: var(--paper); box-shadow: 3px 5px 0 rgba(22, 19, 15, 0.15); }

.policy-cols .policy-block:nth-child(1) { rotate: -0.8deg; }
.policy-cols .policy-block:nth-child(2) { rotate: 0.9deg; margin-top: 1.2rem; }

@media (max-width: 900px) { .policy-cols .policy-block:nth-child(n) { margin-top: 0; } }

.policy-block header {
  padding: 1rem 1.3rem;
  border-bottom: 1.5px solid var(--ink);
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.policy-block.good header { background: var(--ink); color: var(--paper); }
.policy-block.bad header { background: var(--orange); color: var(--paper); }

.policy-block ul { list-style: none; padding: 0.6rem 1.3rem 1rem; }

.policy-block li { padding: 0.6rem 0; border-bottom: var(--hairline); font-size: 0.95rem; display: flex; gap: 0.7em; }

.policy-block li:last-child { border-bottom: 0; }

.policy-block.good li::before { content: "✓"; color: var(--ink); font-weight: 700; }
.policy-block.bad li::before { content: "✕"; color: var(--orange); font-weight: 700; }

.rate-table { width: 100%; border-collapse: collapse; border: 1.5px solid var(--ink); }

.rate-table th, .rate-table td { padding: 1rem 1.2rem; text-align: left; border-bottom: var(--hairline); }

.rate-table th { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; background: var(--ink); color: var(--paper); }

.rate-table td.rate { font-family: var(--font-display); font-size: 1.5rem; white-space: nowrap; }

.rate-table td.rate span { font-family: var(--font-body); font-size: 0.75rem; color: var(--ink-faint); }

/* ---------- spec sheet ---------- */

.spec-sheet { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 2rem); }

@media (max-width: 900px) { .spec-sheet { grid-template-columns: 1fr; } }

.spec { border-top: var(--hairline-strong); padding-top: 1rem; }

.spec dt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 0.4rem;
}

.spec dd { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- stamp pad CTA ---------- */

.cta-final {
  text-align: center;
  padding: clamp(5rem, 14vh, 9rem) var(--gutter);
  position: relative;
  overflow: hidden;
}

.cta-final .fingerprint-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(120vw, 1100px);
  transform: translate(-50%, -50%);
  opacity: 0.3;
  pointer-events: none;
}

.cta-final h2 { position: relative; font-size: clamp(3rem, 9vw, 8rem); pointer-events: none; }

.cta-final .cta-row { justify-content: center; margin-top: 2.5rem; position: relative; }

.cta-final .contact-line { position: relative; margin-top: 2rem; font-size: 0.95rem; color: var(--ink-soft); }

.cta-final .contact-line a { font-weight: 700; text-decoration-color: var(--orange); text-underline-offset: 3px; }

.cta-final .kicker, .cta-final .note { position: relative; }

.stamped-print {
  position: absolute;
  width: 90px;
  height: 90px;
  pointer-events: none;
  animation: stamp-in 0.35s cubic-bezier(0.34, 1.8, 0.64, 1) forwards;
  z-index: 3;
}

@keyframes stamp-in {
  0% { transform: scale(1.7) rotate(var(--rot, 0deg)); opacity: 0; }
  60% { opacity: 0.95; }
  100% { transform: scale(1) rotate(var(--rot, 0deg)); opacity: 0.85; }
}

/* ---------- footer: the back wall of the shop ---------- */

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3rem, 8vh, 5.5rem) var(--gutter) 0;
  overflow: hidden;
  position: relative;
}

.footer-mega {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 10.5vw, 10rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
  rotate: -1.2deg;
  margin: 0 -0.5rem clamp(2.5rem, 6vh, 4.5rem);
  color: transparent;
  -webkit-text-stroke: 2px rgba(242, 238, 229, 0.55);
  user-select: none;
}

.footer-mega em {
  font-style: normal;
  color: var(--orange);
  -webkit-text-stroke: 0px transparent;
  text-shadow: 0.045em 0.045em 0 rgba(242, 238, 229, 0.25);
}

.footer-board {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: flex-start;
  padding-bottom: clamp(2.5rem, 6vh, 4rem);
}

/* pinned paper business card */
.footer-card {
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  box-shadow: 6px 9px 0 rgba(0, 0, 0, 0.45);
  padding: 1.6rem 1.8rem 1.5rem;
  rotate: -2deg;
  max-width: 330px;
  flex: 0 1 auto;
  position: relative;
}

.footer-card::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  width: 96px;
  height: 26px;
  background: var(--tape);
  transform: translateX(-50%) rotate(3deg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.footer-card .card-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }

.footer-card .card-brand svg { width: 40px; height: 40px; }

.footer-card .card-brand .display { font-size: 1.25rem; line-height: 1; }

.footer-card address { font-style: normal; font-size: 0.92rem; line-height: 1.65; color: var(--ink-soft); }

.footer-card address a { color: var(--ink); font-weight: 700; text-decoration-color: var(--orange); text-underline-offset: 3px; }

.footer-card .barcode { margin-top: 1.1rem; width: 120px; height: 26px; }

.footer-card .card-meta { margin-top: 0.5rem; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); }

/* index-tab link columns */
.footer-links { display: flex; flex-wrap: wrap; gap: clamp(2rem, 4vw, 4rem); flex: 1; }

.footer-links nav { min-width: 150px; }

.footer-links .stamp { font-size: 0.8rem; margin-bottom: 1.2rem; }

.footer-links nav:nth-child(2) .stamp { transform: rotate(4deg); color: var(--paper); }
.footer-links nav:nth-child(3) .stamp { transform: rotate(-4deg); color: var(--cyan); }

.footer-links ul { list-style: none; }

.footer-links li { border-bottom: 1px solid rgba(242, 238, 229, 0.18); }

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.6rem 0.2rem;
  text-decoration: none;
  font-size: 0.92rem;
  color: rgba(242, 238, 229, 0.85);
  transition: color 0.2s, padding-left 0.2s, background 0.2s;
}

.footer-links a::before { content: "→"; color: var(--orange); opacity: 0; transition: opacity 0.2s; }

.footer-links a:hover { color: var(--orange); padding-left: 0.6rem; }

.footer-links a:hover::before { opacity: 1; }

.footer-note { flex-basis: 100%; }

.footer-note .note { color: var(--orange); font-size: 1.5rem; }

/* production strip at the very bottom */
.footer-strip {
  border-top: 1px solid rgba(242, 238, 229, 0.25);
  margin: 0 calc(-1 * var(--gutter));
  padding: 1.1rem var(--gutter) 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.72rem;
  color: rgba(242, 238, 229, 0.5);
}

.footer-strip .chips { display: flex; gap: 6px; }

.footer-strip .chips span { width: 22px; height: 14px; display: block; }

.footer-strip a { color: rgba(242, 238, 229, 0.7); }

/* ---------- intake form: the job ticket you fill out ---------- */

.form-sheet {
  position: relative;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  box-shadow: 6px 9px 0 rgba(22, 19, 15, 0.18);
  padding: clamp(1.6rem, 4vw, 3rem) clamp(1.4rem, 4vw, 3.2rem) clamp(1.6rem, 4vw, 2.6rem) clamp(3rem, 7vw, 5.5rem);
  rotate: -0.4deg;
  max-width: 980px;
  margin: 0 auto;
}

.form-sheet::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(0.9rem, 2vw, 1.8rem);
  width: 18px;
  background-image: radial-gradient(circle 8px, var(--paper-deep) 7px, var(--ink) 7.5px, transparent 8.5px);
  background-size: 18px 90px;
  background-repeat: repeat-y;
  background-position: center 40px;
}

.form-sheet .sheet-head { border-bottom: 1.5px solid var(--ink); padding-bottom: 1.1rem; margin-bottom: 1.8rem; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.8rem; }

.form-sheet .job-no { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.06em; }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 2.4rem; }

@media (max-width: 720px) { .field-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.45rem; position: relative; }

.field.full { grid-column: 1 / -1; }

.field label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: baseline;
  gap: 0.7em;
}

.field label .req { color: var(--orange); font-size: 1.1em; }

.field label .hint { font-family: var(--font-hand); font-size: 1.05rem; letter-spacing: 0; text-transform: none; font-weight: 600; color: var(--orange-deep); rotate: -1.5deg; }

.field input,
.field textarea,
.field select {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid rgba(22, 19, 15, 0.45);
  padding: 0.5rem 0.1rem;
  border-radius: 0;
  transition: border-color 0.2s, background 0.2s;
}

.field textarea { resize: vertical; min-height: 120px; line-height: 1.55; border: 1.5px dashed rgba(22, 19, 15, 0.45); padding: 0.8rem; background: rgba(255, 255, 255, 0.35); }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(240, 74, 14, 0.05);
}

.field input:focus + .focus-mark, .field textarea:focus ~ .focus-mark { opacity: 1; transform: rotate(-6deg) scale(1); }

.focus-mark {
  position: absolute;
  right: -0.4rem;
  top: -0.5rem;
  color: var(--orange);
  opacity: 0;
  transform: rotate(10deg) scale(0.6);
  transition: opacity 0.2s, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

/* service chips = stamp pad */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.chip { position: relative; }

.chip input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

.chip span {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2.5px solid var(--ink);
  border-radius: 4px;
  padding: 0.5em 0.95em;
  color: var(--ink);
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.chip:nth-child(odd) span { rotate: -1.5deg; }
.chip:nth-child(even) span { rotate: 1.5deg; }

.chip:hover span { transform: translateY(-2px); }

.chip input:checked + span {
  background: var(--orange);
  border-color: var(--orange-deep);
  color: var(--paper);
  transform: scale(1.04) rotate(0deg);
  box-shadow: 2px 3px 0 var(--ink);
}

.chip input:focus-visible + span { outline: 2px dashed var(--orange); outline-offset: 3px; }

/* radio deadline chips share chip styles via .chip */

.form-foot {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1.5px dashed var(--ink);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.form-foot .btn { font-size: 0.88rem; padding: 1.05em 2em; }

.form-foot .barcode { opacity: 0.85; }

.form-status { font-size: 0.9rem; color: var(--ink-soft); min-height: 1.4em; }

.form-status.error { color: var(--orange-deep); font-weight: 700; }

/* file uploader */
.upload-zone {
  position: relative;
  border: 1.5px dashed rgba(22, 19, 15, 0.5);
  background: rgba(255, 255, 255, 0.35);
  padding: 1.4rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.upload-zone:hover, .upload-zone.drag { border-color: var(--orange); background: rgba(240, 74, 14, 0.06); }

.upload-zone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

.upload-zone .upload-cta { font-weight: 700; font-size: 0.95rem; }

.upload-list { list-style: none; margin-top: 0.7rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }

.upload-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  padding: 0.35em 0.7em;
  font-size: 0.8rem;
  font-weight: 600;
}

.upload-list li b { color: var(--orange-deep); font-weight: 700; }

.upload-list li button { border: 0; background: none; cursor: pointer; font-weight: 700; color: var(--ink-faint); font-size: 1rem; line-height: 1; }

/* honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- FPI chat: reposition + theme the embedded IMAX widget ---------- */

chat-widget {
  /* official theme hooks (pierce the shadow DOM) */
  --chat-widget-primary-color: #f04a0e;
  --chat-widget-active-color: #f04a0e;
  --chat-widget-bubble-color: #f04a0e;
  --chat-widget-primary-solid-color: #f04a0e;
  --chat-widget-width: 100%;
  --chat-widget-height: 100%;
  /* Float it like a chat window instead of an inline block.
     IMPORTANT: never hide this host with opacity/display — the widget defers
     its own initialization until it is actually visible. The stock bubble is
     hidden inside the shadow DOM instead, and the closed widget is made
     click-through here. */
  position: fixed !important;
  right: 18px;
  bottom: 86px;
  z-index: 1001;
  width: min(400px, calc(100vw - 28px));
  height: min(600px, calc(100dvh - 120px));
  pointer-events: none;
}

body.fpi-chat-open chat-widget {
  pointer-events: auto;
}

@media (max-width: 640px) {
  chat-widget {
    /* near-full-screen takeover so the whole form incl. Send fits */
    left: 8px;
    right: 8px;
    top: calc(env(safe-area-inset-top, 0px) + 8px);
    bottom: 70px; /* Close button strip */
    width: auto;
    height: auto;
  }
}

/* ---------- FPI chat launcher (drives the IMAX widget) ---------- */

.fpi-chat-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--paper);
  color: var(--ink);
  border: 2.5px solid var(--ink);
  padding: 0.7em 1.1em;
  cursor: pointer;
  rotate: -2deg;
  box-shadow: 4px 5px 0 rgba(22, 19, 15, 0.75);
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.18s, background 0.2s, color 0.2s, rotate 0.18s;
}

.fpi-chat-btn:hover { rotate: 0deg; transform: translateY(-3px); box-shadow: 5px 8px 0 rgba(22, 19, 15, 0.75); }

.fpi-chat-btn svg { width: 22px; height: 22px; flex: none; }

.fpi-chat-btn .dot { width: 9px; height: 9px; border-radius: 50%; background: #3cae5c; flex: none; box-shadow: 0 0 0 0 rgba(60, 174, 92, 0.5); animation: chat-pulse 2s ease-out infinite; }

@keyframes chat-pulse { 70% { box-shadow: 0 0 0 8px rgba(60, 174, 92, 0); } 100% { box-shadow: 0 0 0 0 rgba(60, 174, 92, 0); } }

.fpi-chat-btn.open { background: var(--ink); color: var(--paper); rotate: 0deg; }

.fpi-chat-note {
  position: fixed;
  right: 24px;
  bottom: 82px;
  z-index: 1000;
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--orange-deep);
  background: #fffdf6;
  border: 1.5px solid var(--ink);
  padding: 0.4em 0.9em;
  rotate: 2deg;
  box-shadow: 3px 4px 0 rgba(22, 19, 15, 0.25);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}

.fpi-chat-note.show { opacity: 1; transform: none; }

/* fallback contact panel (shows when live chat is unavailable) */
.fpi-chat-panel {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 1001;
  width: min(320px, calc(100vw - 32px));
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 6px 8px 0 rgba(22, 19, 15, 0.55);
  padding: 1.1rem 1.1rem 1rem;
  display: none;
  flex-direction: column;
  gap: 0.6rem;
}

.fpi-chat-panel.show { display: flex; }

.fpi-chat-panel .btn { width: 100%; justify-content: center; font-size: 0.75rem; padding: 0.85em 1em; }

.fpi-chat-panel-head { border-bottom: 1.5px dashed var(--ink); padding-bottom: 0.7rem; margin-bottom: 0.3rem; }

.fpi-chat-panel-head b { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.04em; }

.fpi-chat-panel-head span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); }

.fpi-chat-panel .meta-mono { text-align: center; margin-top: 0.2rem; }

@media (max-width: 640px) {
  .fpi-chat-btn { font-size: 0.85rem; padding: 0.65em 0.9em; right: 12px; bottom: 12px; }
  .fpi-chat-btn.open { z-index: 1002; }
  .fpi-chat-note { display: none; }
  .fpi-chat-panel { right: 12px; left: 12px; width: auto; bottom: 74px; }
}

/* success overlay */
.form-success {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(3px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  text-align: center;
  padding: 2rem;
  z-index: 10;
}

.form-sheet.sent .form-success { display: flex; }

.form-success .stamp.mega {
  font-size: clamp(2.2rem, 6vw, 4rem);
  border-width: 6px;
  border-radius: 10px;
  transform: rotate(-8deg);
  animation: stamp-in 0.4s cubic-bezier(0.34, 1.8, 0.64, 1) both;
}

.form-success p { max-width: 40ch; font-size: 1.05rem; color: var(--ink-soft); }

.form-success .note { font-size: 1.5rem; }

/* ---------- page hero (subpages) ---------- */

.page-hero {
  padding: clamp(3rem, 8vh, 5.5rem) var(--gutter);
  border-bottom: var(--hairline-strong);
  position: relative;
  overflow: hidden;
}

.page-hero h1 { font-size: clamp(3rem, 9vw, 7.5rem); position: relative; }

.page-hero .lede { margin-top: 1.5rem; max-width: 62ch; font-size: 1.15rem; color: var(--ink-soft); position: relative; }

.page-hero .stamp { margin-bottom: 1.2rem; }

/* ---------- reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in { opacity: 1; transform: none; }

.reveal-stagger > * { opacity: 0; translate: 0 24px; transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), translate 0.6s cubic-bezier(0.16, 1, 0.3, 1); }

.reveal-stagger.in > * { opacity: 1; translate: 0 0; }

.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.54s; }
.reveal-stagger.in > *:nth-child(9) { transition-delay: 0.61s; }
.reveal-stagger.in > *:nth-child(10) { transition-delay: 0.68s; }
.reveal-stagger.in > *:nth-child(11) { transition-delay: 0.75s; }
.reveal-stagger.in > *:nth-child(12) { transition-delay: 0.82s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; translate: 0 0; }
  .hero h1 .line > span { transform: none; }
  .hero-deck p, .hero-cta-block { opacity: 1; }
  .spin-slow { animation: none !important; }
}

/* Google reviews badge: the shop's strongest proof, worn on the sleeve */
.gbadge {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  margin-top: 0.9rem;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  background: var(--paper);
  padding: 0.5em 1em;
  box-shadow: 3px 4px 0 rgba(22, 19, 15, 0.16);
  transition: transform 0.15s, box-shadow 0.15s;
}

.gbadge:hover { transform: translate(-1px, -2px); box-shadow: 5px 7px 0 rgba(22, 19, 15, 0.2); }

.gbadge .stars { color: var(--orange); letter-spacing: 0.12em; font-size: 0.9em; }

.gbadge b { font-size: 1.05em; }
