/*
 * Shared site header + footer (dark strip). Safe with light page bodies (e.g. flyer).
 * Load with: <link rel="stylesheet" href="./css/site-chrome.css" /> before the page CSS.
 * Do not rely on @import from another stylesheet — it can fail and the chrome disappears.
 */

:root {
  --text: #eef3f7;
  --muted: #b8c5cf;
  --line: rgba(255, 255, 255, 0.08);
  --accent-soft: #a8d6ff;
  --max: 980px;
  --header-bg: #0a0e13;
  --footer-bg: #121922;
}

.container {
  width: min(var(--max), 92%);
  margin: 0 auto;
  box-sizing: border-box;
}

.site-header,
footer {
  font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
}

.site-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  padding: 16px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  line-height: 1.2;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  align-self: center;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  line-height: 1.25;
}

.logo-text {
  font-family: "Montserrat", "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-tagline {
  font-size: clamp(0.84rem, 1.65vw, 0.98rem);
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--muted);
}

.logo:hover .logo-text {
  color: var(--accent-soft);
}

.logo:hover .logo-tagline {
  color: #c8d4de;
}

.logo:hover .logo-img {
  opacity: 0.92;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}

.site-nav a:hover {
  color: var(--accent-soft);
}

.site-nav a[aria-current="page"] {
  color: var(--accent-soft);
}

footer {
  padding: 18px 0 28px;
  color: var(--muted);
  font-size: 1rem;
  background: var(--footer-bg);
  border-top: 1px solid var(--line);
}

.footer-note {
  margin: 8px 0 0;
  font-size: 0.95rem;
}

.footer-note a {
  color: var(--accent-soft);
  text-decoration: none;
  margin-left: 8px;
}
