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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--top-bar-height) + var(--nav-bar-height));
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--page-gutter);
  z-index: 100;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-size: var(--text-small);
  font-weight: 600;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.15);
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--text-body);
  line-height: var(--leading-base);
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

address {
  font-style: normal;
}

.scroll-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
  visibility: hidden;
}


@media (min-width: 1024px) {
  .container {
    padding-inline: var(--page-gutter);
  }
}

/* ── Typography helpers ── */
.eyebrow {
  margin: 0 0 1rem;
  font-size: var(--text-caption);
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  margin: 0;
  font-size: var(--text-section);
  font-weight: 300;
  letter-spacing: var(--tracking-title);
  line-height: var(--leading-title);
}

.section-title strong {
  font-weight: 600;
}

.section-lead {
  margin: 1rem 0 0;
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--muted);
}

/* Standardized body copy utilities */
.text-prose {
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.text-secondary {
  font-size: var(--text-small);
  line-height: var(--leading-body-tight);
  color: var(--muted);
}

.section-head {
  max-width: 42rem;
  margin: 0 auto 5rem;
  text-align: center;
}

.section-head__action {
  margin-top: 1.75rem;
}

.section-head--compact {
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .section-head {
    margin-bottom: 6rem;
  }

  .section-head--compact {
    margin-bottom: 5rem;
  }
}

.section-cta {
  margin-top: 3.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .section-cta {
    margin-top: 4.5rem;
  }
}

