/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; scroll-padding-top: 80px; }
/* Anchored sections (e.g. #festival-activations) — ensure they're not hidden under the sticky header */
section[id] { scroll-margin-top: 80px; }
@media (max-width: 880px) { html { scroll-padding-top: 72px; } section[id] { scroll-margin-top: 72px; } }
body { min-height: 100vh; line-height: 1.55; }
/* Anchor scroll offset so anchored sections aren't hidden under sticky nav. */
:target, [id] { scroll-margin-top: 88px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.15; font-weight: 400; text-wrap: balance; }
p { text-wrap: pretty; }

/* Focus visible */
:focus-visible { outline: 2px solid var(--color-tan); outline-offset: 3px; border-radius: 2px; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--color-charcoal); color: var(--color-cream);
  padding: .75rem 1rem; z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }
