* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f7f6f1;
  color: #151819;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid #deddd6;
  background: #fbfaf6;
}

a {
  color: #1f5d6b;
  text-decoration: none;
}

.brand {
  color: #151819;
  font-weight: 800;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
}

main {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.eyebrow {
  color: #1f5d6b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: clamp(32px, 6vw, 58px);
  line-height: 1.02;
}

h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.lead {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(21, 24, 25, .72);
  font-size: 19px;
  line-height: 1.7;
}

section {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid #deddd6;
  border-radius: 8px;
  background: #fffdf8;
}

li {
  margin: 8px 0;
}

.price {
  margin: 0 0 14px;
  font-size: 42px;
  font-weight: 800;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 18px;
  border-radius: 7px;
  background: #151819;
  color: #fff;
  font-weight: 800;
}

@media (max-width: 680px) {
  header {
    align-items: flex-start;
    flex-direction: column;
  }

  main {
    padding-top: 32px;
  }
}
