/* ── CSS Reset & Base ─────────────────────────────────────────────────────── */
:root {
  --bg:        #ffffff;
  --bg2:       #f4f4f2;
  --surface:   #efefed;
  --border:    #e0e0d8;
  --text:      #111111;
  --muted:     #888880;
  --acc:       #111111;
  --acc2:      #84ff00;
  --acc-text:  #ffffff;
  --acc2-text: #000000;

  --font-h: 'Bebas Neue', sans-serif;
  --font-c: 'Barlow Condensed', sans-serif;
  --font-b: 'DM Sans', sans-serif;
  --r: 4px;
  --nav-h: 60px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-b); font-size: 15px; line-height: 1.5; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; object-fit: cover; }
button, input, select, textarea { font-family: inherit; }
