/* ==========================================================================
   Live T-Shirt Printer — "Ink & Paper" design system
   Paper #FAF5EC · Ink #16120D · Squeegee Red #FF4424 · Riso Blue #2B59FF · Highlighter #FFC700
   ========================================================================== */

:root {
  --paper: #FAF5EC;
  --paper-bright: #FFFDF7;
  --ink: #16120D;
  --ink-soft: #5d564b;
  --red: #FF4424;
  --red-deep: #d83214;
  --blue: #2B59FF;
  --yellow: #FFC700;
  --shadow: 5px 5px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);
  --shadow-lg: 8px 8px 0 var(--ink);
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Space Grotesk', 'Helvetica Neue', sans-serif;
  --header-h: 72px;
  --ease-squeegee: cubic-bezier(.65, 0, .25, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
a { color: var(--ink); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--red-deep); }
ul, ol { padding-left: 1.2rem; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1200;
  background: var(--yellow); color: var(--ink); border: 2px solid var(--ink);
  padding: .6rem 1rem; font-weight: 700; box-shadow: var(--shadow-sm);
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

.container { max-width: 1180px; margin-inline: auto; padding-inline: clamp(18px, 4vw, 32px); }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 4px; z-index: 1100;
  background: var(--red); transform: scaleX(0); transform-origin: left;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body); font-weight: 700; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .05em; text-decoration: none;
  padding: .78rem 1.4rem; border: 2px solid var(--ink);
  background: var(--paper-bright); color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .16s var(--ease-squeegee), box-shadow .16s var(--ease-squeegee), background .16s;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); color: var(--ink); }
.btn:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--ink); }
.btn-red { background: var(--red); }
.btn-red:hover { background: var(--red); }
.btn-paper { background: var(--paper); }
.btn-outline { background: transparent; }
.btn-lg { font-size: 1.05rem; padding: .95rem 1.8rem; }

/* ---------- Stickers, marks, crops ---------- */
.sticker {
  display: inline-block; background: var(--paper-bright); border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm); padding: .28rem .65rem; color: var(--ink);
  font-family: var(--font-display); font-size: .82rem; letter-spacing: .07em;
  text-transform: uppercase; transform: rotate(-2deg); line-height: 1.25;
}
.sticker-yellow { background: var(--yellow); }
.sticker-tilt-l { transform: rotate(-3deg); }
.sticker-tilt-r { transform: rotate(2.5deg); }
.sticker-cap { background: var(--yellow); transform: rotate(-1.5deg); font-size: .78rem; }

.regmark {
  display: inline-block; width: 16px; height: 16px; border: 2px solid var(--ink);
  border-radius: 50%; position: relative; opacity: .55;
}
.regmark::before, .regmark::after {
  content: ""; position: absolute; background: var(--ink);
}
.regmark::before { left: 50%; top: -4px; bottom: -4px; width: 2px; transform: translateX(-50%); }
.regmark::after { top: 50%; left: -4px; right: -4px; height: 2px; transform: translateY(-50%); }

.crop-marks { position: relative; }
.crop-marks::before {
  content: ""; position: absolute; inset: -8px; pointer-events: none;
  background:
    linear-gradient(var(--ink), var(--ink)) left 0 top 0 / 14px 2px,
    linear-gradient(var(--ink), var(--ink)) left 0 top 0 / 2px 14px,
    linear-gradient(var(--ink), var(--ink)) right 0 top 0 / 14px 2px,
    linear-gradient(var(--ink), var(--ink)) right 0 top 0 / 2px 14px,
    linear-gradient(var(--ink), var(--ink)) left 0 bottom 0 / 14px 2px,
    linear-gradient(var(--ink), var(--ink)) left 0 bottom 0 / 2px 14px,
    linear-gradient(var(--ink), var(--ink)) right 0 bottom 0 / 14px 2px,
    linear-gradient(var(--ink), var(--ink)) right 0 bottom 0 / 2px 14px;
  background-repeat: no-repeat;
  opacity: .8;
}

.halftone-bg { position: relative; }
.halftone-bg::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(var(--ink) 1px, transparent 1.4px);
  background-size: 14px 14px;
  opacity: .05;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--paper); border-bottom: 2px solid var(--ink);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand-mark { flex: none; }
