/* ---- Brand colors (single source of truth) ---- */
:root {
  --sage: #7a8b6f;          /* leads the palette */
  --sage-deep: #4d5a45;     /* text / dark accents */
  --cognac: #b5703f;        /* warm accent */
  --cream: #f6f2e9;         /* background */
  --ink: #2e352a;           /* body text */
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
}

.hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 18vh 24px 0;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 700;
  color: var(--sage-deep);
  margin-bottom: 0.5em;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2em;
}

.button {
  display: inline-block;
  background: var(--cognac);
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  padding: 0.9em 2em;
  border-radius: 999px;
  transition: transform 0.1s ease, background 0.2s ease;
}

.button:hover {
  background: var(--sage);
  transform: translateY(-1px);
}
