/* Pigeon V3 "Coo": zine / poster system. Cream paper, black ink, acid lime,
   coral. Thick rules, hard shadows, stickers. No animation; nothing hidden
   behind hover; native scrolling only. */
:root {
  --paper: #fffdf5;
  --paper-2: #f3f0e4;
  --ink: #0b0b0b;
  --ink-2: #3a3a36;
  --ink-3: #6b6b64;
  --lime: #c6f135;
  --lime-2: #e6f9a6;
  --coral: #ff5a36;
  --coral-2: #ffd5c9;
  --cobalt: #2d46f5;
  --sky: #bfe3ff;
  --pink: #ffb3c7;
  --grey: #e8e6dd;
  --bad: #b3261e;
  --display: "Archivo Black", "Arial Black", Impact, sans-serif;
  --mono: "Space Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  --body:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica,
    Arial, sans-serif;
  --script: "Reenie Beanie", "Bradley Hand", cursive;
  --type: "Special Elite", "Courier New", monospace;
  --rule: 3px;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-s: 3px 3px 0 var(--ink);
  --page: 1180px;
  --gutter: 20px;
  color-scheme: light;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--ink);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
a:hover {
  background: var(--lime);
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(2.6rem, 8vw, 6.4rem);
}
h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
}
h3 {
  font-size: 1.15rem;
}
p {
  margin: 0 0 1em;
}
.mono {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.up {
  text-transform: uppercase;
}
.muted {
  color: var(--ink-2);
}
.small {
  font-size: 0.9rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--ink);
  color: var(--lime);
  padding: 8px 12px;
  z-index: 100;
}
.skip-link:focus {
  left: 8px;
}
:focus-visible {
  outline: 4px solid var(--cobalt);
  outline-offset: 2px;
}
.page {
  width: min(100% - 2 * var(--gutter), var(--page));
  margin-inline: auto;
}
.page-narrow {
  width: min(100% - 2 * var(--gutter), 780px);
  margin-inline: auto;
}
section {
  padding-block: clamp(36px, 6vw, 72px);
}
.lead {
  font-size: 1.2rem;
  max-width: 36em;
}

/* ---------- buttons, chips ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  padding: 12px 18px;
  min-height: 46px;
  background: var(--paper);
  color: var(--ink);
  border: var(--rule) solid var(--ink);
  box-shadow: var(--shadow-s);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  background: var(--lime-2);
  box-shadow: 5px 5px 0 var(--ink);
}
.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}
.btn-lime {
  background: var(--lime);
}
.btn-lime:hover {
  background: var(--lime);
}
.btn-coral {
  background: var(--coral);
}
.btn-coral:hover {
  background: var(--coral);
}
.btn-ink {
  background: var(--ink);
  color: var(--lime);
}
.btn-ink:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn-lg {
  font-size: 1.05rem;
  padding: 16px 26px;
}
.btn-sm {
  padding: 8px 12px;
  min-height: 36px;
  font-size: 0.78rem;
  box-shadow: 2px 2px 0 var(--ink);
}
.btn.full {
  width: 100%;
}
.btn[disabled] {
  opacity: 0.6;
  cursor: progress;
}
.linkish {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  cursor: pointer;
}
.linkish:hover {
  background: var(--lime);
}
.sticker {
  display: inline-block;
  font-family: var(--mono);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border: var(--rule) solid var(--ink);
  background: var(--lime);
  box-shadow: var(--shadow-s);
  transform: rotate(var(--rot, -3deg));
}
.sticker-coral {
  background: var(--coral);
}
.sticker-sky {
  background: var(--sky);
}
.sticker-pink {
  background: var(--pink);
}

/* ---------- header / footer ---------- */
.ticker {
  background: var(--lime);
  border-bottom: var(--rule) solid var(--ink);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 0;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
}
.ticker span {
  background: var(--ink);
  color: var(--lime);
  padding: 0 6px;
  margin: 0 6px;
}
.bar {
  width: min(100% - 2 * var(--gutter), var(--page));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--ink);
}
.logo:hover {
  background: none;
}
.logo .mark {
  width: 34px;
  height: 34px;
  fill: var(--ink);
}
.bar nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bar nav a:not(.btn) {
  font-family: var(--mono);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-decoration: none;
  padding: 6px 4px;
  border-bottom: 3px solid transparent;
}
.bar nav a:not(.btn):hover {
  background: none;
  border-bottom-color: var(--ink);
}
.bar nav a[aria-current="page"] {
  border-bottom-color: var(--coral);
}
@media (max-width: 600px) {
  .logo span {
    display: none;
  }
  .bar nav {
    gap: 8px;
  }
  .bar nav .btn {
    padding: 10px 12px;
    font-size: 0.78rem;
  }
}
#site-footer {
  margin-top: 48px;
  border-top: var(--rule) solid var(--ink);
  background: var(--paper-2);
  padding-block: 36px;
}
.foot {
  width: min(100% - 2 * var(--gutter), var(--page));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 28px;
}
.foot-links {
  display: grid;
  gap: 8px;
  align-content: start;
  font-family: var(--mono);
  font-size: 0.85rem;
  text-transform: uppercase;
}
.foot-demo {
  border: var(--rule) solid var(--ink);
  background: var(--paper);
  padding: 14px;
  box-shadow: var(--shadow-s);
}
@media (max-width: 800px) {
  .foot {
    grid-template-columns: 1fr;
  }
}
.notice {
  margin: 0;
  padding: 12px var(--gutter);
  text-align: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--sky);
  border-bottom: var(--rule) solid var(--ink);
}
.notice-error {
  background: var(--coral);
}
.notice-ok {
  background: var(--lime);
}

