* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--white); }
body { margin: 0; color: var(--ink-800); background: var(--white); font-family: var(--font-sans); line-height: 1.85; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { color: var(--ink-950); line-height: 1.45; letter-spacing: -.02em; }
h1 { font-size: clamp(2.45rem, 5vw, 4.8rem); }
h2 { font-size: clamp(1.85rem, 3.2vw, 3rem); }
h3 { font-size: 1.18rem; }
p { color: var(--ink-600); }
::selection { background: rgba(var(--brand-primary-rgb), .18); color: var(--ink-950); }
:focus-visible { outline: 3px solid rgba(var(--brand-primary-rgb), .3); outline-offset: 3px; border-radius: 8px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; position: relative; }
.section--muted { background: var(--brand-surface); }
.section--dark { background: var(--brand-secondary); color: #fff; }
.section--compact { padding: 72px 0; }
.grid { display: grid; gap: 24px; }
.skip-link { position: fixed; top: 12px; right: 12px; z-index: 999; transform: translateY(-160%); padding: 10px 16px; border-radius: 10px; background: var(--brand-secondary); color: #fff; transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.noscript { background: #fff4e5; color: #7a2e0e; padding: 14px 20px; text-align: center; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
