/* Reset + estilos base de tipografía y elementos globales */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 350;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: hsl(var(--foreground));
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
}

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

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

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

.section {
  position: relative;
  padding: var(--section-py) 0;
}

.section--forest {
  background: hsl(var(--forest));
}

.section--tint {
  background: hsl(var(--secondary) / 0.3);
}

.text-accent {
  color: hsl(var(--accent));
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--foreground) / 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.lead {
  color: hsl(var(--foreground) / 0.6);
  line-height: 1.7;
  max-width: 36rem;
}

@media (min-width: 64rem) {
  .section {
    padding: var(--section-py-lg) 0;
  }
}