.brand-word { display: flex; flex-direction: column; font-family: var(--font-display); text-transform: uppercase; line-height: .92; letter-spacing: .02em; }
.brand-l1 { font-size: .95rem; }
.brand-l2 { font-size: 1.18rem; position: relative; display: inline-block; }
.brand-swipe { position: absolute; left: 0; right: -4px; bottom: -4px; height: 4px; background: var(--red); transform: skewX(-18deg); }

.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.nav-list { display: flex; align-items: center; gap: 1.25rem; list-style: none; padding: 0; }
.nav-list a {
  text-decoration: none; font-weight: 500; font-size: .98rem;
  border-bottom: 2px solid transparent; padding-bottom: 2px;
}
.nav-list a:hover { border-bottom-color: var(--red); color: var(--ink); }
.nav-cta { box-shadow: 3px 3px 0 var(--ink); padding: .55rem 1.05rem; font-size: .85rem; }

.nav-toggle {
  display: none; align-items: center; gap: .5rem;
  background: var(--paper-bright); border: 2px solid var(--ink); box-shadow: var(--shadow-sm);
  padding: .42rem .7rem; font-weight: 700; text-transform: uppercase; font-size: .8rem; letter-spacing: .05em;
}
.nav-burger { display: inline-flex; flex-direction: column; gap: 3px; }
.nav-burger i { width: 16px; height: 2px; background: var(--ink); transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] .nav-burger i:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-burger i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-burger i:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 880px) {
  :root { --header-h: 62px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 2px solid var(--ink);
    flex-direction: column; align-items: stretch; gap: 0; padding: 0 0 1rem;
    box-shadow: 0 14px 24px rgba(22, 18, 13, .12);
  }
  .site-nav.is-open { display: flex; animation: navDrop .28s var(--ease-squeegee); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a {
    display: block; padding: .85rem clamp(18px, 4vw, 32px);
    font-family: var(--font-display); font-size: 1.35rem; text-transform: uppercase; letter-spacing: .03em;
    border-top: 2px solid var(--ink); border-bottom: none;
  }
  .nav-list a:hover { background: var(--yellow); }
  .nav-cta { margin: 1rem clamp(18px, 4vw, 32px) 0; text-align: center; }
}
@keyframes navDrop { from { opacity: 0; transform: translateY(-10px); } }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(2.6rem, 7vh, 5.5rem) clamp(2.8rem, 7vh, 5rem); position: relative; overflow: clip; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-kicker { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.hero-headline {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(2.9rem, 7.4vw, 5.6rem); line-height: .93; letter-spacing: .005em;
  margin-bottom: 1.4rem; font-weight: 400;
}
.hero-line { display: block; clip-path: inset(-2% 102% -8% -2%); animation: wipeIn .72s var(--ease-squeegee) forwards; }
.hero-line:nth-child(1) { animation-delay: .12s; }
.hero-line:nth-child(2) { animation-delay: .34s; }
.hero-line:nth-child(3) { animation-delay: .56s; }
@keyframes wipeIn { to { clip-path: inset(-2% -2% -8% -2%); } }
.hero-line-inner { display: inline-block; }
.hl-live { font-style: normal; color: var(--red); position: relative; z-index: 0; padding-inline: .04em; }
.hl-live::before {
  content: ""; position: absolute; z-index: -1; left: -.08em; right: -.1em; top: .5em; bottom: -.04em;
  background: var(--yellow); transform: skewX(-9deg) rotate(-1.5deg) scaleX(0); transform-origin: left;
  animation: smearIn .55s var(--ease-squeegee) 1.05s forwards;
}
@keyframes smearIn { to { transform: skewX(-9deg) rotate(-1.5deg) scaleX(1); } }
.hero-sub { font-size: 1.15rem; max-width: 34rem; margin-bottom: 1.7rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.3rem; }
.hero-meta { font-size: .98rem; color: var(--ink-soft); }
.hero-meta strong { color: var(--ink); }
.hero-meta a { color: var(--ink); font-weight: 700; }

.hero-photo { position: relative; }
.photo-frame { border: 3px solid var(--ink); box-shadow: 10px 10px 0 var(--ink); background: var(--paper-bright); overflow: hidden; }
.photo-frame img { width: 100%; }
.photo-rot-r { transform: rotate(1.6deg); }
.photo-rot-l { transform: rotate(-1.6deg); }

.spin-badge { position: absolute; right: -28px; bottom: -34px; width: clamp(110px, 13vw, 150px); filter: drop-shadow(3px 4px 0 rgba(22,18,13,.9)); }
.spin-badge-svg { animation: spin 16s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.badge-text { font-family: var(--font-body); font-weight: 700; font-size: 10.5px; letter-spacing: 2.1px; fill: var(--ink); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { margin-top: .6rem; margin-right: 14px; }
  .spin-badge { right: -10px; bottom: -28px; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; background: var(--yellow);
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  padding-block: .55rem;
}
.marquee-track { display: flex; align-items: center; gap: 1.6rem; width: max-content; animation: marquee 30s linear infinite; }
.marquee-item { font-family: var(--font-display); text-transform: uppercase; font-size: 1.25rem; letter-spacing: .05em; white-space: nowrap; }
.marquee-star { color: var(--red); font-size: 1.1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding-block: clamp(3rem, 8vh, 5.5rem); }
.section-tight { padding-block: clamp(2.4rem, 6vh, 4rem); }
.section-head { max-width: 46rem; margin-bottom: clamp(1.8rem, 4vh, 3rem); }
.kicker { margin-bottom: 1rem; }
.section-title {
  font-family: var(--font-display); text-transform: uppercase; font-weight: 400;
  font-size: clamp(2rem, 4.8vw, 3.3rem); line-height: 1.02; margin-bottom: .9rem;
}
.lede { font-size: 1.12rem; color: var(--ink-soft); }
.section-foot { margin-top: 2.2rem; font-size: 1.02rem; }
.section-foot a { font-weight: 700; }
.sub-head { font-family: var(--font-display); text-transform: uppercase; font-weight: 400; font-size: 1.5rem; margin: 2.4rem 0 1.2rem; }

/* highlighter smear on headings */
.hl { position: relative; z-index: 0; white-space: nowrap; }
.hl::after {
  content: ""; position: absolute; z-index: -1; left: -.08em; right: -.1em; bottom: -.02em; height: .42em;
  background: var(--yellow); transform: skewX(-9deg) scaleX(0); transform-origin: left;
  transition: transform .65s var(--ease-squeegee) .2s;
}
.is-inview .hl::after, .hl.is-inview::after, .title-band .hl::after { transform: skewX(-9deg) scaleX(1); }
.title-band .hl::after { transition: none; animation: smearGrow .7s var(--ease-squeegee) .35s backwards; }
@keyframes smearGrow { from { transform: skewX(-9deg) scaleX(0); } }

/* ---------- Reveal system ---------- */
.reveal-pending { opacity: 0; transform: translateY(24px); }
.reveal-pending.rotcard { transform: translateY(26px) rotate(2.4deg); }
.is-inview { opacity: 1; transform: none; transition: opacity .65s ease, transform .65s var(--ease-squeegee); }

/* ---------- Squeegee dividers ---------- */
.squeegee-divider { padding-block: 4px; overflow: hidden; }
.squeegee-bar {
  display: block; height: 14px;
  background: linear-gradient(90deg, var(--red) 0 96%, var(--red-deep) 96%);
  transform: scaleX(0); transform-origin: left;
}
.squeegee-divider.is-swept .squeegee-bar { transform: scaleX(1); transition: transform .85s var(--ease-squeegee); }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.step-card {
  background: var(--paper-bright); border: 2px solid var(--ink); box-shadow: var(--shadow);
  padding: 1.4rem 1.3rem 1.5rem;
}
.step-card:nth-child(odd) { transform: rotate(-.5deg); }
.step-card:nth-child(even) { transform: rotate(.55deg); }
.step-num {
  font-family: var(--font-display); font-size: 2.6rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 2px var(--ink); display: block; margin-bottom: .7rem;
}
.step-card:nth-child(3) .step-num { -webkit-text-stroke-color: var(--red); }
.step-card h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.3rem; margin-bottom: .5rem; }
.step-card p { font-size: .97rem; color: var(--ink-soft); }
@media (max-width: 980px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

/* ---------- Press demo (centerpiece) ---------- */
.press-demo { background: var(--ink); color: var(--paper); }
.press-wrap { height: 300vh; }
.press-demo--manual .press-wrap { height: auto; }
.press-sticky {
  position: sticky; top: var(--header-h); height: calc(100vh - var(--header-h));
  display: flex; align-items: center; overflow: hidden;
}
.press-demo--manual .press-sticky { position: static; height: auto; padding-block: clamp(2.6rem, 7vh, 4.5rem); }
.press-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; width: 100%; }
.press-copy .section-title { color: var(--paper); }
.press-copy .sticker { box-shadow: 3px 3px 0 rgba(250, 245, 236, .35); }
.press-sub { color: #c9c2b4; max-width: 30rem; margin-bottom: 1.6rem; }
.press-stages { list-style: none; padding: 0; display: grid; gap: .55rem; margin-bottom: 1.4rem; }
.stage {
  display: flex; align-items: center; gap: .8rem;
  font-family: var(--font-display); text-transform: uppercase; font-size: 1.45rem; letter-spacing: .04em;
  opacity: .32; transition: opacity .25s ease, transform .25s ease;
}
.stage-num {
  font-family: var(--font-body); font-weight: 700; font-size: .8rem;
  border: 2px solid currentColor; padding: .1rem .4rem;
}
.stage.is-active { opacity: 1; color: var(--yellow); transform: translateX(6px); }
.stage.is-done { opacity: .75; color: var(--paper); transform: none; }
.press-play { margin-top: .4rem; }

.press-scene { position: relative; max-width: 500px; margin-inline: auto; width: 100%; }
.press-shirt-svg { width: 100%; height: auto; }
.press-design { clip-path: inset(0 0 0 0); }
.press-cover {
  x: calc(108px + var(--reveal, 0) * 150px);
  width: calc(150px * (1 - var(--reveal, 0)));
}
.press-screen {
  transform-box: fill-box; transform-origin: 50% 0%;
  transform: translateY(calc(var(--peel, 0) * -250px)) rotate(calc(var(--peel, 0) * -7deg));
  opacity: calc(1 - var(--peel, 0) * .92);
}
.press-squeegee {
  transform: translate(calc(104px + var(--sq, 0) * 158px), 100px) rotate(7deg);
  opacity: calc(var(--ink-on, 0) * (1 - var(--gone, 0)));
}
.press-inkbead { opacity: calc(1 - var(--reveal, 0) * .55); }
.press-stamp {
  position: absolute; top: 2%; right: 0; background: var(--yellow);
  font-size: 1.05rem; text-align: center; transform: rotate(8deg) scale(0); padding: .55rem .7rem;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}
.press-scene.is-done .press-stamp { transform: rotate(8deg) scale(1); }
.press-scene.is-done .press-shirt-svg { animation: shirtPop .5s var(--ease-squeegee); }
@keyframes shirtPop { 35% { transform: scale(1.025) rotate(-.6deg); } }
@media (max-width: 880px) {
  .press-grid { grid-template-columns: 1fr; }
  .press-scene { max-width: 380px; }
  .press-stages { grid-template-columns: repeat(4, auto); justify-content: start; gap: 1rem; }
  .stage { font-size: 1.05rem; gap: .45rem; }
  .stage.is-active { transform: none; }
}

/* ---------- Garment picker ---------- */
.filter-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.8rem; }
.pill {
  border: 2px solid var(--ink); background: var(--paper-bright); box-shadow: var(--shadow-sm);
  padding: .42rem 1rem; font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .04em;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.pill:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.pill.is-active { background: var(--ink); color: var(--paper); }
.garment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.1rem, 2.4vw, 1.7rem); }
.garment-card {
  position: relative; background: var(--paper-bright); border: 2px solid var(--ink);
  box-shadow: var(--shadow); padding: .8rem .8rem 1rem;
  transition: transform .2s var(--ease-squeegee), box-shadow .2s var(--ease-squeegee);
}
.garment-card:hover { transform: translate(-3px, -3px) rotate(-.4deg); box-shadow: 8px 8px 0 var(--ink); }
.garment-card[data-hidden] { display: none; }
.garment-card.flip-in { animation: cardIn .4s var(--ease-squeegee) backwards; }
@keyframes cardIn { from { opacity: 0; transform: translateY(16px) scale(.96); } }
.garment-img { width: 100%; border: 2px solid var(--ink); background: #fff; }
.garment-tag {
  position: absolute; top: -12px; right: -10px; z-index: 1;
  border: 2px solid var(--ink); box-shadow: var(--shadow-sm); padding: .22rem .55rem;
  font-family: var(--font-display); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em;
  transform: rotate(3deg);
}
.garment-card:nth-child(odd) .garment-tag { transform: rotate(-2.5deg); }
.tag-red { background: var(--red); }
.tag-blue { background: var(--blue); color: #fff; }
.tag-yellow { background: var(--yellow); }
.garment-name { font-weight: 700; margin-top: .75rem; font-size: .98rem; line-height: 1.3; }
.garment-note { font-size: .86rem; color: var(--ink-soft); margin-top: .25rem; }
@media (max-width: 980px) { .garment-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .garment-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; } }

/* ---------- Stats band ---------- */
.stats-band { background: var(--ink); color: var(--paper); padding-block: clamp(2.2rem, 5vh, 3.4rem); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.4rem); line-height: 1; color: var(--yellow); display: block; margin-bottom: .45rem; }
.stat-label { text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; font-weight: 500; color: #c9c2b4; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Compare table ---------- */
.compare-wrap { max-width: 880px; }
.compare-table { width: 100%; border-collapse: collapse; border: 2px solid var(--ink); box-shadow: var(--shadow-lg); background: var(--paper-bright); }
.compare-table th {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.15rem; letter-spacing: .04em;
  padding: .85rem 1.1rem; text-align: left; border: 2px solid var(--ink);
}
.compare-table .col-old { background: var(--paper); color: var(--ink-soft); }
.compare-table .col-new { background: var(--red); }
.compare-table td { padding: .8rem 1.1rem; border: 2px solid var(--ink); font-size: .98rem; vertical-align: top; }
.compare-table td:first-child { color: var(--ink-soft); background: var(--paper); }
.compare-table td:last-child { font-weight: 500; }
@media (max-width: 560px) {
  .compare-table th, .compare-table td { padding: .6rem .65rem; font-size: .86rem; }
}

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.2vw, 1.5rem); }
.gallery-grid-full { grid-template-columns: repeat(3, 1fr); }
.gallery-item {
  position: relative; border: 2px solid var(--ink); box-shadow: var(--shadow); background: var(--paper-bright);
  overflow: hidden; transition: transform .22s var(--ease-squeegee), box-shadow .22s var(--ease-squeegee);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform .35s var(--ease-squeegee); }
.gallery-tall img { aspect-ratio: 3 / 4; }
.gallery-item:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--ink); }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-caption { position: absolute; left: .6rem; bottom: .6rem; }
.gallery-caption span {
  display: inline-block; background: var(--yellow); border: 2px solid var(--ink); box-shadow: var(--shadow-sm);
  padding: .25rem .55rem; font-family: var(--font-display); font-size: .74rem; letter-spacing: .05em; text-transform: uppercase;
  transform: rotate(-2deg);
}
@media (hover: hover) {
  .gallery-caption span { opacity: 0; transform: rotate(-2deg) translateY(8px); transition: opacity .25s, transform .25s var(--ease-squeegee); }
  .gallery-item:hover .gallery-caption span, .gallery-item:focus-within .gallery-caption span { opacity: 1; transform: rotate(-2deg) translateY(0); }
}
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-grid-full { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid-full { grid-template-columns: 1fr; } }

