/* ============================================================
   NAREN / RISO PRESS - DESIGN TOKENS
   Retro-futurist, 70s-90s spot-color print aesthetic.
   ============================================================ */

:root {
  /* -----------------------------------------------------
     COLOR - six spot inks + paper
     Treat each as a separate silkscreen layer.
     Combine via mix-blend-mode: multiply only.
  ----------------------------------------------------- */
  --paper:       #F2E5C8;   /* aged cream stock - the substrate */
  --paper-deep:  #E6D5A8;   /* shadow paper, second pass */

  --ink:         #15183F;   /* deep navy ink, body + primary */
  --ink-soft:    #2A2E5C;   /* secondary ink, captions */

  --orange:      #E84B23;   /* burnt persimmon, hero accent */
  --pink:        #FF2D78;   /* day-glo pink, the punch */
  --mustard:     #E8B23D;   /* harvest gold, warm accent */
  --olive:       #5C6E2A;   /* avocado, earthy accent */
  --rust:        #8E2A0E;   /* oxide rust, italics + serifs */
  --cyan:        #1FA5B8;   /* faded cyan ink, supporting */

  /* -----------------------------------------------------
     TYPOGRAPHY
  ----------------------------------------------------- */
  --font-mega:    'Rubik Mono One', system-ui, sans-serif;
  --font-display: 'Bungee', system-ui, sans-serif;
  --font-serif:   'DM Serif Display', Georgia, serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* type scale - one fluid system, wired up across every page.
     Tiers step down cleanly so hierarchy never inverts:
     hero > page/section title > long-form title > card heading. */
  --fs-hero:     clamp(34px, 6.6vw, 78px);  /* home hero headline (serif italic) */
  --fs-title:    clamp(27px, 4.2vw, 56px);  /* page + section titles (display) */
  --fs-title-sm: clamp(24px, 3.4vw, 42px);  /* long-form page titles: case study, framework */
  --fs-heading:  clamp(20px, 2.2vw, 28px);  /* card / sub-section headings */
  --fs-quote:    clamp(22px, 2.8vw, 34px);  /* pull quotes, leads */

  --size-quote:  var(--fs-quote);           /* legacy alias */
  --size-body:   16px;
  --size-caption: 13px;
  --size-label:  11px;

  --lh-tight:    0.85;
  --lh-snug:     1.0;
  --lh-normal:   1.55;
  --lh-loose:    1.7;

  /* -----------------------------------------------------
     SPACING - multiples of 8
  ----------------------------------------------------- */
  --space-1:  8px;
  --space-2:  16px;
  --space-3:  24px;
  --space-4:  32px;
  --space-5:  48px;
  --space-6:  64px;
  --space-7:  80px;
  --space-8:  100px;
  --space-9:  120px;

  --container-max: 1200px;
  --container-pad: 32px;

  /* -----------------------------------------------------
     BORDERS - sharp corners only, or fully circular
  ----------------------------------------------------- */
  --border-thin:    2px solid var(--ink);
  --border-stamp:   2.5px solid var(--ink);
  --border-card:    3px solid var(--ink);
  --border-rule:    6px;
  --radius:         0;
  --radius-pill:    999px;

  /* -----------------------------------------------------
     SHADOWS - flat offset solids, never blurred
  ----------------------------------------------------- */
  --shadow-stamp-orange:  4px 4px 0 var(--orange);
  --shadow-stamp-pink:    4px 4px 0 var(--pink);
  --shadow-stamp-mustard: 4px 4px 0 var(--mustard);
  --shadow-stamp-olive:   4px 4px 0 var(--olive);
  --shadow-stamp-cyan:    4px 4px 0 var(--cyan);
  --shadow-stamp-ink:     6px 6px 0 var(--ink);

  /* -----------------------------------------------------
     MOTION - sparing and purposeful
  ----------------------------------------------------- */
  --ease:        ease-out;
  --dur-fast:    0.15s;
  --dur-mid:     0.18s;
  --dur-load:    0.7s;
}

/* ============================================================
   BASE
   ============================================================ */

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: var(--size-body);
  line-height: var(--lh-normal);
  position: relative;
  min-height: 100vh;
}

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

/* ============================================================
   UTILITIES
   ============================================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative;
  z-index: 2;
}

/* ============================================================
   COMPONENT - STAMP (rotated label badge)
   Used for company stamps, primary CTAs, tags-as-stickers.
   ============================================================ */

