:root {
  /* Colors */
  --clr-bg: #F6F4F0;
  --clr-surface: rgba(255, 255, 255, 0.70);
  --clr-text: #2A2724;
  --clr-text-muted: #7A7470;

  /* Element Colors (Adaptative) */
  --clr-agua: #7BA7B8;
  --clr-aire: #B8C4C0;
  --clr-fuego: #C4704A;
  --clr-tierra: #8B7355;
  --clr-eter: #9B8EB0;

  /* Brand Accents */
  --clr-sage: #8C9C88;
  --clr-sand: #D4A373;

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;

  /* Effects */
  --blur-surface: blur(12px);
  --spring-easing: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-smooth: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  --antigravity-ease: cubic-bezier(0.175, 0.885, 0.32, 1.02);

  /* Spacing */
  --spacing-safe: clamp(2rem, 5vw, 6rem);
}

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

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.nav-btn {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.05em;
}

ul {
  list-style: none;
}

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

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