/* ---------- sticker covers ---------- */
.cv {
  position: relative;
  aspect-ratio: 5 / 7;
  width: 100%;
  overflow: hidden;
  background: var(--stock, var(--paper));
  color: var(--stock-ink, var(--ink));
  border: var(--rule) solid var(--ink);
  box-shadow: var(--shadow);
  container-type: inline-size;
  font-family: var(--display);
}
.cv-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cv-tag {
  position: absolute;
  left: 6%;
  bottom: 7%;
  max-width: 88%;
  background: var(--lime);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  padding: 4% 6%;
  font-size: 7.5cqw;
  line-height: 1.05;
  white-space: pre-line;
  transform: rotate(-2deg);
  text-transform: lowercase;
}
.cv-tag-mid {
  bottom: auto;
  top: 44%;
}
.cv-words {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-size: 11cqw;
  line-height: 1;
  white-space: pre-line;
  text-wrap: balance;
  color: var(--stock-ink);
}
.cv-words-bold {
  text-align: left;
  top: auto;
  bottom: 10%;
  transform: none;
  font-size: 14cqw;
}
.cv-mark {
  position: absolute;
  right: 6%;
  top: 5%;
  width: 10cqw;
  height: 10cqw;
}
.cv-mark .mark {
  width: 100%;
  height: 100%;
  fill: var(--stock-ink);
}
.cv-painted .cv-mark .mark {
  fill: var(--paper);
  filter: drop-shadow(0 0 1px var(--ink)) drop-shadow(0 0 1px var(--ink));
}
.cv-photo-frame {
  position: absolute;
  top: 8%;
  left: 12%;
  right: 12%;
  aspect-ratio: 1;
  background: #fff;
  border: 2px solid var(--ink);
  padding: 3%;
  overflow: visible;
  transform: rotate(-3deg);
}
.cv-photo-frame img,
.cv-photo-empty {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
}
.cv-photo-full {
  inset: 0 0 24% 0;
  aspect-ratio: auto;
  transform: none;
  border-width: 0 0 2px 0;
  padding: 0;
  left: 0;
  right: 0;
  top: 0;
}
.cv-photo-empty {
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(
    -45deg,
    var(--lime) 0 8px,
    var(--paper) 8px 16px
  );
  font-size: 6cqw;
  text-align: center;
  line-height: 1.1;
  color: var(--ink);
}
.tape {
  position: absolute;
  width: 28%;
  height: 8%;
  background: var(--coral);
  opacity: 0.9;
  border: 1px solid var(--ink);
}
.tape-a {
  left: -8%;
  top: -4%;
  transform: rotate(-30deg);
}
.tape-b {
  right: -8%;
  bottom: -4%;
  transform: rotate(-30deg);
}
.cv-photo-full .tape {
  display: none;
}
.cv-photo-frame ~ .cv-words {
  top: auto;
  bottom: 7%;
  transform: none;
  font-size: 8.5cqw;
}

