/* Shared navigation and footer for the whole portfolio. */
:root { color-scheme: dark; }
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 300;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 18px clamp(22px,5vw,76px);
  background: rgba(5,7,12,.92); border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}
.site-header .brand, .site-footer .brand {
  color: #f2f5f8; font: 700 .9rem 'JetBrains Mono', monospace;
  letter-spacing: .16em; text-transform: uppercase; text-decoration: none; white-space: nowrap;
}
.brand b { color: #f0a51e; }
.site-menu { display: flex; align-items: center; gap: clamp(18px,2vw,30px); }
.site-menu a, .site-footer nav a {
  font: 500 .7rem 'JetBrains Mono', monospace; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none; color: #abb4c2;
}
.site-menu a:hover, .site-menu a[aria-current], .site-footer nav a:hover { color: #f0a51e; }
.site-menu .nav-contact { padding: 9px 15px; border: 1px solid #9d6d1c; color: #f0a51e; }
.menu-button { display: none; background: none; border: 0; color: #f2f5f8; width: 44px; height: 44px; flex: none; cursor: pointer; }
.menu-button i { display: block; width: 23px; height: 1px; margin: 7px auto; background: currentColor; }
.site-footer {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  padding: 36px clamp(22px,5vw,76px); gap: 28px;
  border-top: 1px solid rgba(255,255,255,.1); background: #080c14;
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 24px; }
.site-footer p { color: #a2adbc; font: 400 .65rem 'JetBrains Mono', monospace; margin: 0; }
.sr-only { position:absolute; width:1px; height:1px; margin:-1px; padding:0; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.skip-link { position:fixed; top:10px; left:10px; z-index:1000; padding:12px 18px; background:#f0a51e; color:#080c14; transform:translateY(-180%); }
.skip-link:focus { transform:none; }
a, button, summary { touch-action: manipulation; }
:focus-visible { outline:2px solid #f0a51e; outline-offset:4px; }
[id] { scroll-margin-top:100px; }
@media(max-width:1050px) {
  .site-header { padding:12px 22px; }
  .menu-button { display:block; }
  .site-menu { display:none; position:absolute; top:100%; left:0; right:0; background:#080c14; border-bottom:1px solid #303744; padding:18px 22px; flex-direction:column; align-items:stretch; gap:8px; max-height:calc(100dvh - 68px); overflow-y:auto; }
  .site-menu.open { display:flex; }
  .site-menu a { padding:12px 0; min-height:44px; }
  .site-footer { flex-direction:column; text-align:center; }
  .site-footer nav { justify-content:center; }
}
@media print { .site-header, .site-footer, .skip-link { display:none!important; } }
