* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Manrope, Arial, sans-serif;
  color: #1c2730;
  background: #faf9f3;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 12px 20px;
  border-bottom: 1px solid #e7e3d7;
  background: #faf9f3;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #001524;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand img {
  display: block;
  width: 36px;
  height: auto;
}

.section {
  padding: 32px 16px 56px;
}

.container {
  width: min(100%, 1080px);
  margin: 0 auto;
}

.section-heading .eyebrow {
  margin: 0 0 10px;
  color: #ff2a13;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.section-heading h1 {
  margin: 0 0 20px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
}