/* inside spread */
.inside {
  aspect-ratio: 10 / 7;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: var(--rule) solid var(--ink);
  box-shadow: var(--shadow);
  container-type: inline-size;
  position: relative;
  overflow: hidden;
}
.inside::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  border-left: 2px dashed var(--grey);
}
.inside-l {
  display: grid;
  place-items: center;
}
.inside-coo .mark {
  width: 6cqw;
  height: 6cqw;
  fill: var(--grey);
}
.inside-r {
  padding: 7% 7% 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2cqw;
  overflow: hidden;
}
.note,
.sign {
  margin: 0;
  color: #1a1a1a;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.font-script {
  font-family: var(--script);
  font-size: 5.2cqw;
  line-height: 1.15;
}
.font-neat {
  font-family: var(--type);
  font-size: 3.1cqw;
  line-height: 1.45;
}
.font-print {
  font-family: var(--body);
  font-size: 3cqw;
  line-height: 1.5;
}
.note-empty {
  font-family: var(--mono);
  color: var(--ink-3);
  font-size: 2.6cqw;
}

/* ---------- landing ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  padding-block: clamp(28px, 5vw, 64px) clamp(20px, 3vw, 40px);
  position: relative;
}
.hero h1 {
  margin-bottom: 0.3em;
}
.hero h1 em {
  font-style: normal;
  background: var(--lime);
  padding: 0 0.1em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 18px;
}
.hero-stickers {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.hero-bird {
  position: relative;
  justify-self: center;
  width: min(100%, 420px);
}
.hero-bird .bird {
  width: 100%;
  height: auto;
}
.bubble {
  position: absolute;
  top: -6%;
  left: -4%;
  background: var(--paper);
  border: var(--rule) solid var(--ink);
  box-shadow: var(--shadow-s);
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  padding: 8px 18px;
  text-transform: uppercase;
}
.bubble::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: -16px;
  border: 8px solid transparent;
  border-top-color: var(--ink);
  border-right-color: var(--ink);
}
@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-bird {
    width: min(100%, 300px);
    margin-top: 24px;
  }
}
.rule {
  border: 0;
  border-top: var(--rule) solid var(--ink);
  margin: 0;
}
.wall-strip {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 26px var(--gutter) 30px;
  scroll-snap-type: x proximity;
}
.wall-strip > a {
  flex: 0 0 160px;
  scroll-snap-align: start;
  text-decoration: none;
  transform: rotate(var(--rot, 0deg));
}
.wall-strip > a:hover {
  background: none;
}
.wall-strip > a:hover .cv {
  box-shadow: 8px 8px 0 var(--ink);
}
.tile-name {
  display: block;
  margin-top: 12px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.tile-meta {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-2);
}
.manifesto {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  text-transform: uppercase;
  max-width: 22em;
}
.manifesto span {
  background: var(--coral);
  padding: 0 0.15em;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: var(--rule) solid var(--ink);
  box-shadow: var(--shadow);
  background: var(--paper);
}
.steps article {
  padding: 22px;
  border-right: var(--rule) solid var(--ink);
}
.steps article:last-child {
  border-right: 0;
}
.steps .num {
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  color: var(--coral);
  -webkit-text-stroke: 2px var(--ink);
}
.steps h3 {
  margin-bottom: 0.3em;
}
.steps p {
  margin: 0;
  color: var(--ink-2);
}
@media (max-width: 760px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .steps article {
    border-right: 0;
    border-bottom: var(--rule) solid var(--ink);
  }
  .steps article:last-child {
    border-bottom: 0;
  }
}
.ticket {
  background: #fff;
  border: var(--rule) solid var(--ink);
  box-shadow: var(--shadow);
  max-width: 460px;
  padding: 22px;
  font-family: var(--mono);
  font-size: 0.9rem;
  transform: rotate(-1.5deg);
}
.ticket h2 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.ticket .row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 2px dashed var(--grey);
}
.ticket .row.total {
  border-bottom: 0;
  border-top: var(--rule) solid var(--ink);
  margin-top: 6px;
  padding-top: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}
.ticket .barcode {
  margin-top: 16px;
  height: 40px;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0 2px,
    transparent 2px 5px,
    var(--ink) 5px 6px,
    transparent 6px 10px,
    var(--ink) 10px 13px,
    transparent 13px 16px
  );
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 820px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}
.qa {
  display: grid;
  gap: 14px;
}
.qa .q,
.qa .a {
  max-width: 78%;
  padding: 12px 16px;
  border: var(--rule) solid var(--ink);
  box-shadow: var(--shadow-s);
  position: relative;
}
.qa .q {
  justify-self: end;
  background: var(--paper);
  font-weight: 700;
}
.qa .a {
  justify-self: start;
  background: var(--lime);
}
.qa .a::before {
  content: "COO:";
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.75rem;
  display: block;
  margin-bottom: 2px;
}
.qa p {
  margin: 0;
}

/* ---------- the wall (catalogue) ---------- */
.wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 40px 28px;
  padding: 10px 6px 20px;
}
.wall > a {
  text-decoration: none;
  transform: rotate(var(--rot, 0deg));
}
.wall > a:hover {
  background: none;
}
.wall > a:hover .cv {
  box-shadow: 8px 8px 0 var(--ink);
}
.wall-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 30px 0 6px;
  border-bottom: var(--rule) solid var(--ink);
  padding-bottom: 6px;
}
.wall-head h2 {
  margin: 0;
  font-size: 1.5rem;
}
.searchbar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin: 12px 0;
}
.searchbar input {
  max-width: 340px;
}

