/* ========== RESET ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

/* ========== ROOT ========== */
:root {
  --bg: #f7f3ed;
  --surface: #fffdf9;
  --surface-alt: #efe7dc;
  --text: #1f1d1a;
  --muted: #6d665d;
  --border: #ddd2c4;
  --accent: #9c6b3d;
  --accent-dark: #7f542d;

  --container: 1200px;
  --container-narrow: 760px;

  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 5rem;
}

/* ========== BASE ========== */
body {
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-8) 0;
}

.section.alt {
  background: var(--surface-alt);
}

.section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

.section p {
  color: var(--muted);
}
