:root {
  --paper: #ffffff;
  --ink: #111111;
  --ink-soft: #2a2a2a;
  --muted: #5c5c5c;
  --line: #e6e6e6;
  --teal: #0a7a8c;
  --teal-hover: #086677;
  --max: 1280px;
  --header-h: 88px;
  --shadow: 0 8px 22px rgba(17, 17, 17, 0.1);
  --radius: 6px;
  --footer-bg: #1f2a25;
  --footer-text: #e8eee9;
  --footer-link: #d7e5bd;
  --footer-muted: #b8c3bd;
  --font: "Montserrat", Arial, Helvetica, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: clip;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

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

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

button,
input {
  font-family: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.btn {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 14px 22px;
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.btn:hover {
  background: var(--teal-hover);
}

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