/* Meowelo printables — shared print styling. Black line art on white, big open shapes (Brand DNA §17). */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600&family=Nunito:wght@400;600;700&family=Lora:ital,wght@0,400;1,400&display=swap');
:root { --ink: #111; --muted: #6b6b6b; --accent: #2F95C8; }
* { box-sizing: border-box; }
html, body { margin: 0; background: #f4f1ec; color: var(--ink); font-family: "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif; }
.toolbar { display: flex; gap: 12px; align-items: center; justify-content: center; padding: 14px 16px; background: #fff; border-bottom: 1px solid #e6e1d8; font-size: 14px; }
.toolbar a, .toolbar button { font: inherit; font-weight: 700; border: 0; border-radius: 999px; padding: 10px 18px; cursor: pointer; text-decoration: none; }
.toolbar button { background: var(--ink); color: #fff; }
.toolbar a { background: #fff; color: var(--ink); border: 1px solid #ddd; }
.toolbar .hint { color: var(--muted); }
.sheet { background: #fff; width: min(210mm, calc(100% - 24px)); min-height: 297mm; margin: 24px auto; padding: 16mm 14mm 14mm; box-shadow: 0 8px 30px rgba(0,0,0,.08); display: flex; flex-direction: column; }
.sheet.landscape { width: min(297mm, calc(100% - 24px)); min-height: 210mm; }
.brand { display: flex; justify-content: space-between; align-items: baseline; font-size: 11px; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8mm; }
.brand strong { color: var(--ink); letter-spacing: .04em; text-transform: none; font-size: 14px; }
h1, .col h2, .brand strong { font-family: "Fredoka", "Nunito", sans-serif; font-weight: 600; }\nh1 { font-size: 28px; margin: 0 0 4px; letter-spacing: -.01em; }
.sub { color: var(--muted); font-size: 14px; margin: 0 0 8mm; }
.story { font-family: "Lora", Georgia, serif; font-size: 17px; line-height: 1.75; max-width: 62ch; }
.story p { margin: 0 0 12px; }
.question { font-family: "Lora", Georgia, serif; font-size: 15px; color: var(--muted); font-style: italic; margin-top: auto; padding-top: 6mm; }
.scene { width: 100%; height: auto; display: block; }
.scene path, .scene circle, .scene rect, .scene ellipse, .scene line, .scene polyline { fill: #fff; stroke: #111; stroke-linecap: round; stroke-linejoin: round; }
.scene .bold { stroke-width: 7; }
.scene .mid { stroke-width: 3.5; }
.scene .thin { stroke-width: 2.5; }
.scene .none { fill: none; }
.lines { display: grid; gap: 9mm; margin-top: 4mm; }
.lines div { border-bottom: 2px solid #bbb; height: 0; }
.two { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 8mm; flex: 1; }
.col { border: 4px solid #111; border-radius: 22px; padding: 6mm; display: flex; flex-direction: column; }
.col h2 { margin: 0 0 3mm; font-size: 20px; display: flex; align-items: center; gap: 8px; }
.col .lines { flex: 1; align-content: start; }
.footer { margin-top: auto; padding-top: 6mm; font-size: 10px; color: var(--muted); display: flex; justify-content: space-between; }
@media print {
  html, body { background: #fff; }
  .toolbar { display: none; }
  .sheet { box-shadow: none; margin: 0; width: auto; min-height: auto; padding: 0; }
  @page { size: A4 portrait; margin: 14mm; }
  .landscape ~ style, .sheet.landscape { }
}
@media print { .two { grid-template-columns: 1fr 1fr; } }
