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

:root{
  --cream:#fff7e8;
  --cream-dark:#fff3df;
  --white:#fffdf7;
  --green:#2f6b3d;
  --green-dark:#173321;
  --orange:#d97822;
  --orange-light:#ffb15c;
  --text:#173321;
  --muted:#66756b;
  --border:rgba(47,107,61,.12);
  --shadow:0 18px 45px rgba(47,107,61,.08);
}

html{
  scroll-behavior:smooth;
  overflow-x:hidden;
}

body{
  font-family:Inter, Arial, sans-serif;
  background:var(--cream);
  color:var(--text);
  overflow-x:hidden;
  width:100%;
}

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

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

button{
  font-family:inherit;
}