:root {
  color-scheme: light;
  --charcoal: #111a1f;
  --timber: #c4933d;
  --paper: #f8f7f4;
  --eucalypt: #c4933d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: rgba(196, 147, 61, 0.22);
}

.hero-image {
  filter: saturate(0.92) contrast(1.04);
}

.field-control {
  width: 100%;
  border: 1px solid rgb(212 212 212);
  background: white;
  color: rgb(23 23 23);
  border-radius: 8px;
  padding: 0.82rem 0.9rem;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.field-control:focus {
  border-color: var(--timber);
  box-shadow: 0 0 0 4px rgba(196, 147, 61, 0.16);
}

.button-shadow {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
