/* ============================================
   MOG RESEARCH — RESET
   Modern CSS reset, opinionated
   ============================================ */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 1.5; min-height: 100vh; }

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; width: 100%; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }

/* Accessibility */
:focus-visible { outline: 2px solid var(--accent-gold); outline-offset: 2px; }
.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; }

/* Skip-to-content (visible on focus only) — WCAG 2.4.1 */
.skip-link { position: absolute; top: -100px; left: 0; z-index: 9999; padding: 12px 20px; background: #1A1A18; color: #FDFAF5; font-family: 'Univers LT Std', 'Public Sans', 'Helvetica Neue', Helvetica, sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; transition: top 200ms cubic-bezier(0.16, 1, 0.32, 1); }
.skip-link:focus, .skip-link:focus-visible { top: 0; outline: 2px solid #C8A96E; outline-offset: -2px; }

/* Cookie banner — bottom-fixed, dismissable */
.cookie-banner { position: fixed; bottom: 24px; left: 24px; right: 24px; max-width: 720px; margin: 0 auto; background: #1A1A18; color: #FDFAF5; padding: 20px 24px; border-radius: 2px; box-shadow: 0 20px 60px rgba(26, 26, 24, 0.25); z-index: 80; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; transform: translateY(120%); transition: transform 600ms cubic-bezier(0.16, 1, 0.32, 1); }
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner-text { flex: 1; min-width: 260px; font-family: 'Univers LT Std', 'Public Sans', 'Helvetica Neue', Helvetica, sans-serif; font-size: 13px; line-height: 1.55; color: rgba(253, 250, 245, 0.85); }
.cookie-banner-text a { color: #C8A96E; border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.cookie-banner-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn { font-family: 'Univers LT Std', 'Public Sans', 'Helvetica Neue', Helvetica, sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 18px; border: 1px solid rgba(253, 250, 245, 0.3); background: transparent; color: #FDFAF5; cursor: pointer; border-radius: 2px; transition: background 200ms cubic-bezier(0.16, 1, 0.32, 1), border-color 200ms; }
.cookie-btn:hover { background: rgba(253, 250, 245, 0.08); border-color: rgba(253, 250, 245, 0.6); }
.cookie-btn.primary { background: #C8A96E; color: #1A1A18; border-color: #C8A96E; }
.cookie-btn.primary:hover { background: #B89A5E; border-color: #B89A5E; }
@media (max-width: 540px) { .cookie-banner { bottom: 12px; left: 12px; right: 12px; padding: 16px 18px; } .cookie-banner-actions { width: 100%; } .cookie-btn { flex: 1; } }
