/* =========================================================
 *  01. RESET
 * = *======================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f7f7f3;
  --surface: #ffffff;
  --text: #1e2925;
  --muted: #66706b;
  --line: #dfe4df;
  --accent: #4f7568;
  --accent-dark: #345247;

  --font-family-base: "GeneralSans", sans-serif;
  --font-family-title: "Playfair", serif;

  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-family-base);
  font-size: 1rem;
}

a {
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3 {
  line-height: 1.15;
}
h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
}
h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
