/* ============================================================
   $PAWBLO - doodle stylesheet
   everything is drawn like it was scribbled on a napkin
   ============================================================ */

:root {
  --paper:   #FFF6E2;
  --paper-2: #FFEFCD;
  --ink:     #1C1917;
  --red:     #E23B2E;
  --green:   #2F9E5B;
  --yellow:  #F7C548;
  --pink:    #EF5DA8;
  --blue:    #3FA7D6;
  --purple:  #8A5FD1;

  --line: 3px;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
}

/* hand-drawn border shapes - uneven radii read as a wobbly marker line */
.doodle,
.doodle-alt {
  border: var(--line) solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.doodle     { border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px; }
.doodle-alt { border-radius: 15px 225px 15px 255px / 225px 15px 255px 15px; }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Patrick Hand", "Comic Sans MS", cursive;
  font-size: 21px;
  line-height: 1.55;
  overflow-x: hidden;
  /* faint notebook dots */
  background-image: radial-gradient(rgba(28,25,23,.08) 1px, transparent 1px);
  background-size: 26px 26px;
  background-position: -13px -13px;
}
body > * { position: relative; z-index: 1; }


#confetti {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 60;
}

h1, h2, h3, .btn, .brand, .num, .marquee, .inst {
  font-family: "Shantell Sans", "Patrick Hand", cursive;
  font-weight: 800;
}

