/* ── Fonts (self-hosted, kein Google-Request) ── */
@font-face {
  font-family: 'IM Fell English';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/im-fell-english-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'IM Fell English';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/im-fell-english-italic.woff2') format('woff2');
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Design Tokens ── */
:root {
  --bg:            #f0efeb;
  --surface:       #ffffff;
  --border:        #ddddd8;
  --border-mid:    #c8c8c2;
  --text:          #1a1a1a;
  --text-muted:    #888880;
  --text-faint:    #bbbbb5;
  --red:           #cc2525;
  --red-bg:        rgba(204, 37, 37, 0.08);
  --red-border:    rgba(204, 37, 37, 0.22);
  --yellow:        #7a8c00;
  --yellow-bg:     rgba(122, 140, 0, 0.09);
  --yellow-border: rgba(122, 140, 0, 0.22);
  --radius-card:   14px;
  --radius-icon:   10px;
}

/* ── Base ── */
html {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
}

body {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
