/* ============================================================
   KOPI KLUB · Issue Nº 07
   Light-first editorial print / risograph.
   Warm paper, ink type, tomato + cobalt riso accents,
   visible baseline grid, hard-shadow cutouts, stamped labels.
   Dark mode = ink-paper flipped (charcoal paper, cream ink).
   Spacing scale: 8px base.
   ============================================================ */

:root,
:root[data-theme="light"] {
  --paper: #f3ecdd;
  --paper-2: #ece2cc;
  --paper-3: #e4d8bd;
  --ink: #1c1712;
  --ink-soft: #574c3d;
  --tomato: #d5401d;
  --cobalt: #1f3fba;
  --tomato-ink: #f6efe0;   /* type printed on tomato   */
  --cobalt-ink: #f6efe0;   /* type printed on cobalt   */
  --line: rgba(28, 23, 18, 0.9);
  --rule: rgba(28, 23, 18, 0.22);
  --grid: rgba(28, 23, 18, 0.055);
  --shadow: #1c1712;
  --halftone: rgba(213, 64, 29, 0.16);
}

:root[data-theme="dark"] {
  --paper: #1d1a15;
  --paper-2: #26221b;
  --paper-3: #2f2a21;
  --ink: #f0e7d2;
  --ink-soft: #b6ab92;
  --tomato: #ef5a32;
  --cobalt: #6a83ff;
  --tomato-ink: #1d1a15;
  --cobalt-ink: #1d1a15;
  --line: rgba(240, 231, 210, 0.92);
  --rule: rgba(240, 231, 210, 0.26);
  --grid: rgba(240, 231, 210, 0.05);
  --shadow: #0c0a07;
  --halftone: rgba(239, 90, 50, 0.14);
}

/* ---------- 8px spacing scale ---------- */
:root {
  --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 40px; --s6: 48px; --s8: 64px; --s10: 80px;
  --s12: 96px; --s16: 128px;
  --font-display: "Abril Fatface", "Georgia", serif;
  --font-cond: "Oswald", "Arial Narrow", "Helvetica Neue", sans-serif;
  --font-body: "Lora", "Georgia", serif;
  --hard: 10px 10px 0 var(--shadow);
  --hard-sm: 6px 6px 0 var(--shadow);
  --maxw: 1180px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  /* visible baseline grid — the print table under everything */
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 31px,
    var(--grid) 31px,
    var(--grid) 32px
  );
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.35s ease, color 0.35s ease;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--tomato); color: var(--tomato-ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  text-wrap: balance;
  hyphens: none;
  -webkit-hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s3); }
@media (min-width: 760px) { .wrap { padding: 0 var(--s5); } }

/* ============================================================
   NAV — masthead bar
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 300;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--line);
  transition: background-color 0.35s ease;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav { background: var(--paper); }
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--s2) var(--s3);
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-wrap: wrap;
}
.masthead {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.masthead em { font-style: normal; color: var(--tomato); }
.masthead .issue {
  font-family: var(--font-cond);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  color: var(--ink-soft);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: var(--s3);
  margin-left: auto;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.nav-links a:hover { border-color: var(--tomato); }
.nav-links a[aria-current="page"] { border-color: var(--tomato); color: var(--tomato); }
.nav-links .nav-cta {
  border: 2px solid var(--line);
  padding: 6px 14px;
  background: var(--tomato);
  color: var(--tomato-ink);
  box-shadow: 4px 4px 0 var(--shadow);
}
.nav-links .nav-cta:hover { border-color: var(--line); transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--shadow); }

.theme-toggle {
  flex: none;
  width: 40px;
  height: 40px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 3px 3px 0 var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.theme-toggle:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--shadow); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

@media (max-width: 860px) {
  .nav-inner { padding: var(--s1) var(--s2); }
  .theme-toggle { order: 2; margin-left: auto; }
  .masthead { order: 1; }
  .nav-links { order: 3; flex-basis: 100%; margin-left: 0; padding-bottom: 4px; }
}

/* ============================================================
   ZINE FURNITURE — stamps, index numbers, rules, blocks
   ============================================================ */
