html {
  color: #1a1a1a;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Sputnik';
  src: url('../fonts/sputnikdisplay_bold.otf') format('opentype');
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

:root {
  --main-color: #098507;
  --main-color-dark: #076a05;
  --main-muted: rgba(9, 133, 7, 0.12);
  --page-bg: #f0f4f0;
  --main-white: #fff;
  --main-grey: #e8ece8;
  --text-primary: #1a1a1a;
  --text-muted: #4a4a4a;
  --font-size-body: clamp(0.875rem, 1.5vw, 1rem);
  --font-size-h2: clamp(1.25rem, 2.5vw, 1.5rem);
  --font-size-h1-hero: clamp(1.5rem, 3.5vw, 2.25rem);
  --space-section: clamp(2rem, 5vw, 4rem);
  --space-block: clamp(1rem, 2.5vw, 1.5rem);
  --radius: 12px;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-modal: 0 12px 40px rgba(0, 0, 0, 0.15);
}

::-moz-selection {
  background: rgba(9, 133, 7, 0.2);
  text-shadow: none;
}

::selection {
  background: rgba(9, 133, 7, 0.2);
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid var(--main-grey);
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.hidden,
[hidden] {
  display: none !important;
}

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

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

a:focus-visible,
button:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 2px solid var(--main-color);
  outline-offset: 2px;
}

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