/* ── papel picado ─────────────────────────────────── */
.papel {
  position: fixed;
  top: 0; left: -2%;
  width: 104%;
  height: 92px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  z-index: 40;
  pointer-events: none;
}
.papel::before { /* the string */
  content: "";
  position: absolute;
  top: 6px; left: 0; right: 0;
  height: 3px;
  background: var(--ink);
  border-radius: 50%;
  transform: scaleY(.6);
}
.flag {
  width: 58px; height: 74px;
  margin-top: 4px;
  clip-path: polygon(0 0, 100% 0, 100% 68%, 50% 100%, 0 68%);
  transform-origin: 50% 0;
  animation: sway 3.2s ease-in-out infinite;
  -webkit-mask-image:
    radial-gradient(circle at 50% 26%, transparent 8px, #000 9px),
    radial-gradient(circle at 26% 50%, transparent 5px, #000 6px),
    radial-gradient(circle at 74% 50%, transparent 5px, #000 6px);
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(circle at 50% 26%, transparent 8px, #000 9px),
    radial-gradient(circle at 26% 50%, transparent 5px, #000 6px),
    radial-gradient(circle at 74% 50%, transparent 5px, #000 6px);
  mask-composite: intersect;
}
@keyframes sway {
  0%, 100% { transform: rotate(-4deg) skewX(2deg); }
  50%      { transform: rotate(4deg) skewX(-2deg); }
}

/* ── nav ──────────────────────────────────────────── */
.nav {
  position: sticky; top: 0;
  flex-wrap: wrap;
  z-index: 50;
  margin-top: 74px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 26px;
  background: var(--paper-2);
  border-bottom: var(--line) solid var(--ink);
}
.brand {
  order: 0;
  display: flex; align-items: center; gap: 10px;
  font-size: 26px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.5px;
}
.brand-cat { width: 42px; height: 42px; object-fit: contain; }
.brand:hover .brand-cat { animation: spin-cat .6s ease; }
@keyframes spin-cat { to { transform: rotate(360deg); } }

.nav-links { order: 2; display: flex; gap: 22px; }
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 20px;
  padding: 2px 4px;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--red);
  border-radius: 40%;
  transform: scaleX(0) rotate(-1deg);
  transform-origin: left;
  transition: transform .18s ease;
}
.nav-links a:hover::after { transform: scaleX(1) rotate(-1deg); }

.icon-btn {
  order: 4;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: var(--line) solid var(--ink);
  background: var(--paper);
  border-radius: 50% 45% 52% 48% / 48% 52% 45% 55%;
  width: 46px; height: 46px;
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .12s ease;
}
.icon-btn:hover  { transform: rotate(-6deg); }
.icon-btn:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--ink); }

.x-btn { order: 3; border-radius: 48% 52% 45% 55% / 52% 45% 55% 48%; }
.x-btn svg { width: 21px; height: 21px; fill: var(--ink); display: block; }
.x-btn:hover { background: var(--yellow); transform: rotate(6deg) scale(1.06); }


/* contract chip: its own centred row on narrow screens,
   pinned dead-centre of the bar once there is room */
.ca-chip {
  order: 1;
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto;
  padding: 6px 16px;
  white-space: nowrap;
  border: var(--line) solid var(--ink);
  border-radius: 40px 12px 36px 12px / 12px 36px 12px 40px;
  background: var(--yellow);
  box-shadow: var(--shadow-sm);
  font-family: "Patrick Hand", cursive;
  font-size: 17px;
  max-width: 100%;
  color: var(--ink);
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.ca-chip:hover  { transform: rotate(-1.5deg) translateY(-2px); box-shadow: 6px 6px 0 var(--ink); }
.ca-chip:active { transform: translate(3px, 3px); box-shadow: 0 0 0 var(--ink); }
.ca-chip-label {
  font-family: "Caveat", cursive;
  font-size: 19px;
  color: var(--red);
  font-weight: 700;
}
.ca-chip code {
  font-family: "Patrick Hand", monospace;
  font-size: clamp(11px, 1.05vw, 18px);
  white-space: nowrap;
}
.ca-chip-icon { font-size: 14px; }


/* ── buttons ──────────────────────────────────────── */
.btn {
  display: inline-block;
  border: var(--line) solid var(--ink);
  border-radius: 225px 15px 255px 15px / 15px 255px 15px 225px;
  padding: 12px 26px;
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover  { transform: translate(-2px, -2px) rotate(-1.5deg); box-shadow: 8px 8px 0 var(--ink); }
.btn:active { transform: translate(5px, 5px) rotate(0deg); box-shadow: 1px 1px 0 var(--ink); }
.btn-red    { background: var(--red);    color: #fff; }
.btn-green  { background: var(--green);  color: #fff; }
.btn-yellow { background: var(--yellow); }
.btn.small  { padding: 7px 16px; font-size: 18px; box-shadow: var(--shadow-sm); }

/* ── hero ─────────────────────────────────────────── */
.hero { padding: 40px 26px 20px; position: relative; }
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
.kicker {
  font-family: "Caveat", cursive;
  font-size: 24px;
  color: var(--green);
  margin: 0 0 6px;
  transform: rotate(-1.5deg);
}
.title {
  font-size: clamp(56px, 9vw, 118px);
  line-height: .95;
  margin: 0;
  letter-spacing: -2px;
  display: flex;
  flex-wrap: wrap;
}
.title span {
  display: inline-block;
  animation: letter-bob 2.6s ease-in-out infinite;
  text-shadow: 4px 4px 0 var(--ink);
}
.title span:nth-child(4n)   { color: var(--red);    }
.title span:nth-child(4n+1) { color: var(--green);  }
.title span:nth-child(4n+2) { color: var(--yellow); }
.title span:nth-child(4n+3) { color: var(--pink);   }
.title span:hover { animation: letter-pop .45s ease; }
@keyframes letter-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-9px) rotate(2deg); }
}
@keyframes letter-pop {
  0%   { transform: scale(1) rotate(0); }
  40%  { transform: scale(1.35) rotate(-10deg); }
  100% { transform: scale(1) rotate(0); }
}

.squiggle { width: 320px; max-width: 90%; height: 16px; display: block; margin: 2px 0 14px; }
.squiggle path { fill: none; stroke: var(--red); stroke-width: 4; stroke-linecap: round; }

.tagline { font-size: 24px; margin: 0 0 26px; max-width: 30ch; }
.tagline strong { background: var(--yellow); padding: 0 6px; border-radius: 20px 6px 18px 6px / 6px 18px 6px 20px; }

.cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

.hint {
  font-family: "Caveat", cursive;
  font-size: 26px;
  color: var(--purple);
  margin: 26px 0 0;
  display: flex; align-items: center; gap: 6px;
  transform: rotate(-2deg);
}
.arrow { width: 62px; height: 46px; }
.arrow path { fill: none; stroke: var(--purple); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; }

/* cat */
.hero-cat { position: relative; display: flex; flex-direction: column; align-items: center; }
.cat-btn {
  border: 0; background: none; padding: 0; cursor: pointer;
  animation: float 4.2s ease-in-out infinite;
  transform-origin: 50% 100%;
}
.cat-btn img { width: min(460px, 82vw); height: auto; display: block; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-16px) rotate(1.5deg); }
}
.cat-btn.squish { animation: squish .42s cubic-bezier(.3,1.6,.5,1); }
@keyframes squish {
  0%   { transform: scale(1, 1) rotate(0); }
  30%  { transform: scale(1.14, .82) rotate(-4deg); }
  60%  { transform: scale(.92, 1.12) rotate(4deg); }
  100% { transform: scale(1, 1) rotate(0); }
}
.cat-shadow { width: 260px; height: 26px; margin-top: -14px; }
.cat-shadow ellipse { fill: rgba(28,25,23,.13); }

.bubble {
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-38%) scale(.6) rotate(-3deg);
  padding: 12px 20px;
  font-size: 21px;
  max-width: 300px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .28s cubic-bezier(.3,1.7,.5,1);
  z-index: 5;
}
.bubble.show { opacity: 1; transform: translateX(-38%) scale(1) rotate(-3deg); }
.bubble::after { /* tail */
  content: "";
  position: absolute;
  bottom: -16px; left: 34px;
  width: 20px; height: 20px;
  background: var(--paper);
  border-right: var(--line) solid var(--ink);
  border-bottom: var(--line) solid var(--ink);
  transform: rotate(52deg) skew(-8deg);
}
.poke-count {
  font-family: "Caveat", cursive;
  font-size: 24px;
  color: var(--ink);
  opacity: .55;
  margin-top: 4px;
}