.stamp {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tomato);
  border: 2px solid currentColor;
  border-radius: 3px;
  padding: 5px 12px;
  transform: rotate(-3deg);
  background: transparent;
}
.stamp.blue { color: var(--cobalt); transform: rotate(2deg); }
.stamp.ink { color: var(--ink); }
.stamp.fill { background: var(--tomato); color: var(--tomato-ink); border-color: var(--tomato); }

.idx {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 12vw, 9rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 2px var(--tomato);
  user-select: none;
}
@supports not (-webkit-text-stroke: 2px red) { .idx { color: var(--tomato); } }
.idx.blue { -webkit-text-stroke-color: var(--cobalt); }
@supports not (-webkit-text-stroke: 2px red) { .idx.blue { color: var(--cobalt); } }

.kicker {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.kicker::before { content: ""; width: 32px; height: 2px; background: var(--tomato); flex: none; }

.rule { border: 0; border-top: 2px solid var(--line); }
.rule.dotted { border-top: 2px dashed var(--rule); }

/* offset color block behind a headline word */
.blk {
  display: inline-block;
  background: var(--tomato);
  color: var(--tomato-ink);
  padding: 0 0.18em;
  box-shadow: 0.09em 0.09em 0 var(--cobalt);
  transform: rotate(-1deg);
}
.blk.blue { background: var(--cobalt); color: var(--cobalt-ink); box-shadow: 0.09em 0.09em 0 var(--tomato); }
.underline-riso {
  background-image: linear-gradient(var(--tomato), var(--tomato));
  background-repeat: no-repeat;
  background-size: 100% 0.14em;
  background-position: 0 92%;
}

/* cutout image / card with hard shadow */
.cut {
  border: 2px solid var(--line);
  box-shadow: var(--hard);
  background: var(--paper-2);
}
.cut img, .cut video { width: 100%; height: auto; }
.cut .caption {
  display: flex;
  justify-content: space-between;
  gap: var(--s2);
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-top: 2px solid var(--line);
  padding: var(--s1) var(--s2);
}
.tilt-l { transform: rotate(-1.6deg); }
.tilt-r { transform: rotate(1.4deg); }

/* halftone dot patch — riso texture accent */
.halftone {
  position: absolute;
  width: 220px;
  height: 220px;
  background-image: radial-gradient(var(--halftone) 2px, transparent 2.5px);
  background-size: 12px 12px;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper-2);
  border: 2px solid var(--line);
  padding: 14px 26px;
  box-shadow: var(--hard-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--shadow); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--shadow); }
.btn.primary { background: var(--tomato); color: var(--tomato-ink); }
.btn.blue { background: var(--cobalt); color: var(--cobalt-ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: var(--s10) 0 var(--s12); overflow: hidden; }
.hero .wrap { position: relative; z-index: 1; }
.hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s3);
  margin-bottom: var(--s3);
}
.hero h1 {
  font-size: clamp(2.7rem, 10.5vw, 6.75rem);
  margin: var(--s3) 0 var(--s4);
  max-width: 12ch;
}
.hero .lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 54ch;
  color: var(--ink-soft);
  margin-bottom: var(--s4);
}
.hero-actions { display: flex; gap: var(--s2); flex-wrap: wrap; align-items: center; }

.hero-grid {
  display: grid;
  gap: var(--s8);
  align-items: start;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: var(--s8); }
}

/* the ONE video home — a tipped-in film cell on the cover */
.video-cut { position: relative; margin-top: var(--s4); }
@media (min-width: 960px) { .video-cut { margin-top: var(--s10); } }
.video-cut video { aspect-ratio: 4 / 3; object-fit: cover; background: var(--paper-3); }
.video-cut .stamp {
  position: absolute;
  top: -14px;
  right: -10px;
  z-index: 2;
  background: var(--paper);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  background: var(--paper-2);
  overflow: hidden;
  padding: var(--s2) 0;
}
.marquee-track {
  display: flex;
  gap: var(--s6);
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee span {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: var(--s6);
}
.marquee span i { font-style: normal; color: var(--tomato); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: var(--s12) 0; position: relative; }
.section.tinted { background: var(--paper-2); border-top: 2px solid var(--line); border-bottom: 2px solid var(--line); }
.section-head { display: flex; align-items: flex-end; gap: var(--s4); margin-bottom: var(--s8); flex-wrap: wrap; }
.section-head .idx { flex: none; }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.5rem); max-width: 16ch; }
.section-head p { color: var(--ink-soft); max-width: 46ch; }

