/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --clay: #c4633f;
  --clay-dark: #8f3f23;
  --clay-deep: #5c2814;
  --cream: #f5ead4;
  --cream-soft: #ebdcb8;
  --line-white: #fdfcf5;
  --grass: #4a7c3a;
  --grass-bright: #7cb958;
  --ink: #1a1410;
  --shadow: rgba(40, 18, 8, 0.25);
  --danger: #c0392b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Fraunces', Georgia, serif;
  background:
    radial-gradient(ellipse at top, #d97a52 0%, transparent 60%),
    radial-gradient(ellipse at bottom right, #a8512e 0%, transparent 50%),
    linear-gradient(180deg, var(--clay) 0%, var(--clay-dark) 100%);
  color: var(--ink);
  min-height: 100vh;
  position: relative;
  padding: 1.5vh 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Texture terre battue */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.04) 0%, transparent 1%),
    radial-gradient(circle at 70% 60%, rgba(0,0,0,0.06) 0%, transparent 1%),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.03) 0%, transparent 1%),
    radial-gradient(circle at 85% 15%, rgba(0,0,0,0.05) 0%, transparent 1%);
  background-size: 4px 4px, 6px 6px, 5px 5px, 3px 3px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}