@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Lexend:wght@100..900&display=swap');

/* ─── TOKENS ─── */
:root {
  --ink: #1a1a18;
  --paper: #f5f3ee;
  --cream: #ede9e0;
  --sage: #7c9a7e;
  --rust: #c0622e;
  --muted: #8a8880;
  --card-bg: #ffffff;
  --border: #dedad3;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 16px rgba(26, 26, 24, 0.08);
  --shadow-lg: 0 8px 40px rgba(26, 26, 24, 0.14);
  --font-display: 'lexend', system-ui, sans-serif;
  --font-body: 'karla', system-ui, sans-serif;
  --header-h: 64px;
  --footer-h: auto;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
  border-radius: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font-family: inherit;
}

ul {
  list-style: none;
}