/* zine table of contents */
.toc { display: grid; gap: 0; border: 2px solid var(--line); box-shadow: var(--hard); background: var(--paper-2); }
.toc-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s3);
  padding: var(--s3) var(--s3);
  text-decoration: none;
  border-bottom: 2px solid var(--rule);
  transition: background-color 0.2s ease;
  position: relative;
}
.toc-row:last-child { border-bottom: 0; }
.toc-row:hover { background: var(--paper-3); }
.toc-row .no {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--tomato);
  width: 2.2ch;
}
.toc-row h3 { font-size: clamp(1.3rem, 3vw, 2rem); }
.toc-row p { font-size: 0.95rem; color: var(--ink-soft); margin-top: 2px; font-family: var(--font-body); }
.toc-row .go {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cobalt);
  white-space: nowrap;
}

/* editorial two-column spread */
.spread { display: grid; gap: var(--s6); align-items: center; }
@media (min-width: 900px) {
  .spread { grid-template-columns: 1fr 1fr; gap: var(--s10); }
  .spread.flip > .spread-media { order: 2; }
}
.spread h3 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin: var(--s2) 0 var(--s3); }
.spread p + p { margin-top: var(--s2); }
.spread .spread-body p { color: var(--ink-soft); }
.spread .btn { margin-top: var(--s4); }

/* feature list — numbered like an index */
.numlist { list-style: none; display: grid; gap: var(--s3); margin-top: var(--s4); }
.numlist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s3);
  align-items: baseline;
  padding-bottom: var(--s3);
  border-bottom: 2px dashed var(--rule);
}
.numlist li:last-child { border-bottom: 0; padding-bottom: 0; }
.numlist .n {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--tomato);
  border: 2px solid var(--tomato);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  transform: translateY(4px);
}
.numlist strong { font-family: var(--font-cond); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.95rem; display: block; margin-bottom: 2px; }
.numlist p { color: var(--ink-soft); font-size: 0.98rem; }

/* ============================================================
   CARD GRIDS (templates, portfolio, pricing)
   ============================================================ */
.grid-2 { display: grid; gap: var(--s6); }
.grid-3 { display: grid; gap: var(--s6); }
@media (min-width: 720px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.zcard { position: relative; display: block; text-decoration: none; }
.zcard .cut { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.zcard:hover .cut { transform: translate(-3px, -3px); box-shadow: 13px 13px 0 var(--shadow); }
.zcard .stamp { position: absolute; top: -12px; left: -8px; z-index: 2; background: var(--paper); }
.zcard-body { padding: var(--s3); }
.zcard-body h3 { font-size: 1.5rem; margin-bottom: var(--s1); }
.zcard-body p { color: var(--ink-soft); font-size: 0.97rem; }
.zcard-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--s2);
  font-family: var(--font-cond);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.zcard-meta .price { color: var(--tomato); font-size: 0.9rem; }
.zcard-meta .tag { color: var(--cobalt); }

/* pricing */
.price-grid { display: grid; gap: var(--s6); align-items: stretch; }
@media (min-width: 880px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card { position: relative; display: flex; flex-direction: column; padding: var(--s4); }
.price-card .tier {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.price-card .amount { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.6rem); margin: var(--s2) 0; }
.price-card .amount small { font-family: var(--font-cond); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; color: var(--ink-soft); }
.price-card ul { list-style: none; display: grid; gap: var(--s1); margin: var(--s2) 0 var(--s4); flex: 1; }
.price-card li { font-size: 0.96rem; color: var(--ink-soft); padding-left: var(--s3); position: relative; }
.price-card li::before { content: "✕"; position: absolute; left: 0; color: var(--tomato); font-family: var(--font-cond); font-weight: 600; font-size: 0.8rem; transform: translateY(1px); }
.price-card .stamp { position: absolute; top: -14px; right: var(--s3); background: var(--paper); }
.price-card.featured { background: var(--paper); outline: 2px solid var(--tomato); outline-offset: 4px; }

/* pull-quote — the AI hook */
.pullquote {
  position: relative;
  padding: var(--s6) var(--s4);
  background: var(--cobalt);
  color: var(--cobalt-ink);
  border: 2px solid var(--line);
  box-shadow: var(--hard);
  transform: rotate(-0.8deg);
}
.pullquote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.4vw, 2.3rem);
  line-height: 1.25;
  text-wrap: balance;
  hyphens: none;
  overflow-wrap: normal;
}
.pullquote figcaption {
  margin-top: var(--s3);
  font-family: var(--font-cond);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}
