:root {
  --accent:#b08b63;
  --dark:#222;
  --muted:#666;
  --bg:#faf7f3;
  --card:#ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',
               Roboto, 'Helvetica Neue', Arial;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.45;
}

h1, h2, h3 {
  margin: 0;
}

p {
  margin: 0 0 10px 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}