*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--white); }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 2px solid var(--ce-red); outline-offset: 4px; }
::selection { background: rgba(44,86,151,.16); }

h1, h2, h3, p, blockquote { margin-top: 0; }
h1, h2, h3, blockquote { font-weight: 400; letter-spacing: -.055em; }
h1 { font-size: clamp(52px, 6.2vw, 96px); line-height: .98; }
h2 { font-size: clamp(44px, 5.5vw, 82px); line-height: .98; }
h3 { font-size: clamp(28px, 2.8vw, 44px); line-height: 1.02; }
p { max-width: 72ch; }

.shell {
  width: min(calc(100% - var(--gutter) * 2), var(--max));
  margin-inline: auto;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-label > span {
  width: 7px;
  height: 7px;
  background: currentColor;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

@media (max-width: 720px) {
  body { font-size: 15px; }
  h1 { font-size: clamp(46px, 13vw, 68px); }
  h2 { font-size: clamp(38px, 11vw, 56px); }
  h3 { font-size: clamp(27px, 8vw, 38px); }
}