/* ---------- talk (chat) ---------- */
.talk {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
  padding-block: 20px 80px;
}
.chat {
  display: grid;
  gap: 16px;
  min-width: 0;
}
.turn {
  display: grid;
  gap: 8px;
}
.pb,
.ub {
  position: relative;
  padding: 14px 18px;
  border: var(--rule) solid var(--ink);
  box-shadow: var(--shadow-s);
  max-width: 88%;
}
.pb {
  background: var(--lime);
  justify-self: start;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
}
.pb .bird {
  width: 44px;
  height: 44px;
}
.pb p {
  margin: 0;
  font-size: 1.05rem;
}
.pb p + p {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--ink-2);
}
.ub {
  background: var(--paper);
  justify-self: end;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.ub .ans {
  font-weight: 700;
}
.ub .ans.quote {
  font-family: var(--type);
  font-weight: 400;
  white-space: pre-wrap;
  max-width: 34em;
}
.ub .cv {
  width: 56px;
  box-shadow: var(--shadow-s);
}
.ub .linkish {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
}
.widget {
  border: var(--rule) solid var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 18px;
  min-width: 0;
}
.widget-label {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.widget-label span {
  background: var(--coral);
  padding: 0 6px;
}
.qrs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.qr {
  font-family: var(--mono);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 10px 14px;
  border: var(--rule) solid var(--ink);
  background: var(--paper);
  box-shadow: 2px 2px 0 var(--ink);
  cursor: pointer;
  color: var(--ink);
}
.qr:hover {
  background: var(--lime-2);
}
.qr[aria-pressed="true"] {
  background: var(--ink);
  color: var(--lime);
}
.qr.script {
  font-family: var(--script);
  font-size: 1.3rem;
  text-transform: none;
}
.qr.neat {
  font-family: var(--type);
  text-transform: none;
}
.qr.print {
  font-family: var(--body);
  text-transform: none;
}
.starters {
  display: grid;
  gap: 8px;
  margin: 10px 0 14px;
}
.starters button {
  font: inherit;
  text-align: left;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  background: var(--paper);
  cursor: pointer;
  line-height: 1.4;
  font-size: 0.95rem;
}
.starters button:hover {
  background: var(--lime-2);
}
details.more summary {
  cursor: pointer;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin: 6px 0;
}
.picker {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 6px 14px;
  scroll-snap-type: x proximity;
}
.pick {
  flex: 0 0 128px;
  scroll-snap-align: start;
  cursor: pointer;
  position: relative;
}
.pick input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.pick .cv {
  box-shadow: var(--shadow-s);
}
.pick:has(input:checked) .cv {
  outline: 4px solid var(--coral);
  outline-offset: 3px;
}
.pick:has(input:focus-visible) .cv {
  outline: 4px solid var(--cobalt);
  outline-offset: 3px;
}
.pick b {
  display: block;
  font-family: var(--mono);
  font-size: 0.75rem;
  margin-top: 8px;
  text-transform: uppercase;
}
label.f {
  display: block;
  margin-bottom: 12px;
}
label.f > span,
.f-label {
  display: block;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.f .hint {
  display: block;
  font-family: var(--body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-2);
  font-size: 0.85rem;
  margin-top: 4px;
}
input[type="text"],
input[type="email"],
input[type="search"],
select,
textarea {
  font: inherit;
  width: 100%;
  padding: 11px 12px;
  border: var(--rule) solid var(--ink);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
}
input[readonly] {
  background: var(--paper-2);
  color: var(--ink-2);
  cursor: not-allowed;
}
input:focus-visible,
textarea:focus-visible {
  outline: 4px solid var(--lime);
  outline-offset: 0;
}
textarea {
  min-height: 150px;
  resize: vertical;
  font-family: var(--type);
  font-size: 1.05rem;
}
.f.error input,
.f.error textarea {
  border-color: var(--coral);
  background: var(--coral-2);
}
.f-error {
  display: block;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--bad);
  margin-top: 4px;
}
.cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
}
.cols-3 {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 0 12px;
}
@media (max-width: 520px) {
  .cols-2,
  .cols-3 {
    grid-template-columns: 1fr;
  }
}
.counter {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-align: right;
  color: var(--ink-2);
  margin: -6px 0 10px;
}
.widget-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.speeds {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}
.speed {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border: var(--rule) solid var(--ink);
  background: var(--paper);
  cursor: pointer;
}
.speed:has(input:checked) {
  background: var(--lime-2);
  box-shadow: var(--shadow-s);
}
.speed input {
  width: 20px;
  height: 20px;
  accent-color: var(--ink);
  margin: 0;
}
.speed b {
  display: block;
  font-family: var(--mono);
  text-transform: uppercase;
}
.speed .arr {
  font-weight: 700;
}
.speed .cost {
  font-family: var(--mono);
  font-weight: 700;
}
.people {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.people button {
  font: inherit;
  text-align: left;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  background: var(--paper);
  cursor: pointer;
  font-size: 0.95rem;
}
.people button:hover {
  background: var(--lime-2);
}
.demo-box {
  background: var(--coral-2);
  border: var(--rule) solid var(--ink);
  padding: 12px 14px;
  font-size: 0.92rem;
  margin: 8px 0 14px;
}
.demo-box b {
  font-family: var(--mono);
  text-transform: uppercase;
  display: block;
}
.upload {
  border: var(--rule) dashed var(--ink);
  padding: 14px;
  background: var(--paper);
  margin-bottom: 12px;
}
.range {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 0.8rem;
}
.range input {
  width: 100%;
  accent-color: var(--ink);
}
.perch {
  position: sticky;
  top: 16px;
  min-width: 0;
}
.perch-box {
  border: var(--rule) solid var(--ink);
  background: var(--paper-2);
  box-shadow: var(--shadow);
  padding: 18px;
}
.perch-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.perch-tabs button {
  font-family: var(--mono);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 6px 12px;
  border: 2px solid var(--ink);
  background: var(--paper);
  cursor: pointer;
}
.perch-tabs button[aria-selected="true"] {
  background: var(--ink);
  color: var(--lime);
}
.perch-stage .cv {
  max-width: 280px;
  margin-inline: auto;
}
.perch-stage .inside {
  max-width: 480px;
  margin-inline: auto;
}
.perch-ticket {
  margin-top: 14px;
  background: #fff;
  border: 2px solid var(--ink);
  padding: 12px 14px;
  font-family: var(--mono);
  font-size: 0.82rem;
  display: grid;
  gap: 4px;
}
.perch-ticket div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.perch-ticket .total {
  border-top: 2px solid var(--ink);
  padding-top: 6px;
  font-weight: 700;
}
.perch summary {
  display: none;
}
@media (max-width: 900px) {
  .talk {
    grid-template-columns: 1fr;
  }
  .perch {
    position: static;
    order: -1;
  }
  .perch details summary {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--mono);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 10px 14px;
    border: var(--rule) solid var(--ink);
    background: var(--lime);
    box-shadow: var(--shadow-s);
    list-style: none;
  }
  .perch details summary::-webkit-details-marker {
    display: none;
  }
  .perch details summary::after {
    content: "PEEK ▾";
  }
  .perch details[open] summary::after {
    content: "HIDE ▴";
  }
  .perch-box {
    margin-top: 10px;
  }
  .perch-stage .cv {
    max-width: 200px;
  }
}

/* ---------- boarding pass (receipt) / flight (order) ---------- */
.pass {
  background: #fff;
  border: var(--rule) solid var(--ink);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  position: relative;
}
.pass-main {
  padding: clamp(18px, 3vw, 32px);
  border-right: var(--rule) dashed var(--ink);
}
.pass-stub {
  padding: clamp(18px, 3vw, 28px);
  background: var(--lime);
  font-family: var(--mono);
  font-size: 0.82rem;
}
.pass .lbl {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  margin: 0 0 2px;
}
.pass .big {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 18px;
}
.pass .val {
  margin: 0 0 14px;
  font-weight: 700;
}
.pass-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.pass .barcode {
  height: 54px;
  margin-top: 16px;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0 2px,
    transparent 2px 5px,
    var(--ink) 5px 6px,
    transparent 6px 10px,
    var(--ink) 10px 13px,
    transparent 13px 16px,
    var(--ink) 16px 17px,
    transparent 17px 22px
  );
}
@media (max-width: 640px) {
  .pass {
    grid-template-columns: 1fr;
  }
  .pass-main {
    border-right: 0;
    border-bottom: var(--rule) dashed var(--ink);
  }
}
.flight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: var(--rule) solid var(--ink);
  background: var(--paper);
}
.leg {
  padding: 12px;
  border-right: var(--rule) solid var(--ink);
  color: var(--ink-3);
}
.leg:last-child {
  border-right: 0;
}
.leg b {
  display: block;
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 0.8rem;
}
.leg small {
  display: block;
  font-size: 0.8rem;
}
.leg.done {
  color: var(--ink);
  background: var(--lime-2);
}
.leg.now {
  color: var(--ink);
  background: var(--lime);
}
.leg.bad {
  background: var(--coral-2);
}
.flight.cancelled {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 520px) {
  .flight {
    grid-template-columns: 1fr;
  }
  .leg {
    border-right: 0;
    border-bottom: var(--rule) solid var(--ink);
  }
  .leg:last-child {
    border-bottom: 0;
  }
}
.two {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 28px;
  align-items: start;
  padding-block: 10px 60px;
}
@media (max-width: 820px) {
  .two {
    grid-template-columns: 1fr;
  }
}
.box {
  background: #fff;
  border: var(--rule) solid var(--ink);
  box-shadow: var(--shadow-s);
  padding: 18px;
  margin-bottom: 18px;
}
.box h3 {
  margin-bottom: 0.5em;
}
.kv {
  display: grid;
  gap: 6px;
  margin: 0;
  font-size: 0.95rem;
}
.kv div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 2px dashed var(--grey);
  padding-bottom: 4px;
}
.chip {
  display: inline-block;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border: 2px solid var(--ink);
  white-space: nowrap;
}
.chip-confirmed {
  background: var(--sky);
}
.chip-on_its_way {
  background: var(--lime);
}
.chip-delivered {
  background: var(--ink);
  color: var(--lime);
}
.chip-cancelled {
  background: var(--coral);
}
.chip-stage {
  background: var(--paper);
}
.rev-note {
  white-space: pre-wrap;
  font-family: var(--type);
}
.flavor {
  font-family: var(--script);
  font-size: 1.5rem;
  line-height: 1.1;
  margin: 0 0 10px;
}

