:root {
  --container: 1240px;
  --page-gutter: clamp(18px, 3vw, 32px);
  --section-padding: clamp(28px, 4vw, 46px);
  --font-heading: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Nata Sans', system-ui, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.15;
}
p { margin: 0; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
}
.skip-link:focus { left: 12px; }
.section-shell {
  width: min(calc(100% - var(--page-gutter) * 2), var(--container));
  margin: 18px auto;
  padding: var(--section-padding);
  border-radius: 34px;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  transition: all .18s ease;
}
.text-link {
  font-weight: 800;
  text-decoration: none;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.section-heading h2 {
  font-size: clamp(28px, 3.3vw, 40px);
  letter-spacing: -0.035em;
}
@media (max-width: 768px) {
  .section-shell { border-radius: 26px; }
  .button-row { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
}