/* ---------- Occasions ---------- */
.occasion-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(1rem, 2vw, 1.4rem); }
.occasion-card {
  display: block; text-decoration: none; background: var(--paper-bright);
  border: 2px solid var(--ink); box-shadow: var(--shadow);
  transition: transform .2s var(--ease-squeegee), box-shadow .2s var(--ease-squeegee);
}
.occasion-card:hover { transform: translate(-3px, -3px) rotate(-.5deg); box-shadow: 8px 8px 0 var(--ink); color: var(--ink); }
.occasion-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-bottom: 2px solid var(--ink); }
.occasion-body { display: block; padding: .85rem .9rem 1rem; }
.occasion-title { display: block; font-family: var(--font-display); text-transform: uppercase; font-size: 1.06rem; line-height: 1.1; margin-bottom: .3rem; }
.occasion-line { display: block; font-size: .85rem; color: var(--ink-soft); margin-bottom: .55rem; }
.occasion-go { display: inline-block; font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--red-deep); }
@media (max-width: 980px) { .occasion-grid { grid-template-columns: repeat(2, 1fr); } .occasion-card:last-child { grid-column: 1 / -1; } }

/* ---------- FAQ ---------- */
.faq-container { max-width: 880px; }
.faq-list { display: grid; gap: .9rem; }
.faq-item { background: var(--paper-bright); border: 2px solid var(--ink); box-shadow: var(--shadow); }
.faq-h { margin: 0; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: none; border: none; text-align: left;
  font-weight: 700; font-size: 1.06rem; padding: 1rem 1.2rem; line-height: 1.35;
}
.faq-icon {
  flex: none; font-family: var(--font-display); font-size: 1.5rem; line-height: 1; color: var(--red);
  transition: transform .3s var(--ease-squeegee);
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease-squeegee); }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 1.2rem 1.15rem; color: var(--ink-soft); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.pricing-faq { margin-block: 2.6rem; max-width: 800px; }

