* {
  box-sizing: border-box;
}

body {
  background: #f7f3eb;
  color: #17211b;
}

::selection {
  background: #55745c;
  color: #ffffff;
}

.font-sans {
  font-family: "Manrope", Arial, sans-serif;
}

.font-display {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.text-forest {
  color: #173d2d;
}

.text-moss {
  color: #55745c;
}

.text-sand {
  color: #d6b98d;
}

.bg-forest {
  background-color: #173d2d;
}

.bg-forest\/55 {
  background-color: rgb(23 61 45 / 55%);
}

.bg-cream {
  background-color: #f7f3eb;
}

.bg-sand {
  background-color: #d6b98d;
}

.hover\:bg-cream:hover {
  background-color: #f7f3eb;
}

.focus\:border-sand:focus {
  border-color: #d6b98d;
}

.shadow-soft {
  box-shadow: 0 24px 70px rgba(31, 54, 40, .12);
}

.noise {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.success-card {
  animation: success-in .5s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes success-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.98);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
