:root {
  --color-primary: #78be2b;
  --color-forest: #24452d;
  --color-deep: #173622;
  --color-text: #3f3d42;
  --color-ivory: #f7f6ef;
  --color-mist: #edf4e5;
  --color-earth: #9a7049;
  --color-border: #dde2d7;
  --color-white: #ffffff;
  --shadow-card: 0 18px 45px rgba(23, 54, 34, 0.09);
  --radius-card: 22px;
  --container-width: 1240px;
  --section-space: 15px;
  --section-space-small: 15px;
  --transition-base: 250ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-text);
  font: 400 16px/1.72 Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

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

h1,
h2,
h3,
h4 {
  margin: 0 0 18px;
  color: var(--color-deep);
  font-family: Manrope, Inter, sans-serif;
  line-height: 1.13;
}

h1 {
  font-size: clamp(2.7rem, 5.5vw, 4.65rem);
}

h2 {
  font-size: clamp(2rem, 3.7vw, 3rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0 0 20px;
}

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

:focus-visible {
  outline: 3px solid rgba(120, 190, 43, 0.4);
  outline-offset: 3px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bg-ivory {
  background: var(--color-ivory);
}

.bg-mist {
  background: var(--color-mist);
}

.bg-deep {
  background: var(--color-deep);
  color: var(--color-white);
}

.bg-deep h2,
.bg-deep h3 {
  color: var(--color-white);
}

.center {
  text-align: center;
}

.center .lead {
  margin-inline: auto;
}