.stamp {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 10px 18px 8px;
  border: var(--border-stamp);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  transform: rotate(-1deg);
  box-shadow: var(--shadow-stamp-orange);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.stamp::before { content: '◆'; color: var(--orange); font-size: 10px; }
.stamp:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow: var(--shadow-stamp-ink);
}
.stamp--pink    { box-shadow: var(--shadow-stamp-pink);    transform: rotate(2deg); }
.stamp--mustard { box-shadow: var(--shadow-stamp-mustard); transform: rotate(-2deg); }
.stamp--olive   { box-shadow: var(--shadow-stamp-olive);   transform: rotate(1.5deg); }
.stamp--cyan    { box-shadow: var(--shadow-stamp-cyan);    transform: rotate(-1.5deg); }

/* ============================================================
   COMPONENT - CARD
   ============================================================ */

.card {
  border: var(--border-card);
  background: var(--paper);
  padding: 36px 32px 28px;
  position: relative;
  transition: transform var(--dur-fast) var(--ease);
}
.card::before {
  content: '';
  position: absolute;
  inset: 8px -8px -8px 8px;
  background-image: radial-gradient(circle, var(--ink) 1px, transparent 1.2px);
  background-size: 6px 6px;
  z-index: -1;
}
.card:hover { transform: translate(-3px, -3px); }
.card:hover::before { inset: 11px -11px -11px 11px; }

/* ============================================================
   COMPONENT - TAG (chip)
   ============================================================ */

.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  background: var(--ink);
  color: var(--paper);
  letter-spacing: 0.04em;
  transform: rotate(-0.5deg);
}
.tag:nth-child(even) { transform: rotate(0.5deg); }

/* ============================================================
   COMPONENT - SECTION HEADER
   ============================================================ */

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--rust);
  margin-bottom: 12px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--rust);
  vertical-align: middle;
  margin-right: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-title);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--orange);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.section-rule {
  height: var(--border-rule);
  background: var(--ink);
  width: 120px;
  margin: 28px 0 0;
  position: relative;
}
.section-rule::after {
  content: '';
  position: absolute;
  right: -16px;
  top: -3px;
  width: 12px;
  height: 12px;
  background: var(--pink);
  border-radius: 50%;
}

/* ============================================================
   COMPONENT - PULL QUOTE (italic serif wedge)
   ============================================================ */

.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--size-quote);
  line-height: 1.3;
  color: var(--ink);
  max-width: 920px;
  padding-left: 32px;
  border-left: 8px solid var(--orange);
}
.pull-quote strong {
  font-style: normal;
  font-family: var(--font-display);
  background: var(--mustard);
  color: var(--ink);
  padding: 2px 10px;
  display: inline-block;
  transform: rotate(-1deg);
  margin: 0 4px;
}
/* stacked paragraphs inside a pull quote - real spacing, not <br><br> */
.pull-quote p + p { margin-top: 0.7em; }

/* ============================================================
   COMPONENT - TICKER (the single continuous motion)
   ============================================================ */

.ticker {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 3px solid var(--orange);
}
.ticker__track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  padding-left: 100%;
}
.ticker__track span::before { content: '★ '; color: var(--pink); margin-right: 8px; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ============================================================
   COMPONENT - SITE NAV (sticky, translucent)
   ============================================================ */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 150;
  background: rgba(242, 229, 200, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--ink);
}
.site-nav__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.site-nav__brand {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.site-nav__brand strong { color: var(--orange); margin-right: 4px; }
.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-nav__back,
.site-nav__link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.site-nav__back:hover,
.site-nav__link:hover { color: var(--ink); border-bottom-color: var(--pink); }
.site-nav__link.is-active { color: var(--ink); border-bottom-color: var(--orange); }
.site-nav .stamp.is-active {
  background: var(--ink);
  color: var(--paper);
}
.site-nav .stamp.is-active::before { color: var(--mustard); }
.site-nav__cta {
  font-size: 11px;
  padding: 8px 14px 6px;
  cursor: pointer;
}
.site-nav__brand,
.site-nav__back,
.site-nav__cta { white-space: nowrap; }
.site-nav__brand-short { display: none; }
@media (max-width: 640px) {
  .site-nav__row { padding-top: 10px; padding-bottom: 10px; gap: 10px; }
  .site-nav__brand { font-size: 10px; letter-spacing: 0.1em; }
  .site-nav__brand-name { display: none; }
  .site-nav__brand-short { display: inline; }
  .site-nav__back,
  .site-nav__link { font-size: 10px; letter-spacing: 0.06em; }
  .site-nav__actions { gap: 8px; }
  .site-nav .site-nav__cta { font-size: 10px; padding: 7px 10px 6px; gap: 4px; }
}
@media (max-width: 380px) {
  .site-nav__actions { gap: 6px; }
  .site-nav .site-nav__cta { padding: 6px 8px 5px; }
}

/* ============================================================
   COMPONENT - SITE NAV BURGER (mobile menu)
   Button injected by site.js; .has-burger scopes the collapsed
   layout so a no-JS page keeps the inline stamps.
   ============================================================ */

.site-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 8px;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--orange);
  cursor: pointer;
  flex: none;
}
.site-nav__burger span {
  display: block;
  height: 2.5px;
  background: var(--ink);
  transition: transform var(--dur-mid) var(--ease),
              opacity var(--dur-mid) var(--ease);
}

