:root {
  --bg: #0d1310;
  --surface: rgba(247, 250, 246, 0.92);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-muted: rgba(235, 241, 237, 0.9);
  --ink: #101914;
  --ink-soft: #3f4b44;
  --muted: #67756d;
  --line: rgba(20, 34, 26, 0.16);
  --red: #b82f32;
  --red-dark: #892225;
  --blue: #315f8c;
  --green: #2f7657;
  --gold: #9a6a1f;
  --danger: #9b2528;
  --shadow: 0 16px 48px rgba(4, 10, 7, 0.22);
  --radius: 8px;
  --radius-small: 6px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  background: var(--bg);
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(6, 13, 9, 0.42), rgba(6, 13, 9, 0.42)),
    url("../img/maceful-background.webp");
  background-size: cover;
  background-position: center;
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(244, 248, 244, 0.45);
  backdrop-filter: blur(1px);
}

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

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

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  letter-spacing: 0;
}

p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--red-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead {
  max-width: 58ch;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

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

::selection {
  color: #fff;
  background: var(--red);
}

:focus-visible {
  outline: 3px solid rgba(184, 47, 50, 0.35);
  outline-offset: 3px;
}

