@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/rubik-400.woff2") format("woff2");
}
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/rubik-500.woff2") format("woff2");
}
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/rubik-600.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat Alternates";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/montserrat-alt-500.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat Alternates";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/montserrat-alt-600.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat Alternates";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/montserrat-alt-700.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat Alternates";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/montserrat-alt-800.woff2") format("woff2");
}

:root {
  --bg: #0f1713;
  --panel: #16211b;
  --panel-hover: #1f2e26;
  --line: #2c4033;
  --text: #e6efe9;
  --muted: #9db3a6;
  --brass: #c9a227;
  --brass-grad: linear-gradient(120deg, #e3bc45, #8a6d1c);
  --veil: linear-gradient(105deg, rgba(15, 23, 19, .94) 38%, rgba(15, 23, 19, .25) 72%, rgba(15, 23, 19, 0));
  --font-head: "Montserrat Alternates", "Arial Narrow", sans-serif;
  --font-body: "Rubik", Arial, sans-serif;
  --gap: clamp(1rem, 2vw, 1.75rem);
  --container-w: 74rem;
  --header-h: 4.5rem;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

p {
  margin: 0;
}

address {
  font-style: normal;
}

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

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

svg {
  display: block;
}

::selection {
  background: var(--brass);
  color: var(--bg);
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.marco {
  width: min(100% - 2.5rem, var(--container-w));
  margin-inline: auto;
}

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

.skipnav {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 300;
  padding: .75rem 1.25rem;
  background: var(--brass);
  color: var(--bg);
  font-weight: 600;
  border-radius: 2px;
}

.skipnav:focus {
  top: 1rem;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: start;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: .5rem;
}

.gap-3 {
  gap: .875rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.relative {
  position: relative;
}

.mt-2 {
  margin-top: .5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-10 {
  margin-top: 2.75rem;
}

.mb-2 {
  margin-bottom: .5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.py-4 {
  padding-block: 1rem;
}

.py-6 {
  padding-block: 1.5rem;
}

.px-4 {
  padding-inline: 1rem;
}

.text-sm {
  font-size: .875rem;
}

.text-lg {
  font-size: clamp(1.1rem, 1rem + .5vw, 1.35rem);
}

.text-xl {
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem);
}

.text-center {
  text-align: center;
}

.max-42 {
  max-width: 42rem;
}

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

.text-brass {
  color: var(--brass);
}

.hidden {
  display: none;
}

@media (min-width: 900px) {
  .md-hidden {
    display: none;
  }

  .md-flex {
    display: flex;
  }
}

@media (max-width: 899.98px) {
  .md-only {
    display: none;
  }
}