@media (max-width: 720px) {
  .site-nav.has-burger .site-nav__actions { display: none; }
  .site-nav.has-burger .site-nav__burger { display: flex; }

  /* open state: stamps stack in a dropdown panel under the bar */
  .site-nav.has-burger.is-open .site-nav__actions {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px var(--container-pad) 24px;
    background: rgba(242, 229, 200, 0.96);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--ink);
  }
  .site-nav.has-burger.is-open .site-nav__actions .site-nav__cta {
    justify-content: center;
    font-size: 12px;
    padding: 12px 14px 10px;
  }

  /* burger morphs into a close X */
  .site-nav.is-open .site-nav__burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .site-nav.is-open .site-nav__burger span:nth-child(2) { opacity: 0; }
  .site-nav.is-open .site-nav__burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ============================================================
   SECTION VARIANTS
   ============================================================ */

.section {
  padding: var(--space-8) 0 var(--space-7);
}
.section--dark {
  background: var(--ink);
  color: var(--paper);
}
.section--dark .section-eyebrow { color: var(--pink); }
.section--dark .section-eyebrow::before { background: var(--pink); }
.section--dark .section-title { color: var(--paper); }
.section--dark .section-rule { background: var(--mustard); }

/* ============================================================
   COMPONENT - CONTACT MODAL (markup injected by site.js)
   ============================================================ */

.modal {
  position: fixed; inset: 0;
  background: rgba(21, 24, 63, 0.82); /* --ink at 82% */
  z-index: 10000; /* above the scroll bar (9999) and grain (200) */
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-4) var(--space-3);
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}
.modal[hidden] { display: none; }
.modal.is-open { opacity: 1; }
.modal__card {
  background: var(--paper);
  border: 3px solid var(--ink);
  padding: var(--space-4) var(--space-4) var(--space-3);
  position: relative;
  max-width: 420px; width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  box-shadow: 8px 8px 0 var(--ink);
  transform: translateY(28px) scale(0.97);
  opacity: 0;
  transition: transform 0.38s var(--ease), opacity 0.38s var(--ease);
}
.modal.is-open .modal__card {
  transform: none; opacity: 1;
  transition-delay: 0.06s;
}
.modal__card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--orange);
}
.modal__close {
  position: absolute; top: var(--space-3); right: var(--space-3);
  background: none; border: none;
  font-family: var(--font-mono);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em; color: var(--ink-soft);
  cursor: pointer; padding: 4px 8px;
  line-height: 1;
  transition: color var(--dur-fast) var(--ease);
}
.modal__close:hover { color: var(--orange); }
.modal__view[hidden] { display: none; }
.modal__head { margin-bottom: var(--space-3); }
.modal__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--rust);
  margin-bottom: 8px;
}
.modal__eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--rust);
  vertical-align: middle;
  margin-right: 10px;
}
.contact__title--modal {
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0;
  text-align: left;
}
.contact__title--modal em { font-size: 0.88em; display: inline; }
.modal__view--success { text-align: center; padding: var(--space-3) var(--space-1) 0; }
.modal__view--success .contact__title--modal { text-align: center; }

/* honeypot - visually gone, still in the form for bots */
.modal__botcheck {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* direct-contact shortcuts: two aligned rows - copy email, open linkedin */
.modal__direct {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin-top: var(--space-3);
  padding-top: var(--space-2);
  border-top: 2px dashed var(--ink);
}
.modal__direct-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 4px;
}
.modal__row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  background: var(--paper);
  border: 2px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  text-align: left;
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}
.modal__row:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--cyan);
}
.modal__row-glyph {
  flex: none;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}
