/* Production UKC X2 base and layout primitives. */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; scrollbar-gutter: stable; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--copy);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: var(--blue); text-underline-offset: 3px; }
a:hover { color: var(--blue-dark); }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
h1, h2, h3, h4 {
  margin-top: 0;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { font-size: clamp(3rem, 5.5vw, 5.35rem); font-weight: 650; }
h2 { font-size: clamp(2.1rem, 3.6vw, 3.6rem); }
h3 { font-size: 1.28rem; letter-spacing: -.02em; }
p { margin-top: 0; }
.container { width: min(calc(100% - 40px), var(--content)); margin-inline: auto; }
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  display: none;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px var(--green-soft);
}
.section { padding: clamp(72px, 8vw, 116px) 0; }
.section-alt { background: var(--canvas); }
.section-heading { max-width: 800px; margin: 0 auto 44px; text-align: center; }
.section-heading h2 { margin-bottom: 15px; text-wrap: balance; }
.section-heading p { max-width: 680px; margin: 0 auto; font-size: 1.08rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--green);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(8, 122, 85, .22);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover {
  transform: translateY(-1px);
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 13px 28px rgba(8, 122, 85, .27);
}
