/* ============ BASE STYLES ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background-color: #fdfcfa;
  color: #2c3f23;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============ SELECTION ============ */
::selection {
  background-color: #a3be8e;
  color: #2c3f23;
}

/* ============ FOCUS STYLES ============ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #5c8045;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============ TRANSITION UTILITIES ============ */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* ============ FORM STYLES ============ */
select option {
  background-color: #2c3f23;
  color: #a3be8e;
}

/* ============ PRINT STYLES ============ */
@media print {
  nav, #contact, footer {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}
