/* Trashmaker's six brand colors. Mirrored in tools/assets for independent hosting. */
@font-face {
  font-family: "Trashmaker Marker";
  src: url("fonts/marker.woff?v=09923ef1d8") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Trashmaker Headline";
  src: url("fonts/headline.woff?v=6f22f58c85") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Trashmaker Hand";
  src: url("fonts/hand.woff?v=347f291209") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --teal: #5B9FA2;
  --blue: #4D638C;
  --paper: #F2EEDC;
  --yellow: #E9CD70;
  --red: #D66C76;
  --ink: #394354;
  --muted: #626A71;
  --teal-ink: #32686B;
  --surface: #FBF9F0;
  --line: #CCCDBF;
  --soft-teal: #DFE9DF;
  --font: "Trashmaker Hand", "KaiTi", "STKaiti", "Microsoft YaHei", sans-serif;
  --display: "Trashmaker Marker", "Trashmaker Headline", "Trashmaker Hand", "KaiTi", sans-serif;
  --mono: var(--font);
  color-scheme: light;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.7 var(--font); }
a { color: inherit; text-decoration: none; }
button, input, summary, select, textarea { font: inherit; }
button, summary { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; height: auto; }
::selection { background: var(--yellow); color: var(--ink); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 5px; }
.shell { width: min(1240px, calc(100% - 96px)); margin: auto; }
.masthead { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 2px solid var(--ink); }
.studio-brand { display: inline-flex; align-items: center; gap: 12px; }
.studio-brand > img { width: 48px; flex: none; }
.studio-brand > span { font: 400 21px/1.5 var(--display); letter-spacing: .04em; }
.studio-brand small { display: block; margin-top: 1px; color: var(--muted); font: 12px/1.5 var(--mono); letter-spacing: .04em; }
.brand-lockup { display: flex; align-items: center; gap: 10px; }
.brand-lockup .brand-icon { width: 46px; }
.brand-lockup .brand-wordmark { width: 190px; }
.head-actions { display: flex; align-items: center; gap: 30px; }
.status { display: inline-flex; gap: 8px; align-items: center; color: var(--muted); font-size: 13px; }
.status i { width: 8px; height: 8px; flex: none; background: var(--red); border-radius: 50%; }
.eyebrow { display: flex; justify-content: space-between; gap: 16px; color: var(--blue); font: 12px/1.6 var(--mono); letter-spacing: .12em; }
.text-link { display: inline-flex; justify-content: space-between; align-items: center; gap: 24px; padding: 8px 0; color: var(--blue); font-weight: 700; border-bottom: 2px solid var(--blue); transition: color .16s, gap .16s; }
.text-link:hover { color: var(--teal-ink); border-color: currentColor; }
.paper-label { display: inline-block; padding: 5px 15px; background: var(--yellow); color: var(--ink); font: 400 18px/1.6 var(--display); transform: rotate(-2deg); }
.site-footer { display: flex; justify-content: space-between; gap: 16px; padding: 26px 0 30px; color: var(--muted); font-size: 12px; }
@media (max-width: 700px) {
  .shell { width: calc(100% - 40px); }
  .masthead { min-height: 84px; gap: 12px; }
  .head-actions { gap: 12px; }
  .studio-brand { gap: 8px; }
  .studio-brand > img { width: 38px; }
  .studio-brand > span { font-size: 18px; }
  .studio-brand small { display: none; }
  .brand-lockup { gap: 4px; }
  .brand-lockup .brand-icon { width: 36px; }
  .brand-lockup .brand-wordmark { width: 138px; }
  .site-footer { flex-wrap: wrap; gap: 6px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
