:root {
  --black: #0b0b0b;
  --white: #ffffff;
  --muted: #cfcfcf;
  --ink: #121212;
  --bg: #f7f7f7;
  --link-hover: var(--caution-yellow);
  --max-width: 1200px;
  --logo-size: 96px;
  --floating-icon-size: 56px;
  --ticker-height: 44px;
  --caution-yellow: #f2c94c;
  --caution-black: #111111;
  --caution-text: #0c0c0c;
  --section-underline-width: 160px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

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

*:focus,
*:focus-visible {
  outline: none;
}

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

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

figure {
  margin: 0;
}

.section-heading {
  margin: 0 0 20px;
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 8px;
  position: relative;
}

.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--section-underline-width);
  height: 1px;
  background: var(--caution-yellow);
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--black);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  transition: top 0.2s ease;
  z-index: 10;
}

.skip-link:focus {
  top: 16px;
}
