:root {
  color-scheme: light;
  --color-orange: #b83716;
  --color-orange-hover: #a43114;
  --color-dark: #121212;
  --color-white: #ffffff;
  --color-text-body: rgba(18, 18, 18, 0.82);
  --color-text-muted: rgba(18, 18, 18, 0.58);
  --color-card-bg: #ffffff;
  --color-card-border: transparent;
  --color-section-alt: #f6f7f8;
  --text-h1-size: clamp(40px, 4.3vw, 64px);
  --text-h1-weight: 700;
  --text-h1-line-height: 1.1;
  --text-h1-letter-spacing: -0.02em;
  --text-h2-size: clamp(28px, 2.8vw, 40px);
  --text-h2-weight: 700;
  --text-h2-line-height: 1.2;
  --text-h3-size: 18px;
  --text-h3-weight: 600;
  --text-body-size: 16px;
  --text-body-weight: 400;
  --text-body-line-height: 1.7;
  --font-body: "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
  --font-heading: "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
}

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

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body-size);
  font-weight: var(--text-body-weight);
  line-height: var(--text-body-line-height);
  color: var(--color-text-body);
  background: var(--color-section-alt);
  min-height: 100vh;
  padding-top: var(--header-offset, 72px);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.is-page-loading,
html.is-page-loading body {
  overflow: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  letter-spacing: -0.04em;
}

h1 {
  font-size: var(--text-h1-size);
  font-weight: var(--text-h1-weight);
  line-height: var(--text-h1-line-height);
  letter-spacing: var(--text-h1-letter-spacing);
}

h2 {
  font-size: var(--text-h2-size);
  font-weight: var(--text-h2-weight);
  line-height: var(--text-h2-line-height);
  letter-spacing: -0.03em;
}

h3 {
  font-size: var(--text-h3-size);
  font-weight: var(--text-h3-weight);
  line-height: 1.35;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 55, 22, 0.22);
}

[hidden] {
  display: none !important;
}

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