/* ---------- Quote / work order ---------- */
.quote-section { background: var(--ink); color: var(--paper); padding-block: clamp(3rem, 8vh, 5.5rem); }
.quote-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.quote-pitch .section-title { color: var(--paper); }
.quote-lede { color: #c9c2b4; font-size: 1.1rem; margin-bottom: 1.4rem; }
.quote-lede strong { color: var(--yellow); }
.quote-points { list-style: none; padding: 0; display: grid; gap: .55rem; margin-bottom: 1.8rem; }
.quote-points li { padding-left: 1.5rem; position: relative; }
.quote-points li::before { content: "✛"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.quote-direct { color: #c9c2b4; line-height: 1.9; }
.quote-direct a { color: var(--paper); }
.quote-tel { font-family: var(--font-display); font-size: 1.9rem; text-decoration-color: var(--red); letter-spacing: .02em; }

.work-order { background: var(--paper-bright); color: var(--ink); border: 2px solid var(--ink); box-shadow: 8px 8px 0 rgba(255, 68, 36, .85); }
.work-order .crop-marks::before { opacity: .4; }
.wo-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  background: var(--red); border-bottom: 2px solid var(--ink); padding: .7rem 1.2rem;
}
.wo-title { font-family: var(--font-display); text-transform: uppercase; font-size: 1.3rem; letter-spacing: .04em; }
.wo-brand { font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.wo-perf { border-bottom: 2px dashed var(--ink); opacity: .5; }
.lead-form { padding: 1.4rem 1.3rem 1.6rem; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.field { margin-bottom: .95rem; }
.field-label { display: block; font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .3rem; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--paper); border: 2px solid var(--ink); padding: .6rem .7rem; font-size: 1rem;
  box-shadow: inset 2px 2px 0 rgba(22, 18, 13, .07); border-radius: 0;
}
.field textarea { resize: vertical; }
.details-toggle {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: var(--paper); border: 2px dashed var(--ink); padding: .6rem .8rem;
  font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .05em;
  margin: .2rem 0 1rem;
}
.dt-icon { font-family: var(--font-display); font-size: 1.2rem; color: var(--red); transition: transform .3s var(--ease-squeegee); }
.details-toggle[aria-expanded="true"] .dt-icon { transform: rotate(45deg); }
.form-submit { width: 100%; margin-top: .3rem; }
.form-note { margin-top: .8rem; font-size: .88rem; color: var(--ink-soft); text-align: center; }
.lead-form.is-success .form-submit { background: var(--yellow); }
@media (max-width: 880px) {
  .quote-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- CTA banner ---------- */
.cta-banner-wrap { padding-block: clamp(2.5rem, 6vh, 4.5rem); }
.cta-banner {
  position: relative; background: var(--red); border: 2px solid var(--ink); box-shadow: var(--shadow-lg);
  padding: clamp(2rem, 5vw, 3.2rem) clamp(1.4rem, 4vw, 3rem);
}
.cta-banner::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(var(--ink) 1px, transparent 1.4px);
  background-size: 12px 12px; opacity: .07;
}
.cta-sticker { position: absolute; top: -20px; right: 26px; background: var(--yellow); text-align: center; font-size: .95rem; z-index: 1; }
.sticker-spin-slow { animation: stickerWobble 5s ease-in-out infinite; }
@keyframes stickerWobble { 0%, 100% { transform: rotate(-4deg); } 50% { transform: rotate(5deg); } }
.cta-title { font-family: var(--font-display); text-transform: uppercase; font-weight: 400; font-size: clamp(1.9rem, 4.6vw, 3rem); line-height: 1.02; margin-bottom: .7rem; }
.cta-sub { max-width: 36rem; margin-bottom: 1.6rem; font-size: 1.08rem; }
.cta-actions { display: flex; align-items: center; gap: 1.3rem; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-tel { font-weight: 700; }

/* ---------- Title band (subpages) ---------- */
.title-band { border-bottom: 2px solid var(--ink); padding: clamp(2.2rem, 6vh, 4rem) 0 clamp(2rem, 5vh, 3.2rem); position: relative; }
.title-band .container { position: relative; }
.breadcrumb { margin-bottom: 1.2rem; }
.breadcrumb ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; font-weight: 500; }
.breadcrumb li + li::before { content: "/"; margin-right: .4rem; color: var(--red); font-weight: 700; }
.breadcrumb a { text-decoration: none; color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--red-deep); text-decoration: underline; }
.breadcrumb [aria-current] { color: var(--ink); }
.page-title { font-family: var(--font-display); text-transform: uppercase; font-weight: 400; font-size: clamp(2.2rem, 5.6vw, 4rem); line-height: .98; max-width: 18ch; margin-bottom: 1rem; }
.page-lede { font-size: 1.16rem; color: var(--ink-soft); max-width: 44rem; }
.band-reg { position: absolute; right: clamp(18px, 4vw, 32px); top: 0; }

/* ---------- Article / prose ---------- */
.article { padding-block: clamp(2.4rem, 6vh, 4rem) 1rem; max-width: 820px; }
.post-meta { font-size: .85rem; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-soft); margin-bottom: 1.6rem; font-weight: 500; }
.prose h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.65rem; line-height: 1.1; margin: 2.4rem 0 .9rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.12rem; margin: 1.8rem 0 .6rem; }
.prose p { margin-bottom: 1.05rem; }
.prose ul { margin-bottom: 1.05rem; display: grid; gap: .4rem; }
.prose a { color: var(--blue); font-weight: 500; }
.prose a:hover { color: var(--red-deep); }
.prose table { width: 100%; border-collapse: collapse; border: 2px solid var(--ink); background: var(--paper-bright); box-shadow: var(--shadow); margin: 1.4rem 0 1.8rem; font-size: .95rem; }
.prose th { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: .92rem; letter-spacing: .04em; background: var(--yellow); }
.prose th, .prose td { border: 2px solid var(--ink); padding: .55rem .7rem; text-align: left; }
@media (max-width: 560px) { .prose th, .prose td { padding: .45rem .5rem; font-size: .82rem; } }

