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

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 35%),
    linear-gradient(180deg, #f7f4ef 0%, #f2efe8 60%, #efebe3 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

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

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

button {
  cursor: pointer;
}

main {
  display: block;
}

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(80, 102, 125, 0.14);
}

.page-shell {
  padding: 28px 0 72px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading h2,
.section-heading h3 {
  margin: 0;
  color: var(--text-strong);
}

.section-heading p {
  margin: 8px 0 0;
  max-width: 600px;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 767px) {
  .page-shell {
    padding: 20px 0 56px;
  }

  .container {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }
}
