@import url('./tokens.css');
@import url('./tailwind-bridge.css');
@import url('./utilities.css');
@import url('./components.css');

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-sans);
  background: var(--brand-background);
  color: var(--brand-foreground);
}
img, picture, video, canvas, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }

@layer base {
  h1, h2, h3, h4, h5, h6 { line-height: 1.3; font-weight: 600; }
  p { margin: 0 0 1em; }
}

:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: 2px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

@media (min-width: 1536px) {
  .max-w-\[1280px\] { max-width: 1440px !important; }
}
@media (min-width: 1920px) {
  .max-w-\[1280px\] { max-width: 1680px !important; }
}
@media (min-width: 2560px) {
  .max-w-\[1280px\] { max-width: 1920px !important; }
}

.section { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 1024px) { .section { padding-top: 5rem; padding-bottom: 5rem; } }
@media (min-width: 1536px) { .section { padding-top: 6rem; padding-bottom: 6rem; } }
@media (min-width: 1920px) { .section { padding-top: 7rem; padding-bottom: 7rem; } }

footer { margin-top: 3rem; }
@media (min-width: 1024px) { footer { margin-top: 4rem; } }
@media (min-width: 1536px) { footer { margin-top: 5rem; } }

main > .section-divider { border-bottom: 1px solid var(--brand-border); }
.section-divider { border-bottom: 1px solid var(--brand-border); }
.section-divider:last-child { border-bottom: none; }

@media (min-width: 1920px) {
  html { font-size: 17px; }
}
@media (min-width: 2560px) {
  html { font-size: 18px; }
}

@media (min-width: 1920px) {
  .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1920px) {
  .text-2xl { font-size: 1.75rem; line-height: 2.25rem; }
  .text-3xl { font-size: 2.125rem; line-height: 2.625rem; }
  .lg\:text-3xl { font-size: 2.125rem; line-height: 2.625rem; }
}

@media print {
  nav, footer, #site-fab { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