.answer-box { background: var(--paper-bright); border: 2px solid var(--blue); box-shadow: 6px 6px 0 var(--blue); padding: 1.4rem 1.5rem; margin-bottom: 2.4rem; }
.answer-box .crop-marks::before { opacity: .3; }
.answer-box-label { font-family: var(--font-display); text-transform: uppercase; color: var(--blue); letter-spacing: .08em; font-size: .9rem; margin-bottom: .5rem; }
.answer-box-text { font-size: 1.13rem; font-weight: 500; line-height: 1.55; }

.figure-frame { margin: 2.6rem 0 1rem; max-width: 640px; }
.figure-frame .photo-frame { box-shadow: var(--shadow-lg); }
.figure-cap { margin-top: -14px; padding-left: 1.2rem; position: relative; z-index: 1; }

.inline-garments { margin: 1.4rem 0 1.8rem; }
.inline-garments { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.inline-garments img { border: 2px solid var(--ink); box-shadow: var(--shadow-sm); background: #fff; width: 100%; }
.inline-garments figcaption { grid-column: 1 / -1; font-size: .85rem; color: var(--ink-soft); margin-top: .2rem; }

/* ---------- Siblings / chips ---------- */
.sibling-links { padding: 1.6rem 0 .4rem; border-top: 2px dashed var(--ink); margin-top: 1.6rem; }
.sibling-head { font-family: var(--font-display); text-transform: uppercase; font-size: 1.05rem; margin-bottom: .9rem; }
.chip-row { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .7rem; }
.chip {
  display: inline-block; text-decoration: none; border: 2px solid var(--ink); background: var(--paper-bright);
  box-shadow: var(--shadow-sm); padding: .4rem .85rem; font-weight: 700; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .04em;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.chip:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); background: var(--yellow); color: var(--ink); }

/* ---------- Hub cards ---------- */
.hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 2.6vw, 1.8rem); margin-bottom: 2.4rem; }
.hub-grid-3 { grid-template-columns: repeat(3, 1fr); }
.hub-card {
  display: flex; flex-direction: column; gap: .45rem; text-decoration: none;
  background: var(--paper-bright); border: 2px solid var(--ink); box-shadow: var(--shadow);
  padding: 1.4rem 1.4rem 1.5rem;
  transition: transform .2s var(--ease-squeegee), box-shadow .2s var(--ease-squeegee);
}
.hub-card:hover { transform: translate(-3px, -3px) rotate(-.35deg); box-shadow: 8px 8px 0 var(--ink); color: var(--ink); }
.hub-card-kicker { font-weight: 700; font-size: .75rem; text-transform: uppercase; letter-spacing: .09em; color: var(--red-deep); }
.hub-card-title { font-family: var(--font-display); text-transform: uppercase; font-size: 1.45rem; line-height: 1.05; }
.hub-card-line { color: var(--ink-soft); font-size: .95rem; }
.hub-card-go { margin-top: auto; padding-top: .5rem; font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; color: var(--blue); }
.hub-prose { padding-top: .6rem; max-width: 760px; }
@media (max-width: 880px) { .hub-grid, .hub-grid-3 { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.price-anchor-card {
  background: var(--yellow); border: 2px solid var(--ink); box-shadow: var(--shadow-lg);
  text-align: center; padding: 2.2rem 1.4rem 2rem; margin-bottom: 3rem; transform: rotate(-.5deg);
}
.price-anchor-label { font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .85rem; margin-bottom: .4rem; }
.price-anchor-num { font-family: var(--font-display); font-size: clamp(3rem, 9vw, 5.2rem); line-height: 1; }
.price-anchor-sub { color: var(--ink); opacity: .75; margin-top: .5rem; font-weight: 500; }
.driver-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.4rem; margin: 1.4rem 0 2.6rem; }
.driver-card { background: var(--paper-bright); border: 2px solid var(--ink); box-shadow: var(--shadow); padding: 1.2rem 1.1rem; }
.driver-num { font-family: var(--font-display); color: transparent; -webkit-text-stroke: 2px var(--red); font-size: 2rem; display: block; margin-bottom: .5rem; }
.driver-card h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.12rem; margin-bottom: .4rem; }
.driver-card p { font-size: .9rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); margin-top: 2rem; padding: clamp(2.6rem, 6vh, 4rem) 0 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.4rem; }
.footer-brand .brand-mark path:first-of-type { fill: var(--paper); }
.footer-brand-name { font-family: var(--font-display); text-transform: uppercase; font-size: 1.3rem; line-height: 1; margin: .8rem 0 .7rem; }
.footer-blurb { color: #c9c2b4; font-size: .92rem; max-width: 26rem; margin-bottom: 1rem; }
.ink-chips { display: flex; gap: .45rem; margin-bottom: 1.1rem; }
.ink-chips i { width: 16px; height: 16px; border: 2px solid var(--paper); display: block; }
.chip-red { background: var(--red); }
.chip-blue { background: var(--blue); }
.chip-yellow { background: var(--yellow); }
.chip-ink { background: var(--ink); }
.footer-contact { font-style: normal; line-height: 1.9; color: #c9c2b4; font-size: .95rem; }
.footer-contact a { color: var(--paper); }
.footer-contact a:hover { color: var(--yellow); }
.footer-head { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; font-size: 1rem; margin-bottom: .8rem; color: var(--yellow); }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .45rem; }
.footer-col a { color: #d9d3c6; text-decoration: none; font-size: .94rem; }
.footer-col a:hover { color: var(--paper); text-decoration: underline; text-decoration-color: var(--red); }
.family-row { border-top: 2px dashed rgba(250, 245, 236, .3); padding-top: 1.6rem; margin-bottom: 1.6rem; }
.family-row ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; }
.family-row a { color: #d9d3c6; text-decoration: none; font-size: .92rem; }
.family-row a:hover { color: var(--yellow); text-decoration: underline; }
.footer-bottom {
  border-top: 2px solid rgba(250, 245, 236, .25); padding-top: 1.3rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: .85rem; color: #a39c8d;
}
.footer-reg { display: flex; align-items: center; gap: .5rem; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-reg .regmark { border-color: #a39c8d; opacity: .8; }
.footer-reg .regmark::before, .footer-reg .regmark::after { background: #a39c8d; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-line { clip-path: none; animation: none; }
  .hl-live::before { transform: skewX(-9deg) rotate(-1.5deg) scaleX(1); animation: none; }
  .hl::after { transform: skewX(-9deg) scaleX(1); transition: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
  .spin-badge-svg { animation: none; }
  .sticker-spin-slow { animation: none; }
  .squeegee-bar { transform: scaleX(1); }
  .reveal-pending { opacity: 1; transform: none; }
  .press-wrap { height: auto !important; }
  .press-sticky { position: static; height: auto; padding-block: 3rem; }
}