.doodle-star {
  position: absolute;
  font-size: 40px;
  color: var(--yellow);
  -webkit-text-stroke: 2px var(--ink);
  animation: twinkle 3s ease-in-out infinite;
  pointer-events: none;
}
.s1 { top: 12%; left: 4%;  animation-delay: .2s; }
.s2 { top: 62%; left: 46%; font-size: 30px; color: var(--pink); animation-delay: 1.1s; }
.s3 { top: 24%; right: 3%; color: var(--blue); animation-delay: .7s; }
@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0); opacity: .9; }
  50%      { transform: scale(1.3) rotate(20deg); opacity: 1; }
}

/* ── marquee ──────────────────────────────────────── */
.marquee {
  margin: 30px 0;
  padding: 10px 0;
  background: var(--red);
  border-top: var(--line) solid var(--ink);
  border-bottom: var(--line) solid var(--ink);
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.03);
  color: #fff;
  font-size: 26px;
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: scroll-x 26s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ── sections ─────────────────────────────────────── */
.section { max-width: 1080px; margin: 0 auto; padding: 60px 26px; }
.section.center { text-align: center; }
.h2 {
  font-size: clamp(34px, 5vw, 56px);
  margin: 0 0 10px;
  display: inline-block;
  position: relative;
  transform: rotate(-1.5deg);
}
.h2::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: -6px;
  height: 12px;
  background: var(--yellow);
  border-radius: 60% 40% 55% 45% / 100% 100% 40% 40%;
  z-index: -1;
}
.center .h2 { display: inline-block; }
.sub { font-size: 22px; opacity: .75; margin: 6px 0 34px; }

.meet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 26px; }
.card { padding: 26px 30px; }
.card:nth-child(1) { transform: rotate(-1deg); }
.card:nth-child(2) { transform: rotate(1.2deg); }
.card h3 { font-size: 30px; margin: 0 0 10px; color: var(--red); }
.card p { margin: 0 0 12px; }
.scrawl { font-family: "Caveat", cursive; font-size: 26px; color: var(--green); transform: rotate(-2deg); }

.facts { list-style: none; margin: 0; padding: 0; }
.facts li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 3px dashed rgba(28,25,23,.28);
}
.facts li:last-child { border-bottom: 0; }
.facts b { font-family: "Shantell Sans", cursive; font-size: 24px; color: var(--green); }

/* dashed cut line divider */
.cutline {
  position: relative;
  height: 3px;
  margin: 10px 8%;
  border-top: 3px dashed rgba(28,25,23,.35);
}
.cutline span {
  position: absolute; top: -16px; left: 12%;
  background: var(--paper);
  padding: 0 8px;
  font-size: 24px;
  opacity: .5;
}

/* ── piñata ───────────────────────────────────────── */
.pinata-stage { position: relative; display: inline-flex; flex-direction: column; align-items: center; }
.rope { width: 400px; max-width: 90vw; height: 46px; }
.rope path { stroke: var(--ink); stroke-width: 3; fill: none; stroke-dasharray: 9 7; }