.pullquote .stamp { position: absolute; top: -14px; right: var(--s3); background: var(--paper); }

/* colophon / honest note box */
.colophon {
  border: 2px solid var(--line);
  background: var(--paper-2);
  box-shadow: var(--hard-sm);
  padding: var(--s4);
  max-width: 720px;
}
.colophon h3 { font-size: 1.4rem; margin: var(--s2) 0; }
.colophon p { color: var(--ink-soft); font-size: 0.99rem; }
.colophon p + p { margin-top: var(--s2); }

/* case rows — portfolio archive */
.case { padding: var(--s8) 0; border-bottom: 2px solid var(--rule); }
.case:last-of-type { border-bottom: 0; }
.case-head { display: flex; align-items: baseline; gap: var(--s3); flex-wrap: wrap; margin-bottom: var(--s4); }
.case-head .no { font-family: var(--font-display); font-size: 2rem; color: var(--tomato); }
.case-head h3 { font-size: clamp(1.8rem, 4.5vw, 3rem); }
.case-head .meta { margin-left: auto; font-family: var(--font-cond); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--tomato);
  color: var(--tomato-ink);
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  padding: var(--s12) 0;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { font-size: clamp(2.2rem, 7vw, 4.5rem); max-width: 14ch; margin-bottom: var(--s3); }
.cta-band p { max-width: 52ch; opacity: 0.92; margin-bottom: var(--s5); }
.cta-band .btn { background: var(--paper); color: var(--ink); }
.cta-band .btn.ghost { background: transparent; color: var(--tomato-ink); border-color: currentColor; }
.cta-band .idx { position: absolute; right: 2%; bottom: -4%; -webkit-text-stroke-color: color-mix(in srgb, var(--tomato-ink) 45%, transparent); opacity: 0.7; font-size: clamp(8rem, 20vw, 16rem); }
@supports not (-webkit-text-stroke: 2px red) { .cta-band .idx { color: color-mix(in srgb, var(--tomato-ink) 30%, transparent); } }

/* ============================================================
   FOOTER — colophon
   ============================================================ */
.footer { padding: var(--s8) 0 var(--s6); border-top: 2px solid var(--line); background: var(--paper-2); }
.footer-grid { display: grid; gap: var(--s5); }
@media (min-width: 820px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer .masthead { font-size: 1.3rem; }
.footer p { color: var(--ink-soft); font-size: 0.95rem; max-width: 38ch; margin-top: var(--s2); }
.footer h4 { font-family: var(--font-cond); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: var(--s2); }
.footer ul { list-style: none; display: grid; gap: var(--s1); }
.footer ul a { text-decoration: none; font-size: 0.98rem; }
.footer ul a:hover { color: var(--tomato); }
.footer-base {
  margin-top: var(--s6);
  padding-top: var(--s3);
  border-top: 2px dashed var(--rule);
  display: flex;
  justify-content: space-between;
  gap: var(--s2);
  flex-wrap: wrap;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   MOTION — reveals only when JS is confirmed (.js-armed)
   Content is fully visible by default with no JS.
   ============================================================ */
.js-armed .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}
.js-armed .reveal.in-view { opacity: 1; transform: none; }
.js-armed .reveal-stamp { opacity: 0; transform: rotate(-3deg) scale(1.6); transition: opacity 0.45s ease 0.25s, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s; }
.js-armed .reveal-stamp.in-view { opacity: 1; transform: rotate(-3deg) scale(1); }
@media (prefers-reduced-motion: reduce) {
  .js-armed .reveal, .js-armed .reveal-stamp { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* utility */
.mt-2 { margin-top: var(--s2); } .mt-4 { margin-top: var(--s4); } .mt-6 { margin-top: var(--s6); } .mt-8 { margin-top: var(--s8); }
.center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
