/* Base */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg, #000);
  color: var(--text, #e6e6e6);
  font-family: var(--fontBody, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif);
  font-size: var(--baseFontSize, 16px);
  line-height: 1.6;
}
.splash-overlay { position: fixed; inset: 0; background: #000; display: flex; align-items: center; justify-content: center; z-index: 9999; opacity: 1; transition: opacity var(--splashFade, 600ms) ease; }
.splash-overlay img { max-width: 96vw; max-height: 92vh; width: auto; height: 90vh; }
.splash-overlay.fade-out { opacity: 0; pointer-events: none; }

a { color: var(--link, #7ec8ff); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: var(--maxWidth, 960px); margin: 0 auto; padding: 0 16px; }

/* Header */
.site-header { position: sticky; top: 0; background: var(--bg, #000); border-bottom: 1px solid var(--border, #222); z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.site-title { font-size: 20px; margin: 0; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.site-title a { color: #fff; display: flex; align-items: center; gap: 12px; }
.site-logo { height: var(--logoHeight, 72px); width: auto; display: block; }
.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; }
.site-nav ul { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.site-nav a { color: var(--text, #e6e6e6); }
.site-nav a:hover { color: #fff; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--fontHeadings, inherit); margin-top: 1.25em; margin-bottom: 0.5em; }
code, pre { font-family: var(--fontMono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace); }

/* Footer */
.site-footer { border-top: 1px solid var(--border, #222); margin-top: 48px; padding: 24px 0; color: var(--muted, #aaa); font-size: 14px; }

/* Home: video */
.hero-video { margin: 24px 0; }
.video-wrapper { position: relative; width: 100%; padding-top: 56.25%; background: #111; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

.laurels { margin: 12px 0 24px; text-align: center; }
.laurels img { width: min(410px, 100%); height: auto; filter: none; }

.btn { display: inline-block; background: var(--accent, #fff); color: var(--accentText, #000); padding: 10px 16px; border-radius: 4px; font-weight: 600; }
.btn:hover { filter: brightness(0.9); text-decoration: none; }

/* Press */
.press-list { display: grid; gap: 16px; margin: 24px 0; }
.press-item { display: grid; grid-template-columns: 112px 1fr; gap: 16px; padding: 12px; background: var(--panel, #0d0d0d); border: 1px solid #1a1a1a; border-radius: 6px; align-items: start; }
.press-item .thumb { display: block; width: 112px; height: 72px; border-radius: 4px; overflow: hidden; background: #111; border: 1px solid #1a1a1a; }
.press-item .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.press-item h3 { margin: 0 0 6px; font-size: 18px; }
.press-item .meta { color: var(--muted, #aaa); margin: 0 0 8px; font-size: 14px; }

/* Bios */
.bio { display: grid; grid-template-columns: 160px 1fr; gap: 16px; align-items: start; margin: 24px 0; }
.bio img { width: 160px; height: 160px; object-fit: cover; border-radius: 4px; border: 1px solid #1a1a1a; background: #111; }
.bio h2 { margin: 0 0 8px; font-size: 20px; }

@media (max-width: 600px) {
  .bio { grid-template-columns: 1fr; }
  .bio img { width: 100%; height: auto; }
  .site-logo { height: calc(var(--logoHeight, 72px) * 0.66); }
}

