/* Reset + base typography */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--cream-050);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--green-800);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.section-label {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--ink-500);
  font-size: 1rem;
}

/* Icon circle used across features / cards */
.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-800);
  flex-shrink: 0;
}
.icon-circle svg { width: 20px; height: 20px; stroke: var(--green-800); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-nav);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }

.btn-solid {
  background: var(--green-800);
  color: var(--white);
  border: 1.5px solid var(--gold-500);
  box-shadow: var(--shadow-btn);
}
.btn-solid:hover { background: var(--green-700); transform: translateY(-1px); }

.btn-outline {
  background: rgba(255,255,255,0.85);
  color: var(--green-800);
  border: 1.5px solid var(--gold-500);
}
.btn-outline:hover { background: var(--white); transform: translateY(-1px); }

.btn-sm {
  padding: 10px 22px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .container { padding: 0 var(--space-3); }
}
