/* ── GLOBAL VARIABLES ── */
:root {
  --sage: #3B6D11;
  --sage-light: #EAF3DE;
  --sage-mid: #639922;
  --ink: #1a1a18;
  --cream: #F9F6F0;
  --warm-gray: #888780;
  --rule: rgba(26,26,24,0.12);
  --accent: #BA7517;
  --accent-light: #FAEEDA;
  --red: #C0392B;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

a {
  color: var(--sage);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

button {
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

/* ── UTILITY CLASSES ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hidden {
  display: none !important;
}
