:root {
  --ivory: #fff8ef;
  --cream: #fffdf8;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --coral: #f9735b;
  --coral-dark: #e85f47;
  --brown: #4b2e24;
  --muted: #7a6a60;
  --white: #ffffff;
  --border: #eadfd2;
  --shadow: 0 20px 50px rgba(75, 46, 36, 0.12);
  --radius: 24px;
}

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

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: linear-gradient(180deg, var(--ivory), var(--cream));
  color: var(--brown);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}