/* ============================================================
   3BLOKES.COM.AU - deliberately terrible, carefully built.
   Aesthetic: Windows 95 MS Paint. Craft: hidden underneath.
   ============================================================ */

@font-face {
  font-family: 'ADrip';
  src: url('../assets/fonts/adrip1.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'MostWasted';
  src: url('../assets/fonts/Mostwasted.ttf') format('truetype');
  font-display: swap;
}

:root {
  --desktop: #00807f;           /* win95 teal desktop */
  --chrome: #c0c0c0;            /* win95 grey */
  --chrome-dark: #808080;
  --chrome-light: #ffffff;
  --titlebar: #000080;
  --canvas: #fdfdf6;
  --ink: #111;
  --red: #d40000;
  --yellow: #ffd700;
  --green: #00a000;
  --comic: "Comic Sans MS", "Comic Sans", "Chalkboard SE", "Comic Neue", cursive;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--desktop);
  /* win95 desktop with a faint diagonal weave */
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 2px, transparent 2px 8px);
  font-family: var(--comic);
  color: var(--ink);
  padding: 12px;
  min-height: 100dvh;
}

/* ============ WIN95 CHROME ============ */

.paint-window {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--chrome);
  border: 2px solid;
  border-color: var(--chrome-light) var(--chrome-dark) var(--chrome-dark) var(--chrome-light);
  box-shadow: 4px 4px 0 rgba(0,0,0,.35);
}