.pinata {
  border: 0; background: none; padding: 0;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ctext y='30' font-size='30'%3E🥢%3C/text%3E%3C/svg%3E") 6 6, pointer;
  margin-top: -8px;
  transform-origin: 50% -46px;
  animation: hang 3.4s ease-in-out infinite;
}
@keyframes hang {
  0%, 100% { transform: rotate(-5deg); }
  50%      { transform: rotate(5deg); }
}
.pinata.hit { animation: whack .34s ease; }
@keyframes whack {
  0%   { transform: rotate(0) scale(1); }
  25%  { transform: rotate(-16deg) scale(1.1, .9); }
  60%  { transform: rotate(14deg) scale(.92, 1.08); }
  100% { transform: rotate(0) scale(1); }
}
.pinata-body {
  position: relative;
  display: grid; place-items: center;
  width: 190px; height: 160px;
  border: var(--line) solid var(--ink);
  border-radius: 48% 52% 44% 56% / 56% 48% 52% 44%;
  background:
    repeating-linear-gradient(-24deg,
      var(--red) 0 18px, var(--yellow) 18px 36px,
      var(--green) 36px 54px, var(--blue) 54px 72px, var(--pink) 72px 90px);
  box-shadow: var(--shadow);
}
.pinata-face {
  font-size: 34px;
  color: var(--ink);
  background: var(--paper);
  padding: 2px 12px;
  border: var(--line) solid var(--ink);
  border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%;
  transform: rotate(-3deg);
}
.frill {
  position: absolute;
  width: 34px; height: 62px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 5px, var(--red) 5px 10px);
  border: 3px solid var(--ink);
  border-radius: 40% 40% 60% 60%;
}
.f1 { top: -34px; left: 30%;  transform: rotate(-16deg); }
.f2 { bottom: -38px; left: 22%; transform: rotate(12deg); }
.f3 { bottom: -38px; right: 22%; transform: rotate(-12deg); }
.f4 { top: -30px; right: 26%; transform: rotate(18deg); height: 52px; }

.pinata.broken .pinata-body { opacity: 0; transform: scale(1.4) rotate(20deg); transition: all .35s ease; }