/* ---------- logbook ---------- */
.signin {
  max-width: 460px;
  margin: 30px auto;
}
.logbook {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding-block: 10px 60px;
}
@media (max-width: 820px) {
  .logbook {
    grid-template-columns: 1fr;
  }
}
.roster {
  border: var(--rule) solid var(--ink);
  background: #fff;
  box-shadow: var(--shadow-s);
  padding: 10px;
}
.roster h3 {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  margin: 6px 6px 8px;
}
.roster button {
  display: block;
  width: 100%;
  text-align: left;
  font: inherit;
  padding: 8px 10px;
  border: 0;
  background: none;
  cursor: pointer;
  border-bottom: 2px dashed var(--grey);
}
.roster button:hover {
  background: var(--lime-2);
}
.roster button[aria-pressed="true"] {
  background: var(--lime);
}
.roster small {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-2);
}
.entry {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  background: #fff;
  border: var(--rule) solid var(--ink);
  box-shadow: var(--shadow-s);
  padding: 14px;
  margin-bottom: 14px;
  text-decoration: none;
  color: inherit;
}
.entry:hover {
  background: var(--lime-2);
}
.entry .cv {
  box-shadow: 2px 2px 0 var(--ink);
}
.entry h3 {
  font-size: 1rem;
  margin: 0 0 4px;
  text-transform: none;
  font-family: var(--body);
  font-weight: 700;
}
.route {
  position: relative;
  height: 26px;
  margin: 8px 0 6px;
  border-bottom: 3px dashed var(--ink);
}
.route .from,
.route .to {
  position: absolute;
  top: 0;
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  background: #fff;
  padding: 0 4px;
}
.route .from {
  left: 0;
}
.route .to {
  right: 0;
}
.route .flyer {
  position: absolute;
  top: -2px;
  left: var(--pos, 0%);
  width: 26px;
  height: 26px;
  transform: translateX(-50%);
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.route .flyer .mark {
  width: 16px;
  height: 16px;
  fill: var(--ink);
}
.entry .line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

/* ---------- coos (email previews) ---------- */
.postcards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.postcard {
  background: #fff;
  border: var(--rule) solid var(--ink);
  box-shadow: var(--shadow-s);
  padding: 16px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transform: rotate(var(--rot, 0deg));
  min-height: 150px;
}
.postcard:hover {
  background: var(--lime-2);
}
.postcard .stampbox {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 42px;
  height: 50px;
  border: 2px solid var(--ink);
  background: var(--coral);
  display: grid;
  place-items: center;
}
.postcard .stampbox .mark {
  width: 22px;
  height: 22px;
  fill: var(--ink);
}
.postcard b {
  display: block;
  padding-right: 60px;
  margin-bottom: 6px;
}
.postcard small {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-2);
  display: block;
}
.reader {
  background: #fff;
  border: var(--rule) solid var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-top: 14px;
}
.reader-meta {
  padding: 12px 18px;
  background: var(--paper-2);
  border-bottom: var(--rule) solid var(--ink);
  font-family: var(--mono);
  font-size: 0.8rem;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 4px 10px;
}
.reader-meta dt {
  color: var(--ink-3);
}
.reader-meta dd {
  margin: 0;
}
.mail {
  padding: 30px 26px;
  max-width: 560px;
  margin: 0 auto;
}
.mail-brand {
  font-family: var(--display);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.2rem;
}
.mail-brand .mark {
  width: 26px;
  height: 26px;
  fill: var(--ink);
}
.mail h1 {
  font-size: 1.9rem;
}
.mail-order {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 2px solid var(--ink);
  margin: 18px 0;
}
.mail-order p {
  margin: 0 0 4px;
  font-size: 0.95rem;
}
.mail-cover .cv {
  box-shadow: 2px 2px 0 var(--ink);
}
.mail-cta a {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  padding: 12px 20px;
  border: var(--rule) solid var(--ink);
  box-shadow: var(--shadow-s);
  text-decoration: none;
  font-family: var(--mono);
  font-weight: 700;
  text-transform: uppercase;
}
.mail-foot {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 0.72rem;
  margin-top: 30px;
}

