@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --ink: #000000;
  --navy: #0f2e4c;
  --clay: #c96c3c;
  --gray: #a7a9ac;
  --paper: #ffffff;
  --mist: #fafafa;
  --fog: #dcdcdc;
  --on-dark: #fafafa;
  --muted: #3a3a3a;
  --mid: #6b6b6b;
  --footer: #565656;
  --font: "Montserrat", sans-serif;
  --font-nav: "Montserrat", sans-serif;
  --header-h: 120px;
  --pad: clamp(1.25rem, 5vw, 4.5rem);
  --max: 1354px;
  --radius: 6.8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--ink);
  background: var(--mist);
}

body:has(.nav-check:checked) {
  overflow: hidden;
}

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

.leaflet-container img,
.leaflet-pane img {
  max-width: none;
  display: inline;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
blockquote,
figure {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

h1,
h2,
h3,
h4 {
  text-transform: uppercase;
}

h1,
h2,
.display {
  font-size: clamp(1.7rem, 3.58vw, 3.22rem);
}

h3,
h4 {
  font-size: clamp(1.35rem, 2.4vw, 2.14rem);
}

ul,
ol {
  padding: 0;
  list-style: none;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  padding: 0.4rem 0.7rem;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.placeholder {
  color: var(--muted);
}

.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;
}