.hp-wrap {
  width: 240px; height: 22px;
  margin-top: 46px;
  border: var(--line) solid var(--ink);
  border-radius: 40px 12px 40px 12px / 12px 40px 12px 40px;
  overflow: hidden;
  background: var(--paper);
}
.hp {
  height: 100%;
  width: 100%;
  background: repeating-linear-gradient(45deg, var(--green) 0 10px, #3fbb6f 10px 20px);
  transition: width .25s cubic-bezier(.3,1.5,.5,1);
}
.pinata-msg {
  font-family: "Caveat", cursive;
  font-size: 30px;
  color: var(--red);
  margin: 12px 0 0;
  min-height: 40px;
}
.pinata-score { font-size: 20px; opacity: .7; margin: 0; }
.pinata-score b { color: var(--green); font-size: 24px; }

/* ── band ─────────────────────────────────────────── */
.band-row { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.inst {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  width: 130px; padding: 18px 10px;
  font-size: 19px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.inst span { font-size: 44px; line-height: 1; }
.inst:nth-child(odd)  { transform: rotate(-2deg); }
.inst:nth-child(even) { transform: rotate(2deg); }
.inst:hover  { transform: translateY(-6px) rotate(0deg); box-shadow: 8px 8px 0 var(--ink); }
.inst:active { transform: translate(4px, 4px); box-shadow: 1px 1px 0 var(--ink); }
.inst.playing span { animation: shake-inst .4s ease; }
@keyframes shake-inst {
  0%, 100% { transform: rotate(0) scale(1); }
  25% { transform: rotate(-22deg) scale(1.2); }
  75% { transform: rotate(22deg) scale(1.2); }
}
.big-fiesta { font-size: 30px; padding: 16px 40px; animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { transform: scale(1) rotate(-1deg); }
  50%      { transform: scale(1.05) rotate(1deg); }
}

/* ── buy ──────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin: 34px 0; }
.step { padding: 26px 24px 22px; position: relative; }
.step:nth-child(1) { transform: rotate(-1.4deg); }
.step:nth-child(2) { transform: rotate(.8deg); }
.step:nth-child(3) { transform: rotate(-.6deg); }
.step:hover { transform: rotate(0) translateY(-6px); transition: transform .2s ease; }
.num {
  position: absolute; top: -24px; left: -16px;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  font-size: 28px; color: #fff;
  background: var(--red);
  border: var(--line) solid var(--ink);
  border-radius: 50% 45% 55% 48% / 48% 55% 45% 52%;
  transform: rotate(-8deg);
}
.step:nth-child(2) .num { background: var(--green); }
.step:nth-child(3) .num { background: var(--purple); }
.step h3 { font-size: 26px; margin: 6px 0 8px; }
.step p { margin: 0; font-size: 20px; }

.ca {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  padding: 20px 26px;
  max-width: 700px;
  margin: 40px auto 0;
  transform: rotate(-.8deg);
}
.ca-label { font-family: "Caveat", cursive; font-size: 24px; color: var(--green); }
.ca code {
  font-family: "Patrick Hand", monospace;
  font-size: 20px;
  background: var(--yellow);
  padding: 5px 14px;
  border: 3px solid var(--ink);
  border-radius: 30px 10px 26px 10px / 10px 26px 10px 30px;
  word-break: break-all;
}

/* ── footer ───────────────────────────────────────── */
.footer {
  text-align: center;
  padding: 60px 26px 70px;
  border-top: var(--line) dashed var(--ink);
  margin-top: 30px;
}
.foot-cat {
  width: 130px;
  cursor: pointer;
  transition: transform .3s ease;
}
.foot-cat:hover { transform: rotate(14deg) scale(1.12); }
.big-adios {
  font-family: "Shantell Sans", cursive;
  font-size: 44px;
  margin: 6px 0 16px;
  color: var(--red);
  transform: rotate(-2deg);
}
.fine { font-size: 17px; opacity: .62; max-width: 620px; margin: 8px auto; }

/* ── toast ────────────────────────────────────────── */
.toast {
  position: fixed;
  left: 50%; bottom: 32px;
  transform: translate(-50%, 220%) rotate(-2deg);
  padding: 14px 26px;
  font-size: 22px;
  background: var(--green);
  color: #fff;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .35s cubic-bezier(.3,1.6,.5,1), opacity .2s ease, visibility .35s;
}
.toast.show {
  transform: translate(-50%, 0) rotate(-2deg);
  opacity: 1;
  visibility: visible;
}

/* ── scroll reveal ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px) rotate(-1deg);
  transition: opacity .5s ease, transform .5s cubic-bezier(.3,1.4,.5,1);
}
.reveal.in { opacity: 1; transform: none; }
.card.reveal.in:nth-child(1) { transform: rotate(-1deg); }
.card.reveal.in:nth-child(2) { transform: rotate(1.2deg); }
.step.reveal.in:nth-child(1) { transform: rotate(-1.4deg); }
.step.reveal.in:nth-child(2) { transform: rotate(.8deg); }
.step.reveal.in:nth-child(3) { transform: rotate(-.6deg); }
.ca.reveal.in { transform: rotate(-.8deg); }

/* screen shake for ¡FIESTA! */
body.shake { animation: shake-screen .5s ease; }
@keyframes shake-screen {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-8px, 5px) rotate(-.6deg); }
  40% { transform: translate(7px, -6px) rotate(.6deg); }
  60% { transform: translate(-6px, -4px) rotate(-.4deg); }
  80% { transform: translate(5px, 6px) rotate(.4deg); }
}

/* offscreen sections stop animating entirely */
.anim-paused,
.anim-paused *::before,
.anim-paused * { animation-play-state: paused !important; }

/* falling sombrero easter egg */
.sombrero-drop {
  position: fixed;
  top: -70px;
  font-size: 46px;
  z-index: 55;
  pointer-events: none;
  animation: drop linear forwards;
}
@keyframes drop {
  to { transform: translateY(112vh) rotate(720deg); }
}

/* ── responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  body { font-size: 20px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-cat  { order: 1; }
  .title { justify-content: center; }
  .squiggle, .tagline { margin-left: auto; margin-right: auto; }
  .cta-row, .hint { justify-content: center; }
  .meet-grid, .steps { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav { gap: 12px; }
  .s2 { display: none; }
}
@media (max-width: 620px) {
  /* the full address cannot share a line with the logo on a phone */
  .ca-chip { order: 5; flex: 0 0 100%; margin: 4px auto 2px; }
  .ca-chip code { font-size: clamp(9px, 2.5vw, 15px); }
  .brand { margin-right: auto; }
}

@media (max-width: 560px) {
  .papel { height: 70px; }
  .flag  { width: 42px; height: 56px; }
  .nav   { margin-top: 56px; }
  .band-row { gap: 12px; }
  .inst { width: 108px; }
}