/* ---------- the loft (admin, departures board) ---------- */
body.loft {
  --page: 1400px;
}
.loft-bar {
  background: var(--ink);
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.82rem;
  padding: 10px 0;
  border-bottom: var(--rule) solid var(--ink);
}
.loft-bar .page {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.loft-bar .tag {
  background: var(--coral);
  color: var(--ink);
  font-weight: 700;
  padding: 2px 8px;
}
.loft-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin: 18px 0 14px;
}
.loft-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.loft-tabs button {
  font-family: var(--mono);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 8px 12px;
  border: var(--rule) solid var(--ink);
  background: var(--paper);
  cursor: pointer;
}
.loft-tabs button[aria-selected="true"] {
  background: var(--ink);
  color: var(--lime);
}
.tally {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.tally div {
  border: var(--rule) solid var(--ink);
  background: #fff;
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 0.8rem;
  box-shadow: 2px 2px 0 var(--ink);
}
.tally b {
  font-family: var(--display);
  font-size: 1.3rem;
  margin-right: 6px;
}
.loft-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 18px;
  align-items: start;
  padding-bottom: 60px;
}
@media (max-width: 1000px) {
  .loft-layout {
    grid-template-columns: 1fr;
  }
}
.board-wrap {
  background: var(--ink);
  border: var(--rule) solid var(--ink);
  box-shadow: var(--shadow);
  overflow-x: auto;
  padding: 10px;
}
.board {
  border-collapse: separate;
  border-spacing: 0 6px;
  width: 100%;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--lime);
  text-transform: uppercase;
}
.board th {
  text-align: left;
  color: #9fb75a;
  font-weight: 400;
  padding: 4px 10px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  white-space: nowrap;
}
.board td {
  padding: 8px 10px;
  background: #151515;
  white-space: nowrap;
  letter-spacing: 0.06em;
}
.board tr.sel {
  cursor: pointer;
}
.board tr.sel:hover td {
  background: #232a12;
}
.board tr[aria-selected="true"] td {
  background: var(--lime);
  color: var(--ink);
}
.board .st {
  font-weight: 700;
}
.board .express {
  color: var(--coral);
}
.board tr[aria-selected="true"] .express {
  color: var(--ink);
}
.board .cv {
  width: 22px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  border-width: 1px;
  box-shadow: none;
}
.sheet {
  background: #fff;
  border: var(--rule) solid var(--ink);
  box-shadow: var(--shadow);
  padding: 18px;
  position: sticky;
  top: 16px;
  max-height: calc(100vh - 32px);
  overflow: auto;
}
.sheet h2 {
  font-size: 1.4rem;
  margin-bottom: 2px;
}
.sheet .cv {
  max-width: 130px;
}
.sheet dl {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 6px 12px;
  margin: 12px 0;
  font-size: 0.9rem;
}
.sheet dt {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--ink-3);
}
.sheet dd {
  margin: 0;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0;
}
.log {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}
.log li {
  display: grid;
  grid-template-columns: 106px 1fr;
  gap: 10px;
  padding: 6px 0;
  border-top: 2px dashed var(--grey);
}
.log small {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--ink-3);
}
.table-wrap {
  overflow-x: auto;
  background: #fff;
  border: var(--rule) solid var(--ink);
  box-shadow: var(--shadow-s);
}
table.plain {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.9rem;
}
table.plain th,
table.plain td {
  text-align: left;
  padding: 9px 12px;
  border-bottom: 2px solid var(--grey);
  vertical-align: middle;
  white-space: nowrap;
}
table.plain th {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--paper-2);
}
table.plain .cv {
  width: 26px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  box-shadow: none;
  border-width: 1px;
}
.empty {
  padding: 36px 20px;
  text-align: center;
  font-family: var(--mono);
  color: var(--ink-3);
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

/* Coo refinement: retain the bird and lime; reduce competing interface accents. */
:root { --rule: 2px; --shadow: 3px 3px 0 var(--ink); --shadow-s: 2px 2px 0 var(--ink); }
h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); line-height: 1.04; }
h2 { font-size: clamp(1.65rem, 3vw, 2.4rem); line-height: 1.1; }
h3 { line-height: 1.2; }
.btn { font-family: var(--body); font-size: 1rem; letter-spacing: 0; text-transform: none; }
.btn:hover { box-shadow: 3px 3px 0 var(--ink); }
.btn-sm { font-size: .875rem; }
.bar { min-height: 88px; }
.bar nav a:not(.btn) { font-family: var(--body); font-size: 1rem; text-transform: none; }
.bar nav { gap: 24px; }
.ticker { background: var(--paper-2); border-bottom: 1px solid #d4d2c8; font-family: var(--body); font-size: .8125rem; letter-spacing: 0; white-space: normal; padding: 8px 20px; }
.ticker span { background: none; color: var(--ink); font-size: .75rem; }
.hero { padding-block: clamp(40px, 6vw, 76px); grid-template-columns: 1.25fr 1fr; }
.hero .lead { max-width: 31em; font-size: 1.125rem; line-height: 1.65; margin-top: 24px; }
.hero h1 em { background: none; padding: 0; text-decoration: underline; text-decoration-color: var(--lime); text-decoration-thickness: .14em; text-underline-offset: .05em; }
.hero-bird { width: min(100%, 350px); }
.hero-details { font-size: .875rem; margin-top: 22px; color: var(--ink-2); }
.bubble { font-size: 1.65rem; }
.wall-strip > a { transform: none; flex-basis: 175px; }
.wall-strip { gap: 32px; padding-block: 32px; }
.wall-strip > a:hover .cv { box-shadow: 4px 4px 0 var(--ink); }
.tile-name { font-family: var(--body); font-size: 1rem; text-transform: none; }
.tile-meta { font-size: .875rem; }
.rule { border-top: 1px solid #d4d2c8; }
.foot-links { font-family: var(--body); font-size: .9375rem; text-transform: none; }
.foot-demo { box-shadow: none; border: 1px solid #bdbbb1; }
.sticker { transform: none; box-shadow: none; font-size: .875rem; }
@media (max-width: 820px) { .hero { grid-template-columns: 1fr; } .hero-bird { width: 240px; margin-top: 24px; } }
@media (max-width: 600px) { .bar { gap: 10px; min-height: 76px; } .bar nav { gap: 12px; } .bar nav a:not(.btn) { font-size: .875rem; } .bar nav .btn { font-size: .875rem; padding: 10px; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; } }