.modal__row-value {
  flex: 1;
  min-width: 0;
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.modal__row-action {
  flex: none;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  border: 2px dashed var(--ink-soft);
  padding: 4px 8px 3px;
  transition: color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}
.modal__row:hover .modal__row-action {
  color: var(--ink);
  border-color: var(--ink);
  border-style: solid;
}
.modal__row.is-copied {
  border-color: var(--olive);
  box-shadow: 4px 4px 0 var(--olive);
}
.modal__row.is-copied .modal__row-glyph { background: var(--olive); }
.modal__row.is-copied .modal__row-action {
  color: var(--paper);
  background: var(--olive);
  border-color: var(--olive);
  border-style: solid;
}
@media (max-width: 420px) {
  .modal__row { gap: 9px; padding: 9px 10px; }
  .modal__row-value { font-size: 12px; }
}

/* form fields */
.field { margin-bottom: var(--space-2); }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 5px;
  transition: color var(--dur-fast) var(--ease);
}
.field:focus-within label { color: var(--orange); }
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--ink);
  padding: 8px 2px 10px;
  font-family: var(--font-mono); font-size: 15px;
  color: var(--ink);
  outline: none;
  resize: none;
  border-radius: 0;
  caret-color: var(--orange);
  -webkit-appearance: none;
  transition: border-color var(--dur-fast) var(--ease),
              border-width  var(--dur-fast) var(--ease);
}
.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--orange);
  border-bottom-width: 3px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-soft); opacity: 0.6;
}
.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-bottom-color: var(--pink);
}
.field textarea {
  display: block;
  line-height: 1.6;
  min-height: 76px;
  padding-top: 10px;
}
.form-footer { margin-top: var(--space-3); }
.btn-submit {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 14px; letter-spacing: 0.08em;
  padding: 12px 24px 10px;
  border: 2.5px solid var(--ink);
  background: var(--ink); color: var(--paper);
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--orange);
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              opacity var(--dur-fast) var(--ease);
}
.btn-submit:hover:not(:disabled) {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--orange);
}
.btn-submit:disabled { opacity: 0.55; cursor: not-allowed; }
.form-error {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; color: var(--pink);
  margin-top: var(--space-2);
  padding: 8px 12px;
  border-left: 3px solid var(--pink);
}
.form-error[hidden] { display: none; }
.success-glyph {
  font-size: 56px; color: var(--orange);
  display: block; margin-bottom: var(--space-3);
  line-height: 1;
}
.success-sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: 19px; color: var(--rust);
  margin: 0 0 var(--space-5);
  line-height: 1.4;
}
@media (max-width: 540px) {
  .modal__card { padding: var(--space-4) var(--space-3) var(--space-3); }
}

/* ============================================================
   COMPONENT - COLOPHON SOCIAL LINK (shared footer)
   ============================================================ */

.colophon__social {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink-soft); text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
.colophon__social:hover { color: var(--orange); }
.colophon__social svg { display: block; }

/* ============================================================
   EASTER EGG - "ba dum tiss!" rimshot caption (press N)
   Element injected by site.js; removes itself on animationend.
   ============================================================ */

.badum-tiss {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10001; /* above the contact modal */
  font-family: var(--font-display);
  font-size: clamp(44px, 9vw, 120px);
  color: var(--pink);
  text-shadow: 6px 6px 0 var(--ink);
  white-space: nowrap;
  pointer-events: none;
  animation: badum-pop 1.1s var(--ease) both;
}
@keyframes badum-pop {
  0%   { opacity: 0; transform: translate(-50%, -50%) rotate(-6deg) scale(0.3); }
  14%  { opacity: 1; transform: translate(-50%, -50%) rotate(-6deg) scale(1.12); }
  24%  { transform: translate(-50%, -50%) rotate(-6deg) scale(1); }
  72%  { opacity: 1; transform: translate(-50%, -50%) rotate(-6deg) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) rotate(-6deg) scale(1.06); }
}

/* ============================================================
   ENTRANCE ANIMATION
   ============================================================ */

@keyframes ink-in {
  0%   { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 600px) {
  :root { --container-pad: 20px; }
  .section { padding: 70px 0 50px; }
}

/* ============================================================
   REDUCED MOTION
   Continuous/decorative motion stops; user-triggered feedback
   (hovers, the N-key caption) stays but settles instantly where
   it matters. Videos are handled in site.js.
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  /* marquee: stop the loop and show a static row (the track is
     normally pushed off-screen by padding-left while animating) */
  .ticker__track { animation: none; padding-left: 0; }
  .badum-tiss { animation-duration: 0.6s; }
}