.title-bar {
  background: var(--titlebar);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px;
  gap: 8px;
}
.title-bar-text {
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.title-icon { width: 16px; height: 16px; filter: invert(1); }
.unsaved { font-weight: normal; opacity: .7; font-size: 12px; }
.title-bar-buttons { display: flex; gap: 3px; flex-shrink: 0; }
.tb-btn {
  width: 24px; height: 22px;
  background: var(--chrome);
  border: 2px solid;
  border-color: var(--chrome-light) var(--chrome-dark) var(--chrome-dark) var(--chrome-light);
  font-family: var(--comic);
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}
.tb-btn:active { border-color: var(--chrome-dark) var(--chrome-light) var(--chrome-light) var(--chrome-dark); transform: translateY(1px); }

.menu-bar {
  display: flex;
  flex-wrap: wrap;
  background: var(--chrome);
  border-bottom: 2px solid var(--chrome-dark);
  padding: 2px 4px;
}
.menu-bar a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  padding: 4px 12px;
}
.menu-bar a:hover, .menu-bar a:focus-visible {
  background: var(--titlebar);
  color: #fff;
  outline: none;
}
.menu-book { color: var(--red) !important; font-weight: bold; animation: blink 1.2s steps(2) infinite; }
.menu-book:hover { color: #fff !important; animation: none; }
@keyframes blink { 50% { opacity: .35; } }

.paint-body { display: flex; align-items: stretch; }

.tool-palette {
  display: none;
  width: 64px;
  padding: 6px 4px;
  background: var(--chrome);
  border-right: 2px solid var(--chrome-dark);
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  align-content: start;
  position: sticky;
  top: 0;
  align-self: flex-start;
}
.tool {
  height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: var(--chrome);
  border: 2px solid;
  border-color: var(--chrome-light) var(--chrome-dark) var(--chrome-dark) var(--chrome-light);
  font-family: var(--comic);
  font-size: 13px;
  color: var(--ink);
  padding: 0;
  cursor: pointer;
  user-select: none;
}
.tool img { width: 16px; height: 16px; pointer-events: none; }
.tool:active { border-color: var(--chrome-dark) var(--chrome-light) var(--chrome-light) var(--chrome-dark); }
.tool-active { border-color: var(--chrome-dark) var(--chrome-light) var(--chrome-light) var(--chrome-dark); background: #e8e8e8; }
.tool-wide { grid-column: span 2; font-size: 10px; font-weight: bold; }

.color-strip {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 5px 8px;
  background: var(--chrome);
  border-top: 2px solid var(--chrome-light);
}
.swatch {
  width: 18px; height: 18px;
  display: inline-block;
  border: 1px solid #555;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.swatch-on { outline: 2px solid var(--ink); outline-offset: 1px; }
.swatch-label { font-size: 11px; color: #444; margin-right: 2px; }
.strip-text { margin-left: auto; font-size: 11px; color: #444; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 640px) { .strip-text { display: none; } }

/* ============ THE CANVAS ============ */

.canvas {
  flex: 1;
  min-width: 0;
  background: var(--canvas);
  border: 2px solid;
  border-color: var(--chrome-dark) var(--chrome-light) var(--chrome-light) var(--chrome-dark);
  margin: 6px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

/* ============ THE DRAWING LAYER ============
   Sits behind every section. Sections are transparent so the drawing
   shows through the gaps, but content stays readable on top.
   Pointer events only reach the canvas where no content is. */

#paint-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* off by default: on touch/small screens a full-page canvas would
     eat the scroll gesture. Enabled with the palette at >=900px. */
  pointer-events: none;
  touch-action: auto;
}
.draw-hint { display: none; }

@media (min-width: 900px) and (pointer: fine) {
  #paint-canvas {
    pointer-events: auto;
    touch-action: none;
    cursor: crosshair;
  }
  .draw-hint { display: flex; }
  .draw-hint.gone { display: none; }
}

/* everything on the canvas rides above the drawing */
.canvas > .marquee-wrap,
.canvas > .hero,
.canvas > .section,
.canvas > .scribble-divider,
.canvas > .footer {
  position: relative;
  z-index: 1;
}

/* let clicks through to the canvas in the dead space around content,
   but keep real content clickable */
.canvas > .hero,
.canvas > .section {
  pointer-events: none;
}
.canvas > .hero > *,
.canvas > .section > * {
  pointer-events: auto;
}
/* the critters are decoration; don't block the pencil */
.critter { pointer-events: none; }

/* drawing hint. display is owned by the media query above; drawing
   is desktop-only so the hint must never appear on touch. */
.draw-hint {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 3;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 rgba(0,0,0,.3);
  padding: 5px 6px 5px 10px;
  font-size: .8rem;
  font-weight: bold;
  transform: rotate(-2deg);
}
.draw-hint.gone { display: none; }
.hint-x {
  background: var(--chrome);
  border: 2px solid;
  border-color: var(--chrome-light) var(--chrome-dark) var(--chrome-dark) var(--chrome-light);
  font-family: var(--comic);
  font-size: .7rem;
  line-height: 1;
  padding: 2px 4px;
  cursor: pointer;
}

/* marquee */
.marquee-wrap {
  overflow: hidden;
  background: var(--yellow);
  border-bottom: 3px dashed var(--ink);
  padding: 6px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-weight: bold;
  font-size: 15px;
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ HERO ============ */

.hero {
  text-align: center;
  padding: 34px 18px 44px;
  position: relative;
  /* transparent: the drawing layer lives behind this */
  background:
    radial-gradient(circle 2px at 12% 22%, #d40000 98%, transparent),
    radial-gradient(circle 2px at 88% 15%, #00a 98%, transparent),
    radial-gradient(circle 3px at 78% 82%, #0a0 98%, transparent),
    radial-gradient(circle 2px at 22% 78%, #c0c 98%, transparent);
}

.hero-logo {
  font-family: 'ADrip', var(--comic);
  font-size: clamp(4rem, 14vw, 9.5rem);
  line-height: .95;
  color: var(--ink);
  text-shadow:
    4px 4px 0 var(--red),
    8px 8px 0 var(--yellow),
    12px 12px 0 var(--green);
  animation: wobble 3.2s ease-in-out infinite;
  letter-spacing: .02em;
}
@keyframes wobble {
  0%, 100% { transform: rotate(-1.2deg); }
  50% { transform: rotate(1.2deg) translateY(-4px); }
}

.hero-sub {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: bold;
  margin-top: 10px;
  color: var(--titlebar);
}
.hero-tag {
  font-size: 1rem;
  margin-top: 2px;
  transform: rotate(-2deg);
  display: inline-block;
  background: var(--yellow);
  padding: 2px 10px;
  border: 2px solid var(--ink);
}
.hero-tag-small { font-size: .75em; }

.hero-photo-wrap { margin: 28px auto 8px; max-width: 640px; }
.hero-photo {
  position: relative;
  transform: rotate(-2deg);
  border: 6px solid #fff;
  outline: 3px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(0,0,0,.25);
}
.hero-photo img { display: block; width: 100%; height: auto; }

.paint-label {
  position: absolute;
  font-family: 'MostWasted', var(--comic);
  font-size: clamp(1rem, 3vw, 1.6rem);
  color: var(--red);
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
  pointer-events: none;
}
.label-top { top: 4%; left: 4%; transform: rotate(-8deg); }
.label-mid { top: 38%; right: 2%; transform: rotate(5deg); }
.label-floor { bottom: 6%; left: 6%; transform: rotate(-4deg); }

.paint-arrow {
  position: absolute;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  color: var(--red);
  pointer-events: none;
  text-shadow: 1px 1px 0 #fff;
}
.arrow-1 { top: 10%; left: 22%; }
.arrow-2 { top: 44%; right: 22%; transform: rotate(180deg); }
.arrow-3 { bottom: 16%; left: 26%; }

/* ============ WIN95 BUTTONS ============ */

.btn-95 {
  display: inline-block;
  font-family: var(--comic);
  font-weight: bold;
  color: var(--ink);
  text-decoration: none;
  background: var(--chrome);
  border: 3px solid;
  border-color: var(--chrome-light) var(--chrome-dark) var(--chrome-dark) var(--chrome-light);
  padding: 8px 18px;
  font-size: 1rem;
  cursor: pointer;
}
.btn-95:hover { background: #d8d8d8; }
.btn-95:active { border-color: var(--chrome-dark) var(--chrome-light) var(--chrome-light) var(--chrome-dark); transform: translate(1px, 1px); }

.btn-huge {
  margin-top: 26px;
  font-size: clamp(1.3rem, 4vw, 2rem);
  padding: 14px 34px;
  background: var(--yellow);
  animation: pulse 1.6s ease-in-out infinite;
}
.btn-huge small { display: block; font-size: .5em; font-weight: normal; }
@keyframes pulse { 50% { transform: scale(1.04) rotate(-1deg); } }
.btn-huge:hover { background: #ffe95e; }

.btn-shoey {
  margin-top: 30px;
  background: var(--red);
  color: #fff;
  font-size: .9rem;
}
.btn-shoey:hover { background: #f22; }

/* hit counter */
.hit-counter {
  margin-top: 30px;
  font-size: .85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.counter-digits {
  font-family: "Courier New", monospace;
  font-size: 1.5rem;
  font-weight: bold;
  background: #000;
  color: #0f0;
  padding: 3px 10px;
  letter-spacing: 4px;
  border: 2px inset var(--chrome-dark);
}
.counter-note { font-size: .7rem; color: #777; }

/* ============ SECTIONS ============ */

.section { padding: 56px 22px; max-width: 980px; margin: 0 auto; }

.scribble-divider {
  height: 26px;
  background:
    repeating-linear-gradient(105deg,
      transparent 0 14px, var(--red) 14px 17px,
      transparent 17px 34px, var(--titlebar) 34px 37px,
      transparent 37px 52px, var(--green) 52px 55px);
  opacity: .85;
}
.scribble-divider.div-2 { transform: scaleX(-1); }

/* wordart headings */
.wordart {
  font-size: clamp(2rem, 6.5vw, 3.6rem);
  text-align: center;
  line-height: 1.05;
  transform: rotate(-1.5deg);
  margin-bottom: 10px;
  letter-spacing: .01em;
}
.wordart-rainbow {
  background: linear-gradient(90deg, #d40000, #ff7f00, #c9a000, #00a000, #0000c0, #a000a0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(3px 3px 0 rgba(0,0,0,.85));
}
.wordart-fire {
  color: var(--red);
  text-shadow: 3px 3px 0 var(--yellow), 6px 6px 0 var(--ink);
}
.section-sub {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 34px;
  color: #555;
  transform: rotate(.6deg);
}

/* WHO grid */
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 28px;
}
.who-text p { margin-bottom: 16px; font-size: 1.05rem; line-height: 1.65; }
.siiick {
  font-family: 'MostWasted', var(--comic);
  color: var(--red);
  font-size: 1.3em;
}

/* polaroids */
.polaroid {
  background: #fff;
  padding: 10px 10px 14px;
  border: 1px solid #bbb;
  box-shadow: 6px 6px 0 rgba(0,0,0,.2);
  display: block;
  text-decoration: none;
  color: var(--ink);
  transition: transform .18s ease;
}
.polaroid img { display: block; width: 100%; height: auto; }
.polaroid-caption {
  display: block;
  text-align: center;
  font-size: .95rem;
  font-weight: bold;
  padding-top: 10px;
}
.tilt-left { transform: rotate(-2.5deg); }
.tilt-right { transform: rotate(2deg); }
.polaroid:hover { transform: rotate(0deg) scale(1.03); z-index: 2; position: relative; }

/* blokes */
.blokes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
}
.bloke-card img { aspect-ratio: 1 / 1; object-fit: cover; object-position: center; }
.bloke-name {
  font-family: 'MostWasted', var(--comic);
  font-size: 2.2rem;
  text-align: center;
  color: var(--titlebar);
  padding-top: 8px;
}
.bloke-stats {
  list-style: none;
  font-size: .92rem;
  padding: 6px 8px 2px;
}
.bloke-stats li { padding: 3px 0; border-bottom: 1px dashed #ccc; }
.bloke-stats li:last-child { border-bottom: none; }

/* choons: two released tracks, so two cells */
.choons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  max-width: 660px;
  margin: 0 auto;
}
.choon .polaroid-caption { font-family: 'MostWasted', var(--comic); font-size: 1.3rem; letter-spacing: .03em; }
.sc-embed { margin-top: 40px; border: 3px solid var(--ink); box-shadow: 6px 6px 0 rgba(0,0,0,.2); }
.sc-embed iframe { display: block; border: 0; }

/* ============ TELLY ============
   Little Win95 media-player windows. Deliberately not polaroids:
   those are already doing the covers and the blokes. */

.vid {
  background: var(--chrome);
  border: 2px solid;
  border-color: var(--chrome-light) var(--chrome-dark) var(--chrome-dark) var(--chrome-light);
  box-shadow: 5px 5px 0 rgba(0,0,0,.28);
  padding: 3px;
}
.vid-big { margin: 26px auto 0; transform: rotate(-.6deg); }
.vid-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 34px;
}
.vid-row .vid:first-child { transform: rotate(.8deg); }
.vid-row .vid:last-child { transform: rotate(-1deg); }

.vid-bar {
  background: var(--titlebar);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 3px 4px 3px 7px;
}
.vid-name {
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vid-btns { display: flex; gap: 2px; flex-shrink: 0; }
.vid-btns i {
  width: 17px; height: 15px;
  display: flex; align-items: center; justify-content: center;
  background: var(--chrome);
  border: 1px solid;
  border-color: var(--chrome-light) #555 #555 var(--chrome-light);
  color: var(--ink);
  font-style: normal;
  font-size: 9px;
  line-height: 1;
}

/* the clickable facade */
.vid-screen {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: #000;
  cursor: pointer;
  line-height: 0;
  overflow: hidden;
}
.vid-screen img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .25s ease, filter .25s ease;
}
.vid-screen:hover img { transform: scale(1.03); filter: saturate(1.15); }

/* a big dumb paint triangle */
.vid-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  border-left: 34px solid var(--red);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  filter: drop-shadow(3px 3px 0 #fff) drop-shadow(4px 4px 0 var(--ink));
  transition: transform .18s ease;
}
.vid-screen:hover .vid-play { transform: translate(-50%, -50%) scale(1.18); }
.vid-screen:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }

.vid-cta {
  position: absolute;
  bottom: 8px; right: 8px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  font-family: var(--comic);
  font-size: .62rem;
  font-weight: bold;
  line-height: 1;
  padding: 3px 6px;
  transform: rotate(-2deg);
  color: var(--ink);
}

/* the real player, once you've asked for it */
.vid-screen iframe, .vid-frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.vid-cap {
  background: var(--chrome);
  font-size: .82rem;
  font-weight: bold;
  padding: 6px 7px 4px;
  line-height: 1.35;
}
.vid-cap span { display: block; font-weight: normal; font-size: .72rem; color: #555; }

@media (min-width: 700px) {
  .vid-big { max-width: 720px; }
  .vid-row { grid-template-columns: 1fr 1fr; }
}

/* shows */
.shows-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 26px;
  font-size: 1.05rem;
}
.shows-table td { padding: 16px 10px; border-bottom: 3px dashed var(--ink); vertical-align: middle; }
.show-date { font-weight: bold; color: var(--red); white-space: nowrap; width: 1%; padding-right: 22px; }
.show-name { font-weight: bold; font-size: 1.15em; }
.show-note {
  font-size: .7em;
  background: var(--yellow);
  border: 1px solid var(--ink);
  padding: 1px 6px;
  margin-left: 6px;
  display: inline-block;
  transform: rotate(-3deg);
}
.show-status { text-align: right; color: #555; font-size: .9em; }
.show-status a { color: var(--red); }

/* book */
.book-section { text-align: center; }
.book-copy { max-width: 560px; margin: 8px auto 4px; font-size: 1.1rem; line-height: 1.6; }
.book-email {
  margin-top: 14px;
  font-size: 1.05rem;
  font-weight: bold;
  word-break: break-word;
}
.email-note { display: block; font-size: .68rem; font-weight: normal; color: #888; padding-top: 2px; }
.book-fine { font-size: .75rem; color: #888; margin-top: 12px; }

/* footer */
.footer {
  text-align: center;
  padding: 40px 20px 30px;
  border-top: 3px dashed var(--ink);
  margin-top: 30px;
  background: repeating-linear-gradient(-45deg, transparent 0 18px, rgba(0,0,0,.03) 18px 36px);
}
.socials { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 22px; }
.footer-line { font-size: .85rem; color: #555; margin-top: 6px; }
.footer-tiny { font-size: .72rem; color: #999; }

/* ============ AUSSIE WILDLIFE ============ */

.sprite-sheet { position: absolute; width: 0; height: 0; overflow: hidden; }

.section { position: relative; }

/* crude critters loitering in the corners */
.critter {
  position: absolute;
  pointer-events: none;
  opacity: .9;
}
.critter-roo {
  width: 86px; height: 86px;
  top: 10px; right: 6px;
  transform: rotate(6deg);
}
.critter-binchicken {
  width: 74px; height: 82px;
  top: 4px; left: 2px;
  transform: rotate(-7deg) scaleX(-1);
}
.critter-footer {
  position: static;
  display: block;
  width: 60px; height: 66px;
  margin: 0 auto 12px;
  transform: rotate(3deg);
}

/* koala: badly cut out of his own cover art, as is tradition */
.koala-cutout {
  position: relative;
  display: block;
  width: fit-content;
  margin: 26px auto 0;
  transform: rotate(-3deg);
}
.koala-cutout img {
  display: block;
  width: min(380px, 78vw);
  height: auto;
  border: 3px dashed var(--red);
  padding: 3px;
  background: #fff;
}
.cutout-note {
  display: block;
  font-size: .68rem;
  color: #777;
  text-align: center;
  padding-top: 5px;
  line-height: 1.3;
}

/* magpie swoop: spring in australia, ya helmet won't save ya */
.magpie-swoop {
  position: fixed;
  top: 12vh;
  left: -140px;
  width: 130px;
  z-index: 998;
  pointer-events: none;
  animation: swoop 2.6s cubic-bezier(.36,.05,.4,1) forwards;
}
@keyframes swoop {
  0%   { left: -140px; top: 8vh;  transform: rotate(8deg) scale(.7); }
  35%  { top: 46vh; transform: rotate(22deg) scale(1.15); }
  55%  { top: 30vh; transform: rotate(-6deg) scale(1); }
  100% { left: 112vw; top: 10vh; transform: rotate(10deg) scale(.7); }
}
.swoop-caw {
  position: fixed;
  z-index: 998;
  font-family: 'MostWasted', var(--comic);
  font-size: 2rem;
  color: var(--red);
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff;
  pointer-events: none;
  animation: caw 1.1s ease-out forwards;
}
@keyframes caw {
  0% { opacity: 0; transform: scale(.5) rotate(-12deg); }
  30% { opacity: 1; transform: scale(1.2) rotate(6deg); }
  100% { opacity: 0; transform: scale(1.4) translateY(-30px) rotate(-8deg); }
}

@media (min-width: 700px) {
  .critter-roo { width: 120px; height: 120px; top: 16px; right: 10px; }
  .critter-binchicken { width: 100px; height: 110px; top: 8px; left: 6px; }
}

/* shoey rain */
.shoey-drop {
  position: fixed;
  top: -60px;
  width: 44px;
  height: 44px;
  z-index: 999;
  pointer-events: none;
  animation: drop linear forwards;
}
@keyframes drop {
  to { transform: translateY(110vh) rotate(720deg); }
}

/* bouncing roo */
.roo-bounce {
  position: fixed;
  bottom: 0;
  left: -80px;
  width: 64px;
  z-index: 999;
  pointer-events: none;
  animation: roo 4s linear forwards;
}
@keyframes roo {
  0% { left: -80px; transform: translateY(0); }
  10% { transform: translateY(-70px); } 20% { transform: translateY(0); }
  30% { transform: translateY(-70px); } 40% { transform: translateY(0); }
  50% { transform: translateY(-70px); } 60% { transform: translateY(0); }
  70% { transform: translateY(-70px); } 80% { transform: translateY(0); }
  90% { transform: translateY(-70px); }
  100% { left: 110vw; transform: translateY(0); }
}

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

@media (min-width: 700px) {
  .who-grid { grid-template-columns: 1.2fr 1fr; }
  .blokes-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .choons-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (min-width: 900px) and (pointer: fine) {
  .tool-palette { display: grid; }
}

/* ============ REDUCED MOTION ============ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-logo, .btn-huge, .menu-book, .marquee-track,
  .shoey-drop, .roo-bounce, .magpie-swoop, .swoop-caw { animation: none !important; }
  .magpie-swoop { display: none; }
  .polaroid, .btn-95 { transition: none; }
}
